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 | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 64 | #include <proto/session.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> |
| 67 | |
Willy Tarreau | 522d6c0 | 2009-12-06 18:49:18 +0100 | [diff] [blame] | 68 | const char HTTP_100[] = |
| 69 | "HTTP/1.1 100 Continue\r\n\r\n"; |
| 70 | |
| 71 | const struct chunk http_100_chunk = { |
| 72 | .str = (char *)&HTTP_100, |
| 73 | .len = sizeof(HTTP_100)-1 |
| 74 | }; |
| 75 | |
Willy Tarreau | a9679ac | 2010-01-03 17:32:57 +0100 | [diff] [blame] | 76 | /* Warning: no "connection" header is provided with the 3xx messages below */ |
Willy Tarreau | b463dfb | 2008-06-07 23:08:56 +0200 | [diff] [blame] | 77 | const char *HTTP_301 = |
Willy Tarreau | bc5aa19 | 2010-01-03 15:09:36 +0100 | [diff] [blame] | 78 | "HTTP/1.1 301 Moved Permanently\r\n" |
Willy Tarreau | bc5aa19 | 2010-01-03 15:09:36 +0100 | [diff] [blame] | 79 | "Content-length: 0\r\n" |
Willy Tarreau | b463dfb | 2008-06-07 23:08:56 +0200 | [diff] [blame] | 80 | "Location: "; /* not terminated since it will be concatenated with the URL */ |
| 81 | |
Willy Tarreau | 0f77253 | 2006-12-23 20:51:41 +0100 | [diff] [blame] | 82 | const char *HTTP_302 = |
Willy Tarreau | bc5aa19 | 2010-01-03 15:09:36 +0100 | [diff] [blame] | 83 | "HTTP/1.1 302 Found\r\n" |
Willy Tarreau | 0f77253 | 2006-12-23 20:51:41 +0100 | [diff] [blame] | 84 | "Cache-Control: no-cache\r\n" |
Willy Tarreau | bc5aa19 | 2010-01-03 15:09:36 +0100 | [diff] [blame] | 85 | "Content-length: 0\r\n" |
Willy Tarreau | 0f77253 | 2006-12-23 20:51:41 +0100 | [diff] [blame] | 86 | "Location: "; /* not terminated since it will be concatenated with the URL */ |
| 87 | |
| 88 | /* same as 302 except that the browser MUST retry with the GET method */ |
| 89 | const char *HTTP_303 = |
Willy Tarreau | bc5aa19 | 2010-01-03 15:09:36 +0100 | [diff] [blame] | 90 | "HTTP/1.1 303 See Other\r\n" |
Willy Tarreau | 0f77253 | 2006-12-23 20:51:41 +0100 | [diff] [blame] | 91 | "Cache-Control: no-cache\r\n" |
Willy Tarreau | bc5aa19 | 2010-01-03 15:09:36 +0100 | [diff] [blame] | 92 | "Content-length: 0\r\n" |
Willy Tarreau | 0f77253 | 2006-12-23 20:51:41 +0100 | [diff] [blame] | 93 | "Location: "; /* not terminated since it will be concatenated with the URL */ |
| 94 | |
Yves Lafon | 3e8d1ae | 2013-03-11 11:06:05 -0400 | [diff] [blame] | 95 | |
| 96 | /* same as 302 except that the browser MUST retry with the same method */ |
| 97 | const char *HTTP_307 = |
| 98 | "HTTP/1.1 307 Temporary Redirect\r\n" |
| 99 | "Cache-Control: no-cache\r\n" |
| 100 | "Content-length: 0\r\n" |
| 101 | "Location: "; /* not terminated since it will be concatenated with the URL */ |
| 102 | |
| 103 | /* same as 301 except that the browser MUST retry with the same method */ |
| 104 | const char *HTTP_308 = |
| 105 | "HTTP/1.1 308 Permanent Redirect\r\n" |
| 106 | "Content-length: 0\r\n" |
| 107 | "Location: "; /* not terminated since it will be concatenated with the URL */ |
| 108 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 109 | /* Warning: this one is an sprintf() fmt string, with <realm> as its only argument */ |
| 110 | const char *HTTP_401_fmt = |
| 111 | "HTTP/1.0 401 Unauthorized\r\n" |
| 112 | "Cache-Control: no-cache\r\n" |
| 113 | "Connection: close\r\n" |
Willy Tarreau | 791d66d | 2006-07-08 16:53:38 +0200 | [diff] [blame] | 114 | "Content-Type: text/html\r\n" |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 115 | "WWW-Authenticate: Basic realm=\"%s\"\r\n" |
| 116 | "\r\n" |
| 117 | "<html><body><h1>401 Unauthorized</h1>\nYou need a valid user and password to access this content.\n</body></html>\n"; |
| 118 | |
Willy Tarreau | 844a7e7 | 2010-01-31 21:46:18 +0100 | [diff] [blame] | 119 | const char *HTTP_407_fmt = |
| 120 | "HTTP/1.0 407 Unauthorized\r\n" |
| 121 | "Cache-Control: no-cache\r\n" |
| 122 | "Connection: close\r\n" |
| 123 | "Content-Type: text/html\r\n" |
| 124 | "Proxy-Authenticate: Basic realm=\"%s\"\r\n" |
| 125 | "\r\n" |
| 126 | "<html><body><h1>401 Unauthorized</h1>\nYou need a valid user and password to access this content.\n</body></html>\n"; |
| 127 | |
Willy Tarreau | 0f77253 | 2006-12-23 20:51:41 +0100 | [diff] [blame] | 128 | |
| 129 | const int http_err_codes[HTTP_ERR_SIZE] = { |
Willy Tarreau | ae94d4d | 2011-05-11 16:28:49 +0200 | [diff] [blame] | 130 | [HTTP_ERR_200] = 200, /* used by "monitor-uri" */ |
Willy Tarreau | 0f77253 | 2006-12-23 20:51:41 +0100 | [diff] [blame] | 131 | [HTTP_ERR_400] = 400, |
| 132 | [HTTP_ERR_403] = 403, |
| 133 | [HTTP_ERR_408] = 408, |
| 134 | [HTTP_ERR_500] = 500, |
| 135 | [HTTP_ERR_502] = 502, |
| 136 | [HTTP_ERR_503] = 503, |
| 137 | [HTTP_ERR_504] = 504, |
| 138 | }; |
| 139 | |
Willy Tarreau | 8058743 | 2006-12-24 17:47:20 +0100 | [diff] [blame] | 140 | static const char *http_err_msgs[HTTP_ERR_SIZE] = { |
Willy Tarreau | ae94d4d | 2011-05-11 16:28:49 +0200 | [diff] [blame] | 141 | [HTTP_ERR_200] = |
| 142 | "HTTP/1.0 200 OK\r\n" |
| 143 | "Cache-Control: no-cache\r\n" |
| 144 | "Connection: close\r\n" |
| 145 | "Content-Type: text/html\r\n" |
| 146 | "\r\n" |
| 147 | "<html><body><h1>200 OK</h1>\nService ready.\n</body></html>\n", |
| 148 | |
Willy Tarreau | 0f77253 | 2006-12-23 20:51:41 +0100 | [diff] [blame] | 149 | [HTTP_ERR_400] = |
Willy Tarreau | 8058743 | 2006-12-24 17:47:20 +0100 | [diff] [blame] | 150 | "HTTP/1.0 400 Bad request\r\n" |
Willy Tarreau | 0f77253 | 2006-12-23 20:51:41 +0100 | [diff] [blame] | 151 | "Cache-Control: no-cache\r\n" |
| 152 | "Connection: close\r\n" |
| 153 | "Content-Type: text/html\r\n" |
| 154 | "\r\n" |
| 155 | "<html><body><h1>400 Bad request</h1>\nYour browser sent an invalid request.\n</body></html>\n", |
| 156 | |
| 157 | [HTTP_ERR_403] = |
| 158 | "HTTP/1.0 403 Forbidden\r\n" |
| 159 | "Cache-Control: no-cache\r\n" |
| 160 | "Connection: close\r\n" |
| 161 | "Content-Type: text/html\r\n" |
| 162 | "\r\n" |
| 163 | "<html><body><h1>403 Forbidden</h1>\nRequest forbidden by administrative rules.\n</body></html>\n", |
| 164 | |
| 165 | [HTTP_ERR_408] = |
| 166 | "HTTP/1.0 408 Request Time-out\r\n" |
| 167 | "Cache-Control: no-cache\r\n" |
| 168 | "Connection: close\r\n" |
| 169 | "Content-Type: text/html\r\n" |
| 170 | "\r\n" |
| 171 | "<html><body><h1>408 Request Time-out</h1>\nYour browser didn't send a complete request in time.\n</body></html>\n", |
| 172 | |
| 173 | [HTTP_ERR_500] = |
| 174 | "HTTP/1.0 500 Server Error\r\n" |
| 175 | "Cache-Control: no-cache\r\n" |
| 176 | "Connection: close\r\n" |
| 177 | "Content-Type: text/html\r\n" |
| 178 | "\r\n" |
| 179 | "<html><body><h1>500 Server Error</h1>\nAn internal server error occured.\n</body></html>\n", |
| 180 | |
| 181 | [HTTP_ERR_502] = |
| 182 | "HTTP/1.0 502 Bad Gateway\r\n" |
| 183 | "Cache-Control: no-cache\r\n" |
| 184 | "Connection: close\r\n" |
| 185 | "Content-Type: text/html\r\n" |
| 186 | "\r\n" |
| 187 | "<html><body><h1>502 Bad Gateway</h1>\nThe server returned an invalid or incomplete response.\n</body></html>\n", |
| 188 | |
| 189 | [HTTP_ERR_503] = |
| 190 | "HTTP/1.0 503 Service Unavailable\r\n" |
| 191 | "Cache-Control: no-cache\r\n" |
| 192 | "Connection: close\r\n" |
| 193 | "Content-Type: text/html\r\n" |
| 194 | "\r\n" |
| 195 | "<html><body><h1>503 Service Unavailable</h1>\nNo server is available to handle this request.\n</body></html>\n", |
| 196 | |
| 197 | [HTTP_ERR_504] = |
| 198 | "HTTP/1.0 504 Gateway Time-out\r\n" |
| 199 | "Cache-Control: no-cache\r\n" |
| 200 | "Connection: close\r\n" |
| 201 | "Content-Type: text/html\r\n" |
| 202 | "\r\n" |
| 203 | "<html><body><h1>504 Gateway Time-out</h1>\nThe server didn't respond in time.\n</body></html>\n", |
| 204 | |
| 205 | }; |
| 206 | |
Cyril Bonté | 19979e1 | 2012-04-04 12:57:21 +0200 | [diff] [blame] | 207 | /* status codes available for the stats admin page (strictly 4 chars length) */ |
| 208 | const char *stat_status_codes[STAT_STATUS_SIZE] = { |
| 209 | [STAT_STATUS_DENY] = "DENY", |
| 210 | [STAT_STATUS_DONE] = "DONE", |
| 211 | [STAT_STATUS_ERRP] = "ERRP", |
| 212 | [STAT_STATUS_EXCD] = "EXCD", |
| 213 | [STAT_STATUS_NONE] = "NONE", |
| 214 | [STAT_STATUS_PART] = "PART", |
| 215 | [STAT_STATUS_UNKN] = "UNKN", |
| 216 | }; |
| 217 | |
| 218 | |
Willy Tarreau | 8058743 | 2006-12-24 17:47:20 +0100 | [diff] [blame] | 219 | /* We must put the messages here since GCC cannot initialize consts depending |
| 220 | * on strlen(). |
| 221 | */ |
| 222 | struct chunk http_err_chunks[HTTP_ERR_SIZE]; |
| 223 | |
Willy Tarreau | a890d07 | 2013-04-02 12:01:06 +0200 | [diff] [blame] | 224 | /* this struct is used between calls to smp_fetch_hdr() or smp_fetch_cookie() */ |
| 225 | static struct hdr_ctx static_hdr_ctx; |
| 226 | |
Willy Tarreau | 4225058 | 2007-04-01 01:30:43 +0200 | [diff] [blame] | 227 | #define FD_SETS_ARE_BITFIELDS |
| 228 | #ifdef FD_SETS_ARE_BITFIELDS |
| 229 | /* |
| 230 | * This map is used with all the FD_* macros to check whether a particular bit |
| 231 | * is set or not. Each bit represents an ACSII code. FD_SET() sets those bytes |
| 232 | * which should be encoded. When FD_ISSET() returns non-zero, it means that the |
| 233 | * byte should be encoded. Be careful to always pass bytes from 0 to 255 |
| 234 | * exclusively to the macros. |
| 235 | */ |
| 236 | fd_set hdr_encode_map[(sizeof(fd_set) > (256/8)) ? 1 : ((256/8) / sizeof(fd_set))]; |
| 237 | 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] | 238 | 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] | 239 | |
| 240 | #else |
| 241 | #error "Check if your OS uses bitfields for fd_sets" |
| 242 | #endif |
| 243 | |
Willy Tarreau | 8058743 | 2006-12-24 17:47:20 +0100 | [diff] [blame] | 244 | void init_proto_http() |
| 245 | { |
Willy Tarreau | 4225058 | 2007-04-01 01:30:43 +0200 | [diff] [blame] | 246 | int i; |
| 247 | char *tmp; |
Willy Tarreau | 8058743 | 2006-12-24 17:47:20 +0100 | [diff] [blame] | 248 | int msg; |
Willy Tarreau | 4225058 | 2007-04-01 01:30:43 +0200 | [diff] [blame] | 249 | |
Willy Tarreau | 8058743 | 2006-12-24 17:47:20 +0100 | [diff] [blame] | 250 | for (msg = 0; msg < HTTP_ERR_SIZE; msg++) { |
| 251 | if (!http_err_msgs[msg]) { |
| 252 | Alert("Internal error: no message defined for HTTP return code %d. Aborting.\n", msg); |
| 253 | abort(); |
| 254 | } |
| 255 | |
| 256 | http_err_chunks[msg].str = (char *)http_err_msgs[msg]; |
| 257 | http_err_chunks[msg].len = strlen(http_err_msgs[msg]); |
| 258 | } |
Willy Tarreau | 4225058 | 2007-04-01 01:30:43 +0200 | [diff] [blame] | 259 | |
| 260 | /* initialize the log header encoding map : '{|}"#' should be encoded with |
| 261 | * '#' as prefix, as well as non-printable characters ( <32 or >= 127 ). |
| 262 | * URL encoding only requires '"', '#' to be encoded as well as non- |
| 263 | * printable characters above. |
| 264 | */ |
| 265 | memset(hdr_encode_map, 0, sizeof(hdr_encode_map)); |
| 266 | memset(url_encode_map, 0, sizeof(url_encode_map)); |
Thierry FOURNIER | d048d8b | 2014-03-13 16:46:18 +0100 | [diff] [blame] | 267 | memset(http_encode_map, 0, sizeof(url_encode_map)); |
Willy Tarreau | 4225058 | 2007-04-01 01:30:43 +0200 | [diff] [blame] | 268 | for (i = 0; i < 32; i++) { |
| 269 | FD_SET(i, hdr_encode_map); |
| 270 | FD_SET(i, url_encode_map); |
| 271 | } |
| 272 | for (i = 127; i < 256; i++) { |
| 273 | FD_SET(i, hdr_encode_map); |
| 274 | FD_SET(i, url_encode_map); |
| 275 | } |
| 276 | |
| 277 | tmp = "\"#{|}"; |
| 278 | while (*tmp) { |
| 279 | FD_SET(*tmp, hdr_encode_map); |
| 280 | tmp++; |
| 281 | } |
| 282 | |
| 283 | tmp = "\"#"; |
| 284 | while (*tmp) { |
| 285 | FD_SET(*tmp, url_encode_map); |
| 286 | tmp++; |
| 287 | } |
Willy Tarreau | 332f8bf | 2007-05-13 21:36:56 +0200 | [diff] [blame] | 288 | |
Thierry FOURNIER | d048d8b | 2014-03-13 16:46:18 +0100 | [diff] [blame] | 289 | /* initialize the http header encoding map. The draft httpbis define the |
| 290 | * header content as: |
| 291 | * |
| 292 | * HTTP-message = start-line |
| 293 | * *( header-field CRLF ) |
| 294 | * CRLF |
| 295 | * [ message-body ] |
| 296 | * header-field = field-name ":" OWS field-value OWS |
| 297 | * field-value = *( field-content / obs-fold ) |
| 298 | * field-content = field-vchar [ 1*( SP / HTAB ) field-vchar ] |
| 299 | * obs-fold = CRLF 1*( SP / HTAB ) |
| 300 | * field-vchar = VCHAR / obs-text |
| 301 | * VCHAR = %x21-7E |
| 302 | * obs-text = %x80-FF |
| 303 | * |
| 304 | * All the chars are encoded except "VCHAR", "obs-text", SP and HTAB. |
| 305 | * The encoded chars are form 0x00 to 0x08, 0x0a to 0x1f and 0x7f. The |
| 306 | * "obs-fold" is volontary forgotten because haproxy remove this. |
| 307 | */ |
| 308 | memset(http_encode_map, 0, sizeof(http_encode_map)); |
| 309 | for (i = 0x00; i <= 0x08; i++) |
| 310 | FD_SET(i, http_encode_map); |
| 311 | for (i = 0x0a; i <= 0x1f; i++) |
| 312 | FD_SET(i, http_encode_map); |
| 313 | FD_SET(0x7f, http_encode_map); |
| 314 | |
Willy Tarreau | 332f8bf | 2007-05-13 21:36:56 +0200 | [diff] [blame] | 315 | /* memory allocations */ |
| 316 | pool2_requri = create_pool("requri", REQURI_LEN, MEM_F_SHARED); |
William Lallemand | a73203e | 2012-03-12 12:48:57 +0100 | [diff] [blame] | 317 | pool2_uniqueid = create_pool("uniqueid", UNIQUEID_LEN, MEM_F_SHARED); |
Willy Tarreau | 8058743 | 2006-12-24 17:47:20 +0100 | [diff] [blame] | 318 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 319 | |
Willy Tarreau | 53b6c74 | 2006-12-17 13:37:46 +0100 | [diff] [blame] | 320 | /* |
| 321 | * We have 26 list of methods (1 per first letter), each of which can have |
| 322 | * up to 3 entries (2 valid, 1 null). |
| 323 | */ |
| 324 | struct http_method_desc { |
Willy Tarreau | c8987b3 | 2013-12-06 23:43:17 +0100 | [diff] [blame] | 325 | enum http_meth_t meth; |
Willy Tarreau | 53b6c74 | 2006-12-17 13:37:46 +0100 | [diff] [blame] | 326 | int len; |
| 327 | const char text[8]; |
| 328 | }; |
| 329 | |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 330 | const struct http_method_desc http_methods[26][3] = { |
Willy Tarreau | 53b6c74 | 2006-12-17 13:37:46 +0100 | [diff] [blame] | 331 | ['C' - 'A'] = { |
| 332 | [0] = { .meth = HTTP_METH_CONNECT , .len=7, .text="CONNECT" }, |
| 333 | }, |
| 334 | ['D' - 'A'] = { |
| 335 | [0] = { .meth = HTTP_METH_DELETE , .len=6, .text="DELETE" }, |
| 336 | }, |
| 337 | ['G' - 'A'] = { |
| 338 | [0] = { .meth = HTTP_METH_GET , .len=3, .text="GET" }, |
| 339 | }, |
| 340 | ['H' - 'A'] = { |
| 341 | [0] = { .meth = HTTP_METH_HEAD , .len=4, .text="HEAD" }, |
| 342 | }, |
| 343 | ['P' - 'A'] = { |
| 344 | [0] = { .meth = HTTP_METH_POST , .len=4, .text="POST" }, |
| 345 | [1] = { .meth = HTTP_METH_PUT , .len=3, .text="PUT" }, |
| 346 | }, |
| 347 | ['T' - 'A'] = { |
| 348 | [0] = { .meth = HTTP_METH_TRACE , .len=5, .text="TRACE" }, |
| 349 | }, |
| 350 | /* rest is empty like this : |
| 351 | * [1] = { .meth = HTTP_METH_NONE , .len=0, .text="" }, |
| 352 | */ |
| 353 | }; |
| 354 | |
Thierry FOURNIER | d437314 | 2013-12-17 01:10:10 +0100 | [diff] [blame] | 355 | const struct http_method_name http_known_methods[HTTP_METH_OTHER] = { |
| 356 | [HTTP_METH_NONE] = { "", 0 }, |
| 357 | [HTTP_METH_OPTIONS] = { "OPTIONS", 7 }, |
| 358 | [HTTP_METH_GET] = { "GET", 3 }, |
| 359 | [HTTP_METH_HEAD] = { "HEAD", 4 }, |
| 360 | [HTTP_METH_POST] = { "POST", 4 }, |
| 361 | [HTTP_METH_PUT] = { "PUT", 3 }, |
| 362 | [HTTP_METH_DELETE] = { "DELETE", 6 }, |
| 363 | [HTTP_METH_TRACE] = { "TRACE", 5 }, |
| 364 | [HTTP_METH_CONNECT] = { "CONNECT", 7 }, |
| 365 | }; |
| 366 | |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 367 | /* 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] | 368 | * 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] | 369 | * RFC2616 for those chars. |
| 370 | */ |
| 371 | |
| 372 | const char http_is_spht[256] = { |
| 373 | [' '] = 1, ['\t'] = 1, |
| 374 | }; |
| 375 | |
| 376 | const char http_is_crlf[256] = { |
| 377 | ['\r'] = 1, ['\n'] = 1, |
| 378 | }; |
| 379 | |
| 380 | const char http_is_lws[256] = { |
| 381 | [' '] = 1, ['\t'] = 1, |
| 382 | ['\r'] = 1, ['\n'] = 1, |
| 383 | }; |
| 384 | |
| 385 | const char http_is_sep[256] = { |
| 386 | ['('] = 1, [')'] = 1, ['<'] = 1, ['>'] = 1, |
| 387 | ['@'] = 1, [','] = 1, [';'] = 1, [':'] = 1, |
| 388 | ['"'] = 1, ['/'] = 1, ['['] = 1, [']'] = 1, |
| 389 | ['{'] = 1, ['}'] = 1, ['?'] = 1, ['='] = 1, |
| 390 | [' '] = 1, ['\t'] = 1, ['\\'] = 1, |
| 391 | }; |
| 392 | |
| 393 | const char http_is_ctl[256] = { |
| 394 | [0 ... 31] = 1, |
| 395 | [127] = 1, |
| 396 | }; |
| 397 | |
| 398 | /* |
| 399 | * A token is any ASCII char that is neither a separator nor a CTL char. |
| 400 | * Do not overwrite values in assignment since gcc-2.95 will not handle |
| 401 | * them correctly. Instead, define every non-CTL char's status. |
| 402 | */ |
| 403 | const char http_is_token[256] = { |
| 404 | [' '] = 0, ['!'] = 1, ['"'] = 0, ['#'] = 1, |
| 405 | ['$'] = 1, ['%'] = 1, ['&'] = 1, ['\''] = 1, |
| 406 | ['('] = 0, [')'] = 0, ['*'] = 1, ['+'] = 1, |
| 407 | [','] = 0, ['-'] = 1, ['.'] = 1, ['/'] = 0, |
| 408 | ['0'] = 1, ['1'] = 1, ['2'] = 1, ['3'] = 1, |
| 409 | ['4'] = 1, ['5'] = 1, ['6'] = 1, ['7'] = 1, |
| 410 | ['8'] = 1, ['9'] = 1, [':'] = 0, [';'] = 0, |
| 411 | ['<'] = 0, ['='] = 0, ['>'] = 0, ['?'] = 0, |
| 412 | ['@'] = 0, ['A'] = 1, ['B'] = 1, ['C'] = 1, |
| 413 | ['D'] = 1, ['E'] = 1, ['F'] = 1, ['G'] = 1, |
| 414 | ['H'] = 1, ['I'] = 1, ['J'] = 1, ['K'] = 1, |
| 415 | ['L'] = 1, ['M'] = 1, ['N'] = 1, ['O'] = 1, |
| 416 | ['P'] = 1, ['Q'] = 1, ['R'] = 1, ['S'] = 1, |
| 417 | ['T'] = 1, ['U'] = 1, ['V'] = 1, ['W'] = 1, |
| 418 | ['X'] = 1, ['Y'] = 1, ['Z'] = 1, ['['] = 0, |
| 419 | ['\\'] = 0, [']'] = 0, ['^'] = 1, ['_'] = 1, |
| 420 | ['`'] = 1, ['a'] = 1, ['b'] = 1, ['c'] = 1, |
| 421 | ['d'] = 1, ['e'] = 1, ['f'] = 1, ['g'] = 1, |
| 422 | ['h'] = 1, ['i'] = 1, ['j'] = 1, ['k'] = 1, |
| 423 | ['l'] = 1, ['m'] = 1, ['n'] = 1, ['o'] = 1, |
| 424 | ['p'] = 1, ['q'] = 1, ['r'] = 1, ['s'] = 1, |
| 425 | ['t'] = 1, ['u'] = 1, ['v'] = 1, ['w'] = 1, |
| 426 | ['x'] = 1, ['y'] = 1, ['z'] = 1, ['{'] = 0, |
| 427 | ['|'] = 1, ['}'] = 0, ['~'] = 1, |
| 428 | }; |
| 429 | |
| 430 | |
Willy Tarreau | 4b89ad4 | 2007-03-04 18:13:58 +0100 | [diff] [blame] | 431 | /* |
| 432 | * An http ver_token is any ASCII which can be found in an HTTP version, |
| 433 | * which includes 'H', 'T', 'P', '/', '.' and any digit. |
| 434 | */ |
| 435 | const char http_is_ver_token[256] = { |
| 436 | ['.'] = 1, ['/'] = 1, |
| 437 | ['0'] = 1, ['1'] = 1, ['2'] = 1, ['3'] = 1, ['4'] = 1, |
| 438 | ['5'] = 1, ['6'] = 1, ['7'] = 1, ['8'] = 1, ['9'] = 1, |
| 439 | ['H'] = 1, ['P'] = 1, ['T'] = 1, |
| 440 | }; |
| 441 | |
| 442 | |
Willy Tarreau | 4af6f3a | 2007-03-18 22:36:26 +0100 | [diff] [blame] | 443 | /* |
Willy Tarreau | e988a79 | 2010-01-04 21:13:14 +0100 | [diff] [blame] | 444 | * Silent debug that outputs only in strace, using fd #-1. Trash is modified. |
| 445 | */ |
| 446 | #if defined(DEBUG_FSM) |
| 447 | static void http_silent_debug(int line, struct session *s) |
| 448 | { |
Willy Tarreau | 19d14ef | 2012-10-29 16:51:55 +0100 | [diff] [blame] | 449 | chunk_printf(&trash, |
| 450 | "[%04d] req: p=%d(%d) s=%d bf=%08x an=%08x data=%p size=%d l=%d w=%p r=%p o=%p sm=%d fw=%ld tf=%08x\n", |
| 451 | line, |
| 452 | s->si[0].state, s->si[0].fd, s->txn.req.msg_state, s->req->flags, s->req->analysers, |
| 453 | s->req->buf->data, s->req->buf->size, s->req->l, s->req->w, s->req->r, s->req->buf->p, s->req->buf->o, s->req->to_forward, s->txn.flags); |
| 454 | write(-1, trash.str, trash.len); |
Willy Tarreau | e988a79 | 2010-01-04 21:13:14 +0100 | [diff] [blame] | 455 | |
Willy Tarreau | 19d14ef | 2012-10-29 16:51:55 +0100 | [diff] [blame] | 456 | chunk_printf(&trash, |
| 457 | " %04d rep: p=%d(%d) s=%d bf=%08x an=%08x data=%p size=%d l=%d w=%p r=%p o=%p sm=%d fw=%ld\n", |
| 458 | line, |
| 459 | s->si[1].state, s->si[1].fd, s->txn.rsp.msg_state, s->rep->flags, s->rep->analysers, |
| 460 | s->rep->buf->data, s->rep->buf->size, s->rep->l, s->rep->w, s->rep->r, s->rep->buf->p, s->rep->buf->o, s->rep->to_forward); |
| 461 | write(-1, trash.str, trash.len); |
Willy Tarreau | e988a79 | 2010-01-04 21:13:14 +0100 | [diff] [blame] | 462 | } |
| 463 | #else |
| 464 | #define http_silent_debug(l,s) do { } while (0) |
| 465 | #endif |
| 466 | |
| 467 | /* |
Willy Tarreau | 6acf7c9 | 2012-03-09 13:30:45 +0100 | [diff] [blame] | 468 | * Adds a header and its CRLF at the tail of the message's buffer, just before |
| 469 | * 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] | 470 | * The header is also automatically added to the index <hdr_idx>, and the end |
| 471 | * of headers is automatically adjusted. The number of bytes added is returned |
| 472 | * on success, otherwise <0 is returned indicating an error. |
| 473 | */ |
Willy Tarreau | 6acf7c9 | 2012-03-09 13:30:45 +0100 | [diff] [blame] | 474 | 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] | 475 | { |
| 476 | int bytes, len; |
| 477 | |
| 478 | len = strlen(text); |
Willy Tarreau | 9b28e03 | 2012-10-12 23:49:43 +0200 | [diff] [blame] | 479 | 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] | 480 | if (!bytes) |
| 481 | return -1; |
Willy Tarreau | fa355d4 | 2009-11-29 18:12:29 +0100 | [diff] [blame] | 482 | http_msg_move_end(msg, bytes); |
Willy Tarreau | 4af6f3a | 2007-03-18 22:36:26 +0100 | [diff] [blame] | 483 | return hdr_idx_add(len, 1, hdr_idx, hdr_idx->tail); |
| 484 | } |
| 485 | |
| 486 | /* |
Willy Tarreau | 6acf7c9 | 2012-03-09 13:30:45 +0100 | [diff] [blame] | 487 | * Adds a header and its CRLF at the tail of the message's buffer, just before |
| 488 | * 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] | 489 | * the buffer is only opened and the space reserved, but nothing is copied. |
| 490 | * The header is also automatically added to the index <hdr_idx>, and the end |
| 491 | * of headers is automatically adjusted. The number of bytes added is returned |
| 492 | * on success, otherwise <0 is returned indicating an error. |
| 493 | */ |
Willy Tarreau | 6acf7c9 | 2012-03-09 13:30:45 +0100 | [diff] [blame] | 494 | int http_header_add_tail2(struct http_msg *msg, |
| 495 | struct hdr_idx *hdr_idx, const char *text, int len) |
Willy Tarreau | 4af6f3a | 2007-03-18 22:36:26 +0100 | [diff] [blame] | 496 | { |
| 497 | int bytes; |
| 498 | |
Willy Tarreau | 9b28e03 | 2012-10-12 23:49:43 +0200 | [diff] [blame] | 499 | 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] | 500 | if (!bytes) |
| 501 | return -1; |
Willy Tarreau | fa355d4 | 2009-11-29 18:12:29 +0100 | [diff] [blame] | 502 | http_msg_move_end(msg, bytes); |
Willy Tarreau | 4af6f3a | 2007-03-18 22:36:26 +0100 | [diff] [blame] | 503 | return hdr_idx_add(len, 1, hdr_idx, hdr_idx->tail); |
| 504 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 505 | |
| 506 | /* |
Willy Tarreau | aa9dce3 | 2007-03-18 23:50:16 +0100 | [diff] [blame] | 507 | * Checks if <hdr> is exactly <name> for <len> chars, and ends with a colon. |
| 508 | * If so, returns the position of the first non-space character relative to |
| 509 | * <hdr>, or <end>-<hdr> if not found before. If no value is found, it tries |
| 510 | * to return a pointer to the place after the first space. Returns 0 if the |
| 511 | * header name does not match. Checks are case-insensitive. |
| 512 | */ |
| 513 | int http_header_match2(const char *hdr, const char *end, |
| 514 | const char *name, int len) |
| 515 | { |
| 516 | const char *val; |
| 517 | |
| 518 | if (hdr + len >= end) |
| 519 | return 0; |
| 520 | if (hdr[len] != ':') |
| 521 | return 0; |
| 522 | if (strncasecmp(hdr, name, len) != 0) |
| 523 | return 0; |
| 524 | val = hdr + len + 1; |
| 525 | while (val < end && HTTP_IS_SPHT(*val)) |
| 526 | val++; |
| 527 | if ((val >= end) && (len + 2 <= end - hdr)) |
| 528 | return len + 2; /* we may replace starting from second space */ |
| 529 | return val - hdr; |
| 530 | } |
| 531 | |
Willy Tarreau | 04ff9f1 | 2013-06-10 18:39:42 +0200 | [diff] [blame] | 532 | /* Find the first or next occurrence of header <name> in message buffer <sol> |
| 533 | * using headers index <idx>, and return it in the <ctx> structure. This |
| 534 | * structure holds everything necessary to use the header and find next |
| 535 | * occurrence. If its <idx> member is 0, the header is searched from the |
| 536 | * beginning. Otherwise, the next occurrence is returned. The function returns |
| 537 | * 1 when it finds a value, and 0 when there is no more. It is very similar to |
| 538 | * http_find_header2() except that it is designed to work with full-line headers |
| 539 | * whose comma is not a delimiter but is part of the syntax. As a special case, |
| 540 | * if ctx->val is NULL when searching for a new values of a header, the current |
| 541 | * header is rescanned. This allows rescanning after a header deletion. |
| 542 | */ |
| 543 | int http_find_full_header2(const char *name, int len, |
| 544 | char *sol, struct hdr_idx *idx, |
| 545 | struct hdr_ctx *ctx) |
| 546 | { |
| 547 | char *eol, *sov; |
| 548 | int cur_idx, old_idx; |
| 549 | |
| 550 | cur_idx = ctx->idx; |
| 551 | if (cur_idx) { |
| 552 | /* We have previously returned a header, let's search another one */ |
| 553 | sol = ctx->line; |
| 554 | eol = sol + idx->v[cur_idx].len; |
| 555 | goto next_hdr; |
| 556 | } |
| 557 | |
| 558 | /* first request for this header */ |
| 559 | sol += hdr_idx_first_pos(idx); |
| 560 | old_idx = 0; |
| 561 | cur_idx = hdr_idx_first_idx(idx); |
| 562 | while (cur_idx) { |
| 563 | eol = sol + idx->v[cur_idx].len; |
| 564 | |
| 565 | if (len == 0) { |
| 566 | /* No argument was passed, we want any header. |
| 567 | * To achieve this, we simply build a fake request. */ |
| 568 | while (sol + len < eol && sol[len] != ':') |
| 569 | len++; |
| 570 | name = sol; |
| 571 | } |
| 572 | |
| 573 | if ((len < eol - sol) && |
| 574 | (sol[len] == ':') && |
| 575 | (strncasecmp(sol, name, len) == 0)) { |
| 576 | ctx->del = len; |
| 577 | sov = sol + len + 1; |
| 578 | while (sov < eol && http_is_lws[(unsigned char)*sov]) |
| 579 | sov++; |
| 580 | |
| 581 | ctx->line = sol; |
| 582 | ctx->prev = old_idx; |
| 583 | ctx->idx = cur_idx; |
| 584 | ctx->val = sov - sol; |
| 585 | ctx->tws = 0; |
| 586 | while (eol > sov && http_is_lws[(unsigned char)*(eol - 1)]) { |
| 587 | eol--; |
| 588 | ctx->tws++; |
| 589 | } |
| 590 | ctx->vlen = eol - sov; |
| 591 | return 1; |
| 592 | } |
| 593 | next_hdr: |
| 594 | sol = eol + idx->v[cur_idx].cr + 1; |
| 595 | old_idx = cur_idx; |
| 596 | cur_idx = idx->v[cur_idx].next; |
| 597 | } |
| 598 | return 0; |
| 599 | } |
| 600 | |
Willy Tarreau | 68085d8 | 2010-01-18 14:54:04 +0100 | [diff] [blame] | 601 | /* Find the end of the header value contained between <s> and <e>. See RFC2616, |
| 602 | * par 2.2 for more information. Note that it requires a valid header to return |
| 603 | * a valid result. This works for headers defined as comma-separated lists. |
Willy Tarreau | 33a7e69 | 2007-06-10 19:45:56 +0200 | [diff] [blame] | 604 | */ |
Willy Tarreau | 68085d8 | 2010-01-18 14:54:04 +0100 | [diff] [blame] | 605 | char *find_hdr_value_end(char *s, const char *e) |
Willy Tarreau | 33a7e69 | 2007-06-10 19:45:56 +0200 | [diff] [blame] | 606 | { |
| 607 | int quoted, qdpair; |
| 608 | |
| 609 | quoted = qdpair = 0; |
| 610 | for (; s < e; s++) { |
| 611 | if (qdpair) qdpair = 0; |
Willy Tarreau | 0f7f51f | 2010-08-30 11:06:34 +0200 | [diff] [blame] | 612 | else if (quoted) { |
| 613 | if (*s == '\\') qdpair = 1; |
| 614 | else if (*s == '"') quoted = 0; |
| 615 | } |
Willy Tarreau | 33a7e69 | 2007-06-10 19:45:56 +0200 | [diff] [blame] | 616 | else if (*s == '"') quoted = 1; |
| 617 | else if (*s == ',') return s; |
| 618 | } |
| 619 | return s; |
| 620 | } |
| 621 | |
| 622 | /* Find the first or next occurrence of header <name> in message buffer <sol> |
| 623 | * using headers index <idx>, and return it in the <ctx> structure. This |
| 624 | * structure holds everything necessary to use the header and find next |
| 625 | * occurrence. If its <idx> member is 0, the header is searched from the |
| 626 | * beginning. Otherwise, the next occurrence is returned. The function returns |
Willy Tarreau | 68085d8 | 2010-01-18 14:54:04 +0100 | [diff] [blame] | 627 | * 1 when it finds a value, and 0 when there is no more. It is designed to work |
| 628 | * with headers defined as comma-separated lists. As a special case, if ctx->val |
| 629 | * is NULL when searching for a new values of a header, the current header is |
| 630 | * rescanned. This allows rescanning after a header deletion. |
Willy Tarreau | 33a7e69 | 2007-06-10 19:45:56 +0200 | [diff] [blame] | 631 | */ |
| 632 | int http_find_header2(const char *name, int len, |
Willy Tarreau | 68085d8 | 2010-01-18 14:54:04 +0100 | [diff] [blame] | 633 | char *sol, struct hdr_idx *idx, |
Willy Tarreau | 33a7e69 | 2007-06-10 19:45:56 +0200 | [diff] [blame] | 634 | struct hdr_ctx *ctx) |
| 635 | { |
Willy Tarreau | 68085d8 | 2010-01-18 14:54:04 +0100 | [diff] [blame] | 636 | char *eol, *sov; |
| 637 | int cur_idx, old_idx; |
Willy Tarreau | 33a7e69 | 2007-06-10 19:45:56 +0200 | [diff] [blame] | 638 | |
Willy Tarreau | 68085d8 | 2010-01-18 14:54:04 +0100 | [diff] [blame] | 639 | cur_idx = ctx->idx; |
| 640 | if (cur_idx) { |
Willy Tarreau | 33a7e69 | 2007-06-10 19:45:56 +0200 | [diff] [blame] | 641 | /* We have previously returned a value, let's search |
| 642 | * another one on the same line. |
| 643 | */ |
Willy Tarreau | 33a7e69 | 2007-06-10 19:45:56 +0200 | [diff] [blame] | 644 | sol = ctx->line; |
Willy Tarreau | 588bd4f | 2011-09-01 22:22:28 +0200 | [diff] [blame] | 645 | ctx->del = ctx->val + ctx->vlen + ctx->tws; |
Willy Tarreau | 68085d8 | 2010-01-18 14:54:04 +0100 | [diff] [blame] | 646 | sov = sol + ctx->del; |
Willy Tarreau | 33a7e69 | 2007-06-10 19:45:56 +0200 | [diff] [blame] | 647 | eol = sol + idx->v[cur_idx].len; |
| 648 | |
| 649 | if (sov >= eol) |
| 650 | /* no more values in this header */ |
| 651 | goto next_hdr; |
| 652 | |
Willy Tarreau | 68085d8 | 2010-01-18 14:54:04 +0100 | [diff] [blame] | 653 | /* values remaining for this header, skip the comma but save it |
| 654 | * for later use (eg: for header deletion). |
| 655 | */ |
Willy Tarreau | 33a7e69 | 2007-06-10 19:45:56 +0200 | [diff] [blame] | 656 | sov++; |
| 657 | while (sov < eol && http_is_lws[(unsigned char)*sov]) |
| 658 | sov++; |
| 659 | |
| 660 | goto return_hdr; |
| 661 | } |
| 662 | |
| 663 | /* first request for this header */ |
| 664 | sol += hdr_idx_first_pos(idx); |
Willy Tarreau | 68085d8 | 2010-01-18 14:54:04 +0100 | [diff] [blame] | 665 | old_idx = 0; |
Willy Tarreau | 33a7e69 | 2007-06-10 19:45:56 +0200 | [diff] [blame] | 666 | cur_idx = hdr_idx_first_idx(idx); |
Willy Tarreau | 33a7e69 | 2007-06-10 19:45:56 +0200 | [diff] [blame] | 667 | while (cur_idx) { |
| 668 | eol = sol + idx->v[cur_idx].len; |
| 669 | |
Willy Tarreau | 1ad7c6d | 2007-06-10 21:42:55 +0200 | [diff] [blame] | 670 | if (len == 0) { |
| 671 | /* No argument was passed, we want any header. |
| 672 | * To achieve this, we simply build a fake request. */ |
| 673 | while (sol + len < eol && sol[len] != ':') |
| 674 | len++; |
| 675 | name = sol; |
| 676 | } |
| 677 | |
Willy Tarreau | 33a7e69 | 2007-06-10 19:45:56 +0200 | [diff] [blame] | 678 | if ((len < eol - sol) && |
| 679 | (sol[len] == ':') && |
| 680 | (strncasecmp(sol, name, len) == 0)) { |
Willy Tarreau | 68085d8 | 2010-01-18 14:54:04 +0100 | [diff] [blame] | 681 | ctx->del = len; |
Willy Tarreau | 33a7e69 | 2007-06-10 19:45:56 +0200 | [diff] [blame] | 682 | sov = sol + len + 1; |
| 683 | while (sov < eol && http_is_lws[(unsigned char)*sov]) |
| 684 | sov++; |
Willy Tarreau | 68085d8 | 2010-01-18 14:54:04 +0100 | [diff] [blame] | 685 | |
Willy Tarreau | 33a7e69 | 2007-06-10 19:45:56 +0200 | [diff] [blame] | 686 | ctx->line = sol; |
Willy Tarreau | 68085d8 | 2010-01-18 14:54:04 +0100 | [diff] [blame] | 687 | ctx->prev = old_idx; |
| 688 | return_hdr: |
Willy Tarreau | 33a7e69 | 2007-06-10 19:45:56 +0200 | [diff] [blame] | 689 | ctx->idx = cur_idx; |
| 690 | ctx->val = sov - sol; |
| 691 | |
| 692 | eol = find_hdr_value_end(sov, eol); |
Willy Tarreau | 588bd4f | 2011-09-01 22:22:28 +0200 | [diff] [blame] | 693 | ctx->tws = 0; |
Willy Tarreau | 275600b | 2011-09-16 08:11:26 +0200 | [diff] [blame] | 694 | while (eol > sov && http_is_lws[(unsigned char)*(eol - 1)]) { |
Willy Tarreau | 588bd4f | 2011-09-01 22:22:28 +0200 | [diff] [blame] | 695 | eol--; |
| 696 | ctx->tws++; |
| 697 | } |
Willy Tarreau | 33a7e69 | 2007-06-10 19:45:56 +0200 | [diff] [blame] | 698 | ctx->vlen = eol - sov; |
| 699 | return 1; |
| 700 | } |
| 701 | next_hdr: |
| 702 | sol = eol + idx->v[cur_idx].cr + 1; |
Willy Tarreau | 68085d8 | 2010-01-18 14:54:04 +0100 | [diff] [blame] | 703 | old_idx = cur_idx; |
Willy Tarreau | 33a7e69 | 2007-06-10 19:45:56 +0200 | [diff] [blame] | 704 | cur_idx = idx->v[cur_idx].next; |
| 705 | } |
| 706 | return 0; |
| 707 | } |
| 708 | |
| 709 | int http_find_header(const char *name, |
Willy Tarreau | 68085d8 | 2010-01-18 14:54:04 +0100 | [diff] [blame] | 710 | char *sol, struct hdr_idx *idx, |
Willy Tarreau | 33a7e69 | 2007-06-10 19:45:56 +0200 | [diff] [blame] | 711 | struct hdr_ctx *ctx) |
| 712 | { |
| 713 | return http_find_header2(name, strlen(name), sol, idx, ctx); |
| 714 | } |
| 715 | |
Willy Tarreau | 68085d8 | 2010-01-18 14:54:04 +0100 | [diff] [blame] | 716 | /* Remove one value of a header. This only works on a <ctx> returned by one of |
| 717 | * the http_find_header functions. The value is removed, as well as surrounding |
| 718 | * 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] | 719 | * 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] | 720 | * message <msg>. The new index is returned. If it is zero, it means there is |
| 721 | * no more header, so any processing may stop. The ctx is always left in a form |
| 722 | * that can be handled by http_find_header2() to find next occurrence. |
| 723 | */ |
Willy Tarreau | 6acf7c9 | 2012-03-09 13:30:45 +0100 | [diff] [blame] | 724 | 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] | 725 | { |
| 726 | int cur_idx = ctx->idx; |
| 727 | char *sol = ctx->line; |
| 728 | struct hdr_idx_elem *hdr; |
| 729 | int delta, skip_comma; |
| 730 | |
| 731 | if (!cur_idx) |
| 732 | return 0; |
| 733 | |
| 734 | hdr = &idx->v[cur_idx]; |
Willy Tarreau | 588bd4f | 2011-09-01 22:22:28 +0200 | [diff] [blame] | 735 | if (sol[ctx->del] == ':' && ctx->val + ctx->vlen + ctx->tws == hdr->len) { |
Willy Tarreau | 68085d8 | 2010-01-18 14:54:04 +0100 | [diff] [blame] | 736 | /* 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] | 737 | 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] | 738 | http_msg_move_end(msg, delta); |
| 739 | idx->used--; |
| 740 | hdr->len = 0; /* unused entry */ |
| 741 | idx->v[ctx->prev].next = idx->v[ctx->idx].next; |
Willy Tarreau | 5c4784f | 2011-02-12 13:07:35 +0100 | [diff] [blame] | 742 | if (idx->tail == ctx->idx) |
| 743 | idx->tail = ctx->prev; |
Willy Tarreau | 68085d8 | 2010-01-18 14:54:04 +0100 | [diff] [blame] | 744 | ctx->idx = ctx->prev; /* walk back to the end of previous header */ |
| 745 | ctx->line -= idx->v[ctx->idx].len + idx->v[cur_idx].cr + 1; |
| 746 | 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] | 747 | ctx->tws = ctx->vlen = 0; |
Willy Tarreau | 68085d8 | 2010-01-18 14:54:04 +0100 | [diff] [blame] | 748 | return ctx->idx; |
| 749 | } |
| 750 | |
| 751 | /* 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] | 752 | * ctx->del+1 and ctx->val+ctx->vlen+ctx->tws+1 included. If it is the |
| 753 | * last entry of the list, we remove the last separator. |
Willy Tarreau | 68085d8 | 2010-01-18 14:54:04 +0100 | [diff] [blame] | 754 | */ |
| 755 | |
Willy Tarreau | 588bd4f | 2011-09-01 22:22:28 +0200 | [diff] [blame] | 756 | skip_comma = (ctx->val + ctx->vlen + ctx->tws == hdr->len) ? 0 : 1; |
Willy Tarreau | 9b28e03 | 2012-10-12 23:49:43 +0200 | [diff] [blame] | 757 | delta = buffer_replace2(msg->chn->buf, sol + ctx->del + skip_comma, |
Willy Tarreau | 588bd4f | 2011-09-01 22:22:28 +0200 | [diff] [blame] | 758 | sol + ctx->val + ctx->vlen + ctx->tws + skip_comma, |
Willy Tarreau | 68085d8 | 2010-01-18 14:54:04 +0100 | [diff] [blame] | 759 | NULL, 0); |
| 760 | hdr->len += delta; |
| 761 | http_msg_move_end(msg, delta); |
| 762 | ctx->val = ctx->del; |
Willy Tarreau | 588bd4f | 2011-09-01 22:22:28 +0200 | [diff] [blame] | 763 | ctx->tws = ctx->vlen = 0; |
Willy Tarreau | 68085d8 | 2010-01-18 14:54:04 +0100 | [diff] [blame] | 764 | return ctx->idx; |
| 765 | } |
| 766 | |
Willy Tarreau | 2d3d94c | 2008-11-30 20:20:08 +0100 | [diff] [blame] | 767 | /* This function handles a server error at the stream interface level. The |
| 768 | * stream interface is assumed to be already in a closed state. An optional |
| 769 | * message is copied into the input buffer, and an HTTP status code stored. |
| 770 | * 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] | 771 | * in this buffer will be lost. |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 772 | */ |
Willy Tarreau | 2d3d94c | 2008-11-30 20:20:08 +0100 | [diff] [blame] | 773 | static void http_server_error(struct session *t, struct stream_interface *si, |
| 774 | int err, int finst, int status, const struct chunk *msg) |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 775 | { |
Willy Tarreau | 8263d2b | 2012-08-28 00:06:31 +0200 | [diff] [blame] | 776 | channel_auto_read(si->ob); |
| 777 | channel_abort(si->ob); |
| 778 | channel_auto_close(si->ob); |
| 779 | channel_erase(si->ob); |
| 780 | channel_auto_close(si->ib); |
| 781 | channel_auto_read(si->ib); |
Willy Tarreau | 0f77253 | 2006-12-23 20:51:41 +0100 | [diff] [blame] | 782 | if (status > 0 && msg) { |
Willy Tarreau | 3bac9ff | 2007-03-18 17:31:28 +0100 | [diff] [blame] | 783 | t->txn.status = status; |
Willy Tarreau | 9dab5fc | 2012-05-07 11:56:55 +0200 | [diff] [blame] | 784 | bo_inject(si->ib, msg->str, msg->len); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 785 | } |
| 786 | if (!(t->flags & SN_ERR_MASK)) |
| 787 | t->flags |= err; |
| 788 | if (!(t->flags & SN_FINST_MASK)) |
| 789 | t->flags |= finst; |
| 790 | } |
| 791 | |
Willy Tarreau | 8058743 | 2006-12-24 17:47:20 +0100 | [diff] [blame] | 792 | /* This function returns the appropriate error location for the given session |
| 793 | * and message. |
| 794 | */ |
| 795 | |
Willy Tarreau | 783f258 | 2012-09-04 12:19:04 +0200 | [diff] [blame] | 796 | struct chunk *http_error_message(struct session *s, int msgnum) |
Willy Tarreau | 8058743 | 2006-12-24 17:47:20 +0100 | [diff] [blame] | 797 | { |
Willy Tarreau | e2e27a5 | 2007-04-01 00:01:37 +0200 | [diff] [blame] | 798 | if (s->be->errmsg[msgnum].str) |
| 799 | return &s->be->errmsg[msgnum]; |
Willy Tarreau | 8058743 | 2006-12-24 17:47:20 +0100 | [diff] [blame] | 800 | else if (s->fe->errmsg[msgnum].str) |
| 801 | return &s->fe->errmsg[msgnum]; |
| 802 | else |
| 803 | return &http_err_chunks[msgnum]; |
| 804 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 805 | |
Willy Tarreau | 53b6c74 | 2006-12-17 13:37:46 +0100 | [diff] [blame] | 806 | /* |
| 807 | * returns HTTP_METH_NONE if there is nothing valid to read (empty or non-text |
| 808 | * string), HTTP_METH_OTHER for unknown methods, or the identified method. |
| 809 | */ |
Thierry FOURNIER | d437314 | 2013-12-17 01:10:10 +0100 | [diff] [blame] | 810 | 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] | 811 | { |
| 812 | unsigned char m; |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 813 | const struct http_method_desc *h; |
Willy Tarreau | 53b6c74 | 2006-12-17 13:37:46 +0100 | [diff] [blame] | 814 | |
| 815 | m = ((unsigned)*str - 'A'); |
| 816 | |
| 817 | if (m < 26) { |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 818 | for (h = http_methods[m]; h->len > 0; h++) { |
| 819 | if (unlikely(h->len != len)) |
Willy Tarreau | 53b6c74 | 2006-12-17 13:37:46 +0100 | [diff] [blame] | 820 | continue; |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 821 | if (likely(memcmp(str, h->text, h->len) == 0)) |
Willy Tarreau | 53b6c74 | 2006-12-17 13:37:46 +0100 | [diff] [blame] | 822 | return h->meth; |
Willy Tarreau | 53b6c74 | 2006-12-17 13:37:46 +0100 | [diff] [blame] | 823 | }; |
| 824 | return HTTP_METH_OTHER; |
| 825 | } |
| 826 | return HTTP_METH_NONE; |
| 827 | |
| 828 | } |
| 829 | |
Willy Tarreau | 21d2af3 | 2008-02-14 20:25:24 +0100 | [diff] [blame] | 830 | /* Parse the URI from the given transaction (which is assumed to be in request |
| 831 | * phase) and look for the "/" beginning the PATH. If not found, return NULL. |
| 832 | * It is returned otherwise. |
| 833 | */ |
| 834 | static char * |
| 835 | http_get_path(struct http_txn *txn) |
| 836 | { |
| 837 | char *ptr, *end; |
| 838 | |
Willy Tarreau | 9b28e03 | 2012-10-12 23:49:43 +0200 | [diff] [blame] | 839 | ptr = txn->req.chn->buf->p + txn->req.sl.rq.u; |
Willy Tarreau | 21d2af3 | 2008-02-14 20:25:24 +0100 | [diff] [blame] | 840 | end = ptr + txn->req.sl.rq.u_l; |
| 841 | |
| 842 | if (ptr >= end) |
| 843 | return NULL; |
| 844 | |
| 845 | /* RFC2616, par. 5.1.2 : |
| 846 | * Request-URI = "*" | absuri | abspath | authority |
| 847 | */ |
| 848 | |
| 849 | if (*ptr == '*') |
| 850 | return NULL; |
| 851 | |
| 852 | if (isalpha((unsigned char)*ptr)) { |
| 853 | /* this is a scheme as described by RFC3986, par. 3.1 */ |
| 854 | ptr++; |
| 855 | while (ptr < end && |
| 856 | (isalnum((unsigned char)*ptr) || *ptr == '+' || *ptr == '-' || *ptr == '.')) |
| 857 | ptr++; |
| 858 | /* skip '://' */ |
| 859 | if (ptr == end || *ptr++ != ':') |
| 860 | return NULL; |
| 861 | if (ptr == end || *ptr++ != '/') |
| 862 | return NULL; |
| 863 | if (ptr == end || *ptr++ != '/') |
| 864 | return NULL; |
| 865 | } |
| 866 | /* skip [user[:passwd]@]host[:[port]] */ |
| 867 | |
| 868 | while (ptr < end && *ptr != '/') |
| 869 | ptr++; |
| 870 | |
| 871 | if (ptr == end) |
| 872 | return NULL; |
| 873 | |
| 874 | /* OK, we got the '/' ! */ |
| 875 | return ptr; |
| 876 | } |
| 877 | |
William Lallemand | 65ad6e1 | 2014-01-31 15:08:02 +0100 | [diff] [blame] | 878 | /* Parse the URI from the given string and look for the "/" beginning the PATH. |
| 879 | * If not found, return NULL. It is returned otherwise. |
| 880 | */ |
| 881 | static char * |
| 882 | http_get_path_from_string(char *str) |
| 883 | { |
| 884 | char *ptr = str; |
| 885 | |
| 886 | /* RFC2616, par. 5.1.2 : |
| 887 | * Request-URI = "*" | absuri | abspath | authority |
| 888 | */ |
| 889 | |
| 890 | if (*ptr == '*') |
| 891 | return NULL; |
| 892 | |
| 893 | if (isalpha((unsigned char)*ptr)) { |
| 894 | /* this is a scheme as described by RFC3986, par. 3.1 */ |
| 895 | ptr++; |
| 896 | while (isalnum((unsigned char)*ptr) || *ptr == '+' || *ptr == '-' || *ptr == '.') |
| 897 | ptr++; |
| 898 | /* skip '://' */ |
| 899 | if (*ptr == '\0' || *ptr++ != ':') |
| 900 | return NULL; |
| 901 | if (*ptr == '\0' || *ptr++ != '/') |
| 902 | return NULL; |
| 903 | if (*ptr == '\0' || *ptr++ != '/') |
| 904 | return NULL; |
| 905 | } |
| 906 | /* skip [user[:passwd]@]host[:[port]] */ |
| 907 | |
| 908 | while (*ptr != '\0' && *ptr != ' ' && *ptr != '/') |
| 909 | ptr++; |
| 910 | |
| 911 | if (*ptr == '\0' || *ptr == ' ') |
| 912 | return NULL; |
| 913 | |
| 914 | /* OK, we got the '/' ! */ |
| 915 | return ptr; |
| 916 | } |
| 917 | |
Willy Tarreau | 71241ab | 2012-12-27 11:30:54 +0100 | [diff] [blame] | 918 | /* Returns a 302 for a redirectable request that reaches a server working in |
| 919 | * in redirect mode. This may only be called just after the stream interface |
| 920 | * has moved to SI_ST_ASS. Unprocessable requests are left unchanged and will |
| 921 | * follow normal proxy processing. NOTE: this function is designed to support |
| 922 | * being called once data are scheduled for forwarding. |
Willy Tarreau | efb453c | 2008-10-26 20:49:47 +0100 | [diff] [blame] | 923 | */ |
Willy Tarreau | 71241ab | 2012-12-27 11:30:54 +0100 | [diff] [blame] | 924 | void http_perform_server_redirect(struct session *s, struct stream_interface *si) |
Willy Tarreau | efb453c | 2008-10-26 20:49:47 +0100 | [diff] [blame] | 925 | { |
| 926 | struct http_txn *txn; |
Willy Tarreau | 827aee9 | 2011-03-10 16:55:02 +0100 | [diff] [blame] | 927 | struct server *srv; |
Willy Tarreau | efb453c | 2008-10-26 20:49:47 +0100 | [diff] [blame] | 928 | char *path; |
Willy Tarreau | cde18fc | 2012-05-30 07:59:54 +0200 | [diff] [blame] | 929 | int len, rewind; |
Willy Tarreau | efb453c | 2008-10-26 20:49:47 +0100 | [diff] [blame] | 930 | |
| 931 | /* 1: create the response header */ |
Willy Tarreau | 19d14ef | 2012-10-29 16:51:55 +0100 | [diff] [blame] | 932 | trash.len = strlen(HTTP_302); |
| 933 | memcpy(trash.str, HTTP_302, trash.len); |
Willy Tarreau | efb453c | 2008-10-26 20:49:47 +0100 | [diff] [blame] | 934 | |
Willy Tarreau | 3fdb366 | 2012-11-12 00:42:33 +0100 | [diff] [blame] | 935 | srv = objt_server(s->target); |
Willy Tarreau | 827aee9 | 2011-03-10 16:55:02 +0100 | [diff] [blame] | 936 | |
Willy Tarreau | efb453c | 2008-10-26 20:49:47 +0100 | [diff] [blame] | 937 | /* 2: add the server's prefix */ |
Willy Tarreau | 19d14ef | 2012-10-29 16:51:55 +0100 | [diff] [blame] | 938 | if (trash.len + srv->rdr_len > trash.size) |
Willy Tarreau | efb453c | 2008-10-26 20:49:47 +0100 | [diff] [blame] | 939 | return; |
| 940 | |
Willy Tarreau | dcb75c4 | 2010-01-10 00:24:22 +0100 | [diff] [blame] | 941 | /* special prefix "/" means don't change URL */ |
Willy Tarreau | 827aee9 | 2011-03-10 16:55:02 +0100 | [diff] [blame] | 942 | if (srv->rdr_len != 1 || *srv->rdr_pfx != '/') { |
Willy Tarreau | 19d14ef | 2012-10-29 16:51:55 +0100 | [diff] [blame] | 943 | memcpy(trash.str + trash.len, srv->rdr_pfx, srv->rdr_len); |
| 944 | trash.len += srv->rdr_len; |
Willy Tarreau | dcb75c4 | 2010-01-10 00:24:22 +0100 | [diff] [blame] | 945 | } |
Willy Tarreau | efb453c | 2008-10-26 20:49:47 +0100 | [diff] [blame] | 946 | |
Willy Tarreau | cde18fc | 2012-05-30 07:59:54 +0200 | [diff] [blame] | 947 | /* 3: add the request URI. Since it was already forwarded, we need |
| 948 | * to temporarily rewind the buffer. |
| 949 | */ |
Willy Tarreau | efb453c | 2008-10-26 20:49:47 +0100 | [diff] [blame] | 950 | txn = &s->txn; |
Willy Tarreau | 9b28e03 | 2012-10-12 23:49:43 +0200 | [diff] [blame] | 951 | b_rew(s->req->buf, rewind = s->req->buf->o); |
Willy Tarreau | cde18fc | 2012-05-30 07:59:54 +0200 | [diff] [blame] | 952 | |
Willy Tarreau | efb453c | 2008-10-26 20:49:47 +0100 | [diff] [blame] | 953 | path = http_get_path(txn); |
Willy Tarreau | 9b28e03 | 2012-10-12 23:49:43 +0200 | [diff] [blame] | 954 | 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] | 955 | |
Willy Tarreau | 9b28e03 | 2012-10-12 23:49:43 +0200 | [diff] [blame] | 956 | b_adv(s->req->buf, rewind); |
Willy Tarreau | cde18fc | 2012-05-30 07:59:54 +0200 | [diff] [blame] | 957 | |
Willy Tarreau | efb453c | 2008-10-26 20:49:47 +0100 | [diff] [blame] | 958 | if (!path) |
| 959 | return; |
| 960 | |
Willy Tarreau | 19d14ef | 2012-10-29 16:51:55 +0100 | [diff] [blame] | 961 | if (trash.len + len > trash.size - 4) /* 4 for CRLF-CRLF */ |
Willy Tarreau | efb453c | 2008-10-26 20:49:47 +0100 | [diff] [blame] | 962 | return; |
| 963 | |
Willy Tarreau | 19d14ef | 2012-10-29 16:51:55 +0100 | [diff] [blame] | 964 | memcpy(trash.str + trash.len, path, len); |
| 965 | trash.len += len; |
Willy Tarreau | 88d349d | 2010-01-25 12:15:43 +0100 | [diff] [blame] | 966 | |
| 967 | if (unlikely(txn->flags & TX_USE_PX_CONN)) { |
Willy Tarreau | 19d14ef | 2012-10-29 16:51:55 +0100 | [diff] [blame] | 968 | memcpy(trash.str + trash.len, "\r\nProxy-Connection: close\r\n\r\n", 29); |
| 969 | trash.len += 29; |
Willy Tarreau | 88d349d | 2010-01-25 12:15:43 +0100 | [diff] [blame] | 970 | } else { |
Willy Tarreau | 19d14ef | 2012-10-29 16:51:55 +0100 | [diff] [blame] | 971 | memcpy(trash.str + trash.len, "\r\nConnection: close\r\n\r\n", 23); |
| 972 | trash.len += 23; |
Willy Tarreau | 88d349d | 2010-01-25 12:15:43 +0100 | [diff] [blame] | 973 | } |
Willy Tarreau | efb453c | 2008-10-26 20:49:47 +0100 | [diff] [blame] | 974 | |
| 975 | /* prepare to return without error. */ |
Willy Tarreau | 73b013b | 2012-05-21 16:31:45 +0200 | [diff] [blame] | 976 | si_shutr(si); |
| 977 | si_shutw(si); |
Willy Tarreau | efb453c | 2008-10-26 20:49:47 +0100 | [diff] [blame] | 978 | si->err_type = SI_ET_NONE; |
Willy Tarreau | efb453c | 2008-10-26 20:49:47 +0100 | [diff] [blame] | 979 | si->state = SI_ST_CLO; |
| 980 | |
| 981 | /* send the message */ |
Willy Tarreau | 570f221 | 2013-06-10 16:42:09 +0200 | [diff] [blame] | 982 | http_server_error(s, si, SN_ERR_LOCAL, SN_FINST_C, 302, &trash); |
Willy Tarreau | efb453c | 2008-10-26 20:49:47 +0100 | [diff] [blame] | 983 | |
| 984 | /* 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] | 985 | srv_inc_sess_ctr(srv); |
Bhaskar Maddala | a20cb85 | 2014-02-03 16:26:46 -0500 | [diff] [blame] | 986 | srv_set_sess_last(srv); |
Willy Tarreau | efb453c | 2008-10-26 20:49:47 +0100 | [diff] [blame] | 987 | } |
| 988 | |
Willy Tarreau | 0cac36f | 2008-11-30 20:44:17 +0100 | [diff] [blame] | 989 | /* Return the error message corresponding to si->err_type. It is assumed |
Willy Tarreau | efb453c | 2008-10-26 20:49:47 +0100 | [diff] [blame] | 990 | * that the server side is closed. Note that err_type is actually a |
| 991 | * bitmask, where almost only aborts may be cumulated with other |
| 992 | * values. We consider that aborted operations are more important |
| 993 | * than timeouts or errors due to the fact that nobody else in the |
| 994 | * logs might explain incomplete retries. All others should avoid |
| 995 | * being cumulated. It should normally not be possible to have multiple |
| 996 | * 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] | 997 | * Note that connection errors appearing on the second request of a keep-alive |
| 998 | * connection are not reported since this allows the client to retry. |
Willy Tarreau | efb453c | 2008-10-26 20:49:47 +0100 | [diff] [blame] | 999 | */ |
Willy Tarreau | 0cac36f | 2008-11-30 20:44:17 +0100 | [diff] [blame] | 1000 | void http_return_srv_error(struct session *s, struct stream_interface *si) |
Willy Tarreau | efb453c | 2008-10-26 20:49:47 +0100 | [diff] [blame] | 1001 | { |
Willy Tarreau | 0cac36f | 2008-11-30 20:44:17 +0100 | [diff] [blame] | 1002 | int err_type = si->err_type; |
Willy Tarreau | efb453c | 2008-10-26 20:49:47 +0100 | [diff] [blame] | 1003 | |
| 1004 | if (err_type & SI_ET_QUEUE_ABRT) |
Willy Tarreau | 2d3d94c | 2008-11-30 20:20:08 +0100 | [diff] [blame] | 1005 | http_server_error(s, si, SN_ERR_CLICL, SN_FINST_Q, |
Willy Tarreau | 783f258 | 2012-09-04 12:19:04 +0200 | [diff] [blame] | 1006 | 503, http_error_message(s, HTTP_ERR_503)); |
Willy Tarreau | efb453c | 2008-10-26 20:49:47 +0100 | [diff] [blame] | 1007 | else if (err_type & SI_ET_CONN_ABRT) |
Willy Tarreau | 2d3d94c | 2008-11-30 20:20:08 +0100 | [diff] [blame] | 1008 | http_server_error(s, si, SN_ERR_CLICL, SN_FINST_C, |
Willy Tarreau | 6b726ad | 2013-12-15 19:31:37 +0100 | [diff] [blame] | 1009 | 503, (s->txn.flags & TX_NOT_FIRST) ? NULL : |
| 1010 | http_error_message(s, HTTP_ERR_503)); |
Willy Tarreau | efb453c | 2008-10-26 20:49:47 +0100 | [diff] [blame] | 1011 | else if (err_type & SI_ET_QUEUE_TO) |
Willy Tarreau | 2d3d94c | 2008-11-30 20:20:08 +0100 | [diff] [blame] | 1012 | http_server_error(s, si, SN_ERR_SRVTO, SN_FINST_Q, |
Willy Tarreau | 783f258 | 2012-09-04 12:19:04 +0200 | [diff] [blame] | 1013 | 503, http_error_message(s, HTTP_ERR_503)); |
Willy Tarreau | efb453c | 2008-10-26 20:49:47 +0100 | [diff] [blame] | 1014 | else if (err_type & SI_ET_QUEUE_ERR) |
Willy Tarreau | 2d3d94c | 2008-11-30 20:20:08 +0100 | [diff] [blame] | 1015 | http_server_error(s, si, SN_ERR_SRVCL, SN_FINST_Q, |
Willy Tarreau | 783f258 | 2012-09-04 12:19:04 +0200 | [diff] [blame] | 1016 | 503, http_error_message(s, HTTP_ERR_503)); |
Willy Tarreau | efb453c | 2008-10-26 20:49:47 +0100 | [diff] [blame] | 1017 | else if (err_type & SI_ET_CONN_TO) |
Willy Tarreau | 2d3d94c | 2008-11-30 20:20:08 +0100 | [diff] [blame] | 1018 | http_server_error(s, si, SN_ERR_SRVTO, SN_FINST_C, |
Willy Tarreau | 6b726ad | 2013-12-15 19:31:37 +0100 | [diff] [blame] | 1019 | 503, (s->txn.flags & TX_NOT_FIRST) ? NULL : |
| 1020 | http_error_message(s, HTTP_ERR_503)); |
Willy Tarreau | efb453c | 2008-10-26 20:49:47 +0100 | [diff] [blame] | 1021 | else if (err_type & SI_ET_CONN_ERR) |
Willy Tarreau | 2d3d94c | 2008-11-30 20:20:08 +0100 | [diff] [blame] | 1022 | http_server_error(s, si, SN_ERR_SRVCL, SN_FINST_C, |
Willy Tarreau | 3634624 | 2014-02-24 18:26:30 +0100 | [diff] [blame] | 1023 | 503, (s->flags & SN_SRV_REUSED) ? NULL : |
Willy Tarreau | 6b726ad | 2013-12-15 19:31:37 +0100 | [diff] [blame] | 1024 | http_error_message(s, HTTP_ERR_503)); |
Willy Tarreau | 2d400bb | 2012-05-14 12:11:47 +0200 | [diff] [blame] | 1025 | else if (err_type & SI_ET_CONN_RES) |
| 1026 | http_server_error(s, si, SN_ERR_RESOURCE, SN_FINST_C, |
Willy Tarreau | 6b726ad | 2013-12-15 19:31:37 +0100 | [diff] [blame] | 1027 | 503, (s->txn.flags & TX_NOT_FIRST) ? NULL : |
| 1028 | http_error_message(s, HTTP_ERR_503)); |
Willy Tarreau | efb453c | 2008-10-26 20:49:47 +0100 | [diff] [blame] | 1029 | else /* SI_ET_CONN_OTHER and others */ |
Willy Tarreau | 2d3d94c | 2008-11-30 20:20:08 +0100 | [diff] [blame] | 1030 | http_server_error(s, si, SN_ERR_INTERNAL, SN_FINST_C, |
Willy Tarreau | 783f258 | 2012-09-04 12:19:04 +0200 | [diff] [blame] | 1031 | 500, http_error_message(s, HTTP_ERR_500)); |
Willy Tarreau | efb453c | 2008-10-26 20:49:47 +0100 | [diff] [blame] | 1032 | } |
| 1033 | |
Willy Tarreau | 4225058 | 2007-04-01 01:30:43 +0200 | [diff] [blame] | 1034 | extern const char sess_term_cond[8]; |
| 1035 | extern const char sess_fin_state[8]; |
| 1036 | extern const char *monthname[12]; |
Willy Tarreau | 332f8bf | 2007-05-13 21:36:56 +0200 | [diff] [blame] | 1037 | struct pool_head *pool2_requri; |
Willy Tarreau | 193b8c6 | 2012-11-22 00:17:38 +0100 | [diff] [blame] | 1038 | struct pool_head *pool2_capture = NULL; |
William Lallemand | a73203e | 2012-03-12 12:48:57 +0100 | [diff] [blame] | 1039 | struct pool_head *pool2_uniqueid; |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 1040 | |
Willy Tarreau | 117f59e | 2007-03-04 18:17:17 +0100 | [diff] [blame] | 1041 | /* |
| 1042 | * Capture headers from message starting at <som> according to header list |
| 1043 | * <cap_hdr>, and fill the <idx> structure appropriately. |
| 1044 | */ |
| 1045 | void capture_headers(char *som, struct hdr_idx *idx, |
| 1046 | char **cap, struct cap_hdr *cap_hdr) |
| 1047 | { |
| 1048 | char *eol, *sol, *col, *sov; |
| 1049 | int cur_idx; |
| 1050 | struct cap_hdr *h; |
| 1051 | int len; |
| 1052 | |
| 1053 | sol = som + hdr_idx_first_pos(idx); |
| 1054 | cur_idx = hdr_idx_first_idx(idx); |
| 1055 | |
| 1056 | while (cur_idx) { |
| 1057 | eol = sol + idx->v[cur_idx].len; |
| 1058 | |
| 1059 | col = sol; |
| 1060 | while (col < eol && *col != ':') |
| 1061 | col++; |
| 1062 | |
| 1063 | sov = col + 1; |
| 1064 | while (sov < eol && http_is_lws[(unsigned char)*sov]) |
| 1065 | sov++; |
| 1066 | |
| 1067 | for (h = cap_hdr; h; h = h->next) { |
| 1068 | if ((h->namelen == col - sol) && |
| 1069 | (strncasecmp(sol, h->name, h->namelen) == 0)) { |
| 1070 | if (cap[h->index] == NULL) |
| 1071 | cap[h->index] = |
Willy Tarreau | cf7f320 | 2007-05-13 22:46:04 +0200 | [diff] [blame] | 1072 | pool_alloc2(h->pool); |
Willy Tarreau | 117f59e | 2007-03-04 18:17:17 +0100 | [diff] [blame] | 1073 | |
| 1074 | if (cap[h->index] == NULL) { |
| 1075 | Alert("HTTP capture : out of memory.\n"); |
| 1076 | continue; |
| 1077 | } |
| 1078 | |
| 1079 | len = eol - sov; |
| 1080 | if (len > h->len) |
| 1081 | len = h->len; |
| 1082 | |
| 1083 | memcpy(cap[h->index], sov, len); |
| 1084 | cap[h->index][len]=0; |
| 1085 | } |
| 1086 | } |
| 1087 | sol = eol + idx->v[cur_idx].cr + 1; |
| 1088 | cur_idx = idx->v[cur_idx].next; |
| 1089 | } |
| 1090 | } |
| 1091 | |
| 1092 | |
Willy Tarreau | 4225058 | 2007-04-01 01:30:43 +0200 | [diff] [blame] | 1093 | /* either we find an LF at <ptr> or we jump to <bad>. |
| 1094 | */ |
| 1095 | #define EXPECT_LF_HERE(ptr, bad) do { if (unlikely(*(ptr) != '\n')) goto bad; } while (0) |
| 1096 | |
| 1097 | /* plays with variables <ptr>, <end> and <state>. Jumps to <good> if OK, |
| 1098 | * otherwise to <http_msg_ood> with <state> set to <st>. |
| 1099 | */ |
| 1100 | #define EAT_AND_JUMP_OR_RETURN(good, st) do { \ |
| 1101 | ptr++; \ |
| 1102 | if (likely(ptr < end)) \ |
| 1103 | goto good; \ |
| 1104 | else { \ |
| 1105 | state = (st); \ |
| 1106 | goto http_msg_ood; \ |
| 1107 | } \ |
| 1108 | } while (0) |
| 1109 | |
| 1110 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1111 | /* |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 1112 | * This function parses a status line between <ptr> and <end>, starting with |
Willy Tarreau | 8973c70 | 2007-01-21 23:58:29 +0100 | [diff] [blame] | 1113 | * parser state <state>. Only states HTTP_MSG_RPVER, HTTP_MSG_RPVER_SP, |
| 1114 | * HTTP_MSG_RPCODE, HTTP_MSG_RPCODE_SP and HTTP_MSG_RPREASON are handled. Others |
| 1115 | * will give undefined results. |
| 1116 | * Note that it is upon the caller's responsibility to ensure that ptr < end, |
| 1117 | * and that msg->sol points to the beginning of the response. |
| 1118 | * If a complete line is found (which implies that at least one CR or LF is |
| 1119 | * found before <end>, the updated <ptr> is returned, otherwise NULL is |
| 1120 | * returned indicating an incomplete line (which does not mean that parts have |
| 1121 | * not been updated). In the incomplete case, if <ret_ptr> or <ret_state> are |
| 1122 | * non-NULL, they are fed with the new <ptr> and <state> values to be passed |
| 1123 | * upon next call. |
| 1124 | * |
Willy Tarreau | 9cdde23 | 2007-05-02 20:58:19 +0200 | [diff] [blame] | 1125 | * This function was intentionally designed to be called from |
Willy Tarreau | 8973c70 | 2007-01-21 23:58:29 +0100 | [diff] [blame] | 1126 | * http_msg_analyzer() with the lowest overhead. It should integrate perfectly |
| 1127 | * 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] | 1128 | * labels and variable names. Note that msg->sol is left unchanged. |
Willy Tarreau | 8973c70 | 2007-01-21 23:58:29 +0100 | [diff] [blame] | 1129 | */ |
Willy Tarreau | 69d8c5d | 2012-05-08 09:44:41 +0200 | [diff] [blame] | 1130 | const char *http_parse_stsline(struct http_msg *msg, |
Willy Tarreau | 3770f23 | 2013-12-07 00:01:53 +0100 | [diff] [blame] | 1131 | enum ht_state state, const char *ptr, const char *end, |
| 1132 | unsigned int *ret_ptr, enum ht_state *ret_state) |
Willy Tarreau | 8973c70 | 2007-01-21 23:58:29 +0100 | [diff] [blame] | 1133 | { |
Willy Tarreau | 9b28e03 | 2012-10-12 23:49:43 +0200 | [diff] [blame] | 1134 | const char *msg_start = msg->chn->buf->p; |
Willy Tarreau | 62f791e | 2012-03-09 11:32:30 +0100 | [diff] [blame] | 1135 | |
Willy Tarreau | 8973c70 | 2007-01-21 23:58:29 +0100 | [diff] [blame] | 1136 | switch (state) { |
Willy Tarreau | 8973c70 | 2007-01-21 23:58:29 +0100 | [diff] [blame] | 1137 | case HTTP_MSG_RPVER: |
Willy Tarreau | e3f284a | 2010-09-28 19:42:42 +0200 | [diff] [blame] | 1138 | http_msg_rpver: |
Willy Tarreau | 4b89ad4 | 2007-03-04 18:13:58 +0100 | [diff] [blame] | 1139 | if (likely(HTTP_IS_VER_TOKEN(*ptr))) |
Willy Tarreau | 8973c70 | 2007-01-21 23:58:29 +0100 | [diff] [blame] | 1140 | EAT_AND_JUMP_OR_RETURN(http_msg_rpver, HTTP_MSG_RPVER); |
| 1141 | |
| 1142 | if (likely(HTTP_IS_SPHT(*ptr))) { |
Willy Tarreau | ea1175a | 2012-03-05 15:52:30 +0100 | [diff] [blame] | 1143 | msg->sl.st.v_l = ptr - msg_start; |
Willy Tarreau | 8973c70 | 2007-01-21 23:58:29 +0100 | [diff] [blame] | 1144 | EAT_AND_JUMP_OR_RETURN(http_msg_rpver_sp, HTTP_MSG_RPVER_SP); |
| 1145 | } |
Willy Tarreau | 7552c03 | 2009-03-01 11:10:40 +0100 | [diff] [blame] | 1146 | state = HTTP_MSG_ERROR; |
| 1147 | break; |
| 1148 | |
Willy Tarreau | 8973c70 | 2007-01-21 23:58:29 +0100 | [diff] [blame] | 1149 | case HTTP_MSG_RPVER_SP: |
Willy Tarreau | e3f284a | 2010-09-28 19:42:42 +0200 | [diff] [blame] | 1150 | http_msg_rpver_sp: |
Willy Tarreau | 8973c70 | 2007-01-21 23:58:29 +0100 | [diff] [blame] | 1151 | if (likely(!HTTP_IS_LWS(*ptr))) { |
Willy Tarreau | ea1175a | 2012-03-05 15:52:30 +0100 | [diff] [blame] | 1152 | msg->sl.st.c = ptr - msg_start; |
Willy Tarreau | 8973c70 | 2007-01-21 23:58:29 +0100 | [diff] [blame] | 1153 | goto http_msg_rpcode; |
| 1154 | } |
| 1155 | if (likely(HTTP_IS_SPHT(*ptr))) |
| 1156 | EAT_AND_JUMP_OR_RETURN(http_msg_rpver_sp, HTTP_MSG_RPVER_SP); |
| 1157 | /* so it's a CR/LF, this is invalid */ |
Willy Tarreau | 7552c03 | 2009-03-01 11:10:40 +0100 | [diff] [blame] | 1158 | state = HTTP_MSG_ERROR; |
| 1159 | break; |
Willy Tarreau | 8973c70 | 2007-01-21 23:58:29 +0100 | [diff] [blame] | 1160 | |
Willy Tarreau | 8973c70 | 2007-01-21 23:58:29 +0100 | [diff] [blame] | 1161 | case HTTP_MSG_RPCODE: |
Willy Tarreau | e3f284a | 2010-09-28 19:42:42 +0200 | [diff] [blame] | 1162 | http_msg_rpcode: |
Willy Tarreau | 8973c70 | 2007-01-21 23:58:29 +0100 | [diff] [blame] | 1163 | if (likely(!HTTP_IS_LWS(*ptr))) |
| 1164 | EAT_AND_JUMP_OR_RETURN(http_msg_rpcode, HTTP_MSG_RPCODE); |
| 1165 | |
| 1166 | if (likely(HTTP_IS_SPHT(*ptr))) { |
Willy Tarreau | ea1175a | 2012-03-05 15:52:30 +0100 | [diff] [blame] | 1167 | msg->sl.st.c_l = ptr - msg_start - msg->sl.st.c; |
Willy Tarreau | 8973c70 | 2007-01-21 23:58:29 +0100 | [diff] [blame] | 1168 | EAT_AND_JUMP_OR_RETURN(http_msg_rpcode_sp, HTTP_MSG_RPCODE_SP); |
| 1169 | } |
| 1170 | |
| 1171 | /* so it's a CR/LF, so there is no reason phrase */ |
Willy Tarreau | ea1175a | 2012-03-05 15:52:30 +0100 | [diff] [blame] | 1172 | msg->sl.st.c_l = ptr - msg_start - msg->sl.st.c; |
Willy Tarreau | 8973c70 | 2007-01-21 23:58:29 +0100 | [diff] [blame] | 1173 | http_msg_rsp_reason: |
| 1174 | /* FIXME: should we support HTTP responses without any reason phrase ? */ |
Willy Tarreau | ea1175a | 2012-03-05 15:52:30 +0100 | [diff] [blame] | 1175 | msg->sl.st.r = ptr - msg_start; |
Willy Tarreau | 8973c70 | 2007-01-21 23:58:29 +0100 | [diff] [blame] | 1176 | msg->sl.st.r_l = 0; |
| 1177 | goto http_msg_rpline_eol; |
| 1178 | |
Willy Tarreau | 8973c70 | 2007-01-21 23:58:29 +0100 | [diff] [blame] | 1179 | case HTTP_MSG_RPCODE_SP: |
Willy Tarreau | e3f284a | 2010-09-28 19:42:42 +0200 | [diff] [blame] | 1180 | http_msg_rpcode_sp: |
Willy Tarreau | 8973c70 | 2007-01-21 23:58:29 +0100 | [diff] [blame] | 1181 | if (likely(!HTTP_IS_LWS(*ptr))) { |
Willy Tarreau | ea1175a | 2012-03-05 15:52:30 +0100 | [diff] [blame] | 1182 | msg->sl.st.r = ptr - msg_start; |
Willy Tarreau | 8973c70 | 2007-01-21 23:58:29 +0100 | [diff] [blame] | 1183 | goto http_msg_rpreason; |
| 1184 | } |
| 1185 | if (likely(HTTP_IS_SPHT(*ptr))) |
| 1186 | EAT_AND_JUMP_OR_RETURN(http_msg_rpcode_sp, HTTP_MSG_RPCODE_SP); |
| 1187 | /* so it's a CR/LF, so there is no reason phrase */ |
| 1188 | goto http_msg_rsp_reason; |
| 1189 | |
Willy Tarreau | 8973c70 | 2007-01-21 23:58:29 +0100 | [diff] [blame] | 1190 | case HTTP_MSG_RPREASON: |
Willy Tarreau | e3f284a | 2010-09-28 19:42:42 +0200 | [diff] [blame] | 1191 | http_msg_rpreason: |
Willy Tarreau | 8973c70 | 2007-01-21 23:58:29 +0100 | [diff] [blame] | 1192 | if (likely(!HTTP_IS_CRLF(*ptr))) |
| 1193 | EAT_AND_JUMP_OR_RETURN(http_msg_rpreason, HTTP_MSG_RPREASON); |
Willy Tarreau | ea1175a | 2012-03-05 15:52:30 +0100 | [diff] [blame] | 1194 | msg->sl.st.r_l = ptr - msg_start - msg->sl.st.r; |
Willy Tarreau | 8973c70 | 2007-01-21 23:58:29 +0100 | [diff] [blame] | 1195 | http_msg_rpline_eol: |
| 1196 | /* We have seen the end of line. Note that we do not |
| 1197 | * necessarily have the \n yet, but at least we know that we |
| 1198 | * have EITHER \r OR \n, otherwise the response would not be |
| 1199 | * complete. We can then record the response length and return |
| 1200 | * to the caller which will be able to register it. |
| 1201 | */ |
Willy Tarreau | 3a215be | 2012-03-09 21:39:51 +0100 | [diff] [blame] | 1202 | msg->sl.st.l = ptr - msg_start - msg->sol; |
Willy Tarreau | 8973c70 | 2007-01-21 23:58:29 +0100 | [diff] [blame] | 1203 | return ptr; |
| 1204 | |
Willy Tarreau | 8973c70 | 2007-01-21 23:58:29 +0100 | [diff] [blame] | 1205 | default: |
Willy Tarreau | 3770f23 | 2013-12-07 00:01:53 +0100 | [diff] [blame] | 1206 | #ifdef DEBUG_FULL |
Willy Tarreau | 8973c70 | 2007-01-21 23:58:29 +0100 | [diff] [blame] | 1207 | fprintf(stderr, "FIXME !!!! impossible state at %s:%d = %d\n", __FILE__, __LINE__, state); |
| 1208 | exit(1); |
| 1209 | #endif |
Willy Tarreau | 3770f23 | 2013-12-07 00:01:53 +0100 | [diff] [blame] | 1210 | ; |
Willy Tarreau | 8973c70 | 2007-01-21 23:58:29 +0100 | [diff] [blame] | 1211 | } |
| 1212 | |
| 1213 | http_msg_ood: |
Willy Tarreau | 7552c03 | 2009-03-01 11:10:40 +0100 | [diff] [blame] | 1214 | /* out of valid data */ |
Willy Tarreau | 8973c70 | 2007-01-21 23:58:29 +0100 | [diff] [blame] | 1215 | if (ret_state) |
| 1216 | *ret_state = state; |
| 1217 | if (ret_ptr) |
Willy Tarreau | a458b67 | 2012-03-05 11:17:50 +0100 | [diff] [blame] | 1218 | *ret_ptr = ptr - msg_start; |
Willy Tarreau | 8973c70 | 2007-01-21 23:58:29 +0100 | [diff] [blame] | 1219 | return NULL; |
Willy Tarreau | 8973c70 | 2007-01-21 23:58:29 +0100 | [diff] [blame] | 1220 | } |
| 1221 | |
Willy Tarreau | 8973c70 | 2007-01-21 23:58:29 +0100 | [diff] [blame] | 1222 | /* |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 1223 | * This function parses a request line between <ptr> and <end>, starting with |
| 1224 | * parser state <state>. Only states HTTP_MSG_RQMETH, HTTP_MSG_RQMETH_SP, |
| 1225 | * HTTP_MSG_RQURI, HTTP_MSG_RQURI_SP and HTTP_MSG_RQVER are handled. Others |
| 1226 | * will give undefined results. |
| 1227 | * Note that it is upon the caller's responsibility to ensure that ptr < end, |
| 1228 | * and that msg->sol points to the beginning of the request. |
| 1229 | * If a complete line is found (which implies that at least one CR or LF is |
| 1230 | * found before <end>, the updated <ptr> is returned, otherwise NULL is |
| 1231 | * returned indicating an incomplete line (which does not mean that parts have |
| 1232 | * not been updated). In the incomplete case, if <ret_ptr> or <ret_state> are |
| 1233 | * non-NULL, they are fed with the new <ptr> and <state> values to be passed |
| 1234 | * upon next call. |
| 1235 | * |
Willy Tarreau | 9cdde23 | 2007-05-02 20:58:19 +0200 | [diff] [blame] | 1236 | * This function was intentionally designed to be called from |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 1237 | * http_msg_analyzer() with the lowest overhead. It should integrate perfectly |
| 1238 | * 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] | 1239 | * labels and variable names. Note that msg->sol is left unchanged. |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1240 | */ |
Willy Tarreau | 69d8c5d | 2012-05-08 09:44:41 +0200 | [diff] [blame] | 1241 | const char *http_parse_reqline(struct http_msg *msg, |
Willy Tarreau | 3770f23 | 2013-12-07 00:01:53 +0100 | [diff] [blame] | 1242 | enum ht_state state, const char *ptr, const char *end, |
| 1243 | unsigned int *ret_ptr, enum ht_state *ret_state) |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1244 | { |
Willy Tarreau | 9b28e03 | 2012-10-12 23:49:43 +0200 | [diff] [blame] | 1245 | const char *msg_start = msg->chn->buf->p; |
Willy Tarreau | 62f791e | 2012-03-09 11:32:30 +0100 | [diff] [blame] | 1246 | |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 1247 | switch (state) { |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 1248 | case HTTP_MSG_RQMETH: |
Willy Tarreau | e3f284a | 2010-09-28 19:42:42 +0200 | [diff] [blame] | 1249 | http_msg_rqmeth: |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 1250 | if (likely(HTTP_IS_TOKEN(*ptr))) |
| 1251 | EAT_AND_JUMP_OR_RETURN(http_msg_rqmeth, HTTP_MSG_RQMETH); |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 1252 | |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 1253 | if (likely(HTTP_IS_SPHT(*ptr))) { |
Willy Tarreau | ea1175a | 2012-03-05 15:52:30 +0100 | [diff] [blame] | 1254 | msg->sl.rq.m_l = ptr - msg_start; |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 1255 | EAT_AND_JUMP_OR_RETURN(http_msg_rqmeth_sp, HTTP_MSG_RQMETH_SP); |
| 1256 | } |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 1257 | |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 1258 | if (likely(HTTP_IS_CRLF(*ptr))) { |
| 1259 | /* HTTP 0.9 request */ |
Willy Tarreau | ea1175a | 2012-03-05 15:52:30 +0100 | [diff] [blame] | 1260 | msg->sl.rq.m_l = ptr - msg_start; |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 1261 | http_msg_req09_uri: |
Willy Tarreau | ea1175a | 2012-03-05 15:52:30 +0100 | [diff] [blame] | 1262 | msg->sl.rq.u = ptr - msg_start; |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 1263 | http_msg_req09_uri_e: |
Willy Tarreau | ea1175a | 2012-03-05 15:52:30 +0100 | [diff] [blame] | 1264 | msg->sl.rq.u_l = ptr - msg_start - msg->sl.rq.u; |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 1265 | http_msg_req09_ver: |
Willy Tarreau | ea1175a | 2012-03-05 15:52:30 +0100 | [diff] [blame] | 1266 | msg->sl.rq.v = ptr - msg_start; |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 1267 | msg->sl.rq.v_l = 0; |
| 1268 | goto http_msg_rqline_eol; |
| 1269 | } |
Willy Tarreau | 7552c03 | 2009-03-01 11:10:40 +0100 | [diff] [blame] | 1270 | state = HTTP_MSG_ERROR; |
| 1271 | break; |
| 1272 | |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 1273 | case HTTP_MSG_RQMETH_SP: |
Willy Tarreau | e3f284a | 2010-09-28 19:42:42 +0200 | [diff] [blame] | 1274 | http_msg_rqmeth_sp: |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 1275 | if (likely(!HTTP_IS_LWS(*ptr))) { |
Willy Tarreau | ea1175a | 2012-03-05 15:52:30 +0100 | [diff] [blame] | 1276 | msg->sl.rq.u = ptr - msg_start; |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 1277 | goto http_msg_rquri; |
| 1278 | } |
| 1279 | if (likely(HTTP_IS_SPHT(*ptr))) |
| 1280 | EAT_AND_JUMP_OR_RETURN(http_msg_rqmeth_sp, HTTP_MSG_RQMETH_SP); |
| 1281 | /* so it's a CR/LF, meaning an HTTP 0.9 request */ |
| 1282 | goto http_msg_req09_uri; |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 1283 | |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 1284 | case HTTP_MSG_RQURI: |
Willy Tarreau | e3f284a | 2010-09-28 19:42:42 +0200 | [diff] [blame] | 1285 | http_msg_rquri: |
Willy Tarreau | 2e9506d | 2012-01-07 23:22:31 +0100 | [diff] [blame] | 1286 | if (likely((unsigned char)(*ptr - 33) <= 93)) /* 33 to 126 included */ |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 1287 | EAT_AND_JUMP_OR_RETURN(http_msg_rquri, HTTP_MSG_RQURI); |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 1288 | |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 1289 | if (likely(HTTP_IS_SPHT(*ptr))) { |
Willy Tarreau | ea1175a | 2012-03-05 15:52:30 +0100 | [diff] [blame] | 1290 | msg->sl.rq.u_l = ptr - msg_start - msg->sl.rq.u; |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 1291 | EAT_AND_JUMP_OR_RETURN(http_msg_rquri_sp, HTTP_MSG_RQURI_SP); |
| 1292 | } |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 1293 | |
Willy Tarreau | 2e9506d | 2012-01-07 23:22:31 +0100 | [diff] [blame] | 1294 | if (likely((unsigned char)*ptr >= 128)) { |
Willy Tarreau | 422246e | 2012-01-07 23:54:13 +0100 | [diff] [blame] | 1295 | /* non-ASCII chars are forbidden unless option |
| 1296 | * accept-invalid-http-request is enabled in the frontend. |
| 1297 | * In any case, we capture the faulty char. |
Willy Tarreau | 2e9506d | 2012-01-07 23:22:31 +0100 | [diff] [blame] | 1298 | */ |
Willy Tarreau | 422246e | 2012-01-07 23:54:13 +0100 | [diff] [blame] | 1299 | if (msg->err_pos < -1) |
| 1300 | goto invalid_char; |
| 1301 | if (msg->err_pos == -1) |
Willy Tarreau | 69d8c5d | 2012-05-08 09:44:41 +0200 | [diff] [blame] | 1302 | msg->err_pos = ptr - msg_start; |
Willy Tarreau | 2e9506d | 2012-01-07 23:22:31 +0100 | [diff] [blame] | 1303 | EAT_AND_JUMP_OR_RETURN(http_msg_rquri, HTTP_MSG_RQURI); |
| 1304 | } |
| 1305 | |
| 1306 | if (likely(HTTP_IS_CRLF(*ptr))) { |
| 1307 | /* so it's a CR/LF, meaning an HTTP 0.9 request */ |
| 1308 | goto http_msg_req09_uri_e; |
| 1309 | } |
| 1310 | |
| 1311 | /* OK forbidden chars, 0..31 or 127 */ |
Willy Tarreau | 422246e | 2012-01-07 23:54:13 +0100 | [diff] [blame] | 1312 | invalid_char: |
Willy Tarreau | 69d8c5d | 2012-05-08 09:44:41 +0200 | [diff] [blame] | 1313 | msg->err_pos = ptr - msg_start; |
Willy Tarreau | 2e9506d | 2012-01-07 23:22:31 +0100 | [diff] [blame] | 1314 | state = HTTP_MSG_ERROR; |
| 1315 | break; |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 1316 | |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 1317 | case HTTP_MSG_RQURI_SP: |
Willy Tarreau | e3f284a | 2010-09-28 19:42:42 +0200 | [diff] [blame] | 1318 | http_msg_rquri_sp: |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 1319 | if (likely(!HTTP_IS_LWS(*ptr))) { |
Willy Tarreau | ea1175a | 2012-03-05 15:52:30 +0100 | [diff] [blame] | 1320 | msg->sl.rq.v = ptr - msg_start; |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 1321 | goto http_msg_rqver; |
| 1322 | } |
| 1323 | if (likely(HTTP_IS_SPHT(*ptr))) |
| 1324 | EAT_AND_JUMP_OR_RETURN(http_msg_rquri_sp, HTTP_MSG_RQURI_SP); |
| 1325 | /* so it's a CR/LF, meaning an HTTP 0.9 request */ |
| 1326 | goto http_msg_req09_ver; |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 1327 | |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 1328 | case HTTP_MSG_RQVER: |
Willy Tarreau | e3f284a | 2010-09-28 19:42:42 +0200 | [diff] [blame] | 1329 | http_msg_rqver: |
Willy Tarreau | 4b89ad4 | 2007-03-04 18:13:58 +0100 | [diff] [blame] | 1330 | if (likely(HTTP_IS_VER_TOKEN(*ptr))) |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 1331 | EAT_AND_JUMP_OR_RETURN(http_msg_rqver, HTTP_MSG_RQVER); |
Willy Tarreau | 4b89ad4 | 2007-03-04 18:13:58 +0100 | [diff] [blame] | 1332 | |
| 1333 | if (likely(HTTP_IS_CRLF(*ptr))) { |
Willy Tarreau | ea1175a | 2012-03-05 15:52:30 +0100 | [diff] [blame] | 1334 | msg->sl.rq.v_l = ptr - msg_start - msg->sl.rq.v; |
Willy Tarreau | 4b89ad4 | 2007-03-04 18:13:58 +0100 | [diff] [blame] | 1335 | http_msg_rqline_eol: |
| 1336 | /* We have seen the end of line. Note that we do not |
| 1337 | * necessarily have the \n yet, but at least we know that we |
| 1338 | * have EITHER \r OR \n, otherwise the request would not be |
| 1339 | * complete. We can then record the request length and return |
| 1340 | * to the caller which will be able to register it. |
| 1341 | */ |
Willy Tarreau | 3a215be | 2012-03-09 21:39:51 +0100 | [diff] [blame] | 1342 | msg->sl.rq.l = ptr - msg_start - msg->sol; |
Willy Tarreau | 4b89ad4 | 2007-03-04 18:13:58 +0100 | [diff] [blame] | 1343 | return ptr; |
| 1344 | } |
| 1345 | |
| 1346 | /* neither an HTTP_VER token nor a CRLF */ |
Willy Tarreau | 7552c03 | 2009-03-01 11:10:40 +0100 | [diff] [blame] | 1347 | state = HTTP_MSG_ERROR; |
| 1348 | break; |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 1349 | |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 1350 | default: |
Willy Tarreau | 3770f23 | 2013-12-07 00:01:53 +0100 | [diff] [blame] | 1351 | #ifdef DEBUG_FULL |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 1352 | fprintf(stderr, "FIXME !!!! impossible state at %s:%d = %d\n", __FILE__, __LINE__, state); |
| 1353 | exit(1); |
| 1354 | #endif |
Willy Tarreau | 3770f23 | 2013-12-07 00:01:53 +0100 | [diff] [blame] | 1355 | ; |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 1356 | } |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 1357 | |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 1358 | http_msg_ood: |
Willy Tarreau | 7552c03 | 2009-03-01 11:10:40 +0100 | [diff] [blame] | 1359 | /* out of valid data */ |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 1360 | if (ret_state) |
| 1361 | *ret_state = state; |
| 1362 | if (ret_ptr) |
Willy Tarreau | a458b67 | 2012-03-05 11:17:50 +0100 | [diff] [blame] | 1363 | *ret_ptr = ptr - msg_start; |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 1364 | return NULL; |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 1365 | } |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 1366 | |
Krzysztof Piotr Oledzki | f9423ae | 2010-01-29 19:26:18 +0100 | [diff] [blame] | 1367 | /* |
| 1368 | * Returns the data from Authorization header. Function may be called more |
| 1369 | * than once so data is stored in txn->auth_data. When no header is found |
| 1370 | * 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] | 1371 | * searching again for something we are unable to find anyway. However, if |
| 1372 | * the result if valid, the cache is not reused because we would risk to |
| 1373 | * have the credentials overwritten by another session in parallel. |
Krzysztof Piotr Oledzki | f9423ae | 2010-01-29 19:26:18 +0100 | [diff] [blame] | 1374 | */ |
| 1375 | |
Thierry FOURNIER | 9eec0a6 | 2014-01-22 18:38:02 +0100 | [diff] [blame] | 1376 | /* This bufffer is initialized in the file 'src/haproxy.c'. This length is |
| 1377 | * set according to global.tune.bufsize. |
| 1378 | */ |
Willy Tarreau | 7e2c647 | 2012-10-29 20:44:36 +0100 | [diff] [blame] | 1379 | char *get_http_auth_buff; |
Krzysztof Piotr Oledzki | f9423ae | 2010-01-29 19:26:18 +0100 | [diff] [blame] | 1380 | |
| 1381 | int |
| 1382 | get_http_auth(struct session *s) |
| 1383 | { |
| 1384 | |
| 1385 | struct http_txn *txn = &s->txn; |
| 1386 | struct chunk auth_method; |
| 1387 | struct hdr_ctx ctx; |
| 1388 | char *h, *p; |
| 1389 | int len; |
| 1390 | |
| 1391 | #ifdef DEBUG_AUTH |
| 1392 | printf("Auth for session %p: %d\n", s, txn->auth.method); |
| 1393 | #endif |
| 1394 | |
| 1395 | if (txn->auth.method == HTTP_AUTH_WRONG) |
| 1396 | return 0; |
| 1397 | |
Krzysztof Piotr Oledzki | f9423ae | 2010-01-29 19:26:18 +0100 | [diff] [blame] | 1398 | txn->auth.method = HTTP_AUTH_WRONG; |
| 1399 | |
| 1400 | ctx.idx = 0; |
Willy Tarreau | 844a7e7 | 2010-01-31 21:46:18 +0100 | [diff] [blame] | 1401 | |
| 1402 | if (txn->flags & TX_USE_PX_CONN) { |
| 1403 | h = "Proxy-Authorization"; |
| 1404 | len = strlen(h); |
| 1405 | } else { |
| 1406 | h = "Authorization"; |
| 1407 | len = strlen(h); |
| 1408 | } |
| 1409 | |
Willy Tarreau | 9b28e03 | 2012-10-12 23:49:43 +0200 | [diff] [blame] | 1410 | 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] | 1411 | return 0; |
| 1412 | |
| 1413 | h = ctx.line + ctx.val; |
| 1414 | |
| 1415 | p = memchr(h, ' ', ctx.vlen); |
| 1416 | if (!p || p == h) |
| 1417 | return 0; |
| 1418 | |
| 1419 | chunk_initlen(&auth_method, h, 0, p-h); |
| 1420 | chunk_initlen(&txn->auth.method_data, p+1, 0, ctx.vlen-(p-h)-1); |
| 1421 | |
| 1422 | if (!strncasecmp("Basic", auth_method.str, auth_method.len)) { |
| 1423 | |
| 1424 | len = base64dec(txn->auth.method_data.str, txn->auth.method_data.len, |
Willy Tarreau | 7e2c647 | 2012-10-29 20:44:36 +0100 | [diff] [blame] | 1425 | get_http_auth_buff, global.tune.bufsize - 1); |
Krzysztof Piotr Oledzki | f9423ae | 2010-01-29 19:26:18 +0100 | [diff] [blame] | 1426 | |
| 1427 | if (len < 0) |
| 1428 | return 0; |
| 1429 | |
| 1430 | |
| 1431 | get_http_auth_buff[len] = '\0'; |
| 1432 | |
| 1433 | p = strchr(get_http_auth_buff, ':'); |
| 1434 | |
| 1435 | if (!p) |
| 1436 | return 0; |
| 1437 | |
| 1438 | txn->auth.user = get_http_auth_buff; |
| 1439 | *p = '\0'; |
| 1440 | txn->auth.pass = p+1; |
| 1441 | |
| 1442 | txn->auth.method = HTTP_AUTH_BASIC; |
| 1443 | return 1; |
| 1444 | } |
| 1445 | |
| 1446 | return 0; |
| 1447 | } |
| 1448 | |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 1449 | |
Willy Tarreau | 8973c70 | 2007-01-21 23:58:29 +0100 | [diff] [blame] | 1450 | /* |
| 1451 | * This function parses an HTTP message, either a request or a response, |
Willy Tarreau | 8b1323e | 2012-03-09 14:46:19 +0100 | [diff] [blame] | 1452 | * depending on the initial msg->msg_state. The caller is responsible for |
| 1453 | * ensuring that the message does not wrap. The function can be preempted |
| 1454 | * everywhere when data are missing and recalled at the exact same location |
| 1455 | * with no information loss. The message may even be realigned between two |
| 1456 | * calls. The header index is re-initialized when switching from |
Willy Tarreau | 9cdde23 | 2007-05-02 20:58:19 +0200 | [diff] [blame] | 1457 | * 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] | 1458 | * fields. Note that msg->sol will be initialized after completing the first |
| 1459 | * state, so that none of the msg pointers has to be initialized prior to the |
| 1460 | * first call. |
Willy Tarreau | 8973c70 | 2007-01-21 23:58:29 +0100 | [diff] [blame] | 1461 | */ |
Willy Tarreau | a560c21 | 2012-03-09 13:50:57 +0100 | [diff] [blame] | 1462 | void http_msg_analyzer(struct http_msg *msg, struct hdr_idx *idx) |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 1463 | { |
Willy Tarreau | 3770f23 | 2013-12-07 00:01:53 +0100 | [diff] [blame] | 1464 | enum ht_state state; /* updated only when leaving the FSM */ |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 1465 | register char *ptr, *end; /* request pointers, to avoid dereferences */ |
Willy Tarreau | cdbdd52 | 2012-10-12 22:51:15 +0200 | [diff] [blame] | 1466 | struct buffer *buf; |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 1467 | |
Willy Tarreau | b326fcc | 2007-03-03 13:54:32 +0100 | [diff] [blame] | 1468 | state = msg->msg_state; |
Willy Tarreau | 9b28e03 | 2012-10-12 23:49:43 +0200 | [diff] [blame] | 1469 | buf = msg->chn->buf; |
Willy Tarreau | cdbdd52 | 2012-10-12 22:51:15 +0200 | [diff] [blame] | 1470 | ptr = buf->p + msg->next; |
| 1471 | end = buf->p + buf->i; |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 1472 | |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 1473 | if (unlikely(ptr >= end)) |
| 1474 | goto http_msg_ood; |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 1475 | |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 1476 | switch (state) { |
Willy Tarreau | 8973c70 | 2007-01-21 23:58:29 +0100 | [diff] [blame] | 1477 | /* |
| 1478 | * First, states that are specific to the response only. |
| 1479 | * We check them first so that request and headers are |
| 1480 | * closer to each other (accessed more often). |
| 1481 | */ |
Willy Tarreau | 8973c70 | 2007-01-21 23:58:29 +0100 | [diff] [blame] | 1482 | case HTTP_MSG_RPBEFORE: |
Willy Tarreau | e3f284a | 2010-09-28 19:42:42 +0200 | [diff] [blame] | 1483 | http_msg_rpbefore: |
Willy Tarreau | 8973c70 | 2007-01-21 23:58:29 +0100 | [diff] [blame] | 1484 | if (likely(HTTP_IS_TOKEN(*ptr))) { |
Willy Tarreau | 15de77e | 2010-01-02 21:59:16 +0100 | [diff] [blame] | 1485 | /* we have a start of message, but we have to check |
| 1486 | * first if we need to remove some CRLF. We can only |
Willy Tarreau | 2e046c6 | 2012-03-01 16:08:30 +0100 | [diff] [blame] | 1487 | * do this when o=0. |
Willy Tarreau | 15de77e | 2010-01-02 21:59:16 +0100 | [diff] [blame] | 1488 | */ |
Willy Tarreau | cdbdd52 | 2012-10-12 22:51:15 +0200 | [diff] [blame] | 1489 | if (unlikely(ptr != buf->p)) { |
| 1490 | if (buf->o) |
Willy Tarreau | 15de77e | 2010-01-02 21:59:16 +0100 | [diff] [blame] | 1491 | goto http_msg_ood; |
Willy Tarreau | 1d3bcce | 2009-12-27 15:50:06 +0100 | [diff] [blame] | 1492 | /* Remove empty leading lines, as recommended by RFC2616. */ |
Willy Tarreau | cdbdd52 | 2012-10-12 22:51:15 +0200 | [diff] [blame] | 1493 | bi_fast_delete(buf, ptr - buf->p); |
Willy Tarreau | 8973c70 | 2007-01-21 23:58:29 +0100 | [diff] [blame] | 1494 | } |
Willy Tarreau | 2692736 | 2012-05-18 23:22:52 +0200 | [diff] [blame] | 1495 | msg->sol = 0; |
Willy Tarreau | e92693a | 2012-09-24 21:13:39 +0200 | [diff] [blame] | 1496 | msg->sl.st.l = 0; /* used in debug mode */ |
Willy Tarreau | 8973c70 | 2007-01-21 23:58:29 +0100 | [diff] [blame] | 1497 | hdr_idx_init(idx); |
| 1498 | state = HTTP_MSG_RPVER; |
| 1499 | goto http_msg_rpver; |
| 1500 | } |
| 1501 | |
| 1502 | if (unlikely(!HTTP_IS_CRLF(*ptr))) |
| 1503 | goto http_msg_invalid; |
| 1504 | |
| 1505 | if (unlikely(*ptr == '\n')) |
| 1506 | EAT_AND_JUMP_OR_RETURN(http_msg_rpbefore, HTTP_MSG_RPBEFORE); |
| 1507 | EAT_AND_JUMP_OR_RETURN(http_msg_rpbefore_cr, HTTP_MSG_RPBEFORE_CR); |
| 1508 | /* stop here */ |
| 1509 | |
Willy Tarreau | 8973c70 | 2007-01-21 23:58:29 +0100 | [diff] [blame] | 1510 | case HTTP_MSG_RPBEFORE_CR: |
Willy Tarreau | e3f284a | 2010-09-28 19:42:42 +0200 | [diff] [blame] | 1511 | http_msg_rpbefore_cr: |
Willy Tarreau | 8973c70 | 2007-01-21 23:58:29 +0100 | [diff] [blame] | 1512 | EXPECT_LF_HERE(ptr, http_msg_invalid); |
| 1513 | EAT_AND_JUMP_OR_RETURN(http_msg_rpbefore, HTTP_MSG_RPBEFORE); |
| 1514 | /* stop here */ |
| 1515 | |
Willy Tarreau | 8973c70 | 2007-01-21 23:58:29 +0100 | [diff] [blame] | 1516 | case HTTP_MSG_RPVER: |
Willy Tarreau | e3f284a | 2010-09-28 19:42:42 +0200 | [diff] [blame] | 1517 | http_msg_rpver: |
Willy Tarreau | 8973c70 | 2007-01-21 23:58:29 +0100 | [diff] [blame] | 1518 | case HTTP_MSG_RPVER_SP: |
| 1519 | case HTTP_MSG_RPCODE: |
| 1520 | case HTTP_MSG_RPCODE_SP: |
| 1521 | case HTTP_MSG_RPREASON: |
Willy Tarreau | 69d8c5d | 2012-05-08 09:44:41 +0200 | [diff] [blame] | 1522 | ptr = (char *)http_parse_stsline(msg, |
Willy Tarreau | a458b67 | 2012-03-05 11:17:50 +0100 | [diff] [blame] | 1523 | state, ptr, end, |
| 1524 | &msg->next, &msg->msg_state); |
Willy Tarreau | 8973c70 | 2007-01-21 23:58:29 +0100 | [diff] [blame] | 1525 | if (unlikely(!ptr)) |
| 1526 | return; |
| 1527 | |
| 1528 | /* we have a full response and we know that we have either a CR |
| 1529 | * or an LF at <ptr>. |
| 1530 | */ |
Willy Tarreau | 8973c70 | 2007-01-21 23:58:29 +0100 | [diff] [blame] | 1531 | hdr_idx_set_start(idx, msg->sl.st.l, *ptr == '\r'); |
| 1532 | |
Willy Tarreau | cdbdd52 | 2012-10-12 22:51:15 +0200 | [diff] [blame] | 1533 | msg->sol = ptr - buf->p; |
Willy Tarreau | 8973c70 | 2007-01-21 23:58:29 +0100 | [diff] [blame] | 1534 | if (likely(*ptr == '\r')) |
| 1535 | EAT_AND_JUMP_OR_RETURN(http_msg_rpline_end, HTTP_MSG_RPLINE_END); |
| 1536 | goto http_msg_rpline_end; |
| 1537 | |
Willy Tarreau | 8973c70 | 2007-01-21 23:58:29 +0100 | [diff] [blame] | 1538 | case HTTP_MSG_RPLINE_END: |
Willy Tarreau | e3f284a | 2010-09-28 19:42:42 +0200 | [diff] [blame] | 1539 | http_msg_rpline_end: |
Willy Tarreau | 8973c70 | 2007-01-21 23:58:29 +0100 | [diff] [blame] | 1540 | /* msg->sol must point to the first of CR or LF. */ |
| 1541 | EXPECT_LF_HERE(ptr, http_msg_invalid); |
| 1542 | EAT_AND_JUMP_OR_RETURN(http_msg_hdr_first, HTTP_MSG_HDR_FIRST); |
| 1543 | /* stop here */ |
| 1544 | |
| 1545 | /* |
| 1546 | * Second, states that are specific to the request only |
| 1547 | */ |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 1548 | case HTTP_MSG_RQBEFORE: |
Willy Tarreau | e3f284a | 2010-09-28 19:42:42 +0200 | [diff] [blame] | 1549 | http_msg_rqbefore: |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 1550 | if (likely(HTTP_IS_TOKEN(*ptr))) { |
Willy Tarreau | 15de77e | 2010-01-02 21:59:16 +0100 | [diff] [blame] | 1551 | /* we have a start of message, but we have to check |
| 1552 | * first if we need to remove some CRLF. We can only |
Willy Tarreau | 2e046c6 | 2012-03-01 16:08:30 +0100 | [diff] [blame] | 1553 | * do this when o=0. |
Willy Tarreau | 15de77e | 2010-01-02 21:59:16 +0100 | [diff] [blame] | 1554 | */ |
Willy Tarreau | cdbdd52 | 2012-10-12 22:51:15 +0200 | [diff] [blame] | 1555 | if (likely(ptr != buf->p)) { |
| 1556 | if (buf->o) |
Willy Tarreau | 15de77e | 2010-01-02 21:59:16 +0100 | [diff] [blame] | 1557 | goto http_msg_ood; |
Willy Tarreau | 1d3bcce | 2009-12-27 15:50:06 +0100 | [diff] [blame] | 1558 | /* Remove empty leading lines, as recommended by RFC2616. */ |
Willy Tarreau | cdbdd52 | 2012-10-12 22:51:15 +0200 | [diff] [blame] | 1559 | bi_fast_delete(buf, ptr - buf->p); |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 1560 | } |
Willy Tarreau | 2692736 | 2012-05-18 23:22:52 +0200 | [diff] [blame] | 1561 | msg->sol = 0; |
Willy Tarreau | e92693a | 2012-09-24 21:13:39 +0200 | [diff] [blame] | 1562 | msg->sl.rq.l = 0; /* used in debug mode */ |
Willy Tarreau | 8973c70 | 2007-01-21 23:58:29 +0100 | [diff] [blame] | 1563 | state = HTTP_MSG_RQMETH; |
| 1564 | goto http_msg_rqmeth; |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 1565 | } |
Willy Tarreau | 976f1ee | 2006-12-17 10:06:03 +0100 | [diff] [blame] | 1566 | |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 1567 | if (unlikely(!HTTP_IS_CRLF(*ptr))) |
| 1568 | goto http_msg_invalid; |
Willy Tarreau | 976f1ee | 2006-12-17 10:06:03 +0100 | [diff] [blame] | 1569 | |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 1570 | if (unlikely(*ptr == '\n')) |
| 1571 | EAT_AND_JUMP_OR_RETURN(http_msg_rqbefore, HTTP_MSG_RQBEFORE); |
| 1572 | 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] | 1573 | /* stop here */ |
Willy Tarreau | 976f1ee | 2006-12-17 10:06:03 +0100 | [diff] [blame] | 1574 | |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 1575 | case HTTP_MSG_RQBEFORE_CR: |
Willy Tarreau | e3f284a | 2010-09-28 19:42:42 +0200 | [diff] [blame] | 1576 | http_msg_rqbefore_cr: |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 1577 | EXPECT_LF_HERE(ptr, http_msg_invalid); |
| 1578 | EAT_AND_JUMP_OR_RETURN(http_msg_rqbefore, HTTP_MSG_RQBEFORE); |
Willy Tarreau | 8973c70 | 2007-01-21 23:58:29 +0100 | [diff] [blame] | 1579 | /* stop here */ |
Willy Tarreau | 976f1ee | 2006-12-17 10:06:03 +0100 | [diff] [blame] | 1580 | |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 1581 | case HTTP_MSG_RQMETH: |
Willy Tarreau | e3f284a | 2010-09-28 19:42:42 +0200 | [diff] [blame] | 1582 | http_msg_rqmeth: |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 1583 | case HTTP_MSG_RQMETH_SP: |
| 1584 | case HTTP_MSG_RQURI: |
| 1585 | case HTTP_MSG_RQURI_SP: |
| 1586 | case HTTP_MSG_RQVER: |
Willy Tarreau | 69d8c5d | 2012-05-08 09:44:41 +0200 | [diff] [blame] | 1587 | ptr = (char *)http_parse_reqline(msg, |
Willy Tarreau | a458b67 | 2012-03-05 11:17:50 +0100 | [diff] [blame] | 1588 | state, ptr, end, |
| 1589 | &msg->next, &msg->msg_state); |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 1590 | if (unlikely(!ptr)) |
| 1591 | return; |
Willy Tarreau | 976f1ee | 2006-12-17 10:06:03 +0100 | [diff] [blame] | 1592 | |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 1593 | /* we have a full request and we know that we have either a CR |
| 1594 | * or an LF at <ptr>. |
| 1595 | */ |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 1596 | hdr_idx_set_start(idx, msg->sl.rq.l, *ptr == '\r'); |
Willy Tarreau | 976f1ee | 2006-12-17 10:06:03 +0100 | [diff] [blame] | 1597 | |
Willy Tarreau | cdbdd52 | 2012-10-12 22:51:15 +0200 | [diff] [blame] | 1598 | msg->sol = ptr - buf->p; |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 1599 | if (likely(*ptr == '\r')) |
| 1600 | 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] | 1601 | goto http_msg_rqline_end; |
Willy Tarreau | 976f1ee | 2006-12-17 10:06:03 +0100 | [diff] [blame] | 1602 | |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 1603 | case HTTP_MSG_RQLINE_END: |
Willy Tarreau | e3f284a | 2010-09-28 19:42:42 +0200 | [diff] [blame] | 1604 | http_msg_rqline_end: |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 1605 | /* check for HTTP/0.9 request : no version information available. |
| 1606 | * msg->sol must point to the first of CR or LF. |
| 1607 | */ |
| 1608 | if (unlikely(msg->sl.rq.v_l == 0)) |
| 1609 | goto http_msg_last_lf; |
Willy Tarreau | 976f1ee | 2006-12-17 10:06:03 +0100 | [diff] [blame] | 1610 | |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 1611 | EXPECT_LF_HERE(ptr, http_msg_invalid); |
| 1612 | 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] | 1613 | /* stop here */ |
Willy Tarreau | 976f1ee | 2006-12-17 10:06:03 +0100 | [diff] [blame] | 1614 | |
Willy Tarreau | 8973c70 | 2007-01-21 23:58:29 +0100 | [diff] [blame] | 1615 | /* |
| 1616 | * Common states below |
| 1617 | */ |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 1618 | case HTTP_MSG_HDR_FIRST: |
Willy Tarreau | e3f284a | 2010-09-28 19:42:42 +0200 | [diff] [blame] | 1619 | http_msg_hdr_first: |
Willy Tarreau | cdbdd52 | 2012-10-12 22:51:15 +0200 | [diff] [blame] | 1620 | msg->sol = ptr - buf->p; |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 1621 | if (likely(!HTTP_IS_CRLF(*ptr))) { |
| 1622 | goto http_msg_hdr_name; |
| 1623 | } |
| 1624 | |
| 1625 | if (likely(*ptr == '\r')) |
| 1626 | EAT_AND_JUMP_OR_RETURN(http_msg_last_lf, HTTP_MSG_LAST_LF); |
| 1627 | goto http_msg_last_lf; |
Willy Tarreau | 976f1ee | 2006-12-17 10:06:03 +0100 | [diff] [blame] | 1628 | |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 1629 | case HTTP_MSG_HDR_NAME: |
Willy Tarreau | e3f284a | 2010-09-28 19:42:42 +0200 | [diff] [blame] | 1630 | http_msg_hdr_name: |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 1631 | /* assumes msg->sol points to the first char */ |
| 1632 | if (likely(HTTP_IS_TOKEN(*ptr))) |
| 1633 | 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] | 1634 | |
Willy Tarreau | fa4a03c | 2012-03-09 21:28:54 +0100 | [diff] [blame] | 1635 | if (likely(*ptr == ':')) |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 1636 | 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] | 1637 | |
Willy Tarreau | 32a4ec0 | 2009-04-02 11:35:18 +0200 | [diff] [blame] | 1638 | if (likely(msg->err_pos < -1) || *ptr == '\n') |
| 1639 | goto http_msg_invalid; |
| 1640 | |
| 1641 | if (msg->err_pos == -1) /* capture error pointer */ |
Willy Tarreau | cdbdd52 | 2012-10-12 22:51:15 +0200 | [diff] [blame] | 1642 | msg->err_pos = ptr - buf->p; /* >= 0 now */ |
Willy Tarreau | 32a4ec0 | 2009-04-02 11:35:18 +0200 | [diff] [blame] | 1643 | |
| 1644 | /* and we still accept this non-token character */ |
| 1645 | 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] | 1646 | |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 1647 | case HTTP_MSG_HDR_L1_SP: |
Willy Tarreau | e3f284a | 2010-09-28 19:42:42 +0200 | [diff] [blame] | 1648 | http_msg_hdr_l1_sp: |
Willy Tarreau | fa4a03c | 2012-03-09 21:28:54 +0100 | [diff] [blame] | 1649 | /* assumes msg->sol points to the first char */ |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 1650 | if (likely(HTTP_IS_SPHT(*ptr))) |
| 1651 | 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] | 1652 | |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 1653 | /* header value can be basically anything except CR/LF */ |
Willy Tarreau | cdbdd52 | 2012-10-12 22:51:15 +0200 | [diff] [blame] | 1654 | msg->sov = ptr - buf->p; |
Willy Tarreau | 976f1ee | 2006-12-17 10:06:03 +0100 | [diff] [blame] | 1655 | |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 1656 | if (likely(!HTTP_IS_CRLF(*ptr))) { |
| 1657 | goto http_msg_hdr_val; |
| 1658 | } |
| 1659 | |
| 1660 | if (likely(*ptr == '\r')) |
| 1661 | EAT_AND_JUMP_OR_RETURN(http_msg_hdr_l1_lf, HTTP_MSG_HDR_L1_LF); |
| 1662 | goto http_msg_hdr_l1_lf; |
Willy Tarreau | 976f1ee | 2006-12-17 10:06:03 +0100 | [diff] [blame] | 1663 | |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 1664 | case HTTP_MSG_HDR_L1_LF: |
Willy Tarreau | e3f284a | 2010-09-28 19:42:42 +0200 | [diff] [blame] | 1665 | http_msg_hdr_l1_lf: |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 1666 | EXPECT_LF_HERE(ptr, http_msg_invalid); |
| 1667 | 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] | 1668 | |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 1669 | case HTTP_MSG_HDR_L1_LWS: |
Willy Tarreau | e3f284a | 2010-09-28 19:42:42 +0200 | [diff] [blame] | 1670 | http_msg_hdr_l1_lws: |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 1671 | if (likely(HTTP_IS_SPHT(*ptr))) { |
| 1672 | /* replace HT,CR,LF with spaces */ |
Willy Tarreau | cdbdd52 | 2012-10-12 22:51:15 +0200 | [diff] [blame] | 1673 | for (; buf->p + msg->sov < ptr; msg->sov++) |
| 1674 | buf->p[msg->sov] = ' '; |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 1675 | goto http_msg_hdr_l1_sp; |
| 1676 | } |
Willy Tarreau | aa9dce3 | 2007-03-18 23:50:16 +0100 | [diff] [blame] | 1677 | /* we had a header consisting only in spaces ! */ |
Willy Tarreau | 12e48b3 | 2012-03-05 16:57:34 +0100 | [diff] [blame] | 1678 | msg->eol = msg->sov; |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 1679 | goto http_msg_complete_header; |
| 1680 | |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 1681 | case HTTP_MSG_HDR_VAL: |
Willy Tarreau | e3f284a | 2010-09-28 19:42:42 +0200 | [diff] [blame] | 1682 | http_msg_hdr_val: |
Willy Tarreau | fa4a03c | 2012-03-09 21:28:54 +0100 | [diff] [blame] | 1683 | /* assumes msg->sol points to the first char, and msg->sov |
| 1684 | * points to the first character of the value. |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 1685 | */ |
| 1686 | if (likely(!HTTP_IS_CRLF(*ptr))) |
| 1687 | 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] | 1688 | |
Willy Tarreau | cdbdd52 | 2012-10-12 22:51:15 +0200 | [diff] [blame] | 1689 | msg->eol = ptr - buf->p; |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 1690 | /* Note: we could also copy eol into ->eoh so that we have the |
| 1691 | * real header end in case it ends with lots of LWS, but is this |
| 1692 | * really needed ? |
| 1693 | */ |
| 1694 | if (likely(*ptr == '\r')) |
| 1695 | EAT_AND_JUMP_OR_RETURN(http_msg_hdr_l2_lf, HTTP_MSG_HDR_L2_LF); |
| 1696 | goto http_msg_hdr_l2_lf; |
Willy Tarreau | 976f1ee | 2006-12-17 10:06:03 +0100 | [diff] [blame] | 1697 | |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 1698 | case HTTP_MSG_HDR_L2_LF: |
Willy Tarreau | e3f284a | 2010-09-28 19:42:42 +0200 | [diff] [blame] | 1699 | http_msg_hdr_l2_lf: |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 1700 | EXPECT_LF_HERE(ptr, http_msg_invalid); |
| 1701 | 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] | 1702 | |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 1703 | case HTTP_MSG_HDR_L2_LWS: |
Willy Tarreau | e3f284a | 2010-09-28 19:42:42 +0200 | [diff] [blame] | 1704 | http_msg_hdr_l2_lws: |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 1705 | if (unlikely(HTTP_IS_SPHT(*ptr))) { |
| 1706 | /* LWS: replace HT,CR,LF with spaces */ |
Willy Tarreau | cdbdd52 | 2012-10-12 22:51:15 +0200 | [diff] [blame] | 1707 | for (; buf->p + msg->eol < ptr; msg->eol++) |
| 1708 | buf->p[msg->eol] = ' '; |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 1709 | goto http_msg_hdr_val; |
| 1710 | } |
| 1711 | http_msg_complete_header: |
| 1712 | /* |
| 1713 | * It was a new header, so the last one is finished. |
Willy Tarreau | fa4a03c | 2012-03-09 21:28:54 +0100 | [diff] [blame] | 1714 | * Assumes msg->sol points to the first char, msg->sov points |
| 1715 | * to the first character of the value and msg->eol to the |
| 1716 | * first CR or LF so we know how the line ends. We insert last |
| 1717 | * header into the index. |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 1718 | */ |
Willy Tarreau | cdbdd52 | 2012-10-12 22:51:15 +0200 | [diff] [blame] | 1719 | 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] | 1720 | idx, idx->tail) < 0)) |
| 1721 | goto http_msg_invalid; |
Willy Tarreau | 230fd0b | 2006-12-17 12:05:00 +0100 | [diff] [blame] | 1722 | |
Willy Tarreau | cdbdd52 | 2012-10-12 22:51:15 +0200 | [diff] [blame] | 1723 | msg->sol = ptr - buf->p; |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 1724 | if (likely(!HTTP_IS_CRLF(*ptr))) { |
| 1725 | goto http_msg_hdr_name; |
| 1726 | } |
| 1727 | |
| 1728 | if (likely(*ptr == '\r')) |
| 1729 | EAT_AND_JUMP_OR_RETURN(http_msg_last_lf, HTTP_MSG_LAST_LF); |
| 1730 | goto http_msg_last_lf; |
Willy Tarreau | 230fd0b | 2006-12-17 12:05:00 +0100 | [diff] [blame] | 1731 | |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 1732 | case HTTP_MSG_LAST_LF: |
Willy Tarreau | e3f284a | 2010-09-28 19:42:42 +0200 | [diff] [blame] | 1733 | http_msg_last_lf: |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 1734 | /* Assumes msg->sol points to the first of either CR or LF */ |
| 1735 | EXPECT_LF_HERE(ptr, http_msg_invalid); |
| 1736 | ptr++; |
Willy Tarreau | cdbdd52 | 2012-10-12 22:51:15 +0200 | [diff] [blame] | 1737 | msg->sov = msg->next = ptr - buf->p; |
Willy Tarreau | 3a215be | 2012-03-09 21:39:51 +0100 | [diff] [blame] | 1738 | msg->eoh = msg->sol; |
| 1739 | msg->sol = 0; |
Willy Tarreau | b326fcc | 2007-03-03 13:54:32 +0100 | [diff] [blame] | 1740 | msg->msg_state = HTTP_MSG_BODY; |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 1741 | return; |
Willy Tarreau | b56928a | 2012-04-16 14:51:55 +0200 | [diff] [blame] | 1742 | |
| 1743 | case HTTP_MSG_ERROR: |
| 1744 | /* this may only happen if we call http_msg_analyser() twice with an error */ |
| 1745 | break; |
| 1746 | |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 1747 | default: |
Willy Tarreau | 3770f23 | 2013-12-07 00:01:53 +0100 | [diff] [blame] | 1748 | #ifdef DEBUG_FULL |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 1749 | fprintf(stderr, "FIXME !!!! impossible state at %s:%d = %d\n", __FILE__, __LINE__, state); |
| 1750 | exit(1); |
Willy Tarreau | 230fd0b | 2006-12-17 12:05:00 +0100 | [diff] [blame] | 1751 | #endif |
Willy Tarreau | 3770f23 | 2013-12-07 00:01:53 +0100 | [diff] [blame] | 1752 | ; |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 1753 | } |
| 1754 | http_msg_ood: |
| 1755 | /* out of data */ |
Willy Tarreau | b326fcc | 2007-03-03 13:54:32 +0100 | [diff] [blame] | 1756 | msg->msg_state = state; |
Willy Tarreau | cdbdd52 | 2012-10-12 22:51:15 +0200 | [diff] [blame] | 1757 | msg->next = ptr - buf->p; |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 1758 | return; |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 1759 | |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 1760 | http_msg_invalid: |
| 1761 | /* invalid message */ |
Willy Tarreau | b326fcc | 2007-03-03 13:54:32 +0100 | [diff] [blame] | 1762 | msg->msg_state = HTTP_MSG_ERROR; |
Willy Tarreau | cdbdd52 | 2012-10-12 22:51:15 +0200 | [diff] [blame] | 1763 | msg->next = ptr - buf->p; |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 1764 | return; |
| 1765 | } |
Alexandre Cassen | 5eb1a90 | 2007-11-29 15:43:32 +0100 | [diff] [blame] | 1766 | |
Willy Tarreau | 2492d5b | 2009-07-11 00:06:00 +0200 | [diff] [blame] | 1767 | /* convert an HTTP/0.9 request into an HTTP/1.0 request. Returns 1 if the |
| 1768 | * conversion succeeded, 0 in case of error. If the request was already 1.X, |
| 1769 | * nothing is done and 1 is returned. |
| 1770 | */ |
Willy Tarreau | 418bfcc | 2012-03-09 13:56:20 +0100 | [diff] [blame] | 1771 | static int http_upgrade_v09_to_v10(struct http_txn *txn) |
Willy Tarreau | 2492d5b | 2009-07-11 00:06:00 +0200 | [diff] [blame] | 1772 | { |
| 1773 | int delta; |
| 1774 | char *cur_end; |
Willy Tarreau | 418bfcc | 2012-03-09 13:56:20 +0100 | [diff] [blame] | 1775 | struct http_msg *msg = &txn->req; |
Willy Tarreau | 2492d5b | 2009-07-11 00:06:00 +0200 | [diff] [blame] | 1776 | |
| 1777 | if (msg->sl.rq.v_l != 0) |
| 1778 | return 1; |
| 1779 | |
Apollon Oikonomopoulos | 25a1522 | 2014-04-06 02:46:00 +0300 | [diff] [blame] | 1780 | /* RFC 1945 allows only GET for HTTP/0.9 requests */ |
| 1781 | if (txn->meth != HTTP_METH_GET) |
| 1782 | return 0; |
| 1783 | |
Willy Tarreau | 9b28e03 | 2012-10-12 23:49:43 +0200 | [diff] [blame] | 1784 | cur_end = msg->chn->buf->p + msg->sl.rq.l; |
Willy Tarreau | 2492d5b | 2009-07-11 00:06:00 +0200 | [diff] [blame] | 1785 | delta = 0; |
| 1786 | |
| 1787 | if (msg->sl.rq.u_l == 0) { |
Apollon Oikonomopoulos | 25a1522 | 2014-04-06 02:46:00 +0300 | [diff] [blame] | 1788 | /* HTTP/0.9 requests *must* have a request URI, per RFC 1945 */ |
| 1789 | return 0; |
Willy Tarreau | 2492d5b | 2009-07-11 00:06:00 +0200 | [diff] [blame] | 1790 | } |
| 1791 | /* add HTTP version */ |
Willy Tarreau | 9b28e03 | 2012-10-12 23:49:43 +0200 | [diff] [blame] | 1792 | 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] | 1793 | http_msg_move_end(msg, delta); |
Willy Tarreau | 2492d5b | 2009-07-11 00:06:00 +0200 | [diff] [blame] | 1794 | cur_end += delta; |
Willy Tarreau | 69d8c5d | 2012-05-08 09:44:41 +0200 | [diff] [blame] | 1795 | cur_end = (char *)http_parse_reqline(msg, |
Willy Tarreau | 2492d5b | 2009-07-11 00:06:00 +0200 | [diff] [blame] | 1796 | HTTP_MSG_RQMETH, |
Willy Tarreau | 9b28e03 | 2012-10-12 23:49:43 +0200 | [diff] [blame] | 1797 | msg->chn->buf->p, cur_end + 1, |
Willy Tarreau | 2492d5b | 2009-07-11 00:06:00 +0200 | [diff] [blame] | 1798 | NULL, NULL); |
| 1799 | if (unlikely(!cur_end)) |
| 1800 | return 0; |
| 1801 | |
| 1802 | /* we have a full HTTP/1.0 request now and we know that |
| 1803 | * we have either a CR or an LF at <ptr>. |
| 1804 | */ |
| 1805 | hdr_idx_set_start(&txn->hdr_idx, msg->sl.rq.l, *cur_end == '\r'); |
| 1806 | return 1; |
| 1807 | } |
| 1808 | |
Willy Tarreau | bbf0b37 | 2010-01-18 16:54:40 +0100 | [diff] [blame] | 1809 | /* Parse the Connection: header of an HTTP request, looking for both "close" |
Willy Tarreau | 6acf7c9 | 2012-03-09 13:30:45 +0100 | [diff] [blame] | 1810 | * and "keep-alive" values. If we already know that some headers may safely |
| 1811 | * 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] | 1812 | * - bit 0 means remove "close" headers (in HTTP/1.0 requests/responses) |
| 1813 | * - 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] | 1814 | * Presence of the "Upgrade" token is also checked and reported. |
Willy Tarreau | bbf0b37 | 2010-01-18 16:54:40 +0100 | [diff] [blame] | 1815 | * The TX_HDR_CONN_* flags are adjusted in txn->flags depending on what was |
| 1816 | * found, and TX_CON_*_SET is adjusted depending on what is left so only |
| 1817 | * harmless combinations may be removed. Do not call that after changes have |
Willy Tarreau | 6acf7c9 | 2012-03-09 13:30:45 +0100 | [diff] [blame] | 1818 | * been processed. |
Willy Tarreau | 5b15447 | 2009-12-21 20:11:07 +0100 | [diff] [blame] | 1819 | */ |
Willy Tarreau | 6acf7c9 | 2012-03-09 13:30:45 +0100 | [diff] [blame] | 1820 | 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] | 1821 | { |
Willy Tarreau | 5b15447 | 2009-12-21 20:11:07 +0100 | [diff] [blame] | 1822 | struct hdr_ctx ctx; |
Willy Tarreau | 88d349d | 2010-01-25 12:15:43 +0100 | [diff] [blame] | 1823 | const char *hdr_val = "Connection"; |
| 1824 | int hdr_len = 10; |
Willy Tarreau | 5b15447 | 2009-12-21 20:11:07 +0100 | [diff] [blame] | 1825 | |
Willy Tarreau | bbf0b37 | 2010-01-18 16:54:40 +0100 | [diff] [blame] | 1826 | if (txn->flags & TX_HDR_CONN_PRS) |
Willy Tarreau | 5b15447 | 2009-12-21 20:11:07 +0100 | [diff] [blame] | 1827 | return; |
| 1828 | |
Willy Tarreau | 88d349d | 2010-01-25 12:15:43 +0100 | [diff] [blame] | 1829 | if (unlikely(txn->flags & TX_USE_PX_CONN)) { |
| 1830 | hdr_val = "Proxy-Connection"; |
| 1831 | hdr_len = 16; |
| 1832 | } |
| 1833 | |
Willy Tarreau | 5b15447 | 2009-12-21 20:11:07 +0100 | [diff] [blame] | 1834 | ctx.idx = 0; |
Willy Tarreau | bbf0b37 | 2010-01-18 16:54:40 +0100 | [diff] [blame] | 1835 | txn->flags &= ~(TX_CON_KAL_SET|TX_CON_CLO_SET); |
Willy Tarreau | 9b28e03 | 2012-10-12 23:49:43 +0200 | [diff] [blame] | 1836 | 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] | 1837 | if (ctx.vlen >= 10 && word_match(ctx.line + ctx.val, ctx.vlen, "keep-alive", 10)) { |
| 1838 | txn->flags |= TX_HDR_CONN_KAL; |
Willy Tarreau | 6acf7c9 | 2012-03-09 13:30:45 +0100 | [diff] [blame] | 1839 | if (to_del & 2) |
| 1840 | http_remove_header2(msg, &txn->hdr_idx, &ctx); |
Willy Tarreau | bbf0b37 | 2010-01-18 16:54:40 +0100 | [diff] [blame] | 1841 | else |
| 1842 | txn->flags |= TX_CON_KAL_SET; |
| 1843 | } |
| 1844 | else if (ctx.vlen >= 5 && word_match(ctx.line + ctx.val, ctx.vlen, "close", 5)) { |
| 1845 | txn->flags |= TX_HDR_CONN_CLO; |
Willy Tarreau | 6acf7c9 | 2012-03-09 13:30:45 +0100 | [diff] [blame] | 1846 | if (to_del & 1) |
| 1847 | http_remove_header2(msg, &txn->hdr_idx, &ctx); |
Willy Tarreau | bbf0b37 | 2010-01-18 16:54:40 +0100 | [diff] [blame] | 1848 | else |
| 1849 | txn->flags |= TX_CON_CLO_SET; |
| 1850 | } |
Willy Tarreau | 50fc777 | 2012-11-11 22:19:57 +0100 | [diff] [blame] | 1851 | else if (ctx.vlen >= 7 && word_match(ctx.line + ctx.val, ctx.vlen, "upgrade", 7)) { |
| 1852 | txn->flags |= TX_HDR_CONN_UPG; |
| 1853 | } |
Willy Tarreau | 5b15447 | 2009-12-21 20:11:07 +0100 | [diff] [blame] | 1854 | } |
| 1855 | |
Willy Tarreau | bbf0b37 | 2010-01-18 16:54:40 +0100 | [diff] [blame] | 1856 | txn->flags |= TX_HDR_CONN_PRS; |
| 1857 | return; |
| 1858 | } |
Willy Tarreau | 5b15447 | 2009-12-21 20:11:07 +0100 | [diff] [blame] | 1859 | |
Willy Tarreau | bbf0b37 | 2010-01-18 16:54:40 +0100 | [diff] [blame] | 1860 | /* Apply desired changes on the Connection: header. Values may be removed and/or |
| 1861 | * added depending on the <wanted> flags, which are exclusively composed of |
| 1862 | * TX_CON_CLO_SET and TX_CON_KAL_SET, depending on what flags are desired. The |
| 1863 | * TX_CON_*_SET flags are adjusted in txn->flags depending on what is left. |
| 1864 | */ |
Willy Tarreau | 6acf7c9 | 2012-03-09 13:30:45 +0100 | [diff] [blame] | 1865 | 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] | 1866 | { |
| 1867 | struct hdr_ctx ctx; |
Willy Tarreau | 88d349d | 2010-01-25 12:15:43 +0100 | [diff] [blame] | 1868 | const char *hdr_val = "Connection"; |
| 1869 | int hdr_len = 10; |
Willy Tarreau | bbf0b37 | 2010-01-18 16:54:40 +0100 | [diff] [blame] | 1870 | |
| 1871 | ctx.idx = 0; |
| 1872 | |
Willy Tarreau | 88d349d | 2010-01-25 12:15:43 +0100 | [diff] [blame] | 1873 | |
| 1874 | if (unlikely(txn->flags & TX_USE_PX_CONN)) { |
| 1875 | hdr_val = "Proxy-Connection"; |
| 1876 | hdr_len = 16; |
| 1877 | } |
| 1878 | |
Willy Tarreau | bbf0b37 | 2010-01-18 16:54:40 +0100 | [diff] [blame] | 1879 | txn->flags &= ~(TX_CON_CLO_SET | TX_CON_KAL_SET); |
Willy Tarreau | 9b28e03 | 2012-10-12 23:49:43 +0200 | [diff] [blame] | 1880 | 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] | 1881 | if (ctx.vlen >= 10 && word_match(ctx.line + ctx.val, ctx.vlen, "keep-alive", 10)) { |
| 1882 | if (wanted & TX_CON_KAL_SET) |
| 1883 | txn->flags |= TX_CON_KAL_SET; |
| 1884 | else |
Willy Tarreau | 6acf7c9 | 2012-03-09 13:30:45 +0100 | [diff] [blame] | 1885 | http_remove_header2(msg, &txn->hdr_idx, &ctx); |
Willy Tarreau | 5b15447 | 2009-12-21 20:11:07 +0100 | [diff] [blame] | 1886 | } |
Willy Tarreau | bbf0b37 | 2010-01-18 16:54:40 +0100 | [diff] [blame] | 1887 | else if (ctx.vlen >= 5 && word_match(ctx.line + ctx.val, ctx.vlen, "close", 5)) { |
| 1888 | if (wanted & TX_CON_CLO_SET) |
| 1889 | txn->flags |= TX_CON_CLO_SET; |
| 1890 | else |
Willy Tarreau | 6acf7c9 | 2012-03-09 13:30:45 +0100 | [diff] [blame] | 1891 | http_remove_header2(msg, &txn->hdr_idx, &ctx); |
Willy Tarreau | 0dfdf19 | 2010-01-05 11:33:11 +0100 | [diff] [blame] | 1892 | } |
Willy Tarreau | 5b15447 | 2009-12-21 20:11:07 +0100 | [diff] [blame] | 1893 | } |
Willy Tarreau | bbf0b37 | 2010-01-18 16:54:40 +0100 | [diff] [blame] | 1894 | |
| 1895 | if (wanted == (txn->flags & (TX_CON_CLO_SET|TX_CON_KAL_SET))) |
| 1896 | return; |
| 1897 | |
| 1898 | if ((wanted & TX_CON_CLO_SET) && !(txn->flags & TX_CON_CLO_SET)) { |
| 1899 | txn->flags |= TX_CON_CLO_SET; |
Willy Tarreau | 88d349d | 2010-01-25 12:15:43 +0100 | [diff] [blame] | 1900 | hdr_val = "Connection: close"; |
| 1901 | hdr_len = 17; |
| 1902 | if (unlikely(txn->flags & TX_USE_PX_CONN)) { |
| 1903 | hdr_val = "Proxy-Connection: close"; |
| 1904 | hdr_len = 23; |
| 1905 | } |
Willy Tarreau | 6acf7c9 | 2012-03-09 13:30:45 +0100 | [diff] [blame] | 1906 | http_header_add_tail2(msg, &txn->hdr_idx, hdr_val, hdr_len); |
Willy Tarreau | bbf0b37 | 2010-01-18 16:54:40 +0100 | [diff] [blame] | 1907 | } |
| 1908 | |
| 1909 | if ((wanted & TX_CON_KAL_SET) && !(txn->flags & TX_CON_KAL_SET)) { |
| 1910 | txn->flags |= TX_CON_KAL_SET; |
Willy Tarreau | 88d349d | 2010-01-25 12:15:43 +0100 | [diff] [blame] | 1911 | hdr_val = "Connection: keep-alive"; |
| 1912 | hdr_len = 22; |
| 1913 | if (unlikely(txn->flags & TX_USE_PX_CONN)) { |
| 1914 | hdr_val = "Proxy-Connection: keep-alive"; |
| 1915 | hdr_len = 28; |
| 1916 | } |
Willy Tarreau | 6acf7c9 | 2012-03-09 13:30:45 +0100 | [diff] [blame] | 1917 | http_header_add_tail2(msg, &txn->hdr_idx, hdr_val, hdr_len); |
Willy Tarreau | bbf0b37 | 2010-01-18 16:54:40 +0100 | [diff] [blame] | 1918 | } |
| 1919 | return; |
Willy Tarreau | 5b15447 | 2009-12-21 20:11:07 +0100 | [diff] [blame] | 1920 | } |
| 1921 | |
Willy Tarreau | a458b67 | 2012-03-05 11:17:50 +0100 | [diff] [blame] | 1922 | /* Parse the chunk size at msg->next. Once done, it adjusts ->next to point to the |
Willy Tarreau | d98cf93 | 2009-12-27 22:54:55 +0100 | [diff] [blame] | 1923 | * first byte of body, and increments msg->sov by the number of bytes parsed, |
Willy Tarreau | 2692736 | 2012-05-18 23:22:52 +0200 | [diff] [blame] | 1924 | * so that we know we can forward between ->sol and ->sov. |
Willy Tarreau | 115acb9 | 2009-12-26 13:56:06 +0100 | [diff] [blame] | 1925 | * 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] | 1926 | * 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] | 1927 | */ |
Willy Tarreau | 24e6d97 | 2012-10-26 00:49:52 +0200 | [diff] [blame] | 1928 | static inline int http_parse_chunk_size(struct http_msg *msg) |
Willy Tarreau | 115acb9 | 2009-12-26 13:56:06 +0100 | [diff] [blame] | 1929 | { |
Willy Tarreau | 9b28e03 | 2012-10-12 23:49:43 +0200 | [diff] [blame] | 1930 | const struct buffer *buf = msg->chn->buf; |
Willy Tarreau | cdbdd52 | 2012-10-12 22:51:15 +0200 | [diff] [blame] | 1931 | const char *ptr = b_ptr(buf, msg->next); |
Willy Tarreau | 4baf44b | 2012-03-09 14:10:20 +0100 | [diff] [blame] | 1932 | const char *ptr_old = ptr; |
Willy Tarreau | cdbdd52 | 2012-10-12 22:51:15 +0200 | [diff] [blame] | 1933 | const char *end = buf->data + buf->size; |
| 1934 | const char *stop = bi_end(buf); |
Willy Tarreau | 115acb9 | 2009-12-26 13:56:06 +0100 | [diff] [blame] | 1935 | unsigned int chunk = 0; |
| 1936 | |
| 1937 | /* The chunk size is in the following form, though we are only |
| 1938 | * interested in the size and CRLF : |
| 1939 | * 1*HEXDIGIT *WSP *[ ';' extensions ] CRLF |
| 1940 | */ |
| 1941 | while (1) { |
| 1942 | int c; |
Willy Tarreau | 363a5bb | 2012-03-02 20:14:45 +0100 | [diff] [blame] | 1943 | if (ptr == stop) |
Willy Tarreau | 115acb9 | 2009-12-26 13:56:06 +0100 | [diff] [blame] | 1944 | return 0; |
Willy Tarreau | d98cf93 | 2009-12-27 22:54:55 +0100 | [diff] [blame] | 1945 | c = hex2i(*ptr); |
Willy Tarreau | 115acb9 | 2009-12-26 13:56:06 +0100 | [diff] [blame] | 1946 | if (c < 0) /* not a hex digit anymore */ |
| 1947 | break; |
Willy Tarreau | 0161d62 | 2013-04-02 01:26:55 +0200 | [diff] [blame] | 1948 | if (unlikely(++ptr >= end)) |
Willy Tarreau | cdbdd52 | 2012-10-12 22:51:15 +0200 | [diff] [blame] | 1949 | ptr = buf->data; |
Willy Tarreau | 431946e | 2012-02-24 19:20:12 +0100 | [diff] [blame] | 1950 | if (chunk & 0xF8000000) /* integer overflow will occur if result >= 2GB */ |
Willy Tarreau | e1582eb | 2010-12-12 13:10:11 +0100 | [diff] [blame] | 1951 | goto error; |
Willy Tarreau | 115acb9 | 2009-12-26 13:56:06 +0100 | [diff] [blame] | 1952 | chunk = (chunk << 4) + c; |
| 1953 | } |
| 1954 | |
Willy Tarreau | d98cf93 | 2009-12-27 22:54:55 +0100 | [diff] [blame] | 1955 | /* empty size not allowed */ |
Willy Tarreau | 0161d62 | 2013-04-02 01:26:55 +0200 | [diff] [blame] | 1956 | if (unlikely(ptr == ptr_old)) |
Willy Tarreau | e1582eb | 2010-12-12 13:10:11 +0100 | [diff] [blame] | 1957 | goto error; |
Willy Tarreau | d98cf93 | 2009-12-27 22:54:55 +0100 | [diff] [blame] | 1958 | |
| 1959 | while (http_is_spht[(unsigned char)*ptr]) { |
| 1960 | if (++ptr >= end) |
Willy Tarreau | cdbdd52 | 2012-10-12 22:51:15 +0200 | [diff] [blame] | 1961 | ptr = buf->data; |
Willy Tarreau | 0161d62 | 2013-04-02 01:26:55 +0200 | [diff] [blame] | 1962 | if (unlikely(ptr == stop)) |
Willy Tarreau | 115acb9 | 2009-12-26 13:56:06 +0100 | [diff] [blame] | 1963 | return 0; |
Willy Tarreau | 115acb9 | 2009-12-26 13:56:06 +0100 | [diff] [blame] | 1964 | } |
| 1965 | |
Willy Tarreau | d98cf93 | 2009-12-27 22:54:55 +0100 | [diff] [blame] | 1966 | /* Up to there, we know that at least one byte is present at *ptr. Check |
| 1967 | * for the end of chunk size. |
| 1968 | */ |
| 1969 | while (1) { |
| 1970 | if (likely(HTTP_IS_CRLF(*ptr))) { |
| 1971 | /* we now have a CR or an LF at ptr */ |
| 1972 | if (likely(*ptr == '\r')) { |
| 1973 | if (++ptr >= end) |
Willy Tarreau | cdbdd52 | 2012-10-12 22:51:15 +0200 | [diff] [blame] | 1974 | ptr = buf->data; |
Willy Tarreau | 363a5bb | 2012-03-02 20:14:45 +0100 | [diff] [blame] | 1975 | if (ptr == stop) |
Willy Tarreau | d98cf93 | 2009-12-27 22:54:55 +0100 | [diff] [blame] | 1976 | return 0; |
| 1977 | } |
Willy Tarreau | 115acb9 | 2009-12-26 13:56:06 +0100 | [diff] [blame] | 1978 | |
Willy Tarreau | d98cf93 | 2009-12-27 22:54:55 +0100 | [diff] [blame] | 1979 | if (*ptr != '\n') |
Willy Tarreau | e1582eb | 2010-12-12 13:10:11 +0100 | [diff] [blame] | 1980 | goto error; |
Willy Tarreau | d98cf93 | 2009-12-27 22:54:55 +0100 | [diff] [blame] | 1981 | if (++ptr >= end) |
Willy Tarreau | cdbdd52 | 2012-10-12 22:51:15 +0200 | [diff] [blame] | 1982 | ptr = buf->data; |
Willy Tarreau | d98cf93 | 2009-12-27 22:54:55 +0100 | [diff] [blame] | 1983 | /* done */ |
| 1984 | break; |
| 1985 | } |
| 1986 | else if (*ptr == ';') { |
| 1987 | /* chunk extension, ends at next CRLF */ |
| 1988 | if (++ptr >= end) |
Willy Tarreau | cdbdd52 | 2012-10-12 22:51:15 +0200 | [diff] [blame] | 1989 | ptr = buf->data; |
Willy Tarreau | 363a5bb | 2012-03-02 20:14:45 +0100 | [diff] [blame] | 1990 | if (ptr == stop) |
Willy Tarreau | 115acb9 | 2009-12-26 13:56:06 +0100 | [diff] [blame] | 1991 | return 0; |
Willy Tarreau | d98cf93 | 2009-12-27 22:54:55 +0100 | [diff] [blame] | 1992 | |
| 1993 | while (!HTTP_IS_CRLF(*ptr)) { |
| 1994 | if (++ptr >= end) |
Willy Tarreau | cdbdd52 | 2012-10-12 22:51:15 +0200 | [diff] [blame] | 1995 | ptr = buf->data; |
Willy Tarreau | 363a5bb | 2012-03-02 20:14:45 +0100 | [diff] [blame] | 1996 | if (ptr == stop) |
Willy Tarreau | d98cf93 | 2009-12-27 22:54:55 +0100 | [diff] [blame] | 1997 | return 0; |
| 1998 | } |
| 1999 | /* we have a CRLF now, loop above */ |
| 2000 | continue; |
Willy Tarreau | 115acb9 | 2009-12-26 13:56:06 +0100 | [diff] [blame] | 2001 | } |
Willy Tarreau | d98cf93 | 2009-12-27 22:54:55 +0100 | [diff] [blame] | 2002 | else |
Willy Tarreau | e1582eb | 2010-12-12 13:10:11 +0100 | [diff] [blame] | 2003 | goto error; |
Willy Tarreau | 115acb9 | 2009-12-26 13:56:06 +0100 | [diff] [blame] | 2004 | } |
| 2005 | |
Willy Tarreau | d98cf93 | 2009-12-27 22:54:55 +0100 | [diff] [blame] | 2006 | /* OK we found our CRLF and now <ptr> points to the next byte, |
Willy Tarreau | a458b67 | 2012-03-05 11:17:50 +0100 | [diff] [blame] | 2007 | * which may or may not be present. We save that into ->next and |
Willy Tarreau | d98cf93 | 2009-12-27 22:54:55 +0100 | [diff] [blame] | 2008 | * ->sov. |
Willy Tarreau | 115acb9 | 2009-12-26 13:56:06 +0100 | [diff] [blame] | 2009 | */ |
Willy Tarreau | 0161d62 | 2013-04-02 01:26:55 +0200 | [diff] [blame] | 2010 | if (unlikely(ptr < ptr_old)) |
Willy Tarreau | cdbdd52 | 2012-10-12 22:51:15 +0200 | [diff] [blame] | 2011 | msg->sov += buf->size; |
Willy Tarreau | a458b67 | 2012-03-05 11:17:50 +0100 | [diff] [blame] | 2012 | msg->sov += ptr - ptr_old; |
Willy Tarreau | cdbdd52 | 2012-10-12 22:51:15 +0200 | [diff] [blame] | 2013 | msg->next = buffer_count(buf, buf->p, ptr); |
Willy Tarreau | 124d991 | 2011-03-01 20:30:48 +0100 | [diff] [blame] | 2014 | msg->chunk_len = chunk; |
| 2015 | msg->body_len += chunk; |
Willy Tarreau | d98cf93 | 2009-12-27 22:54:55 +0100 | [diff] [blame] | 2016 | msg->msg_state = chunk ? HTTP_MSG_DATA : HTTP_MSG_TRAILERS; |
Willy Tarreau | 115acb9 | 2009-12-26 13:56:06 +0100 | [diff] [blame] | 2017 | return 1; |
Willy Tarreau | e1582eb | 2010-12-12 13:10:11 +0100 | [diff] [blame] | 2018 | error: |
Willy Tarreau | cdbdd52 | 2012-10-12 22:51:15 +0200 | [diff] [blame] | 2019 | msg->err_pos = buffer_count(buf, buf->p, ptr); |
Willy Tarreau | e1582eb | 2010-12-12 13:10:11 +0100 | [diff] [blame] | 2020 | return -1; |
Willy Tarreau | 115acb9 | 2009-12-26 13:56:06 +0100 | [diff] [blame] | 2021 | } |
| 2022 | |
Willy Tarreau | 4baf44b | 2012-03-09 14:10:20 +0100 | [diff] [blame] | 2023 | /* This function skips trailers in the buffer associated with HTTP |
Willy Tarreau | a458b67 | 2012-03-05 11:17:50 +0100 | [diff] [blame] | 2024 | * 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] | 2025 | * the trailers is found, it is automatically scheduled to be forwarded, |
| 2026 | * msg->msg_state switches to HTTP_MSG_DONE, and the function returns >0. |
| 2027 | * If not enough data are available, the function does not change anything |
Willy Tarreau | a458b67 | 2012-03-05 11:17:50 +0100 | [diff] [blame] | 2028 | * except maybe msg->next and msg->sov if it could parse some lines, and returns |
Willy Tarreau | 638cd02 | 2010-01-03 07:42:04 +0100 | [diff] [blame] | 2029 | * zero. If a parse error is encountered, the function returns < 0 and does not |
Willy Tarreau | a458b67 | 2012-03-05 11:17:50 +0100 | [diff] [blame] | 2030 | * change anything except maybe msg->next and msg->sov. Note that the message |
Willy Tarreau | 638cd02 | 2010-01-03 07:42:04 +0100 | [diff] [blame] | 2031 | * must already be in HTTP_MSG_TRAILERS state before calling this function, |
| 2032 | * which implies that all non-trailers data have already been scheduled for |
Willy Tarreau | 2692736 | 2012-05-18 23:22:52 +0200 | [diff] [blame] | 2033 | * forwarding, and that the difference between msg->sol and msg->sov exactly |
Willy Tarreau | 638cd02 | 2010-01-03 07:42:04 +0100 | [diff] [blame] | 2034 | * matches the length of trailers already parsed and not forwarded. It is also |
| 2035 | * important to note that this function is designed to be able to parse wrapped |
| 2036 | * headers at end of buffer. |
Willy Tarreau | d98cf93 | 2009-12-27 22:54:55 +0100 | [diff] [blame] | 2037 | */ |
Willy Tarreau | 24e6d97 | 2012-10-26 00:49:52 +0200 | [diff] [blame] | 2038 | static int http_forward_trailers(struct http_msg *msg) |
Willy Tarreau | d98cf93 | 2009-12-27 22:54:55 +0100 | [diff] [blame] | 2039 | { |
Willy Tarreau | 9b28e03 | 2012-10-12 23:49:43 +0200 | [diff] [blame] | 2040 | const struct buffer *buf = msg->chn->buf; |
Willy Tarreau | 4baf44b | 2012-03-09 14:10:20 +0100 | [diff] [blame] | 2041 | |
Willy Tarreau | a458b67 | 2012-03-05 11:17:50 +0100 | [diff] [blame] | 2042 | /* we have msg->next which points to next line. Look for CRLF. */ |
Willy Tarreau | d98cf93 | 2009-12-27 22:54:55 +0100 | [diff] [blame] | 2043 | while (1) { |
Willy Tarreau | 4baf44b | 2012-03-09 14:10:20 +0100 | [diff] [blame] | 2044 | const char *p1 = NULL, *p2 = NULL; |
Willy Tarreau | cdbdd52 | 2012-10-12 22:51:15 +0200 | [diff] [blame] | 2045 | const char *ptr = b_ptr(buf, msg->next); |
| 2046 | const char *stop = bi_end(buf); |
Willy Tarreau | 638cd02 | 2010-01-03 07:42:04 +0100 | [diff] [blame] | 2047 | int bytes; |
Willy Tarreau | d98cf93 | 2009-12-27 22:54:55 +0100 | [diff] [blame] | 2048 | |
| 2049 | /* scan current line and stop at LF or CRLF */ |
| 2050 | while (1) { |
Willy Tarreau | 363a5bb | 2012-03-02 20:14:45 +0100 | [diff] [blame] | 2051 | if (ptr == stop) |
Willy Tarreau | d98cf93 | 2009-12-27 22:54:55 +0100 | [diff] [blame] | 2052 | return 0; |
| 2053 | |
| 2054 | if (*ptr == '\n') { |
| 2055 | if (!p1) |
| 2056 | p1 = ptr; |
| 2057 | p2 = ptr; |
| 2058 | break; |
| 2059 | } |
| 2060 | |
| 2061 | if (*ptr == '\r') { |
Willy Tarreau | e1582eb | 2010-12-12 13:10:11 +0100 | [diff] [blame] | 2062 | if (p1) { |
Willy Tarreau | cdbdd52 | 2012-10-12 22:51:15 +0200 | [diff] [blame] | 2063 | msg->err_pos = buffer_count(buf, buf->p, ptr); |
Willy Tarreau | d98cf93 | 2009-12-27 22:54:55 +0100 | [diff] [blame] | 2064 | return -1; |
Willy Tarreau | e1582eb | 2010-12-12 13:10:11 +0100 | [diff] [blame] | 2065 | } |
Willy Tarreau | d98cf93 | 2009-12-27 22:54:55 +0100 | [diff] [blame] | 2066 | p1 = ptr; |
| 2067 | } |
| 2068 | |
| 2069 | ptr++; |
Willy Tarreau | cdbdd52 | 2012-10-12 22:51:15 +0200 | [diff] [blame] | 2070 | if (ptr >= buf->data + buf->size) |
| 2071 | ptr = buf->data; |
Willy Tarreau | d98cf93 | 2009-12-27 22:54:55 +0100 | [diff] [blame] | 2072 | } |
| 2073 | |
| 2074 | /* after LF; point to beginning of next line */ |
| 2075 | p2++; |
Willy Tarreau | cdbdd52 | 2012-10-12 22:51:15 +0200 | [diff] [blame] | 2076 | if (p2 >= buf->data + buf->size) |
| 2077 | p2 = buf->data; |
Willy Tarreau | d98cf93 | 2009-12-27 22:54:55 +0100 | [diff] [blame] | 2078 | |
Willy Tarreau | cdbdd52 | 2012-10-12 22:51:15 +0200 | [diff] [blame] | 2079 | bytes = p2 - b_ptr(buf, msg->next); |
Willy Tarreau | 638cd02 | 2010-01-03 07:42:04 +0100 | [diff] [blame] | 2080 | if (bytes < 0) |
Willy Tarreau | cdbdd52 | 2012-10-12 22:51:15 +0200 | [diff] [blame] | 2081 | bytes += buf->size; |
Willy Tarreau | 638cd02 | 2010-01-03 07:42:04 +0100 | [diff] [blame] | 2082 | |
| 2083 | /* schedule this line for forwarding */ |
| 2084 | msg->sov += bytes; |
Willy Tarreau | cdbdd52 | 2012-10-12 22:51:15 +0200 | [diff] [blame] | 2085 | if (msg->sov >= buf->size) |
| 2086 | msg->sov -= buf->size; |
Willy Tarreau | d98cf93 | 2009-12-27 22:54:55 +0100 | [diff] [blame] | 2087 | |
Willy Tarreau | cdbdd52 | 2012-10-12 22:51:15 +0200 | [diff] [blame] | 2088 | if (p1 == b_ptr(buf, msg->next)) { |
Willy Tarreau | 638cd02 | 2010-01-03 07:42:04 +0100 | [diff] [blame] | 2089 | /* LF/CRLF at beginning of line => end of trailers at p2. |
| 2090 | * Everything was scheduled for forwarding, there's nothing |
| 2091 | * left from this message. |
Willy Tarreau | 5523b32 | 2009-12-29 12:05:52 +0100 | [diff] [blame] | 2092 | */ |
Willy Tarreau | cdbdd52 | 2012-10-12 22:51:15 +0200 | [diff] [blame] | 2093 | msg->next = buffer_count(buf, buf->p, p2); |
Willy Tarreau | d98cf93 | 2009-12-27 22:54:55 +0100 | [diff] [blame] | 2094 | msg->msg_state = HTTP_MSG_DONE; |
| 2095 | return 1; |
| 2096 | } |
| 2097 | /* OK, next line then */ |
Willy Tarreau | cdbdd52 | 2012-10-12 22:51:15 +0200 | [diff] [blame] | 2098 | msg->next = buffer_count(buf, buf->p, p2); |
Willy Tarreau | d98cf93 | 2009-12-27 22:54:55 +0100 | [diff] [blame] | 2099 | } |
| 2100 | } |
| 2101 | |
Willy Tarreau | 54d23df | 2012-10-25 19:04:45 +0200 | [diff] [blame] | 2102 | /* This function may be called only in HTTP_MSG_CHUNK_CRLF. It reads the CRLF or |
Willy Tarreau | d98cf93 | 2009-12-27 22:54:55 +0100 | [diff] [blame] | 2103 | * a possible LF alone at the end of a chunk. It automatically adjusts msg->sov, |
Willy Tarreau | 2692736 | 2012-05-18 23:22:52 +0200 | [diff] [blame] | 2104 | * ->sol, ->next in order to include this part into the next forwarding phase. |
Willy Tarreau | a458b67 | 2012-03-05 11:17:50 +0100 | [diff] [blame] | 2105 | * 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] | 2106 | * It also sets msg_state to HTTP_MSG_CHUNK_SIZE and returns >0 on success. If |
| 2107 | * not enough data are available, the function does not change anything and |
| 2108 | * returns zero. If a parse error is encountered, the function returns < 0 and |
| 2109 | * does not change anything. Note: this function is designed to parse wrapped |
| 2110 | * CRLF at the end of the buffer. |
| 2111 | */ |
Willy Tarreau | 24e6d97 | 2012-10-26 00:49:52 +0200 | [diff] [blame] | 2112 | static inline int http_skip_chunk_crlf(struct http_msg *msg) |
Willy Tarreau | d98cf93 | 2009-12-27 22:54:55 +0100 | [diff] [blame] | 2113 | { |
Willy Tarreau | 9b28e03 | 2012-10-12 23:49:43 +0200 | [diff] [blame] | 2114 | const struct buffer *buf = msg->chn->buf; |
Willy Tarreau | 4baf44b | 2012-03-09 14:10:20 +0100 | [diff] [blame] | 2115 | const char *ptr; |
Willy Tarreau | d98cf93 | 2009-12-27 22:54:55 +0100 | [diff] [blame] | 2116 | int bytes; |
| 2117 | |
| 2118 | /* NB: we'll check data availabilty at the end. It's not a |
| 2119 | * problem because whatever we match first will be checked |
| 2120 | * against the correct length. |
| 2121 | */ |
| 2122 | bytes = 1; |
Willy Tarreau | cdbdd52 | 2012-10-12 22:51:15 +0200 | [diff] [blame] | 2123 | ptr = buf->p; |
Willy Tarreau | d98cf93 | 2009-12-27 22:54:55 +0100 | [diff] [blame] | 2124 | if (*ptr == '\r') { |
| 2125 | bytes++; |
| 2126 | ptr++; |
Willy Tarreau | cdbdd52 | 2012-10-12 22:51:15 +0200 | [diff] [blame] | 2127 | if (ptr >= buf->data + buf->size) |
| 2128 | ptr = buf->data; |
Willy Tarreau | d98cf93 | 2009-12-27 22:54:55 +0100 | [diff] [blame] | 2129 | } |
| 2130 | |
Willy Tarreau | cdbdd52 | 2012-10-12 22:51:15 +0200 | [diff] [blame] | 2131 | if (bytes > buf->i) |
Willy Tarreau | d98cf93 | 2009-12-27 22:54:55 +0100 | [diff] [blame] | 2132 | return 0; |
| 2133 | |
Willy Tarreau | e1582eb | 2010-12-12 13:10:11 +0100 | [diff] [blame] | 2134 | if (*ptr != '\n') { |
Willy Tarreau | cdbdd52 | 2012-10-12 22:51:15 +0200 | [diff] [blame] | 2135 | msg->err_pos = buffer_count(buf, buf->p, ptr); |
Willy Tarreau | d98cf93 | 2009-12-27 22:54:55 +0100 | [diff] [blame] | 2136 | return -1; |
Willy Tarreau | e1582eb | 2010-12-12 13:10:11 +0100 | [diff] [blame] | 2137 | } |
Willy Tarreau | d98cf93 | 2009-12-27 22:54:55 +0100 | [diff] [blame] | 2138 | |
| 2139 | ptr++; |
Willy Tarreau | 0161d62 | 2013-04-02 01:26:55 +0200 | [diff] [blame] | 2140 | if (unlikely(ptr >= buf->data + buf->size)) |
Willy Tarreau | cdbdd52 | 2012-10-12 22:51:15 +0200 | [diff] [blame] | 2141 | ptr = buf->data; |
Willy Tarreau | 2692736 | 2012-05-18 23:22:52 +0200 | [diff] [blame] | 2142 | /* prepare the CRLF to be forwarded (between ->sol and ->sov) */ |
| 2143 | msg->sol = 0; |
Willy Tarreau | ea1175a | 2012-03-05 15:52:30 +0100 | [diff] [blame] | 2144 | msg->sov = msg->next = bytes; |
Willy Tarreau | d98cf93 | 2009-12-27 22:54:55 +0100 | [diff] [blame] | 2145 | msg->msg_state = HTTP_MSG_CHUNK_SIZE; |
| 2146 | return 1; |
| 2147 | } |
Willy Tarreau | 5b15447 | 2009-12-21 20:11:07 +0100 | [diff] [blame] | 2148 | |
Willy Tarreau | 0e9b1b4 | 2014-03-19 12:07:52 +0100 | [diff] [blame] | 2149 | /* Parses a qvalue and returns it multipled by 1000, from 0 to 1000. If the |
| 2150 | * value is larger than 1000, it is bound to 1000. The parser consumes up to |
| 2151 | * 1 digit, one dot and 3 digits and stops on the first invalid character. |
| 2152 | * Unparsable qvalues return 1000 as "q=1.000". |
| 2153 | */ |
| 2154 | int parse_qvalue(const char *qvalue) |
| 2155 | { |
| 2156 | int q = 1000; |
| 2157 | |
| 2158 | if (!isdigit(*qvalue)) |
| 2159 | goto out; |
| 2160 | q = (*qvalue++ - '0') * 1000; |
| 2161 | |
| 2162 | if (*qvalue++ != '.') |
| 2163 | goto out; |
| 2164 | |
| 2165 | if (!isdigit(*qvalue)) |
| 2166 | goto out; |
| 2167 | q += (*qvalue++ - '0') * 100; |
| 2168 | |
| 2169 | if (!isdigit(*qvalue)) |
| 2170 | goto out; |
| 2171 | q += (*qvalue++ - '0') * 10; |
| 2172 | |
| 2173 | if (!isdigit(*qvalue)) |
| 2174 | goto out; |
| 2175 | q += (*qvalue++ - '0') * 1; |
| 2176 | out: |
| 2177 | if (q > 1000) |
| 2178 | q = 1000; |
| 2179 | return q; |
| 2180 | } |
William Lallemand | 82fe75c | 2012-10-23 10:25:10 +0200 | [diff] [blame] | 2181 | |
| 2182 | /* |
| 2183 | * Selects a compression algorithm depending on the client request. |
Willy Tarreau | 05d8460 | 2012-10-26 02:11:25 +0200 | [diff] [blame] | 2184 | */ |
William Lallemand | 82fe75c | 2012-10-23 10:25:10 +0200 | [diff] [blame] | 2185 | int select_compression_request_header(struct session *s, struct buffer *req) |
| 2186 | { |
| 2187 | struct http_txn *txn = &s->txn; |
Willy Tarreau | 70737d1 | 2012-10-27 00:34:28 +0200 | [diff] [blame] | 2188 | struct http_msg *msg = &txn->req; |
William Lallemand | 82fe75c | 2012-10-23 10:25:10 +0200 | [diff] [blame] | 2189 | struct hdr_ctx ctx; |
| 2190 | struct comp_algo *comp_algo = NULL; |
Willy Tarreau | 3c7b97b | 2012-10-26 14:50:26 +0200 | [diff] [blame] | 2191 | struct comp_algo *comp_algo_back = NULL; |
William Lallemand | 82fe75c | 2012-10-23 10:25:10 +0200 | [diff] [blame] | 2192 | |
Finn Arne Gangstad | cbb9a4b | 2012-10-29 21:43:01 +0100 | [diff] [blame] | 2193 | /* Disable compression for older user agents announcing themselves as "Mozilla/4" |
| 2194 | * 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] | 2195 | * See http://zoompf.com/2012/02/lose-the-wait-http-compression for more details. |
| 2196 | */ |
| 2197 | ctx.idx = 0; |
| 2198 | if (http_find_header2("User-Agent", 10, req->p, &txn->hdr_idx, &ctx) && |
| 2199 | ctx.vlen >= 9 && |
Finn Arne Gangstad | cbb9a4b | 2012-10-29 21:43:01 +0100 | [diff] [blame] | 2200 | memcmp(ctx.line + ctx.val, "Mozilla/4", 9) == 0 && |
| 2201 | (ctx.vlen < 31 || |
| 2202 | memcmp(ctx.line + ctx.val + 25, "MSIE ", 5) != 0 || |
| 2203 | ctx.line[ctx.val + 30] < '6' || |
| 2204 | (ctx.line[ctx.val + 30] == '6' && |
| 2205 | (ctx.vlen < 54 || memcmp(ctx.line + 51, "SV1", 3) != 0)))) { |
| 2206 | s->comp_algo = NULL; |
| 2207 | return 0; |
Willy Tarreau | 05d8460 | 2012-10-26 02:11:25 +0200 | [diff] [blame] | 2208 | } |
| 2209 | |
William Lallemand | 82fe75c | 2012-10-23 10:25:10 +0200 | [diff] [blame] | 2210 | /* search for the algo in the backend in priority or the frontend */ |
Willy Tarreau | 3c7b97b | 2012-10-26 14:50:26 +0200 | [diff] [blame] | 2211 | if ((s->be->comp && (comp_algo_back = s->be->comp->algos)) || (s->fe->comp && (comp_algo_back = s->fe->comp->algos))) { |
Willy Tarreau | 0e9b1b4 | 2014-03-19 12:07:52 +0100 | [diff] [blame] | 2212 | int best_q = 0; |
| 2213 | |
William Lallemand | 82fe75c | 2012-10-23 10:25:10 +0200 | [diff] [blame] | 2214 | ctx.idx = 0; |
| 2215 | 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] | 2216 | const char *qval; |
| 2217 | int q; |
| 2218 | int toklen; |
| 2219 | |
| 2220 | /* try to isolate the token from the optional q-value */ |
| 2221 | toklen = 0; |
| 2222 | while (toklen < ctx.vlen && http_is_token[(unsigned char)*(ctx.line + ctx.val + toklen)]) |
| 2223 | toklen++; |
| 2224 | |
| 2225 | qval = ctx.line + ctx.val + toklen; |
| 2226 | while (1) { |
| 2227 | while (qval < ctx.line + ctx.val + ctx.vlen && http_is_lws[(unsigned char)*qval]) |
| 2228 | qval++; |
| 2229 | |
| 2230 | if (qval >= ctx.line + ctx.val + ctx.vlen || *qval != ';') { |
| 2231 | qval = NULL; |
| 2232 | break; |
| 2233 | } |
| 2234 | qval++; |
Willy Tarreau | 70737d1 | 2012-10-27 00:34:28 +0200 | [diff] [blame] | 2235 | |
Willy Tarreau | 0e9b1b4 | 2014-03-19 12:07:52 +0100 | [diff] [blame] | 2236 | while (qval < ctx.line + ctx.val + ctx.vlen && http_is_lws[(unsigned char)*qval]) |
| 2237 | qval++; |
Willy Tarreau | 70737d1 | 2012-10-27 00:34:28 +0200 | [diff] [blame] | 2238 | |
Willy Tarreau | 0e9b1b4 | 2014-03-19 12:07:52 +0100 | [diff] [blame] | 2239 | if (qval >= ctx.line + ctx.val + ctx.vlen) { |
| 2240 | qval = NULL; |
| 2241 | break; |
William Lallemand | 82fe75c | 2012-10-23 10:25:10 +0200 | [diff] [blame] | 2242 | } |
Willy Tarreau | 0e9b1b4 | 2014-03-19 12:07:52 +0100 | [diff] [blame] | 2243 | if (strncmp(qval, "q=", MIN(ctx.line + ctx.val + ctx.vlen - qval, 2)) == 0) |
| 2244 | break; |
| 2245 | |
| 2246 | while (qval < ctx.line + ctx.val + ctx.vlen && *qval != ';') |
| 2247 | qval++; |
| 2248 | } |
| 2249 | |
| 2250 | /* here we have qval pointing to the first "q=" attribute or NULL if not found */ |
| 2251 | q = qval ? parse_qvalue(qval + 2) : 1000; |
| 2252 | |
| 2253 | if (q <= best_q) |
| 2254 | continue; |
| 2255 | |
| 2256 | for (comp_algo = comp_algo_back; comp_algo; comp_algo = comp_algo->next) { |
| 2257 | if (*(ctx.line + ctx.val) == '*' || |
| 2258 | word_match(ctx.line + ctx.val, toklen, comp_algo->name, comp_algo->name_len)) { |
| 2259 | s->comp_algo = comp_algo; |
| 2260 | best_q = q; |
| 2261 | break; |
| 2262 | } |
| 2263 | } |
| 2264 | } |
| 2265 | } |
| 2266 | |
| 2267 | /* remove all occurrences of the header when "compression offload" is set */ |
| 2268 | if (s->comp_algo) { |
| 2269 | if ((s->be->comp && s->be->comp->offload) || (s->fe->comp && s->fe->comp->offload)) { |
| 2270 | http_remove_header2(msg, &txn->hdr_idx, &ctx); |
| 2271 | ctx.idx = 0; |
| 2272 | while (http_find_header2("Accept-Encoding", 15, req->p, &txn->hdr_idx, &ctx)) { |
| 2273 | http_remove_header2(msg, &txn->hdr_idx, &ctx); |
William Lallemand | 82fe75c | 2012-10-23 10:25:10 +0200 | [diff] [blame] | 2274 | } |
| 2275 | } |
Willy Tarreau | 0e9b1b4 | 2014-03-19 12:07:52 +0100 | [diff] [blame] | 2276 | return 1; |
William Lallemand | 82fe75c | 2012-10-23 10:25:10 +0200 | [diff] [blame] | 2277 | } |
| 2278 | |
| 2279 | /* identity is implicit does not require headers */ |
Willy Tarreau | 3c7b97b | 2012-10-26 14:50:26 +0200 | [diff] [blame] | 2280 | if ((s->be->comp && (comp_algo_back = s->be->comp->algos)) || (s->fe->comp && (comp_algo_back = s->fe->comp->algos))) { |
| 2281 | for (comp_algo = comp_algo_back; comp_algo; comp_algo = comp_algo->next) { |
William Lallemand | 82fe75c | 2012-10-23 10:25:10 +0200 | [diff] [blame] | 2282 | if (comp_algo->add_data == identity_add_data) { |
| 2283 | s->comp_algo = comp_algo; |
| 2284 | return 1; |
| 2285 | } |
| 2286 | } |
| 2287 | } |
| 2288 | |
| 2289 | s->comp_algo = NULL; |
William Lallemand | 82fe75c | 2012-10-23 10:25:10 +0200 | [diff] [blame] | 2290 | return 0; |
| 2291 | } |
| 2292 | |
| 2293 | /* |
| 2294 | * Selects a comression algorithm depending of the server response. |
| 2295 | */ |
| 2296 | int select_compression_response_header(struct session *s, struct buffer *res) |
| 2297 | { |
| 2298 | struct http_txn *txn = &s->txn; |
| 2299 | struct http_msg *msg = &txn->rsp; |
| 2300 | struct hdr_ctx ctx; |
| 2301 | struct comp_type *comp_type; |
William Lallemand | 82fe75c | 2012-10-23 10:25:10 +0200 | [diff] [blame] | 2302 | |
| 2303 | /* no common compression algorithm was found in request header */ |
| 2304 | if (s->comp_algo == NULL) |
| 2305 | goto fail; |
| 2306 | |
| 2307 | /* HTTP < 1.1 should not be compressed */ |
Willy Tarreau | 7257550 | 2013-12-24 14:41:35 +0100 | [diff] [blame] | 2308 | 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] | 2309 | goto fail; |
| 2310 | |
William Lallemand | d300261 | 2012-11-26 14:34:47 +0100 | [diff] [blame] | 2311 | /* 200 only */ |
| 2312 | if (txn->status != 200) |
| 2313 | goto fail; |
| 2314 | |
William Lallemand | 82fe75c | 2012-10-23 10:25:10 +0200 | [diff] [blame] | 2315 | /* Content-Length is null */ |
| 2316 | if (!(msg->flags & HTTP_MSGF_TE_CHNK) && msg->body_len == 0) |
| 2317 | goto fail; |
| 2318 | |
Willy Tarreau | 667c2a3 | 2013-04-09 08:13:58 +0200 | [diff] [blame] | 2319 | /* TEMPORARY WORKAROUND: do not compress if response is chunked !!!!!! */ |
| 2320 | if (msg->flags & HTTP_MSGF_TE_CHNK) |
| 2321 | goto fail; |
| 2322 | |
William Lallemand | 82fe75c | 2012-10-23 10:25:10 +0200 | [diff] [blame] | 2323 | /* content is already compressed */ |
Willy Tarreau | 0a80a8d | 2012-11-26 16:33:37 +0100 | [diff] [blame] | 2324 | ctx.idx = 0; |
William Lallemand | 82fe75c | 2012-10-23 10:25:10 +0200 | [diff] [blame] | 2325 | if (http_find_header2("Content-Encoding", 16, res->p, &txn->hdr_idx, &ctx)) |
| 2326 | goto fail; |
| 2327 | |
Willy Tarreau | 56e9ffa | 2013-01-05 16:20:35 +0100 | [diff] [blame] | 2328 | /* no compression when Cache-Control: no-transform is present in the message */ |
| 2329 | ctx.idx = 0; |
| 2330 | while (http_find_header2("Cache-Control", 13, res->p, &txn->hdr_idx, &ctx)) { |
| 2331 | if (word_match(ctx.line + ctx.val, ctx.vlen, "no-transform", 12)) |
| 2332 | goto fail; |
| 2333 | } |
| 2334 | |
William Lallemand | 82fe75c | 2012-10-23 10:25:10 +0200 | [diff] [blame] | 2335 | comp_type = NULL; |
| 2336 | |
Willy Tarreau | 0a80a8d | 2012-11-26 16:33:37 +0100 | [diff] [blame] | 2337 | /* we don't want to compress multipart content-types, nor content-types that are |
| 2338 | * not listed in the "compression type" directive if any. If no content-type was |
| 2339 | * found but configuration requires one, we don't compress either. Backend has |
| 2340 | * the priority. |
William Lallemand | 82fe75c | 2012-10-23 10:25:10 +0200 | [diff] [blame] | 2341 | */ |
Willy Tarreau | 0a80a8d | 2012-11-26 16:33:37 +0100 | [diff] [blame] | 2342 | ctx.idx = 0; |
| 2343 | if (http_find_header2("Content-Type", 12, res->p, &txn->hdr_idx, &ctx)) { |
| 2344 | if (ctx.vlen >= 9 && strncasecmp("multipart", ctx.line+ctx.val, 9) == 0) |
| 2345 | goto fail; |
| 2346 | |
| 2347 | if ((s->be->comp && (comp_type = s->be->comp->types)) || |
| 2348 | (s->fe->comp && (comp_type = s->fe->comp->types))) { |
William Lallemand | 82fe75c | 2012-10-23 10:25:10 +0200 | [diff] [blame] | 2349 | for (; comp_type; comp_type = comp_type->next) { |
Willy Tarreau | 0a80a8d | 2012-11-26 16:33:37 +0100 | [diff] [blame] | 2350 | if (ctx.vlen >= comp_type->name_len && |
| 2351 | 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] | 2352 | /* this Content-Type should be compressed */ |
| 2353 | break; |
| 2354 | } |
Willy Tarreau | 0a80a8d | 2012-11-26 16:33:37 +0100 | [diff] [blame] | 2355 | /* this Content-Type should not be compressed */ |
| 2356 | if (comp_type == NULL) |
| 2357 | goto fail; |
William Lallemand | 82fe75c | 2012-10-23 10:25:10 +0200 | [diff] [blame] | 2358 | } |
William Lallemand | 82fe75c | 2012-10-23 10:25:10 +0200 | [diff] [blame] | 2359 | } |
Willy Tarreau | 0a80a8d | 2012-11-26 16:33:37 +0100 | [diff] [blame] | 2360 | else { /* no content-type header */ |
| 2361 | if ((s->be->comp && s->be->comp->types) || (s->fe->comp && s->fe->comp->types)) |
| 2362 | goto fail; /* a content-type was required */ |
William Lallemand | d300261 | 2012-11-26 14:34:47 +0100 | [diff] [blame] | 2363 | } |
| 2364 | |
William Lallemand | d85f917 | 2012-11-09 17:05:39 +0100 | [diff] [blame] | 2365 | /* limit compression rate */ |
| 2366 | if (global.comp_rate_lim > 0) |
| 2367 | if (read_freq_ctr(&global.comp_bps_in) > global.comp_rate_lim) |
| 2368 | goto fail; |
| 2369 | |
William Lallemand | 072a2bf | 2012-11-20 17:01:01 +0100 | [diff] [blame] | 2370 | /* limit cpu usage */ |
| 2371 | if (idle_pct < compress_min_idle) |
| 2372 | goto fail; |
| 2373 | |
William Lallemand | 4c49fae | 2012-11-07 15:00:23 +0100 | [diff] [blame] | 2374 | /* initialize compression */ |
William Lallemand | f374783 | 2012-11-09 12:33:10 +0100 | [diff] [blame] | 2375 | 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] | 2376 | goto fail; |
| 2377 | |
William Lallemand | ec3e389 | 2012-11-12 17:02:18 +0100 | [diff] [blame] | 2378 | s->flags |= SN_COMP_READY; |
| 2379 | |
William Lallemand | 82fe75c | 2012-10-23 10:25:10 +0200 | [diff] [blame] | 2380 | /* remove Content-Length header */ |
Willy Tarreau | 0a80a8d | 2012-11-26 16:33:37 +0100 | [diff] [blame] | 2381 | ctx.idx = 0; |
William Lallemand | 82fe75c | 2012-10-23 10:25:10 +0200 | [diff] [blame] | 2382 | if ((msg->flags & HTTP_MSGF_CNT_LEN) && http_find_header2("Content-Length", 14, res->p, &txn->hdr_idx, &ctx)) |
| 2383 | http_remove_header2(msg, &txn->hdr_idx, &ctx); |
| 2384 | |
| 2385 | /* add Transfer-Encoding header */ |
| 2386 | if (!(msg->flags & HTTP_MSGF_TE_CHNK)) |
| 2387 | http_header_add_tail2(&txn->rsp, &txn->hdr_idx, "Transfer-Encoding: chunked", 26); |
| 2388 | |
| 2389 | /* |
| 2390 | * Add Content-Encoding header when it's not identity encoding. |
| 2391 | * RFC 2616 : Identity encoding: This content-coding is used only in the |
| 2392 | * Accept-Encoding header, and SHOULD NOT be used in the Content-Encoding |
| 2393 | * header. |
| 2394 | */ |
| 2395 | if (s->comp_algo->add_data != identity_add_data) { |
Willy Tarreau | 19d14ef | 2012-10-29 16:51:55 +0100 | [diff] [blame] | 2396 | trash.len = 18; |
| 2397 | memcpy(trash.str, "Content-Encoding: ", trash.len); |
| 2398 | memcpy(trash.str + trash.len, s->comp_algo->name, s->comp_algo->name_len); |
| 2399 | trash.len += s->comp_algo->name_len; |
| 2400 | trash.str[trash.len] = '\0'; |
| 2401 | 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] | 2402 | } |
William Lallemand | 82fe75c | 2012-10-23 10:25:10 +0200 | [diff] [blame] | 2403 | return 1; |
| 2404 | |
| 2405 | fail: |
Willy Tarreau | b97b619 | 2012-11-19 14:55:02 +0100 | [diff] [blame] | 2406 | s->comp_algo = NULL; |
William Lallemand | 82fe75c | 2012-10-23 10:25:10 +0200 | [diff] [blame] | 2407 | return 0; |
| 2408 | } |
| 2409 | |
| 2410 | |
Willy Tarreau | d787e66 | 2009-07-07 10:14:51 +0200 | [diff] [blame] | 2411 | /* This stream analyser waits for a complete HTTP request. It returns 1 if the |
| 2412 | * processing can continue on next analysers, or zero if it either needs more |
| 2413 | * data or wants to immediately abort the request (eg: timeout, error, ...). It |
| 2414 | * is tied to AN_REQ_WAIT_HTTP and may may remove itself from s->req->analysers |
| 2415 | * when it has nothing left to do, and may remove any analyser when it wants to |
| 2416 | * abort. |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 2417 | */ |
Willy Tarreau | 7421efb | 2012-07-02 15:11:27 +0200 | [diff] [blame] | 2418 | int http_wait_for_request(struct session *s, struct channel *req, int an_bit) |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 2419 | { |
Willy Tarreau | 59234e9 | 2008-11-30 23:51:27 +0100 | [diff] [blame] | 2420 | /* |
| 2421 | * We will parse the partial (or complete) lines. |
| 2422 | * We will check the request syntax, and also join multi-line |
| 2423 | * headers. An index of all the lines will be elaborated while |
| 2424 | * parsing. |
| 2425 | * |
| 2426 | * For the parsing, we use a 28 states FSM. |
| 2427 | * |
| 2428 | * Here is the information we currently have : |
Willy Tarreau | 9b28e03 | 2012-10-12 23:49:43 +0200 | [diff] [blame] | 2429 | * req->buf->p = beginning of request |
| 2430 | * req->buf->p + msg->eoh = end of processed headers / start of current one |
| 2431 | * req->buf->p + req->buf->i = end of input data |
Willy Tarreau | 2692736 | 2012-05-18 23:22:52 +0200 | [diff] [blame] | 2432 | * msg->eol = end of current header or line (LF or CRLF) |
| 2433 | * msg->next = first non-visited byte |
Willy Tarreau | d787e66 | 2009-07-07 10:14:51 +0200 | [diff] [blame] | 2434 | * |
| 2435 | * At end of parsing, we may perform a capture of the error (if any), and |
| 2436 | * we will set a few fields (msg->sol, txn->meth, sn->flags/SN_REDIRECTABLE). |
| 2437 | * We also check for monitor-uri, logging, HTTP/0.9 to 1.0 conversion, and |
| 2438 | * finally headers capture. |
Willy Tarreau | 59234e9 | 2008-11-30 23:51:27 +0100 | [diff] [blame] | 2439 | */ |
Willy Tarreau | 976f1ee | 2006-12-17 10:06:03 +0100 | [diff] [blame] | 2440 | |
Willy Tarreau | 59234e9 | 2008-11-30 23:51:27 +0100 | [diff] [blame] | 2441 | int cur_idx; |
Willy Tarreau | e8e785b | 2009-12-26 15:34:26 +0100 | [diff] [blame] | 2442 | int use_close_only; |
Willy Tarreau | 59234e9 | 2008-11-30 23:51:27 +0100 | [diff] [blame] | 2443 | struct http_txn *txn = &s->txn; |
| 2444 | struct http_msg *msg = &txn->req; |
Willy Tarreau | 32b47f4 | 2009-10-18 20:55:02 +0200 | [diff] [blame] | 2445 | struct hdr_ctx ctx; |
Willy Tarreau | 976f1ee | 2006-12-17 10:06:03 +0100 | [diff] [blame] | 2446 | |
Willy Tarreau | 02d6cfc | 2012-03-01 18:19:58 +0100 | [diff] [blame] | 2447 | DPRINTF(stderr,"[%u] %s: session=%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] | 2448 | now_ms, __FUNCTION__, |
| 2449 | s, |
| 2450 | req, |
| 2451 | req->rex, req->wex, |
| 2452 | req->flags, |
Willy Tarreau | 9b28e03 | 2012-10-12 23:49:43 +0200 | [diff] [blame] | 2453 | req->buf->i, |
Willy Tarreau | 6bf1736 | 2009-02-24 10:48:35 +0100 | [diff] [blame] | 2454 | req->analysers); |
| 2455 | |
Willy Tarreau | 52a0c60 | 2009-08-16 22:45:38 +0200 | [diff] [blame] | 2456 | /* we're speaking HTTP here, so let's speak HTTP to the client */ |
| 2457 | s->srv_error = http_return_srv_error; |
| 2458 | |
Willy Tarreau | 83e3af0 | 2009-12-28 17:39:57 +0100 | [diff] [blame] | 2459 | /* There's a protected area at the end of the buffer for rewriting |
| 2460 | * purposes. We don't want to start to parse the request if the |
| 2461 | * protected area is affected, because we may have to move processed |
| 2462 | * data later, which is much more complicated. |
| 2463 | */ |
Willy Tarreau | 9b28e03 | 2012-10-12 23:49:43 +0200 | [diff] [blame] | 2464 | if (buffer_not_empty(req->buf) && msg->msg_state < HTTP_MSG_ERROR) { |
Willy Tarreau | 379357a | 2013-06-08 12:55:46 +0200 | [diff] [blame] | 2465 | if (txn->flags & TX_NOT_FIRST) { |
| 2466 | if (unlikely(!channel_reserved(req))) { |
Willy Tarreau | 03cdb7c | 2012-08-27 23:14:58 +0200 | [diff] [blame] | 2467 | 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] | 2468 | goto failed_keep_alive; |
Willy Tarreau | 2ab6eb1 | 2010-01-02 22:04:45 +0100 | [diff] [blame] | 2469 | /* 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] | 2470 | channel_dont_connect(req); |
Willy Tarreau | 03cdb7c | 2012-08-27 23:14:58 +0200 | [diff] [blame] | 2471 | req->flags |= CF_READ_DONTWAIT; /* try to get back here ASAP */ |
Willy Tarreau | d7ad9f5 | 2013-12-31 17:26:25 +0100 | [diff] [blame] | 2472 | req->flags |= CF_WAKE_WRITE; |
Willy Tarreau | 2ab6eb1 | 2010-01-02 22:04:45 +0100 | [diff] [blame] | 2473 | return 0; |
| 2474 | } |
Willy Tarreau | 379357a | 2013-06-08 12:55:46 +0200 | [diff] [blame] | 2475 | if (unlikely(bi_end(req->buf) < b_ptr(req->buf, msg->next) || |
| 2476 | bi_end(req->buf) > req->buf->data + req->buf->size - global.tune.maxrewrite)) |
| 2477 | buffer_slow_realign(req->buf); |
Willy Tarreau | 83e3af0 | 2009-12-28 17:39:57 +0100 | [diff] [blame] | 2478 | } |
| 2479 | |
Willy Tarreau | 065e833 | 2010-01-08 00:30:20 +0100 | [diff] [blame] | 2480 | /* Note that we have the same problem with the response ; we |
| 2481 | * may want to send a redirect, error or anything which requires |
| 2482 | * some spare space. So we'll ensure that we have at least |
| 2483 | * maxrewrite bytes available in the response buffer before |
| 2484 | * processing that one. This will only affect pipelined |
| 2485 | * keep-alive requests. |
| 2486 | */ |
| 2487 | if ((txn->flags & TX_NOT_FIRST) && |
Willy Tarreau | 379357a | 2013-06-08 12:55:46 +0200 | [diff] [blame] | 2488 | unlikely(!channel_reserved(s->rep) || |
Willy Tarreau | 9b28e03 | 2012-10-12 23:49:43 +0200 | [diff] [blame] | 2489 | bi_end(s->rep->buf) < b_ptr(s->rep->buf, txn->rsp.next) || |
| 2490 | bi_end(s->rep->buf) > s->rep->buf->data + s->rep->buf->size - global.tune.maxrewrite)) { |
| 2491 | if (s->rep->buf->o) { |
Willy Tarreau | 03cdb7c | 2012-08-27 23:14:58 +0200 | [diff] [blame] | 2492 | if (s->rep->flags & (CF_SHUTW|CF_SHUTW_NOW|CF_WRITE_ERROR|CF_WRITE_TIMEOUT)) |
Willy Tarreau | 6464841 | 2010-03-05 10:41:54 +0100 | [diff] [blame] | 2493 | goto failed_keep_alive; |
Willy Tarreau | 065e833 | 2010-01-08 00:30:20 +0100 | [diff] [blame] | 2494 | /* don't let a connection request be initiated */ |
Willy Tarreau | 8263d2b | 2012-08-28 00:06:31 +0200 | [diff] [blame] | 2495 | channel_dont_connect(req); |
Willy Tarreau | 03cdb7c | 2012-08-27 23:14:58 +0200 | [diff] [blame] | 2496 | s->rep->flags &= ~CF_EXPECT_MORE; /* speed up sending a previous response */ |
Willy Tarreau | d7ad9f5 | 2013-12-31 17:26:25 +0100 | [diff] [blame] | 2497 | s->rep->flags |= CF_WAKE_WRITE; |
Willy Tarreau | 0499e35 | 2010-12-17 07:13:42 +0100 | [diff] [blame] | 2498 | s->rep->analysers |= an_bit; /* wake us up once it changes */ |
Willy Tarreau | 065e833 | 2010-01-08 00:30:20 +0100 | [diff] [blame] | 2499 | return 0; |
| 2500 | } |
| 2501 | } |
| 2502 | |
Willy Tarreau | 9b28e03 | 2012-10-12 23:49:43 +0200 | [diff] [blame] | 2503 | if (likely(msg->next < req->buf->i)) /* some unparsed data are available */ |
Willy Tarreau | a560c21 | 2012-03-09 13:50:57 +0100 | [diff] [blame] | 2504 | http_msg_analyzer(msg, &txn->hdr_idx); |
Willy Tarreau | 83e3af0 | 2009-12-28 17:39:57 +0100 | [diff] [blame] | 2505 | } |
| 2506 | |
Willy Tarreau | 59234e9 | 2008-11-30 23:51:27 +0100 | [diff] [blame] | 2507 | /* 1: we might have to print this header in debug mode */ |
| 2508 | if (unlikely((global.mode & MODE_DEBUG) && |
| 2509 | (!(global.mode & MODE_QUIET) || (global.mode & MODE_VERBOSE)) && |
Willy Tarreau | 655dce9 | 2009-11-08 13:10:58 +0100 | [diff] [blame] | 2510 | (msg->msg_state >= HTTP_MSG_BODY || msg->msg_state == HTTP_MSG_ERROR))) { |
Willy Tarreau | 59234e9 | 2008-11-30 23:51:27 +0100 | [diff] [blame] | 2511 | char *eol, *sol; |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 2512 | |
Willy Tarreau | 9b28e03 | 2012-10-12 23:49:43 +0200 | [diff] [blame] | 2513 | sol = req->buf->p; |
Willy Tarreau | e92693a | 2012-09-24 21:13:39 +0200 | [diff] [blame] | 2514 | /* this is a bit complex : in case of error on the request line, |
| 2515 | * we know that rq.l is still zero, so we display only the part |
| 2516 | * up to the end of the line (truncated by debug_hdr). |
| 2517 | */ |
Willy Tarreau | 9b28e03 | 2012-10-12 23:49:43 +0200 | [diff] [blame] | 2518 | 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] | 2519 | debug_hdr("clireq", s, sol, eol); |
Willy Tarreau | 45e73e3 | 2006-12-17 00:05:15 +0100 | [diff] [blame] | 2520 | |
Willy Tarreau | 59234e9 | 2008-11-30 23:51:27 +0100 | [diff] [blame] | 2521 | sol += hdr_idx_first_pos(&txn->hdr_idx); |
| 2522 | cur_idx = hdr_idx_first_idx(&txn->hdr_idx); |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 2523 | |
Willy Tarreau | 59234e9 | 2008-11-30 23:51:27 +0100 | [diff] [blame] | 2524 | while (cur_idx) { |
| 2525 | eol = sol + txn->hdr_idx.v[cur_idx].len; |
| 2526 | debug_hdr("clihdr", s, sol, eol); |
| 2527 | sol = eol + txn->hdr_idx.v[cur_idx].cr + 1; |
| 2528 | cur_idx = txn->hdr_idx.v[cur_idx].next; |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 2529 | } |
Willy Tarreau | 59234e9 | 2008-11-30 23:51:27 +0100 | [diff] [blame] | 2530 | } |
| 2531 | |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 2532 | |
Willy Tarreau | 59234e9 | 2008-11-30 23:51:27 +0100 | [diff] [blame] | 2533 | /* |
| 2534 | * Now we quickly check if we have found a full valid request. |
| 2535 | * If not so, we check the FD and buffer states before leaving. |
| 2536 | * A full request is indicated by the fact that we have seen |
Willy Tarreau | 655dce9 | 2009-11-08 13:10:58 +0100 | [diff] [blame] | 2537 | * the double LF/CRLF, so the state is >= HTTP_MSG_BODY. Invalid |
Willy Tarreau | d3c343f | 2010-01-16 10:26:19 +0100 | [diff] [blame] | 2538 | * requests are checked first. When waiting for a second request |
| 2539 | * on a keep-alive session, if we encounter and error, close, t/o, |
| 2540 | * we note the error in the session flags but don't set any state. |
| 2541 | * Since the error will be noted there, it will not be counted by |
| 2542 | * process_session() as a frontend error. |
Willy Tarreau | da7ff64 | 2010-06-23 11:44:09 +0200 | [diff] [blame] | 2543 | * Last, we may increase some tracked counters' http request errors on |
| 2544 | * the cases that are deliberately the client's fault. For instance, |
| 2545 | * a timeout or connection reset is not counted as an error. However |
| 2546 | * a bad request is. |
Willy Tarreau | 59234e9 | 2008-11-30 23:51:27 +0100 | [diff] [blame] | 2547 | */ |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 2548 | |
Willy Tarreau | 655dce9 | 2009-11-08 13:10:58 +0100 | [diff] [blame] | 2549 | if (unlikely(msg->msg_state < HTTP_MSG_BODY)) { |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 2550 | /* |
Willy Tarreau | 59234e9 | 2008-11-30 23:51:27 +0100 | [diff] [blame] | 2551 | * First, let's catch bad requests. |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 2552 | */ |
Willy Tarreau | 3e1b6d1 | 2010-03-04 23:02:38 +0100 | [diff] [blame] | 2553 | if (unlikely(msg->msg_state == HTTP_MSG_ERROR)) { |
Willy Tarreau | da7ff64 | 2010-06-23 11:44:09 +0200 | [diff] [blame] | 2554 | session_inc_http_req_ctr(s); |
| 2555 | session_inc_http_err_ctr(s); |
Willy Tarreau | 3e1b6d1 | 2010-03-04 23:02:38 +0100 | [diff] [blame] | 2556 | proxy_inc_fe_req_ctr(s->fe); |
Willy Tarreau | 59234e9 | 2008-11-30 23:51:27 +0100 | [diff] [blame] | 2557 | goto return_bad_req; |
Willy Tarreau | 3e1b6d1 | 2010-03-04 23:02:38 +0100 | [diff] [blame] | 2558 | } |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 2559 | |
Willy Tarreau | 59234e9 | 2008-11-30 23:51:27 +0100 | [diff] [blame] | 2560 | /* 1: Since we are in header mode, if there's no space |
| 2561 | * left for headers, we won't be able to free more |
| 2562 | * later, so the session will never terminate. We |
| 2563 | * must terminate it now. |
| 2564 | */ |
Willy Tarreau | 9b28e03 | 2012-10-12 23:49:43 +0200 | [diff] [blame] | 2565 | if (unlikely(buffer_full(req->buf, global.tune.maxrewrite))) { |
Willy Tarreau | 59234e9 | 2008-11-30 23:51:27 +0100 | [diff] [blame] | 2566 | /* FIXME: check if URI is set and return Status |
| 2567 | * 414 Request URI too long instead. |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 2568 | */ |
Willy Tarreau | da7ff64 | 2010-06-23 11:44:09 +0200 | [diff] [blame] | 2569 | session_inc_http_req_ctr(s); |
| 2570 | session_inc_http_err_ctr(s); |
Willy Tarreau | 3e1b6d1 | 2010-03-04 23:02:38 +0100 | [diff] [blame] | 2571 | proxy_inc_fe_req_ctr(s->fe); |
Willy Tarreau | fec4d89 | 2011-09-02 20:04:57 +0200 | [diff] [blame] | 2572 | if (msg->err_pos < 0) |
Willy Tarreau | 9b28e03 | 2012-10-12 23:49:43 +0200 | [diff] [blame] | 2573 | msg->err_pos = req->buf->i; |
Willy Tarreau | 59234e9 | 2008-11-30 23:51:27 +0100 | [diff] [blame] | 2574 | goto return_bad_req; |
| 2575 | } |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 2576 | |
Willy Tarreau | 59234e9 | 2008-11-30 23:51:27 +0100 | [diff] [blame] | 2577 | /* 2: have we encountered a read error ? */ |
Willy Tarreau | 03cdb7c | 2012-08-27 23:14:58 +0200 | [diff] [blame] | 2578 | else if (req->flags & CF_READ_ERROR) { |
Willy Tarreau | d3c343f | 2010-01-16 10:26:19 +0100 | [diff] [blame] | 2579 | if (!(s->flags & SN_ERR_MASK)) |
| 2580 | s->flags |= SN_ERR_CLICL; |
| 2581 | |
Willy Tarreau | fcffa69 | 2010-01-10 14:21:19 +0100 | [diff] [blame] | 2582 | if (txn->flags & TX_WAIT_NEXT_RQ) |
Willy Tarreau | b608feb | 2010-01-02 22:47:18 +0100 | [diff] [blame] | 2583 | goto failed_keep_alive; |
| 2584 | |
Willy Tarreau | 59234e9 | 2008-11-30 23:51:27 +0100 | [diff] [blame] | 2585 | /* we cannot return any message on error */ |
Willy Tarreau | da7ff64 | 2010-06-23 11:44:09 +0200 | [diff] [blame] | 2586 | if (msg->err_pos >= 0) { |
Willy Tarreau | 8a0cef2 | 2012-03-09 13:39:23 +0100 | [diff] [blame] | 2587 | http_capture_bad_message(&s->fe->invalid_req, s, msg, msg->msg_state, s->fe); |
Willy Tarreau | da7ff64 | 2010-06-23 11:44:09 +0200 | [diff] [blame] | 2588 | session_inc_http_err_ctr(s); |
| 2589 | } |
| 2590 | |
Willy Tarreau | dc979f2 | 2012-12-04 10:39:01 +0100 | [diff] [blame] | 2591 | txn->status = 400; |
| 2592 | stream_int_retnclose(req->prod, NULL); |
Willy Tarreau | 59234e9 | 2008-11-30 23:51:27 +0100 | [diff] [blame] | 2593 | msg->msg_state = HTTP_MSG_ERROR; |
| 2594 | req->analysers = 0; |
Krzysztof Piotr Oledzki | aeebf9b | 2009-10-04 15:43:17 +0200 | [diff] [blame] | 2595 | |
Willy Tarreau | da7ff64 | 2010-06-23 11:44:09 +0200 | [diff] [blame] | 2596 | session_inc_http_req_ctr(s); |
Willy Tarreau | 3e1b6d1 | 2010-03-04 23:02:38 +0100 | [diff] [blame] | 2597 | proxy_inc_fe_req_ctr(s->fe); |
Willy Tarreau | 7d0aaf3 | 2011-03-10 23:25:56 +0100 | [diff] [blame] | 2598 | s->fe->fe_counters.failed_req++; |
Krzysztof Piotr Oledzki | aeebf9b | 2009-10-04 15:43:17 +0200 | [diff] [blame] | 2599 | if (s->listener->counters) |
| 2600 | s->listener->counters->failed_req++; |
| 2601 | |
Willy Tarreau | 59234e9 | 2008-11-30 23:51:27 +0100 | [diff] [blame] | 2602 | if (!(s->flags & SN_FINST_MASK)) |
| 2603 | s->flags |= SN_FINST_R; |
| 2604 | return 0; |
| 2605 | } |
Willy Tarreau | f9839bd | 2008-08-27 23:57:16 +0200 | [diff] [blame] | 2606 | |
Willy Tarreau | 59234e9 | 2008-11-30 23:51:27 +0100 | [diff] [blame] | 2607 | /* 3: has the read timeout expired ? */ |
Willy Tarreau | 03cdb7c | 2012-08-27 23:14:58 +0200 | [diff] [blame] | 2608 | else if (req->flags & CF_READ_TIMEOUT || tick_is_expired(req->analyse_exp, now_ms)) { |
Willy Tarreau | d3c343f | 2010-01-16 10:26:19 +0100 | [diff] [blame] | 2609 | if (!(s->flags & SN_ERR_MASK)) |
| 2610 | s->flags |= SN_ERR_CLITO; |
| 2611 | |
Willy Tarreau | fcffa69 | 2010-01-10 14:21:19 +0100 | [diff] [blame] | 2612 | if (txn->flags & TX_WAIT_NEXT_RQ) |
Willy Tarreau | b608feb | 2010-01-02 22:47:18 +0100 | [diff] [blame] | 2613 | goto failed_keep_alive; |
| 2614 | |
Willy Tarreau | 59234e9 | 2008-11-30 23:51:27 +0100 | [diff] [blame] | 2615 | /* read timeout : give up with an error message. */ |
Willy Tarreau | da7ff64 | 2010-06-23 11:44:09 +0200 | [diff] [blame] | 2616 | if (msg->err_pos >= 0) { |
Willy Tarreau | 8a0cef2 | 2012-03-09 13:39:23 +0100 | [diff] [blame] | 2617 | http_capture_bad_message(&s->fe->invalid_req, s, msg, msg->msg_state, s->fe); |
Willy Tarreau | da7ff64 | 2010-06-23 11:44:09 +0200 | [diff] [blame] | 2618 | session_inc_http_err_ctr(s); |
| 2619 | } |
Willy Tarreau | 59234e9 | 2008-11-30 23:51:27 +0100 | [diff] [blame] | 2620 | txn->status = 408; |
Willy Tarreau | 783f258 | 2012-09-04 12:19:04 +0200 | [diff] [blame] | 2621 | stream_int_retnclose(req->prod, http_error_message(s, HTTP_ERR_408)); |
Willy Tarreau | 59234e9 | 2008-11-30 23:51:27 +0100 | [diff] [blame] | 2622 | msg->msg_state = HTTP_MSG_ERROR; |
| 2623 | req->analysers = 0; |
Krzysztof Piotr Oledzki | aeebf9b | 2009-10-04 15:43:17 +0200 | [diff] [blame] | 2624 | |
Willy Tarreau | da7ff64 | 2010-06-23 11:44:09 +0200 | [diff] [blame] | 2625 | session_inc_http_req_ctr(s); |
Willy Tarreau | 3e1b6d1 | 2010-03-04 23:02:38 +0100 | [diff] [blame] | 2626 | proxy_inc_fe_req_ctr(s->fe); |
Willy Tarreau | 7d0aaf3 | 2011-03-10 23:25:56 +0100 | [diff] [blame] | 2627 | s->fe->fe_counters.failed_req++; |
Krzysztof Piotr Oledzki | aeebf9b | 2009-10-04 15:43:17 +0200 | [diff] [blame] | 2628 | if (s->listener->counters) |
| 2629 | s->listener->counters->failed_req++; |
| 2630 | |
Willy Tarreau | 59234e9 | 2008-11-30 23:51:27 +0100 | [diff] [blame] | 2631 | if (!(s->flags & SN_FINST_MASK)) |
| 2632 | s->flags |= SN_FINST_R; |
| 2633 | return 0; |
| 2634 | } |
Willy Tarreau | c65a3ba | 2008-08-11 23:42:50 +0200 | [diff] [blame] | 2635 | |
Willy Tarreau | 59234e9 | 2008-11-30 23:51:27 +0100 | [diff] [blame] | 2636 | /* 4: have we encountered a close ? */ |
Willy Tarreau | 03cdb7c | 2012-08-27 23:14:58 +0200 | [diff] [blame] | 2637 | else if (req->flags & CF_SHUTR) { |
Willy Tarreau | d3c343f | 2010-01-16 10:26:19 +0100 | [diff] [blame] | 2638 | if (!(s->flags & SN_ERR_MASK)) |
| 2639 | s->flags |= SN_ERR_CLICL; |
| 2640 | |
Willy Tarreau | fcffa69 | 2010-01-10 14:21:19 +0100 | [diff] [blame] | 2641 | if (txn->flags & TX_WAIT_NEXT_RQ) |
Willy Tarreau | b608feb | 2010-01-02 22:47:18 +0100 | [diff] [blame] | 2642 | goto failed_keep_alive; |
| 2643 | |
Willy Tarreau | 4076a15 | 2009-04-02 15:18:36 +0200 | [diff] [blame] | 2644 | if (msg->err_pos >= 0) |
Willy Tarreau | 8a0cef2 | 2012-03-09 13:39:23 +0100 | [diff] [blame] | 2645 | http_capture_bad_message(&s->fe->invalid_req, s, msg, msg->msg_state, s->fe); |
Willy Tarreau | 59234e9 | 2008-11-30 23:51:27 +0100 | [diff] [blame] | 2646 | txn->status = 400; |
Willy Tarreau | 783f258 | 2012-09-04 12:19:04 +0200 | [diff] [blame] | 2647 | stream_int_retnclose(req->prod, http_error_message(s, HTTP_ERR_400)); |
Willy Tarreau | 59234e9 | 2008-11-30 23:51:27 +0100 | [diff] [blame] | 2648 | msg->msg_state = HTTP_MSG_ERROR; |
| 2649 | req->analysers = 0; |
Krzysztof Piotr Oledzki | aeebf9b | 2009-10-04 15:43:17 +0200 | [diff] [blame] | 2650 | |
Willy Tarreau | da7ff64 | 2010-06-23 11:44:09 +0200 | [diff] [blame] | 2651 | session_inc_http_err_ctr(s); |
| 2652 | session_inc_http_req_ctr(s); |
Willy Tarreau | 3e1b6d1 | 2010-03-04 23:02:38 +0100 | [diff] [blame] | 2653 | proxy_inc_fe_req_ctr(s->fe); |
Willy Tarreau | 7d0aaf3 | 2011-03-10 23:25:56 +0100 | [diff] [blame] | 2654 | s->fe->fe_counters.failed_req++; |
Krzysztof Piotr Oledzki | aeebf9b | 2009-10-04 15:43:17 +0200 | [diff] [blame] | 2655 | if (s->listener->counters) |
| 2656 | s->listener->counters->failed_req++; |
| 2657 | |
Willy Tarreau | 59234e9 | 2008-11-30 23:51:27 +0100 | [diff] [blame] | 2658 | if (!(s->flags & SN_FINST_MASK)) |
| 2659 | s->flags |= SN_FINST_R; |
Willy Tarreau | dafde43 | 2008-08-17 01:00:46 +0200 | [diff] [blame] | 2660 | return 0; |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 2661 | } |
| 2662 | |
Willy Tarreau | 8263d2b | 2012-08-28 00:06:31 +0200 | [diff] [blame] | 2663 | channel_dont_connect(req); |
Willy Tarreau | 03cdb7c | 2012-08-27 23:14:58 +0200 | [diff] [blame] | 2664 | req->flags |= CF_READ_DONTWAIT; /* try to get back here ASAP */ |
| 2665 | s->rep->flags &= ~CF_EXPECT_MORE; /* speed up sending a previous response */ |
Willy Tarreau | 5e20552 | 2011-12-17 16:34:27 +0100 | [diff] [blame] | 2666 | #ifdef TCP_QUICKACK |
Willy Tarreau | 3c72872 | 2014-01-23 13:50:42 +0100 | [diff] [blame] | 2667 | if (s->listener->options & LI_O_NOQUICKACK && req->buf->i && objt_conn(s->req->prod->end) && conn_ctrl_ready(__objt_conn(s->req->prod->end))) { |
Willy Tarreau | 5e20552 | 2011-12-17 16:34:27 +0100 | [diff] [blame] | 2668 | /* We need more data, we have to re-enable quick-ack in case we |
| 2669 | * previously disabled it, otherwise we might cause the client |
| 2670 | * to delay next data. |
| 2671 | */ |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 2672 | setsockopt(__objt_conn(s->req->prod->end)->t.sock.fd, IPPROTO_TCP, TCP_QUICKACK, &one, sizeof(one)); |
Willy Tarreau | 5e20552 | 2011-12-17 16:34:27 +0100 | [diff] [blame] | 2673 | } |
| 2674 | #endif |
Willy Tarreau | 1b194fe | 2009-03-21 21:10:04 +0100 | [diff] [blame] | 2675 | |
Willy Tarreau | fcffa69 | 2010-01-10 14:21:19 +0100 | [diff] [blame] | 2676 | if ((msg->msg_state != HTTP_MSG_RQBEFORE) && (txn->flags & TX_WAIT_NEXT_RQ)) { |
| 2677 | /* If the client starts to talk, let's fall back to |
| 2678 | * request timeout processing. |
| 2679 | */ |
| 2680 | txn->flags &= ~TX_WAIT_NEXT_RQ; |
Willy Tarreau | b16a574 | 2010-01-10 14:46:16 +0100 | [diff] [blame] | 2681 | req->analyse_exp = TICK_ETERNITY; |
Willy Tarreau | fcffa69 | 2010-01-10 14:21:19 +0100 | [diff] [blame] | 2682 | } |
| 2683 | |
Willy Tarreau | 59234e9 | 2008-11-30 23:51:27 +0100 | [diff] [blame] | 2684 | /* just set the request timeout once at the beginning of the request */ |
Willy Tarreau | b16a574 | 2010-01-10 14:46:16 +0100 | [diff] [blame] | 2685 | if (!tick_isset(req->analyse_exp)) { |
| 2686 | if ((msg->msg_state == HTTP_MSG_RQBEFORE) && |
| 2687 | (txn->flags & TX_WAIT_NEXT_RQ) && |
| 2688 | tick_isset(s->be->timeout.httpka)) |
| 2689 | req->analyse_exp = tick_add(now_ms, s->be->timeout.httpka); |
| 2690 | else |
| 2691 | req->analyse_exp = tick_add_ifset(now_ms, s->be->timeout.httpreq); |
| 2692 | } |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 2693 | |
Willy Tarreau | 59234e9 | 2008-11-30 23:51:27 +0100 | [diff] [blame] | 2694 | /* we're not ready yet */ |
| 2695 | return 0; |
Willy Tarreau | b608feb | 2010-01-02 22:47:18 +0100 | [diff] [blame] | 2696 | |
| 2697 | failed_keep_alive: |
| 2698 | /* Here we process low-level errors for keep-alive requests. In |
| 2699 | * short, if the request is not the first one and it experiences |
| 2700 | * a timeout, read error or shutdown, we just silently close so |
| 2701 | * that the client can try again. |
| 2702 | */ |
| 2703 | txn->status = 0; |
| 2704 | msg->msg_state = HTTP_MSG_RQBEFORE; |
| 2705 | req->analysers = 0; |
| 2706 | s->logs.logwait = 0; |
Willy Tarreau | abcd514 | 2013-06-11 17:18:02 +0200 | [diff] [blame] | 2707 | s->logs.level = 0; |
Willy Tarreau | 03cdb7c | 2012-08-27 23:14:58 +0200 | [diff] [blame] | 2708 | s->rep->flags &= ~CF_EXPECT_MORE; /* speed up sending a previous response */ |
Willy Tarreau | 148d099 | 2010-01-10 10:21:21 +0100 | [diff] [blame] | 2709 | stream_int_retnclose(req->prod, NULL); |
Willy Tarreau | b608feb | 2010-01-02 22:47:18 +0100 | [diff] [blame] | 2710 | return 0; |
Willy Tarreau | 59234e9 | 2008-11-30 23:51:27 +0100 | [diff] [blame] | 2711 | } |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 2712 | |
Willy Tarreau | d787e66 | 2009-07-07 10:14:51 +0200 | [diff] [blame] | 2713 | /* OK now we have a complete HTTP request with indexed headers. Let's |
| 2714 | * complete the request parsing by setting a few fields we will need |
Willy Tarreau | 9b28e03 | 2012-10-12 23:49:43 +0200 | [diff] [blame] | 2715 | * 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] | 2716 | * 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] | 2717 | * 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] | 2718 | * byte after the last LF. msg->sov points to the first byte of data. |
| 2719 | * msg->eol cannot be trusted because it may have been left uninitialized |
| 2720 | * (for instance in the absence of headers). |
Willy Tarreau | d787e66 | 2009-07-07 10:14:51 +0200 | [diff] [blame] | 2721 | */ |
Willy Tarreau | 9cdde23 | 2007-05-02 20:58:19 +0200 | [diff] [blame] | 2722 | |
Willy Tarreau | da7ff64 | 2010-06-23 11:44:09 +0200 | [diff] [blame] | 2723 | session_inc_http_req_ctr(s); |
Willy Tarreau | d9b587f | 2010-02-26 10:05:55 +0100 | [diff] [blame] | 2724 | proxy_inc_fe_req_ctr(s->fe); /* one more valid request for this FE */ |
| 2725 | |
Willy Tarreau | b16a574 | 2010-01-10 14:46:16 +0100 | [diff] [blame] | 2726 | if (txn->flags & TX_WAIT_NEXT_RQ) { |
| 2727 | /* kill the pending keep-alive timeout */ |
| 2728 | txn->flags &= ~TX_WAIT_NEXT_RQ; |
| 2729 | req->analyse_exp = TICK_ETERNITY; |
| 2730 | } |
| 2731 | |
| 2732 | |
Willy Tarreau | d787e66 | 2009-07-07 10:14:51 +0200 | [diff] [blame] | 2733 | /* Maybe we found in invalid header name while we were configured not |
| 2734 | * to block on that, so we have to capture it now. |
| 2735 | */ |
| 2736 | if (unlikely(msg->err_pos >= 0)) |
Willy Tarreau | 8a0cef2 | 2012-03-09 13:39:23 +0100 | [diff] [blame] | 2737 | http_capture_bad_message(&s->fe->invalid_req, s, msg, msg->msg_state, s->fe); |
Willy Tarreau | 4076a15 | 2009-04-02 15:18:36 +0200 | [diff] [blame] | 2738 | |
Willy Tarreau | 59234e9 | 2008-11-30 23:51:27 +0100 | [diff] [blame] | 2739 | /* |
| 2740 | * 1: identify the method |
| 2741 | */ |
Willy Tarreau | 9b28e03 | 2012-10-12 23:49:43 +0200 | [diff] [blame] | 2742 | 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] | 2743 | |
| 2744 | /* we can make use of server redirect on GET and HEAD */ |
| 2745 | if (txn->meth == HTTP_METH_GET || txn->meth == HTTP_METH_HEAD) |
| 2746 | s->flags |= SN_REDIRECTABLE; |
Willy Tarreau | fa7e102 | 2008-10-19 07:30:41 +0200 | [diff] [blame] | 2747 | |
Willy Tarreau | 59234e9 | 2008-11-30 23:51:27 +0100 | [diff] [blame] | 2748 | /* |
| 2749 | * 2: check if the URI matches the monitor_uri. |
| 2750 | * We have to do this for every request which gets in, because |
| 2751 | * the monitor-uri is defined by the frontend. |
| 2752 | */ |
| 2753 | if (unlikely((s->fe->monitor_uri_len != 0) && |
| 2754 | (s->fe->monitor_uri_len == msg->sl.rq.u_l) && |
Willy Tarreau | 9b28e03 | 2012-10-12 23:49:43 +0200 | [diff] [blame] | 2755 | !memcmp(req->buf->p + msg->sl.rq.u, |
Willy Tarreau | 59234e9 | 2008-11-30 23:51:27 +0100 | [diff] [blame] | 2756 | s->fe->monitor_uri, |
| 2757 | s->fe->monitor_uri_len))) { |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 2758 | /* |
Willy Tarreau | 59234e9 | 2008-11-30 23:51:27 +0100 | [diff] [blame] | 2759 | * We have found the monitor URI |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 2760 | */ |
Willy Tarreau | 59234e9 | 2008-11-30 23:51:27 +0100 | [diff] [blame] | 2761 | struct acl_cond *cond; |
Willy Tarreau | b80c230 | 2007-11-30 20:51:32 +0100 | [diff] [blame] | 2762 | |
Willy Tarreau | 59234e9 | 2008-11-30 23:51:27 +0100 | [diff] [blame] | 2763 | s->flags |= SN_MONITOR; |
Willy Tarreau | eabea07 | 2011-09-10 23:29:44 +0200 | [diff] [blame] | 2764 | s->fe->fe_counters.intercepted_req++; |
Willy Tarreau | b80c230 | 2007-11-30 20:51:32 +0100 | [diff] [blame] | 2765 | |
Willy Tarreau | 59234e9 | 2008-11-30 23:51:27 +0100 | [diff] [blame] | 2766 | /* Check if we want to fail this monitor request or not */ |
Willy Tarreau | d787e66 | 2009-07-07 10:14:51 +0200 | [diff] [blame] | 2767 | list_for_each_entry(cond, &s->fe->mon_fail_cond, list) { |
Willy Tarreau | 32a6f2e | 2012-04-25 10:13:36 +0200 | [diff] [blame] | 2768 | int ret = acl_exec_cond(cond, s->fe, s, txn, SMP_OPT_DIR_REQ|SMP_OPT_FINAL); |
Willy Tarreau | 1138281 | 2008-07-09 16:18:21 +0200 | [diff] [blame] | 2769 | |
Willy Tarreau | 59234e9 | 2008-11-30 23:51:27 +0100 | [diff] [blame] | 2770 | ret = acl_pass(ret); |
| 2771 | if (cond->pol == ACL_COND_UNLESS) |
| 2772 | ret = !ret; |
Willy Tarreau | b80c230 | 2007-11-30 20:51:32 +0100 | [diff] [blame] | 2773 | |
Willy Tarreau | 59234e9 | 2008-11-30 23:51:27 +0100 | [diff] [blame] | 2774 | if (ret) { |
| 2775 | /* we fail this request, let's return 503 service unavail */ |
| 2776 | txn->status = 503; |
Willy Tarreau | 783f258 | 2012-09-04 12:19:04 +0200 | [diff] [blame] | 2777 | stream_int_retnclose(req->prod, http_error_message(s, HTTP_ERR_503)); |
Willy Tarreau | 570f221 | 2013-06-10 16:42:09 +0200 | [diff] [blame] | 2778 | if (!(s->flags & SN_ERR_MASK)) |
| 2779 | s->flags |= SN_ERR_LOCAL; /* we don't want a real error here */ |
Willy Tarreau | 59234e9 | 2008-11-30 23:51:27 +0100 | [diff] [blame] | 2780 | goto return_prx_cond; |
Willy Tarreau | b80c230 | 2007-11-30 20:51:32 +0100 | [diff] [blame] | 2781 | } |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 2782 | } |
Willy Tarreau | a5555ec | 2008-11-30 19:02:32 +0100 | [diff] [blame] | 2783 | |
Willy Tarreau | 59234e9 | 2008-11-30 23:51:27 +0100 | [diff] [blame] | 2784 | /* nothing to fail, let's reply normaly */ |
| 2785 | txn->status = 200; |
Willy Tarreau | 783f258 | 2012-09-04 12:19:04 +0200 | [diff] [blame] | 2786 | stream_int_retnclose(req->prod, http_error_message(s, HTTP_ERR_200)); |
Willy Tarreau | 570f221 | 2013-06-10 16:42:09 +0200 | [diff] [blame] | 2787 | if (!(s->flags & SN_ERR_MASK)) |
| 2788 | s->flags |= SN_ERR_LOCAL; /* we don't want a real error here */ |
Willy Tarreau | 59234e9 | 2008-11-30 23:51:27 +0100 | [diff] [blame] | 2789 | goto return_prx_cond; |
| 2790 | } |
| 2791 | |
| 2792 | /* |
| 2793 | * 3: Maybe we have to copy the original REQURI for the logs ? |
| 2794 | * Note: we cannot log anymore if the request has been |
| 2795 | * classified as invalid. |
| 2796 | */ |
| 2797 | if (unlikely(s->logs.logwait & LW_REQ)) { |
| 2798 | /* we have a complete HTTP request that we must log */ |
| 2799 | if ((txn->uri = pool_alloc2(pool2_requri)) != NULL) { |
| 2800 | int urilen = msg->sl.rq.l; |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 2801 | |
Willy Tarreau | 59234e9 | 2008-11-30 23:51:27 +0100 | [diff] [blame] | 2802 | if (urilen >= REQURI_LEN) |
| 2803 | urilen = REQURI_LEN - 1; |
Willy Tarreau | 9b28e03 | 2012-10-12 23:49:43 +0200 | [diff] [blame] | 2804 | memcpy(txn->uri, req->buf->p, urilen); |
Willy Tarreau | 59234e9 | 2008-11-30 23:51:27 +0100 | [diff] [blame] | 2805 | txn->uri[urilen] = 0; |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 2806 | |
Willy Tarreau | d79a3b2 | 2012-12-28 09:40:16 +0100 | [diff] [blame] | 2807 | if (!(s->logs.logwait &= ~(LW_REQ|LW_INIT))) |
Willy Tarreau | 59234e9 | 2008-11-30 23:51:27 +0100 | [diff] [blame] | 2808 | s->do_log(s); |
| 2809 | } else { |
| 2810 | Alert("HTTP logging : out of memory.\n"); |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 2811 | } |
Willy Tarreau | 59234e9 | 2008-11-30 23:51:27 +0100 | [diff] [blame] | 2812 | } |
Willy Tarreau | 0661926 | 2006-12-17 08:37:22 +0100 | [diff] [blame] | 2813 | |
Willy Tarreau | 59234e9 | 2008-11-30 23:51:27 +0100 | [diff] [blame] | 2814 | /* 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] | 2815 | 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] | 2816 | goto return_bad_req; |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 2817 | |
Willy Tarreau | 5b15447 | 2009-12-21 20:11:07 +0100 | [diff] [blame] | 2818 | /* ... and check if the request is HTTP/1.1 or above */ |
| 2819 | if ((msg->sl.rq.v_l == 8) && |
Willy Tarreau | 9b28e03 | 2012-10-12 23:49:43 +0200 | [diff] [blame] | 2820 | ((req->buf->p[msg->sl.rq.v + 5] > '1') || |
| 2821 | ((req->buf->p[msg->sl.rq.v + 5] == '1') && |
| 2822 | (req->buf->p[msg->sl.rq.v + 7] >= '1')))) |
Willy Tarreau | a36fc4d | 2012-02-17 17:39:37 +0100 | [diff] [blame] | 2823 | msg->flags |= HTTP_MSGF_VER_11; |
Willy Tarreau | 5b15447 | 2009-12-21 20:11:07 +0100 | [diff] [blame] | 2824 | |
| 2825 | /* "connection" has not been parsed yet */ |
Willy Tarreau | 50fc777 | 2012-11-11 22:19:57 +0100 | [diff] [blame] | 2826 | 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] | 2827 | |
Willy Tarreau | 88d349d | 2010-01-25 12:15:43 +0100 | [diff] [blame] | 2828 | /* if the frontend has "option http-use-proxy-header", we'll check if |
| 2829 | * we have what looks like a proxied connection instead of a connection, |
| 2830 | * and in this case set the TX_USE_PX_CONN flag to use Proxy-connection. |
| 2831 | * Note that this is *not* RFC-compliant, however browsers and proxies |
| 2832 | * happen to do that despite being non-standard :-( |
| 2833 | * We consider that a request not beginning with either '/' or '*' is |
| 2834 | * a proxied connection, which covers both "scheme://location" and |
| 2835 | * CONNECT ip:port. |
| 2836 | */ |
| 2837 | if ((s->fe->options2 & PR_O2_USE_PXHDR) && |
Willy Tarreau | 9b28e03 | 2012-10-12 23:49:43 +0200 | [diff] [blame] | 2838 | 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] | 2839 | txn->flags |= TX_USE_PX_CONN; |
| 2840 | |
Willy Tarreau | e8e785b | 2009-12-26 15:34:26 +0100 | [diff] [blame] | 2841 | /* transfer length unknown*/ |
Willy Tarreau | a36fc4d | 2012-02-17 17:39:37 +0100 | [diff] [blame] | 2842 | msg->flags &= ~HTTP_MSGF_XFER_LEN; |
Willy Tarreau | e8e785b | 2009-12-26 15:34:26 +0100 | [diff] [blame] | 2843 | |
Willy Tarreau | 59234e9 | 2008-11-30 23:51:27 +0100 | [diff] [blame] | 2844 | /* 5: we may need to capture headers */ |
Willy Tarreau | 42f7d89 | 2012-03-24 08:28:09 +0100 | [diff] [blame] | 2845 | if (unlikely((s->logs.logwait & LW_REQHDR) && txn->req.cap)) |
Willy Tarreau | 9b28e03 | 2012-10-12 23:49:43 +0200 | [diff] [blame] | 2846 | capture_headers(req->buf->p, &txn->hdr_idx, |
Willy Tarreau | 59234e9 | 2008-11-30 23:51:27 +0100 | [diff] [blame] | 2847 | txn->req.cap, s->fe->req_cap); |
Willy Tarreau | 1138281 | 2008-07-09 16:18:21 +0200 | [diff] [blame] | 2848 | |
Willy Tarreau | e8e785b | 2009-12-26 15:34:26 +0100 | [diff] [blame] | 2849 | /* 6: determine the transfer-length. |
| 2850 | * According to RFC2616 #4.4, amended by the HTTPbis working group, |
| 2851 | * the presence of a message-body in a REQUEST and its transfer length |
| 2852 | * must be determined that way (in order of precedence) : |
| 2853 | * 1. The presence of a message-body in a request is signaled by the |
| 2854 | * inclusion of a Content-Length or Transfer-Encoding header field |
| 2855 | * in the request's header fields. When a request message contains |
| 2856 | * both a message-body of non-zero length and a method that does |
| 2857 | * not define any semantics for that request message-body, then an |
| 2858 | * origin server SHOULD either ignore the message-body or respond |
| 2859 | * with an appropriate error message (e.g., 413). A proxy or |
| 2860 | * gateway, when presented the same request, SHOULD either forward |
| 2861 | * the request inbound with the message- body or ignore the |
| 2862 | * message-body when determining a response. |
| 2863 | * |
| 2864 | * 2. If a Transfer-Encoding header field (Section 9.7) is present |
| 2865 | * and the "chunked" transfer-coding (Section 6.2) is used, the |
| 2866 | * transfer-length is defined by the use of this transfer-coding. |
| 2867 | * If a Transfer-Encoding header field is present and the "chunked" |
| 2868 | * transfer-coding is not present, the transfer-length is defined |
| 2869 | * by the sender closing the connection. |
Willy Tarreau | 32b47f4 | 2009-10-18 20:55:02 +0200 | [diff] [blame] | 2870 | * |
Willy Tarreau | e8e785b | 2009-12-26 15:34:26 +0100 | [diff] [blame] | 2871 | * 3. If a Content-Length header field is present, its decimal value in |
| 2872 | * OCTETs represents both the entity-length and the transfer-length. |
| 2873 | * If a message is received with both a Transfer-Encoding header |
| 2874 | * field and a Content-Length header field, the latter MUST be ignored. |
Willy Tarreau | 32b47f4 | 2009-10-18 20:55:02 +0200 | [diff] [blame] | 2875 | * |
Willy Tarreau | e8e785b | 2009-12-26 15:34:26 +0100 | [diff] [blame] | 2876 | * 4. By the server closing the connection. (Closing the connection |
| 2877 | * cannot be used to indicate the end of a request body, since that |
| 2878 | * would leave no possibility for the server to send back a response.) |
| 2879 | * |
| 2880 | * Whenever a transfer-coding is applied to a message-body, the set of |
| 2881 | * transfer-codings MUST include "chunked", unless the message indicates |
| 2882 | * it is terminated by closing the connection. When the "chunked" |
| 2883 | * transfer-coding is used, it MUST be the last transfer-coding applied |
| 2884 | * to the message-body. |
Willy Tarreau | 32b47f4 | 2009-10-18 20:55:02 +0200 | [diff] [blame] | 2885 | */ |
| 2886 | |
Willy Tarreau | e8e785b | 2009-12-26 15:34:26 +0100 | [diff] [blame] | 2887 | use_close_only = 0; |
Willy Tarreau | 32b47f4 | 2009-10-18 20:55:02 +0200 | [diff] [blame] | 2888 | ctx.idx = 0; |
Willy Tarreau | e8e785b | 2009-12-26 15:34:26 +0100 | [diff] [blame] | 2889 | /* set TE_CHNK and XFER_LEN only if "chunked" is seen last */ |
Willy Tarreau | a36fc4d | 2012-02-17 17:39:37 +0100 | [diff] [blame] | 2890 | while ((msg->flags & HTTP_MSGF_VER_11) && |
Willy Tarreau | 9b28e03 | 2012-10-12 23:49:43 +0200 | [diff] [blame] | 2891 | 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] | 2892 | if (ctx.vlen == 7 && strncasecmp(ctx.line + ctx.val, "chunked", 7) == 0) |
Willy Tarreau | a36fc4d | 2012-02-17 17:39:37 +0100 | [diff] [blame] | 2893 | msg->flags |= (HTTP_MSGF_TE_CHNK | HTTP_MSGF_XFER_LEN); |
| 2894 | else if (msg->flags & HTTP_MSGF_TE_CHNK) { |
Willy Tarreau | e8e785b | 2009-12-26 15:34:26 +0100 | [diff] [blame] | 2895 | /* bad transfer-encoding (chunked followed by something else) */ |
| 2896 | use_close_only = 1; |
Willy Tarreau | a36fc4d | 2012-02-17 17:39:37 +0100 | [diff] [blame] | 2897 | msg->flags &= ~(HTTP_MSGF_TE_CHNK | HTTP_MSGF_XFER_LEN); |
Willy Tarreau | e8e785b | 2009-12-26 15:34:26 +0100 | [diff] [blame] | 2898 | break; |
| 2899 | } |
Willy Tarreau | 32b47f4 | 2009-10-18 20:55:02 +0200 | [diff] [blame] | 2900 | } |
| 2901 | |
Willy Tarreau | 32b47f4 | 2009-10-18 20:55:02 +0200 | [diff] [blame] | 2902 | ctx.idx = 0; |
Willy Tarreau | a36fc4d | 2012-02-17 17:39:37 +0100 | [diff] [blame] | 2903 | while (!(msg->flags & HTTP_MSGF_TE_CHNK) && !use_close_only && |
Willy Tarreau | 9b28e03 | 2012-10-12 23:49:43 +0200 | [diff] [blame] | 2904 | 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] | 2905 | signed long long cl; |
| 2906 | |
Willy Tarreau | ad14f75 | 2011-09-02 20:33:27 +0200 | [diff] [blame] | 2907 | if (!ctx.vlen) { |
Willy Tarreau | 9b28e03 | 2012-10-12 23:49:43 +0200 | [diff] [blame] | 2908 | msg->err_pos = ctx.line + ctx.val - req->buf->p; |
Willy Tarreau | 32b47f4 | 2009-10-18 20:55:02 +0200 | [diff] [blame] | 2909 | goto return_bad_req; |
Willy Tarreau | ad14f75 | 2011-09-02 20:33:27 +0200 | [diff] [blame] | 2910 | } |
Willy Tarreau | 32b47f4 | 2009-10-18 20:55:02 +0200 | [diff] [blame] | 2911 | |
Willy Tarreau | ad14f75 | 2011-09-02 20:33:27 +0200 | [diff] [blame] | 2912 | if (strl2llrc(ctx.line + ctx.val, ctx.vlen, &cl)) { |
Willy Tarreau | 9b28e03 | 2012-10-12 23:49:43 +0200 | [diff] [blame] | 2913 | msg->err_pos = ctx.line + ctx.val - req->buf->p; |
Willy Tarreau | 32b47f4 | 2009-10-18 20:55:02 +0200 | [diff] [blame] | 2914 | goto return_bad_req; /* parse failure */ |
Willy Tarreau | ad14f75 | 2011-09-02 20:33:27 +0200 | [diff] [blame] | 2915 | } |
Willy Tarreau | 32b47f4 | 2009-10-18 20:55:02 +0200 | [diff] [blame] | 2916 | |
Willy Tarreau | ad14f75 | 2011-09-02 20:33:27 +0200 | [diff] [blame] | 2917 | if (cl < 0) { |
Willy Tarreau | 9b28e03 | 2012-10-12 23:49:43 +0200 | [diff] [blame] | 2918 | msg->err_pos = ctx.line + ctx.val - req->buf->p; |
Willy Tarreau | 32b47f4 | 2009-10-18 20:55:02 +0200 | [diff] [blame] | 2919 | goto return_bad_req; |
Willy Tarreau | ad14f75 | 2011-09-02 20:33:27 +0200 | [diff] [blame] | 2920 | } |
Willy Tarreau | 32b47f4 | 2009-10-18 20:55:02 +0200 | [diff] [blame] | 2921 | |
Willy Tarreau | a36fc4d | 2012-02-17 17:39:37 +0100 | [diff] [blame] | 2922 | if ((msg->flags & HTTP_MSGF_CNT_LEN) && (msg->chunk_len != cl)) { |
Willy Tarreau | 9b28e03 | 2012-10-12 23:49:43 +0200 | [diff] [blame] | 2923 | msg->err_pos = ctx.line + ctx.val - req->buf->p; |
Willy Tarreau | 32b47f4 | 2009-10-18 20:55:02 +0200 | [diff] [blame] | 2924 | goto return_bad_req; /* already specified, was different */ |
Willy Tarreau | ad14f75 | 2011-09-02 20:33:27 +0200 | [diff] [blame] | 2925 | } |
Willy Tarreau | 32b47f4 | 2009-10-18 20:55:02 +0200 | [diff] [blame] | 2926 | |
Willy Tarreau | a36fc4d | 2012-02-17 17:39:37 +0100 | [diff] [blame] | 2927 | msg->flags |= HTTP_MSGF_CNT_LEN | HTTP_MSGF_XFER_LEN; |
Willy Tarreau | 124d991 | 2011-03-01 20:30:48 +0100 | [diff] [blame] | 2928 | msg->body_len = msg->chunk_len = cl; |
Willy Tarreau | 32b47f4 | 2009-10-18 20:55:02 +0200 | [diff] [blame] | 2929 | } |
| 2930 | |
Willy Tarreau | e8e785b | 2009-12-26 15:34:26 +0100 | [diff] [blame] | 2931 | /* bodyless requests have a known length */ |
| 2932 | if (!use_close_only) |
Willy Tarreau | a36fc4d | 2012-02-17 17:39:37 +0100 | [diff] [blame] | 2933 | msg->flags |= HTTP_MSGF_XFER_LEN; |
Willy Tarreau | e8e785b | 2009-12-26 15:34:26 +0100 | [diff] [blame] | 2934 | |
Willy Tarreau | d787e66 | 2009-07-07 10:14:51 +0200 | [diff] [blame] | 2935 | /* end of job, return OK */ |
Willy Tarreau | 3a81629 | 2009-07-07 10:55:49 +0200 | [diff] [blame] | 2936 | req->analysers &= ~an_bit; |
Willy Tarreau | d787e66 | 2009-07-07 10:14:51 +0200 | [diff] [blame] | 2937 | req->analyse_exp = TICK_ETERNITY; |
| 2938 | return 1; |
| 2939 | |
| 2940 | return_bad_req: |
| 2941 | /* We centralize bad requests processing here */ |
| 2942 | if (unlikely(msg->msg_state == HTTP_MSG_ERROR) || msg->err_pos >= 0) { |
| 2943 | /* we detected a parsing error. We want to archive this request |
| 2944 | * in the dedicated proxy area for later troubleshooting. |
| 2945 | */ |
Willy Tarreau | 8a0cef2 | 2012-03-09 13:39:23 +0100 | [diff] [blame] | 2946 | http_capture_bad_message(&s->fe->invalid_req, s, msg, msg->msg_state, s->fe); |
Willy Tarreau | d787e66 | 2009-07-07 10:14:51 +0200 | [diff] [blame] | 2947 | } |
| 2948 | |
| 2949 | txn->req.msg_state = HTTP_MSG_ERROR; |
| 2950 | txn->status = 400; |
Willy Tarreau | 783f258 | 2012-09-04 12:19:04 +0200 | [diff] [blame] | 2951 | stream_int_retnclose(req->prod, http_error_message(s, HTTP_ERR_400)); |
Krzysztof Piotr Oledzki | aeebf9b | 2009-10-04 15:43:17 +0200 | [diff] [blame] | 2952 | |
Willy Tarreau | 7d0aaf3 | 2011-03-10 23:25:56 +0100 | [diff] [blame] | 2953 | s->fe->fe_counters.failed_req++; |
Krzysztof Piotr Oledzki | aeebf9b | 2009-10-04 15:43:17 +0200 | [diff] [blame] | 2954 | if (s->listener->counters) |
| 2955 | s->listener->counters->failed_req++; |
Willy Tarreau | d787e66 | 2009-07-07 10:14:51 +0200 | [diff] [blame] | 2956 | |
| 2957 | return_prx_cond: |
| 2958 | if (!(s->flags & SN_ERR_MASK)) |
| 2959 | s->flags |= SN_ERR_PRXCOND; |
| 2960 | if (!(s->flags & SN_FINST_MASK)) |
| 2961 | s->flags |= SN_FINST_R; |
| 2962 | |
| 2963 | req->analysers = 0; |
| 2964 | req->analyse_exp = TICK_ETERNITY; |
| 2965 | return 0; |
| 2966 | } |
| 2967 | |
Willy Tarreau | 4f8a83c | 2012-06-04 00:26:23 +0200 | [diff] [blame] | 2968 | |
Willy Tarreau | 347a35d | 2013-11-22 17:51:09 +0100 | [diff] [blame] | 2969 | /* This function prepares an applet to handle the stats. It can deal with the |
| 2970 | * "100-continue" expectation, check that admin rules are met for POST requests, |
| 2971 | * and program a response message if something was unexpected. It cannot fail |
| 2972 | * 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] | 2973 | * 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] | 2974 | * s->target which is supposed to already point to the stats applet. The caller |
| 2975 | * is expected to have already assigned an appctx to the session. |
Willy Tarreau | 1facd6d | 2012-12-22 22:03:39 +0100 | [diff] [blame] | 2976 | */ |
| 2977 | int http_handle_stats(struct session *s, struct channel *req) |
| 2978 | { |
| 2979 | struct stats_admin_rule *stats_admin_rule; |
| 2980 | struct stream_interface *si = s->rep->prod; |
| 2981 | struct http_txn *txn = &s->txn; |
| 2982 | struct http_msg *msg = &txn->req; |
Willy Tarreau | 414e9bb | 2013-11-23 00:30:38 +0100 | [diff] [blame] | 2983 | struct uri_auth *uri_auth = s->be->uri_auth; |
| 2984 | const char *uri, *h, *lookup; |
Willy Tarreau | 7b4b499 | 2013-12-01 09:15:12 +0100 | [diff] [blame] | 2985 | struct appctx *appctx; |
Willy Tarreau | 414e9bb | 2013-11-23 00:30:38 +0100 | [diff] [blame] | 2986 | |
Willy Tarreau | 7b4b499 | 2013-12-01 09:15:12 +0100 | [diff] [blame] | 2987 | appctx = si_appctx(si); |
| 2988 | memset(&appctx->ctx.stats, 0, sizeof(appctx->ctx.stats)); |
| 2989 | appctx->st1 = appctx->st2 = 0; |
| 2990 | appctx->ctx.stats.st_code = STAT_STATUS_INIT; |
| 2991 | appctx->ctx.stats.flags |= STAT_FMT_HTML; /* assume HTML mode by default */ |
Willy Tarreau | 414e9bb | 2013-11-23 00:30:38 +0100 | [diff] [blame] | 2992 | |
| 2993 | uri = msg->chn->buf->p + msg->sl.rq.u; |
| 2994 | lookup = uri + uri_auth->uri_len; |
| 2995 | |
| 2996 | for (h = lookup; h <= uri + msg->sl.rq.u_l - 3; h++) { |
| 2997 | if (memcmp(h, ";up", 3) == 0) { |
Willy Tarreau | 7b4b499 | 2013-12-01 09:15:12 +0100 | [diff] [blame] | 2998 | appctx->ctx.stats.flags |= STAT_HIDE_DOWN; |
Willy Tarreau | 414e9bb | 2013-11-23 00:30:38 +0100 | [diff] [blame] | 2999 | break; |
| 3000 | } |
| 3001 | } |
| 3002 | |
| 3003 | if (uri_auth->refresh) { |
| 3004 | for (h = lookup; h <= uri + msg->sl.rq.u_l - 10; h++) { |
| 3005 | if (memcmp(h, ";norefresh", 10) == 0) { |
Willy Tarreau | 7b4b499 | 2013-12-01 09:15:12 +0100 | [diff] [blame] | 3006 | appctx->ctx.stats.flags |= STAT_NO_REFRESH; |
Willy Tarreau | 414e9bb | 2013-11-23 00:30:38 +0100 | [diff] [blame] | 3007 | break; |
| 3008 | } |
| 3009 | } |
| 3010 | } |
| 3011 | |
| 3012 | for (h = lookup; h <= uri + msg->sl.rq.u_l - 4; h++) { |
| 3013 | if (memcmp(h, ";csv", 4) == 0) { |
Willy Tarreau | 7b4b499 | 2013-12-01 09:15:12 +0100 | [diff] [blame] | 3014 | appctx->ctx.stats.flags &= ~STAT_FMT_HTML; |
Willy Tarreau | 414e9bb | 2013-11-23 00:30:38 +0100 | [diff] [blame] | 3015 | break; |
| 3016 | } |
| 3017 | } |
| 3018 | |
| 3019 | for (h = lookup; h <= uri + msg->sl.rq.u_l - 8; h++) { |
| 3020 | if (memcmp(h, ";st=", 4) == 0) { |
| 3021 | int i; |
| 3022 | h += 4; |
Willy Tarreau | 7b4b499 | 2013-12-01 09:15:12 +0100 | [diff] [blame] | 3023 | appctx->ctx.stats.st_code = STAT_STATUS_UNKN; |
Willy Tarreau | 414e9bb | 2013-11-23 00:30:38 +0100 | [diff] [blame] | 3024 | for (i = STAT_STATUS_INIT + 1; i < STAT_STATUS_SIZE; i++) { |
| 3025 | if (strncmp(stat_status_codes[i], h, 4) == 0) { |
Willy Tarreau | 7b4b499 | 2013-12-01 09:15:12 +0100 | [diff] [blame] | 3026 | appctx->ctx.stats.st_code = i; |
Willy Tarreau | 414e9bb | 2013-11-23 00:30:38 +0100 | [diff] [blame] | 3027 | break; |
| 3028 | } |
| 3029 | } |
| 3030 | break; |
| 3031 | } |
| 3032 | } |
| 3033 | |
Willy Tarreau | 7b4b499 | 2013-12-01 09:15:12 +0100 | [diff] [blame] | 3034 | appctx->ctx.stats.scope_str = 0; |
| 3035 | appctx->ctx.stats.scope_len = 0; |
Willy Tarreau | 414e9bb | 2013-11-23 00:30:38 +0100 | [diff] [blame] | 3036 | for (h = lookup; h <= uri + msg->sl.rq.u_l - 8; h++) { |
| 3037 | if (memcmp(h, STAT_SCOPE_INPUT_NAME "=", strlen(STAT_SCOPE_INPUT_NAME) + 1) == 0) { |
| 3038 | int itx = 0; |
| 3039 | const char *h2; |
| 3040 | char scope_txt[STAT_SCOPE_TXT_MAXLEN + 1]; |
| 3041 | const char *err; |
| 3042 | |
| 3043 | h += strlen(STAT_SCOPE_INPUT_NAME) + 1; |
| 3044 | h2 = h; |
Willy Tarreau | 7b4b499 | 2013-12-01 09:15:12 +0100 | [diff] [blame] | 3045 | appctx->ctx.stats.scope_str = h2 - msg->chn->buf->p; |
Willy Tarreau | 414e9bb | 2013-11-23 00:30:38 +0100 | [diff] [blame] | 3046 | while (*h != ';' && *h != '\0' && *h != '&' && *h != ' ' && *h != '\n') { |
| 3047 | itx++; |
| 3048 | h++; |
| 3049 | } |
| 3050 | |
| 3051 | if (itx > STAT_SCOPE_TXT_MAXLEN) |
| 3052 | itx = STAT_SCOPE_TXT_MAXLEN; |
Willy Tarreau | 7b4b499 | 2013-12-01 09:15:12 +0100 | [diff] [blame] | 3053 | appctx->ctx.stats.scope_len = itx; |
Willy Tarreau | 414e9bb | 2013-11-23 00:30:38 +0100 | [diff] [blame] | 3054 | |
Willy Tarreau | 7b4b499 | 2013-12-01 09:15:12 +0100 | [diff] [blame] | 3055 | /* 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] | 3056 | memcpy(scope_txt, h2, itx); |
| 3057 | scope_txt[itx] = '\0'; |
| 3058 | err = invalid_char(scope_txt); |
| 3059 | if (err) { |
| 3060 | /* bad char in search text => clear scope */ |
Willy Tarreau | 7b4b499 | 2013-12-01 09:15:12 +0100 | [diff] [blame] | 3061 | appctx->ctx.stats.scope_str = 0; |
| 3062 | appctx->ctx.stats.scope_len = 0; |
Willy Tarreau | 414e9bb | 2013-11-23 00:30:38 +0100 | [diff] [blame] | 3063 | } |
| 3064 | break; |
| 3065 | } |
| 3066 | } |
Willy Tarreau | 1facd6d | 2012-12-22 22:03:39 +0100 | [diff] [blame] | 3067 | |
| 3068 | /* now check whether we have some admin rules for this request */ |
Willy Tarreau | 414e9bb | 2013-11-23 00:30:38 +0100 | [diff] [blame] | 3069 | list_for_each_entry(stats_admin_rule, &uri_auth->admin_rules, list) { |
Willy Tarreau | 1facd6d | 2012-12-22 22:03:39 +0100 | [diff] [blame] | 3070 | int ret = 1; |
| 3071 | |
| 3072 | if (stats_admin_rule->cond) { |
| 3073 | ret = acl_exec_cond(stats_admin_rule->cond, s->be, s, &s->txn, SMP_OPT_DIR_REQ|SMP_OPT_FINAL); |
| 3074 | ret = acl_pass(ret); |
| 3075 | if (stats_admin_rule->cond->pol == ACL_COND_UNLESS) |
| 3076 | ret = !ret; |
| 3077 | } |
| 3078 | |
| 3079 | if (ret) { |
| 3080 | /* no rule, or the rule matches */ |
Willy Tarreau | 7b4b499 | 2013-12-01 09:15:12 +0100 | [diff] [blame] | 3081 | appctx->ctx.stats.flags |= STAT_ADMIN; |
Willy Tarreau | 1facd6d | 2012-12-22 22:03:39 +0100 | [diff] [blame] | 3082 | break; |
| 3083 | } |
| 3084 | } |
| 3085 | |
| 3086 | /* Was the status page requested with a POST ? */ |
Willy Tarreau | 347a35d | 2013-11-22 17:51:09 +0100 | [diff] [blame] | 3087 | if (unlikely(txn->meth == HTTP_METH_POST && txn->req.body_len > 0)) { |
Willy Tarreau | 7b4b499 | 2013-12-01 09:15:12 +0100 | [diff] [blame] | 3088 | if (appctx->ctx.stats.flags & STAT_ADMIN) { |
Willy Tarreau | 1facd6d | 2012-12-22 22:03:39 +0100 | [diff] [blame] | 3089 | if (msg->msg_state < HTTP_MSG_100_SENT) { |
| 3090 | /* If we have HTTP/1.1 and Expect: 100-continue, then we must |
| 3091 | * send an HTTP/1.1 100 Continue intermediate response. |
| 3092 | */ |
| 3093 | if (msg->flags & HTTP_MSGF_VER_11) { |
| 3094 | struct hdr_ctx ctx; |
| 3095 | ctx.idx = 0; |
| 3096 | /* Expect is allowed in 1.1, look for it */ |
| 3097 | if (http_find_header2("Expect", 6, req->buf->p, &txn->hdr_idx, &ctx) && |
| 3098 | unlikely(ctx.vlen == 12 && strncasecmp(ctx.line+ctx.val, "100-continue", 12) == 0)) { |
| 3099 | bo_inject(s->rep, http_100_chunk.str, http_100_chunk.len); |
| 3100 | } |
| 3101 | } |
| 3102 | msg->msg_state = HTTP_MSG_100_SENT; |
| 3103 | s->logs.tv_request = now; /* update the request timer to reflect full request */ |
| 3104 | } |
Willy Tarreau | 7b4b499 | 2013-12-01 09:15:12 +0100 | [diff] [blame] | 3105 | appctx->st0 = STAT_HTTP_POST; |
Willy Tarreau | 1facd6d | 2012-12-22 22:03:39 +0100 | [diff] [blame] | 3106 | } |
Willy Tarreau | 347a35d | 2013-11-22 17:51:09 +0100 | [diff] [blame] | 3107 | else { |
Willy Tarreau | 7b4b499 | 2013-12-01 09:15:12 +0100 | [diff] [blame] | 3108 | appctx->ctx.stats.st_code = STAT_STATUS_DENY; |
| 3109 | appctx->st0 = STAT_HTTP_LAST; |
de Lafond Guillaume | 88c278f | 2013-04-15 19:27:10 +0200 | [diff] [blame] | 3110 | } |
Willy Tarreau | 1facd6d | 2012-12-22 22:03:39 +0100 | [diff] [blame] | 3111 | } |
Willy Tarreau | 347a35d | 2013-11-22 17:51:09 +0100 | [diff] [blame] | 3112 | else { |
| 3113 | /* So it was another method (GET/HEAD) */ |
Willy Tarreau | 7b4b499 | 2013-12-01 09:15:12 +0100 | [diff] [blame] | 3114 | appctx->st0 = STAT_HTTP_HEAD; |
Willy Tarreau | 1facd6d | 2012-12-22 22:03:39 +0100 | [diff] [blame] | 3115 | } |
| 3116 | |
Willy Tarreau | 1facd6d | 2012-12-22 22:03:39 +0100 | [diff] [blame] | 3117 | s->task->nice = -32; /* small boost for HTTP statistics */ |
Willy Tarreau | 1facd6d | 2012-12-22 22:03:39 +0100 | [diff] [blame] | 3118 | return 1; |
| 3119 | } |
| 3120 | |
Lukas Tribus | 67db8df | 2013-06-23 17:37:13 +0200 | [diff] [blame] | 3121 | /* Sets the TOS header in IPv4 and the traffic class header in IPv6 packets |
| 3122 | * (as per RFC3260 #4 and BCP37 #4.2 and #5.2). |
| 3123 | */ |
| 3124 | static inline void inet_set_tos(int fd, struct sockaddr_storage from, int tos) |
| 3125 | { |
| 3126 | #ifdef IP_TOS |
| 3127 | if (from.ss_family == AF_INET) |
| 3128 | setsockopt(fd, IPPROTO_IP, IP_TOS, &tos, sizeof(tos)); |
| 3129 | #endif |
| 3130 | #ifdef IPV6_TCLASS |
| 3131 | if (from.ss_family == AF_INET6) { |
| 3132 | if (IN6_IS_ADDR_V4MAPPED(&((struct sockaddr_in6 *)&from)->sin6_addr)) |
| 3133 | /* v4-mapped addresses need IP_TOS */ |
| 3134 | setsockopt(fd, IPPROTO_IP, IP_TOS, &tos, sizeof(tos)); |
| 3135 | else |
| 3136 | setsockopt(fd, IPPROTO_IPV6, IPV6_TCLASS, &tos, sizeof(tos)); |
| 3137 | } |
| 3138 | #endif |
| 3139 | } |
| 3140 | |
Willy Tarreau | 20b0de5 | 2012-12-24 15:45:22 +0100 | [diff] [blame] | 3141 | /* Executes the http-request rules <rules> for session <s>, proxy <px> and |
Willy Tarreau | 96257ec | 2012-12-27 10:46:37 +0100 | [diff] [blame] | 3142 | * transaction <txn>. Returns the first rule that prevents further processing |
| 3143 | * of the request (auth, deny, ...) or NULL if it executed all rules or stopped |
| 3144 | * on an allow. It may set the TX_CLDENY on txn->flags if it encounters a deny |
| 3145 | * rule. |
Willy Tarreau | f68a15a | 2011-01-06 16:53:21 +0100 | [diff] [blame] | 3146 | */ |
Willy Tarreau | 20b0de5 | 2012-12-24 15:45:22 +0100 | [diff] [blame] | 3147 | static struct http_req_rule * |
Willy Tarreau | 96257ec | 2012-12-27 10:46:37 +0100 | [diff] [blame] | 3148 | http_req_get_intercept_rule(struct proxy *px, struct list *rules, struct session *s, struct http_txn *txn) |
Willy Tarreau | f68a15a | 2011-01-06 16:53:21 +0100 | [diff] [blame] | 3149 | { |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 3150 | struct connection *cli_conn; |
Willy Tarreau | ff011f2 | 2011-01-06 17:51:27 +0100 | [diff] [blame] | 3151 | struct http_req_rule *rule; |
Willy Tarreau | 20b0de5 | 2012-12-24 15:45:22 +0100 | [diff] [blame] | 3152 | struct hdr_ctx ctx; |
Willy Tarreau | f68a15a | 2011-01-06 16:53:21 +0100 | [diff] [blame] | 3153 | |
Willy Tarreau | ff011f2 | 2011-01-06 17:51:27 +0100 | [diff] [blame] | 3154 | list_for_each_entry(rule, rules, list) { |
Willy Tarreau | ff011f2 | 2011-01-06 17:51:27 +0100 | [diff] [blame] | 3155 | if (rule->action >= HTTP_REQ_ACT_MAX) |
Willy Tarreau | f68a15a | 2011-01-06 16:53:21 +0100 | [diff] [blame] | 3156 | continue; |
| 3157 | |
Willy Tarreau | 96257ec | 2012-12-27 10:46:37 +0100 | [diff] [blame] | 3158 | /* check optional condition */ |
Willy Tarreau | ff011f2 | 2011-01-06 17:51:27 +0100 | [diff] [blame] | 3159 | if (rule->cond) { |
Willy Tarreau | 96257ec | 2012-12-27 10:46:37 +0100 | [diff] [blame] | 3160 | int ret; |
| 3161 | |
Willy Tarreau | 32a6f2e | 2012-04-25 10:13:36 +0200 | [diff] [blame] | 3162 | ret = acl_exec_cond(rule->cond, px, s, txn, SMP_OPT_DIR_REQ|SMP_OPT_FINAL); |
Willy Tarreau | f68a15a | 2011-01-06 16:53:21 +0100 | [diff] [blame] | 3163 | ret = acl_pass(ret); |
| 3164 | |
Willy Tarreau | ff011f2 | 2011-01-06 17:51:27 +0100 | [diff] [blame] | 3165 | if (rule->cond->pol == ACL_COND_UNLESS) |
Willy Tarreau | f68a15a | 2011-01-06 16:53:21 +0100 | [diff] [blame] | 3166 | ret = !ret; |
Willy Tarreau | 96257ec | 2012-12-27 10:46:37 +0100 | [diff] [blame] | 3167 | |
| 3168 | if (!ret) /* condition not matched */ |
| 3169 | continue; |
Willy Tarreau | f68a15a | 2011-01-06 16:53:21 +0100 | [diff] [blame] | 3170 | } |
| 3171 | |
Willy Tarreau | 20b0de5 | 2012-12-24 15:45:22 +0100 | [diff] [blame] | 3172 | |
Willy Tarreau | 96257ec | 2012-12-27 10:46:37 +0100 | [diff] [blame] | 3173 | switch (rule->action) { |
| 3174 | case HTTP_REQ_ACT_ALLOW: |
| 3175 | return NULL; /* "allow" rules are OK */ |
| 3176 | |
| 3177 | case HTTP_REQ_ACT_DENY: |
| 3178 | txn->flags |= TX_CLDENY; |
| 3179 | return rule; |
| 3180 | |
Willy Tarreau | ccbcc37 | 2012-12-27 12:37:57 +0100 | [diff] [blame] | 3181 | case HTTP_REQ_ACT_TARPIT: |
| 3182 | txn->flags |= TX_CLTARPIT; |
| 3183 | return rule; |
| 3184 | |
Willy Tarreau | 96257ec | 2012-12-27 10:46:37 +0100 | [diff] [blame] | 3185 | case HTTP_REQ_ACT_AUTH: |
| 3186 | return rule; |
| 3187 | |
Willy Tarreau | 81499eb | 2012-12-27 12:19:02 +0100 | [diff] [blame] | 3188 | case HTTP_REQ_ACT_REDIR: |
| 3189 | return rule; |
| 3190 | |
Willy Tarreau | f4c43c1 | 2013-06-11 17:01:13 +0200 | [diff] [blame] | 3191 | case HTTP_REQ_ACT_SET_NICE: |
| 3192 | s->task->nice = rule->arg.nice; |
| 3193 | break; |
| 3194 | |
Willy Tarreau | 42cf39e | 2013-06-11 18:51:32 +0200 | [diff] [blame] | 3195 | case HTTP_REQ_ACT_SET_TOS: |
Willy Tarreau | 3c72872 | 2014-01-23 13:50:42 +0100 | [diff] [blame] | 3196 | if ((cli_conn = objt_conn(s->req->prod->end)) && conn_ctrl_ready(cli_conn)) |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 3197 | 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] | 3198 | break; |
| 3199 | |
Willy Tarreau | 51347ed | 2013-06-11 19:34:13 +0200 | [diff] [blame] | 3200 | case HTTP_REQ_ACT_SET_MARK: |
| 3201 | #ifdef SO_MARK |
Willy Tarreau | 3c72872 | 2014-01-23 13:50:42 +0100 | [diff] [blame] | 3202 | if ((cli_conn = objt_conn(s->req->prod->end)) && conn_ctrl_ready(cli_conn)) |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 3203 | 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] | 3204 | #endif |
| 3205 | break; |
| 3206 | |
Willy Tarreau | 9a355ec | 2013-06-11 17:45:46 +0200 | [diff] [blame] | 3207 | case HTTP_REQ_ACT_SET_LOGL: |
| 3208 | s->logs.level = rule->arg.loglevel; |
| 3209 | break; |
| 3210 | |
Willy Tarreau | 96257ec | 2012-12-27 10:46:37 +0100 | [diff] [blame] | 3211 | case HTTP_REQ_ACT_SET_HDR: |
| 3212 | ctx.idx = 0; |
| 3213 | /* remove all occurrences of the header */ |
| 3214 | while (http_find_header2(rule->arg.hdr_add.name, rule->arg.hdr_add.name_len, |
| 3215 | txn->req.chn->buf->p, &txn->hdr_idx, &ctx)) { |
| 3216 | http_remove_header2(&txn->req, &txn->hdr_idx, &ctx); |
Willy Tarreau | 20b0de5 | 2012-12-24 15:45:22 +0100 | [diff] [blame] | 3217 | } |
Willy Tarreau | 96257ec | 2012-12-27 10:46:37 +0100 | [diff] [blame] | 3218 | /* now fall through to header addition */ |
| 3219 | |
| 3220 | case HTTP_REQ_ACT_ADD_HDR: |
| 3221 | chunk_printf(&trash, "%s: ", rule->arg.hdr_add.name); |
| 3222 | memcpy(trash.str, rule->arg.hdr_add.name, rule->arg.hdr_add.name_len); |
| 3223 | trash.len = rule->arg.hdr_add.name_len; |
| 3224 | trash.str[trash.len++] = ':'; |
| 3225 | trash.str[trash.len++] = ' '; |
| 3226 | trash.len += build_logline(s, trash.str + trash.len, trash.size - trash.len, &rule->arg.hdr_add.fmt); |
| 3227 | http_header_add_tail2(&txn->req, &txn->hdr_idx, trash.str, trash.len); |
| 3228 | break; |
Willy Tarreau | f68a15a | 2011-01-06 16:53:21 +0100 | [diff] [blame] | 3229 | } |
| 3230 | } |
Willy Tarreau | 96257ec | 2012-12-27 10:46:37 +0100 | [diff] [blame] | 3231 | |
| 3232 | /* we reached the end of the rules, nothing to report */ |
Willy Tarreau | 418c1a0 | 2012-12-25 20:52:58 +0100 | [diff] [blame] | 3233 | return NULL; |
Willy Tarreau | f68a15a | 2011-01-06 16:53:21 +0100 | [diff] [blame] | 3234 | } |
| 3235 | |
Willy Tarreau | 71241ab | 2012-12-27 11:30:54 +0100 | [diff] [blame] | 3236 | |
Willy Tarreau | e365c0b | 2013-06-11 16:06:12 +0200 | [diff] [blame] | 3237 | /* Executes the http-response rules <rules> for session <s>, proxy <px> and |
| 3238 | * transaction <txn>. Returns the first rule that prevents further processing |
| 3239 | * of the response (deny, ...) or NULL if it executed all rules or stopped |
| 3240 | * on an allow. It may set the TX_SVDENY on txn->flags if it encounters a deny |
| 3241 | * rule. |
| 3242 | */ |
| 3243 | static struct http_res_rule * |
| 3244 | http_res_get_intercept_rule(struct proxy *px, struct list *rules, struct session *s, struct http_txn *txn) |
| 3245 | { |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 3246 | struct connection *cli_conn; |
Willy Tarreau | e365c0b | 2013-06-11 16:06:12 +0200 | [diff] [blame] | 3247 | struct http_res_rule *rule; |
| 3248 | struct hdr_ctx ctx; |
| 3249 | |
| 3250 | list_for_each_entry(rule, rules, list) { |
| 3251 | if (rule->action >= HTTP_RES_ACT_MAX) |
| 3252 | continue; |
| 3253 | |
| 3254 | /* check optional condition */ |
| 3255 | if (rule->cond) { |
| 3256 | int ret; |
| 3257 | |
| 3258 | ret = acl_exec_cond(rule->cond, px, s, txn, SMP_OPT_DIR_RES|SMP_OPT_FINAL); |
| 3259 | ret = acl_pass(ret); |
| 3260 | |
| 3261 | if (rule->cond->pol == ACL_COND_UNLESS) |
| 3262 | ret = !ret; |
| 3263 | |
| 3264 | if (!ret) /* condition not matched */ |
| 3265 | continue; |
| 3266 | } |
| 3267 | |
| 3268 | |
| 3269 | switch (rule->action) { |
| 3270 | case HTTP_RES_ACT_ALLOW: |
| 3271 | return NULL; /* "allow" rules are OK */ |
| 3272 | |
| 3273 | case HTTP_RES_ACT_DENY: |
| 3274 | txn->flags |= TX_SVDENY; |
| 3275 | return rule; |
| 3276 | |
Willy Tarreau | f4c43c1 | 2013-06-11 17:01:13 +0200 | [diff] [blame] | 3277 | case HTTP_RES_ACT_SET_NICE: |
| 3278 | s->task->nice = rule->arg.nice; |
| 3279 | break; |
| 3280 | |
Willy Tarreau | 42cf39e | 2013-06-11 18:51:32 +0200 | [diff] [blame] | 3281 | case HTTP_RES_ACT_SET_TOS: |
Willy Tarreau | 3c72872 | 2014-01-23 13:50:42 +0100 | [diff] [blame] | 3282 | if ((cli_conn = objt_conn(s->req->prod->end)) && conn_ctrl_ready(cli_conn)) |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 3283 | 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] | 3284 | break; |
| 3285 | |
Willy Tarreau | 51347ed | 2013-06-11 19:34:13 +0200 | [diff] [blame] | 3286 | case HTTP_RES_ACT_SET_MARK: |
| 3287 | #ifdef SO_MARK |
Willy Tarreau | 3c72872 | 2014-01-23 13:50:42 +0100 | [diff] [blame] | 3288 | if ((cli_conn = objt_conn(s->req->prod->end)) && conn_ctrl_ready(cli_conn)) |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 3289 | 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] | 3290 | #endif |
| 3291 | break; |
| 3292 | |
Willy Tarreau | 9a355ec | 2013-06-11 17:45:46 +0200 | [diff] [blame] | 3293 | case HTTP_RES_ACT_SET_LOGL: |
| 3294 | s->logs.level = rule->arg.loglevel; |
| 3295 | break; |
| 3296 | |
Willy Tarreau | e365c0b | 2013-06-11 16:06:12 +0200 | [diff] [blame] | 3297 | case HTTP_RES_ACT_SET_HDR: |
| 3298 | ctx.idx = 0; |
| 3299 | /* remove all occurrences of the header */ |
| 3300 | while (http_find_header2(rule->arg.hdr_add.name, rule->arg.hdr_add.name_len, |
| 3301 | txn->rsp.chn->buf->p, &txn->hdr_idx, &ctx)) { |
| 3302 | http_remove_header2(&txn->rsp, &txn->hdr_idx, &ctx); |
| 3303 | } |
| 3304 | /* now fall through to header addition */ |
| 3305 | |
| 3306 | case HTTP_RES_ACT_ADD_HDR: |
| 3307 | chunk_printf(&trash, "%s: ", rule->arg.hdr_add.name); |
| 3308 | memcpy(trash.str, rule->arg.hdr_add.name, rule->arg.hdr_add.name_len); |
| 3309 | trash.len = rule->arg.hdr_add.name_len; |
| 3310 | trash.str[trash.len++] = ':'; |
| 3311 | trash.str[trash.len++] = ' '; |
| 3312 | trash.len += build_logline(s, trash.str + trash.len, trash.size - trash.len, &rule->arg.hdr_add.fmt); |
| 3313 | http_header_add_tail2(&txn->rsp, &txn->hdr_idx, trash.str, trash.len); |
| 3314 | break; |
| 3315 | } |
| 3316 | } |
| 3317 | |
| 3318 | /* we reached the end of the rules, nothing to report */ |
| 3319 | return NULL; |
| 3320 | } |
| 3321 | |
| 3322 | |
Willy Tarreau | 71241ab | 2012-12-27 11:30:54 +0100 | [diff] [blame] | 3323 | /* Perform an HTTP redirect based on the information in <rule>. The function |
| 3324 | * returns non-zero on success, or zero in case of a, irrecoverable error such |
| 3325 | * as too large a request to build a valid response. |
| 3326 | */ |
| 3327 | static int http_apply_redirect_rule(struct redirect_rule *rule, struct session *s, struct http_txn *txn) |
| 3328 | { |
| 3329 | struct http_msg *msg = &txn->req; |
| 3330 | const char *msg_fmt; |
Thierry FOURNIER | d18cd0f | 2013-11-29 12:15:45 +0100 | [diff] [blame] | 3331 | const char *location; |
Willy Tarreau | 71241ab | 2012-12-27 11:30:54 +0100 | [diff] [blame] | 3332 | |
| 3333 | /* build redirect message */ |
| 3334 | switch(rule->code) { |
Yves Lafon | 3e8d1ae | 2013-03-11 11:06:05 -0400 | [diff] [blame] | 3335 | case 308: |
| 3336 | msg_fmt = HTTP_308; |
| 3337 | break; |
| 3338 | case 307: |
| 3339 | msg_fmt = HTTP_307; |
| 3340 | break; |
Willy Tarreau | 71241ab | 2012-12-27 11:30:54 +0100 | [diff] [blame] | 3341 | case 303: |
| 3342 | msg_fmt = HTTP_303; |
| 3343 | break; |
| 3344 | case 301: |
| 3345 | msg_fmt = HTTP_301; |
| 3346 | break; |
| 3347 | case 302: |
| 3348 | default: |
| 3349 | msg_fmt = HTTP_302; |
| 3350 | break; |
| 3351 | } |
| 3352 | |
| 3353 | if (unlikely(!chunk_strcpy(&trash, msg_fmt))) |
| 3354 | return 0; |
| 3355 | |
Thierry FOURNIER | d18cd0f | 2013-11-29 12:15:45 +0100 | [diff] [blame] | 3356 | location = trash.str + trash.len; |
| 3357 | |
Willy Tarreau | 71241ab | 2012-12-27 11:30:54 +0100 | [diff] [blame] | 3358 | switch(rule->type) { |
| 3359 | case REDIRECT_TYPE_SCHEME: { |
| 3360 | const char *path; |
| 3361 | const char *host; |
| 3362 | struct hdr_ctx ctx; |
| 3363 | int pathlen; |
| 3364 | int hostlen; |
| 3365 | |
| 3366 | host = ""; |
| 3367 | hostlen = 0; |
| 3368 | ctx.idx = 0; |
| 3369 | if (http_find_header2("Host", 4, txn->req.chn->buf->p + txn->req.sol, &txn->hdr_idx, &ctx)) { |
| 3370 | host = ctx.line + ctx.val; |
| 3371 | hostlen = ctx.vlen; |
| 3372 | } |
| 3373 | |
| 3374 | path = http_get_path(txn); |
| 3375 | /* build message using path */ |
| 3376 | if (path) { |
| 3377 | pathlen = txn->req.sl.rq.u_l + (txn->req.chn->buf->p + txn->req.sl.rq.u) - path; |
| 3378 | if (rule->flags & REDIRECT_FLAG_DROP_QS) { |
| 3379 | int qs = 0; |
| 3380 | while (qs < pathlen) { |
| 3381 | if (path[qs] == '?') { |
| 3382 | pathlen = qs; |
| 3383 | break; |
| 3384 | } |
| 3385 | qs++; |
| 3386 | } |
| 3387 | } |
| 3388 | } else { |
| 3389 | path = "/"; |
| 3390 | pathlen = 1; |
| 3391 | } |
| 3392 | |
Thierry FOURNIER | d18cd0f | 2013-11-29 12:15:45 +0100 | [diff] [blame] | 3393 | if (rule->rdr_str) { /* this is an old "redirect" rule */ |
| 3394 | /* check if we can add scheme + "://" + host + path */ |
| 3395 | if (trash.len + rule->rdr_len + 3 + hostlen + pathlen > trash.size - 4) |
| 3396 | return 0; |
Willy Tarreau | 71241ab | 2012-12-27 11:30:54 +0100 | [diff] [blame] | 3397 | |
Thierry FOURNIER | d18cd0f | 2013-11-29 12:15:45 +0100 | [diff] [blame] | 3398 | /* add scheme */ |
| 3399 | memcpy(trash.str + trash.len, rule->rdr_str, rule->rdr_len); |
| 3400 | trash.len += rule->rdr_len; |
| 3401 | } |
| 3402 | else { |
| 3403 | /* add scheme with executing log format */ |
| 3404 | 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] | 3405 | |
Thierry FOURNIER | d18cd0f | 2013-11-29 12:15:45 +0100 | [diff] [blame] | 3406 | /* check if we can add scheme + "://" + host + path */ |
| 3407 | if (trash.len + 3 + hostlen + pathlen > trash.size - 4) |
| 3408 | return 0; |
| 3409 | } |
Willy Tarreau | 71241ab | 2012-12-27 11:30:54 +0100 | [diff] [blame] | 3410 | /* add "://" */ |
| 3411 | memcpy(trash.str + trash.len, "://", 3); |
| 3412 | trash.len += 3; |
| 3413 | |
| 3414 | /* add host */ |
| 3415 | memcpy(trash.str + trash.len, host, hostlen); |
| 3416 | trash.len += hostlen; |
| 3417 | |
| 3418 | /* add path */ |
| 3419 | memcpy(trash.str + trash.len, path, pathlen); |
| 3420 | trash.len += pathlen; |
| 3421 | |
Thierry FOURNIER | d18cd0f | 2013-11-29 12:15:45 +0100 | [diff] [blame] | 3422 | /* 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] | 3423 | if (trash.len && trash.str[trash.len - 1] != '/' && |
| 3424 | (rule->flags & REDIRECT_FLAG_APPEND_SLASH)) { |
| 3425 | if (trash.len > trash.size - 5) |
| 3426 | return 0; |
| 3427 | trash.str[trash.len] = '/'; |
| 3428 | trash.len++; |
| 3429 | } |
| 3430 | |
| 3431 | break; |
| 3432 | } |
| 3433 | case REDIRECT_TYPE_PREFIX: { |
| 3434 | const char *path; |
| 3435 | int pathlen; |
| 3436 | |
| 3437 | path = http_get_path(txn); |
| 3438 | /* build message using path */ |
| 3439 | if (path) { |
| 3440 | pathlen = txn->req.sl.rq.u_l + (txn->req.chn->buf->p + txn->req.sl.rq.u) - path; |
| 3441 | if (rule->flags & REDIRECT_FLAG_DROP_QS) { |
| 3442 | int qs = 0; |
| 3443 | while (qs < pathlen) { |
| 3444 | if (path[qs] == '?') { |
| 3445 | pathlen = qs; |
| 3446 | break; |
| 3447 | } |
| 3448 | qs++; |
| 3449 | } |
| 3450 | } |
| 3451 | } else { |
| 3452 | path = "/"; |
| 3453 | pathlen = 1; |
| 3454 | } |
| 3455 | |
Thierry FOURNIER | d18cd0f | 2013-11-29 12:15:45 +0100 | [diff] [blame] | 3456 | if (rule->rdr_str) { /* this is an old "redirect" rule */ |
| 3457 | if (trash.len + rule->rdr_len + pathlen > trash.size - 4) |
| 3458 | return 0; |
Willy Tarreau | 71241ab | 2012-12-27 11:30:54 +0100 | [diff] [blame] | 3459 | |
Thierry FOURNIER | d18cd0f | 2013-11-29 12:15:45 +0100 | [diff] [blame] | 3460 | /* add prefix. Note that if prefix == "/", we don't want to |
| 3461 | * add anything, otherwise it makes it hard for the user to |
| 3462 | * configure a self-redirection. |
| 3463 | */ |
| 3464 | if (rule->rdr_len != 1 || *rule->rdr_str != '/') { |
| 3465 | memcpy(trash.str + trash.len, rule->rdr_str, rule->rdr_len); |
| 3466 | trash.len += rule->rdr_len; |
| 3467 | } |
| 3468 | } |
| 3469 | else { |
| 3470 | /* add prefix with executing log format */ |
| 3471 | trash.len += build_logline(s, trash.str + trash.len, trash.size - trash.len, &rule->rdr_fmt); |
| 3472 | |
| 3473 | /* Check length */ |
| 3474 | if (trash.len + pathlen > trash.size - 4) |
| 3475 | return 0; |
Willy Tarreau | 71241ab | 2012-12-27 11:30:54 +0100 | [diff] [blame] | 3476 | } |
| 3477 | |
| 3478 | /* add path */ |
| 3479 | memcpy(trash.str + trash.len, path, pathlen); |
| 3480 | trash.len += pathlen; |
| 3481 | |
Thierry FOURNIER | d18cd0f | 2013-11-29 12:15:45 +0100 | [diff] [blame] | 3482 | /* 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] | 3483 | if (trash.len && trash.str[trash.len - 1] != '/' && |
| 3484 | (rule->flags & REDIRECT_FLAG_APPEND_SLASH)) { |
| 3485 | if (trash.len > trash.size - 5) |
| 3486 | return 0; |
| 3487 | trash.str[trash.len] = '/'; |
| 3488 | trash.len++; |
| 3489 | } |
| 3490 | |
| 3491 | break; |
| 3492 | } |
| 3493 | case REDIRECT_TYPE_LOCATION: |
| 3494 | default: |
Thierry FOURNIER | d18cd0f | 2013-11-29 12:15:45 +0100 | [diff] [blame] | 3495 | if (rule->rdr_str) { /* this is an old "redirect" rule */ |
| 3496 | if (trash.len + rule->rdr_len > trash.size - 4) |
| 3497 | return 0; |
| 3498 | |
| 3499 | /* add location */ |
| 3500 | memcpy(trash.str + trash.len, rule->rdr_str, rule->rdr_len); |
| 3501 | trash.len += rule->rdr_len; |
| 3502 | } |
| 3503 | else { |
| 3504 | /* add location with executing log format */ |
| 3505 | 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] | 3506 | |
Thierry FOURNIER | d18cd0f | 2013-11-29 12:15:45 +0100 | [diff] [blame] | 3507 | /* Check left length */ |
| 3508 | if (trash.len > trash.size - 4) |
| 3509 | return 0; |
| 3510 | } |
Willy Tarreau | 71241ab | 2012-12-27 11:30:54 +0100 | [diff] [blame] | 3511 | break; |
| 3512 | } |
| 3513 | |
| 3514 | if (rule->cookie_len) { |
| 3515 | memcpy(trash.str + trash.len, "\r\nSet-Cookie: ", 14); |
| 3516 | trash.len += 14; |
| 3517 | memcpy(trash.str + trash.len, rule->cookie_str, rule->cookie_len); |
| 3518 | trash.len += rule->cookie_len; |
| 3519 | memcpy(trash.str + trash.len, "\r\n", 2); |
| 3520 | trash.len += 2; |
| 3521 | } |
| 3522 | |
| 3523 | /* add end of headers and the keep-alive/close status. |
| 3524 | * We may choose to set keep-alive if the Location begins |
| 3525 | * with a slash, because the client will come back to the |
| 3526 | * same server. |
| 3527 | */ |
| 3528 | txn->status = rule->code; |
| 3529 | /* let's log the request time */ |
| 3530 | s->logs.tv_request = now; |
| 3531 | |
Thierry FOURNIER | d18cd0f | 2013-11-29 12:15:45 +0100 | [diff] [blame] | 3532 | if (*location == '/' && |
Willy Tarreau | 71241ab | 2012-12-27 11:30:54 +0100 | [diff] [blame] | 3533 | (msg->flags & HTTP_MSGF_XFER_LEN) && |
| 3534 | !(msg->flags & HTTP_MSGF_TE_CHNK) && !txn->req.body_len && |
| 3535 | ((txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_SCL || |
| 3536 | (txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_KAL)) { |
| 3537 | /* keep-alive possible */ |
| 3538 | if (!(msg->flags & HTTP_MSGF_VER_11)) { |
| 3539 | if (unlikely(txn->flags & TX_USE_PX_CONN)) { |
| 3540 | memcpy(trash.str + trash.len, "\r\nProxy-Connection: keep-alive", 30); |
| 3541 | trash.len += 30; |
| 3542 | } else { |
| 3543 | memcpy(trash.str + trash.len, "\r\nConnection: keep-alive", 24); |
| 3544 | trash.len += 24; |
| 3545 | } |
| 3546 | } |
| 3547 | memcpy(trash.str + trash.len, "\r\n\r\n", 4); |
| 3548 | trash.len += 4; |
| 3549 | bo_inject(txn->rsp.chn, trash.str, trash.len); |
| 3550 | /* "eat" the request */ |
| 3551 | bi_fast_delete(txn->req.chn->buf, msg->sov); |
| 3552 | msg->sov = 0; |
| 3553 | txn->req.chn->analysers = AN_REQ_HTTP_XFER_BODY; |
| 3554 | s->rep->analysers = AN_RES_HTTP_XFER_BODY; |
| 3555 | txn->req.msg_state = HTTP_MSG_CLOSED; |
| 3556 | txn->rsp.msg_state = HTTP_MSG_DONE; |
| 3557 | } else { |
| 3558 | /* keep-alive not possible */ |
| 3559 | if (unlikely(txn->flags & TX_USE_PX_CONN)) { |
| 3560 | memcpy(trash.str + trash.len, "\r\nProxy-Connection: close\r\n\r\n", 29); |
| 3561 | trash.len += 29; |
| 3562 | } else { |
| 3563 | memcpy(trash.str + trash.len, "\r\nConnection: close\r\n\r\n", 23); |
| 3564 | trash.len += 23; |
| 3565 | } |
| 3566 | stream_int_retnclose(txn->req.chn->prod, &trash); |
| 3567 | txn->req.chn->analysers = 0; |
| 3568 | } |
| 3569 | |
| 3570 | if (!(s->flags & SN_ERR_MASK)) |
Willy Tarreau | 570f221 | 2013-06-10 16:42:09 +0200 | [diff] [blame] | 3571 | s->flags |= SN_ERR_LOCAL; |
Willy Tarreau | 71241ab | 2012-12-27 11:30:54 +0100 | [diff] [blame] | 3572 | if (!(s->flags & SN_FINST_MASK)) |
| 3573 | s->flags |= SN_FINST_R; |
| 3574 | |
| 3575 | return 1; |
| 3576 | } |
| 3577 | |
Willy Tarreau | 1d0dfb1 | 2009-07-07 15:10:31 +0200 | [diff] [blame] | 3578 | /* This stream analyser runs all HTTP request processing which is common to |
| 3579 | * frontends and backends, which means blocking ACLs, filters, connection-close, |
| 3580 | * reqadd, stats and redirects. This is performed for the designated proxy. |
Willy Tarreau | d787e66 | 2009-07-07 10:14:51 +0200 | [diff] [blame] | 3581 | * 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] | 3582 | * either needs more data or wants to immediately abort the request (eg: deny, |
| 3583 | * error, ...). |
Willy Tarreau | d787e66 | 2009-07-07 10:14:51 +0200 | [diff] [blame] | 3584 | */ |
Willy Tarreau | 7421efb | 2012-07-02 15:11:27 +0200 | [diff] [blame] | 3585 | int http_process_req_common(struct session *s, struct channel *req, int an_bit, struct proxy *px) |
Willy Tarreau | d787e66 | 2009-07-07 10:14:51 +0200 | [diff] [blame] | 3586 | { |
Willy Tarreau | d787e66 | 2009-07-07 10:14:51 +0200 | [diff] [blame] | 3587 | struct http_txn *txn = &s->txn; |
| 3588 | struct http_msg *msg = &txn->req; |
Willy Tarreau | 1d0dfb1 | 2009-07-07 15:10:31 +0200 | [diff] [blame] | 3589 | struct acl_cond *cond; |
Willy Tarreau | ff011f2 | 2011-01-06 17:51:27 +0100 | [diff] [blame] | 3590 | struct http_req_rule *http_req_last_rule = NULL; |
Willy Tarreau | 1d0dfb1 | 2009-07-07 15:10:31 +0200 | [diff] [blame] | 3591 | struct redirect_rule *rule; |
Willy Tarreau | f4f0412 | 2010-01-28 18:10:50 +0100 | [diff] [blame] | 3592 | struct cond_wordlist *wl; |
Willy Tarreau | d787e66 | 2009-07-07 10:14:51 +0200 | [diff] [blame] | 3593 | |
Willy Tarreau | 655dce9 | 2009-11-08 13:10:58 +0100 | [diff] [blame] | 3594 | if (unlikely(msg->msg_state < HTTP_MSG_BODY)) { |
Willy Tarreau | 51aecc7 | 2009-07-12 09:47:04 +0200 | [diff] [blame] | 3595 | /* we need more data */ |
Willy Tarreau | 8263d2b | 2012-08-28 00:06:31 +0200 | [diff] [blame] | 3596 | channel_dont_connect(req); |
Willy Tarreau | 51aecc7 | 2009-07-12 09:47:04 +0200 | [diff] [blame] | 3597 | return 0; |
| 3598 | } |
| 3599 | |
Willy Tarreau | 3a81629 | 2009-07-07 10:55:49 +0200 | [diff] [blame] | 3600 | req->analysers &= ~an_bit; |
Willy Tarreau | d787e66 | 2009-07-07 10:14:51 +0200 | [diff] [blame] | 3601 | req->analyse_exp = TICK_ETERNITY; |
| 3602 | |
Willy Tarreau | 02d6cfc | 2012-03-01 18:19:58 +0100 | [diff] [blame] | 3603 | DPRINTF(stderr,"[%u] %s: session=%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] | 3604 | now_ms, __FUNCTION__, |
| 3605 | s, |
| 3606 | req, |
| 3607 | req->rex, req->wex, |
| 3608 | req->flags, |
Willy Tarreau | 9b28e03 | 2012-10-12 23:49:43 +0200 | [diff] [blame] | 3609 | req->buf->i, |
Willy Tarreau | d787e66 | 2009-07-07 10:14:51 +0200 | [diff] [blame] | 3610 | req->analysers); |
| 3611 | |
Willy Tarreau | 1d0dfb1 | 2009-07-07 15:10:31 +0200 | [diff] [blame] | 3612 | /* first check whether we have some ACLs set to block this request */ |
| 3613 | list_for_each_entry(cond, &px->block_cond, list) { |
Willy Tarreau | 32a6f2e | 2012-04-25 10:13:36 +0200 | [diff] [blame] | 3614 | int ret = acl_exec_cond(cond, px, s, txn, SMP_OPT_DIR_REQ|SMP_OPT_FINAL); |
Willy Tarreau | b463dfb | 2008-06-07 23:08:56 +0200 | [diff] [blame] | 3615 | |
Willy Tarreau | 1d0dfb1 | 2009-07-07 15:10:31 +0200 | [diff] [blame] | 3616 | ret = acl_pass(ret); |
| 3617 | if (cond->pol == ACL_COND_UNLESS) |
| 3618 | ret = !ret; |
Willy Tarreau | 53b6c74 | 2006-12-17 13:37:46 +0100 | [diff] [blame] | 3619 | |
Willy Tarreau | 1d0dfb1 | 2009-07-07 15:10:31 +0200 | [diff] [blame] | 3620 | if (ret) { |
| 3621 | txn->status = 403; |
| 3622 | /* let's log the request time */ |
| 3623 | s->logs.tv_request = now; |
Willy Tarreau | 783f258 | 2012-09-04 12:19:04 +0200 | [diff] [blame] | 3624 | stream_int_retnclose(req->prod, http_error_message(s, HTTP_ERR_403)); |
Willy Tarreau | da7ff64 | 2010-06-23 11:44:09 +0200 | [diff] [blame] | 3625 | session_inc_http_err_ctr(s); |
Willy Tarreau | 1d0dfb1 | 2009-07-07 15:10:31 +0200 | [diff] [blame] | 3626 | goto return_prx_cond; |
Willy Tarreau | 59234e9 | 2008-11-30 23:51:27 +0100 | [diff] [blame] | 3627 | } |
Willy Tarreau | 1d0dfb1 | 2009-07-07 15:10:31 +0200 | [diff] [blame] | 3628 | } |
Willy Tarreau | 59234e9 | 2008-11-30 23:51:27 +0100 | [diff] [blame] | 3629 | |
Willy Tarreau | 5d5b5d8 | 2012-12-09 12:00:04 +0100 | [diff] [blame] | 3630 | /* just in case we have some per-backend tracking */ |
| 3631 | session_inc_be_http_req_ctr(s); |
| 3632 | |
Willy Tarreau | f68a15a | 2011-01-06 16:53:21 +0100 | [diff] [blame] | 3633 | /* evaluate http-request rules */ |
Willy Tarreau | 96257ec | 2012-12-27 10:46:37 +0100 | [diff] [blame] | 3634 | http_req_last_rule = http_req_get_intercept_rule(px, &px->http_req_rules, s, txn); |
Willy Tarreau | 5142594 | 2010-02-01 10:40:19 +0100 | [diff] [blame] | 3635 | |
Willy Tarreau | f68a15a | 2011-01-06 16:53:21 +0100 | [diff] [blame] | 3636 | /* evaluate stats http-request rules only if http-request is OK */ |
Willy Tarreau | ff011f2 | 2011-01-06 17:51:27 +0100 | [diff] [blame] | 3637 | if (!http_req_last_rule) { |
Willy Tarreau | 414e9bb | 2013-11-23 00:30:38 +0100 | [diff] [blame] | 3638 | if (stats_check_uri(s->rep->prod, txn, px)) { |
| 3639 | s->target = &http_stats_applet.obj_type; |
Willy Tarreau | 1fbe1c9 | 2013-12-01 09:35:41 +0100 | [diff] [blame] | 3640 | if (unlikely(!stream_int_register_handler(s->rep->prod, objt_applet(s->target)))) { |
| 3641 | txn->status = 500; |
| 3642 | s->logs.tv_request = now; |
| 3643 | stream_int_retnclose(req->prod, http_error_message(s, HTTP_ERR_500)); |
Willy Tarreau | 7b4b499 | 2013-12-01 09:15:12 +0100 | [diff] [blame] | 3644 | |
Willy Tarreau | 1fbe1c9 | 2013-12-01 09:35:41 +0100 | [diff] [blame] | 3645 | if (!(s->flags & SN_ERR_MASK)) |
| 3646 | s->flags |= SN_ERR_RESOURCE; |
| 3647 | goto return_prx_cond; |
| 3648 | } |
Willy Tarreau | 414e9bb | 2013-11-23 00:30:38 +0100 | [diff] [blame] | 3649 | /* parse the whole stats request and extract the relevant information */ |
| 3650 | http_handle_stats(s, req); |
Willy Tarreau | 96257ec | 2012-12-27 10:46:37 +0100 | [diff] [blame] | 3651 | http_req_last_rule = http_req_get_intercept_rule(px, &px->uri_auth->http_req_rules, s, txn); |
Willy Tarreau | 414e9bb | 2013-11-23 00:30:38 +0100 | [diff] [blame] | 3652 | } |
Krzysztof Piotr Oledzki | 59bb218 | 2010-01-29 17:58:21 +0100 | [diff] [blame] | 3653 | } |
| 3654 | |
Willy Tarreau | 3b44e72 | 2013-11-16 10:28:23 +0100 | [diff] [blame] | 3655 | /* only apply req{,i}{rep/deny/tarpit} if the request was not yet |
| 3656 | * blocked by an http-request rule. |
| 3657 | */ |
| 3658 | if (!(txn->flags & (TX_CLDENY|TX_CLTARPIT)) && (px->req_exp != NULL)) { |
Willy Tarreau | 6c123b1 | 2010-01-28 20:22:06 +0100 | [diff] [blame] | 3659 | if (apply_filters_to_request(s, req, px) < 0) |
Willy Tarreau | 1d0dfb1 | 2009-07-07 15:10:31 +0200 | [diff] [blame] | 3660 | goto return_bad_req; |
Willy Tarreau | 3b44e72 | 2013-11-16 10:28:23 +0100 | [diff] [blame] | 3661 | } |
Willy Tarreau | 0661926 | 2006-12-17 08:37:22 +0100 | [diff] [blame] | 3662 | |
Willy Tarreau | 3b44e72 | 2013-11-16 10:28:23 +0100 | [diff] [blame] | 3663 | /* return a 403 if either rule has blocked */ |
| 3664 | if (txn->flags & (TX_CLDENY|TX_CLTARPIT)) { |
Willy Tarreau | 59234e9 | 2008-11-30 23:51:27 +0100 | [diff] [blame] | 3665 | if (txn->flags & TX_CLDENY) { |
Willy Tarreau | 59234e9 | 2008-11-30 23:51:27 +0100 | [diff] [blame] | 3666 | txn->status = 403; |
Willy Tarreau | 59234e9 | 2008-11-30 23:51:27 +0100 | [diff] [blame] | 3667 | s->logs.tv_request = now; |
Willy Tarreau | 783f258 | 2012-09-04 12:19:04 +0200 | [diff] [blame] | 3668 | stream_int_retnclose(req->prod, http_error_message(s, HTTP_ERR_403)); |
Willy Tarreau | da7ff64 | 2010-06-23 11:44:09 +0200 | [diff] [blame] | 3669 | session_inc_http_err_ctr(s); |
Willy Tarreau | 687ba13 | 2013-11-16 10:13:35 +0100 | [diff] [blame] | 3670 | s->fe->fe_counters.denied_req++; |
| 3671 | if (s->fe != s->be) |
| 3672 | s->be->be_counters.denied_req++; |
| 3673 | if (s->listener->counters) |
| 3674 | s->listener->counters->denied_req++; |
Willy Tarreau | 59234e9 | 2008-11-30 23:51:27 +0100 | [diff] [blame] | 3675 | goto return_prx_cond; |
| 3676 | } |
Willy Tarreau | c465fd7 | 2009-08-31 00:17:18 +0200 | [diff] [blame] | 3677 | |
| 3678 | /* When a connection is tarpitted, we use the tarpit timeout, |
| 3679 | * which may be the same as the connect timeout if unspecified. |
| 3680 | * If unset, then set it to zero because we really want it to |
| 3681 | * eventually expire. We build the tarpit as an analyser. |
| 3682 | */ |
| 3683 | if (txn->flags & TX_CLTARPIT) { |
Willy Tarreau | 8263d2b | 2012-08-28 00:06:31 +0200 | [diff] [blame] | 3684 | channel_erase(s->req); |
Willy Tarreau | c465fd7 | 2009-08-31 00:17:18 +0200 | [diff] [blame] | 3685 | /* wipe the request out so that we can drop the connection early |
| 3686 | * if the client closes first. |
| 3687 | */ |
Willy Tarreau | 8263d2b | 2012-08-28 00:06:31 +0200 | [diff] [blame] | 3688 | channel_dont_connect(req); |
Willy Tarreau | c465fd7 | 2009-08-31 00:17:18 +0200 | [diff] [blame] | 3689 | req->analysers = 0; /* remove switching rules etc... */ |
| 3690 | req->analysers |= AN_REQ_HTTP_TARPIT; |
| 3691 | req->analyse_exp = tick_add_ifset(now_ms, s->be->timeout.tarpit); |
| 3692 | if (!req->analyse_exp) |
| 3693 | req->analyse_exp = tick_add(now_ms, 0); |
Willy Tarreau | da7ff64 | 2010-06-23 11:44:09 +0200 | [diff] [blame] | 3694 | session_inc_http_err_ctr(s); |
Willy Tarreau | 687ba13 | 2013-11-16 10:13:35 +0100 | [diff] [blame] | 3695 | s->fe->fe_counters.denied_req++; |
| 3696 | if (s->fe != s->be) |
| 3697 | s->be->be_counters.denied_req++; |
| 3698 | if (s->listener->counters) |
| 3699 | s->listener->counters->denied_req++; |
Willy Tarreau | c465fd7 | 2009-08-31 00:17:18 +0200 | [diff] [blame] | 3700 | return 1; |
| 3701 | } |
Willy Tarreau | 1d0dfb1 | 2009-07-07 15:10:31 +0200 | [diff] [blame] | 3702 | } |
Willy Tarreau | 0661926 | 2006-12-17 08:37:22 +0100 | [diff] [blame] | 3703 | |
Willy Tarreau | 70dffda | 2014-01-30 03:07:23 +0100 | [diff] [blame] | 3704 | /* Until set to anything else, the connection mode is set as Keep-Alive. It will |
Willy Tarreau | 5b15447 | 2009-12-21 20:11:07 +0100 | [diff] [blame] | 3705 | * only change if both the request and the config reference something else. |
Willy Tarreau | 70dffda | 2014-01-30 03:07:23 +0100 | [diff] [blame] | 3706 | * Option httpclose by itself sets tunnel mode where headers are mangled. |
| 3707 | * However, if another mode is set, it will affect it (eg: server-close/ |
| 3708 | * keep-alive + httpclose = close). Note that we avoid to redo the same work |
| 3709 | * if FE and BE have the same settings (common). The method consists in |
| 3710 | * checking if options changed between the two calls (implying that either |
| 3711 | * one is non-null, or one of them is non-null and we are there for the first |
| 3712 | * time. |
Willy Tarreau | 4273664 | 2009-10-18 21:04:35 +0200 | [diff] [blame] | 3713 | */ |
Willy Tarreau | 5b15447 | 2009-12-21 20:11:07 +0100 | [diff] [blame] | 3714 | |
Willy Tarreau | 416ce61 | 2014-01-31 15:45:34 +0100 | [diff] [blame] | 3715 | if (!(txn->flags & TX_HDR_CONN_PRS) || |
Willy Tarreau | 02bce8b | 2014-01-30 00:15:28 +0100 | [diff] [blame] | 3716 | ((s->fe->options & PR_O_HTTP_MODE) != (s->be->options & PR_O_HTTP_MODE))) { |
Willy Tarreau | 70dffda | 2014-01-30 03:07:23 +0100 | [diff] [blame] | 3717 | int tmp = TX_CON_WANT_KAL; |
Willy Tarreau | bbf0b37 | 2010-01-18 16:54:40 +0100 | [diff] [blame] | 3718 | |
Willy Tarreau | 70dffda | 2014-01-30 03:07:23 +0100 | [diff] [blame] | 3719 | if (!((s->fe->options2|s->be->options2) & PR_O2_FAKE_KA)) { |
| 3720 | if ((s->fe->options & PR_O_HTTP_MODE) == PR_O_HTTP_TUN || |
| 3721 | (s->be->options & PR_O_HTTP_MODE) == PR_O_HTTP_TUN) |
| 3722 | tmp = TX_CON_WANT_TUN; |
| 3723 | |
| 3724 | if ((s->fe->options & PR_O_HTTP_MODE) == PR_O_HTTP_PCL || |
| 3725 | (s->be->options & PR_O_HTTP_MODE) == PR_O_HTTP_PCL) |
| 3726 | tmp = TX_CON_WANT_TUN; |
| 3727 | } |
Willy Tarreau | 02bce8b | 2014-01-30 00:15:28 +0100 | [diff] [blame] | 3728 | |
| 3729 | if ((s->fe->options & PR_O_HTTP_MODE) == PR_O_HTTP_SCL || |
Willy Tarreau | 70dffda | 2014-01-30 03:07:23 +0100 | [diff] [blame] | 3730 | (s->be->options & PR_O_HTTP_MODE) == PR_O_HTTP_SCL) { |
| 3731 | /* option httpclose + server_close => forceclose */ |
| 3732 | if ((s->fe->options & PR_O_HTTP_MODE) == PR_O_HTTP_PCL || |
| 3733 | (s->be->options & PR_O_HTTP_MODE) == PR_O_HTTP_PCL) |
| 3734 | tmp = TX_CON_WANT_CLO; |
| 3735 | else |
| 3736 | tmp = TX_CON_WANT_SCL; |
| 3737 | } |
Willy Tarreau | 02bce8b | 2014-01-30 00:15:28 +0100 | [diff] [blame] | 3738 | |
| 3739 | if ((s->fe->options & PR_O_HTTP_MODE) == PR_O_HTTP_FCL || |
| 3740 | (s->be->options & PR_O_HTTP_MODE) == PR_O_HTTP_FCL) |
Willy Tarreau | 5b15447 | 2009-12-21 20:11:07 +0100 | [diff] [blame] | 3741 | tmp = TX_CON_WANT_CLO; |
| 3742 | |
Willy Tarreau | 5b15447 | 2009-12-21 20:11:07 +0100 | [diff] [blame] | 3743 | if ((txn->flags & TX_CON_WANT_MSK) < tmp) |
| 3744 | txn->flags = (txn->flags & ~TX_CON_WANT_MSK) | tmp; |
Willy Tarreau | 0dfdf19 | 2010-01-05 11:33:11 +0100 | [diff] [blame] | 3745 | |
Willy Tarreau | 416ce61 | 2014-01-31 15:45:34 +0100 | [diff] [blame] | 3746 | if (!(txn->flags & TX_HDR_CONN_PRS) && |
| 3747 | (txn->flags & TX_CON_WANT_MSK) != TX_CON_WANT_TUN) { |
Willy Tarreau | bbf0b37 | 2010-01-18 16:54:40 +0100 | [diff] [blame] | 3748 | /* parse the Connection header and possibly clean it */ |
| 3749 | int to_del = 0; |
Willy Tarreau | a36fc4d | 2012-02-17 17:39:37 +0100 | [diff] [blame] | 3750 | if ((msg->flags & HTTP_MSGF_VER_11) || |
Willy Tarreau | 8a8e1d9 | 2010-04-05 16:15:16 +0200 | [diff] [blame] | 3751 | ((txn->flags & TX_CON_WANT_MSK) >= TX_CON_WANT_SCL && |
| 3752 | !((s->fe->options2|s->be->options2) & PR_O2_FAKE_KA))) |
Willy Tarreau | bbf0b37 | 2010-01-18 16:54:40 +0100 | [diff] [blame] | 3753 | to_del |= 2; /* remove "keep-alive" */ |
Willy Tarreau | a36fc4d | 2012-02-17 17:39:37 +0100 | [diff] [blame] | 3754 | if (!(msg->flags & HTTP_MSGF_VER_11)) |
Willy Tarreau | bbf0b37 | 2010-01-18 16:54:40 +0100 | [diff] [blame] | 3755 | to_del |= 1; /* remove "close" */ |
Willy Tarreau | 6acf7c9 | 2012-03-09 13:30:45 +0100 | [diff] [blame] | 3756 | http_parse_connection_header(txn, msg, to_del); |
Willy Tarreau | 0dfdf19 | 2010-01-05 11:33:11 +0100 | [diff] [blame] | 3757 | } |
Willy Tarreau | 5b15447 | 2009-12-21 20:11:07 +0100 | [diff] [blame] | 3758 | |
Willy Tarreau | bbf0b37 | 2010-01-18 16:54:40 +0100 | [diff] [blame] | 3759 | /* check if client or config asks for explicit close in KAL/SCL */ |
| 3760 | if (((txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_KAL || |
| 3761 | (txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_SCL) && |
| 3762 | ((txn->flags & TX_HDR_CONN_CLO) || /* "connection: close" */ |
Willy Tarreau | a36fc4d | 2012-02-17 17:39:37 +0100 | [diff] [blame] | 3763 | (!(msg->flags & HTTP_MSGF_VER_11) && !(txn->flags & TX_HDR_CONN_KAL)) || /* no "connection: k-a" in 1.0 */ |
Willy Tarreau | a36fc4d | 2012-02-17 17:39:37 +0100 | [diff] [blame] | 3764 | !(msg->flags & HTTP_MSGF_XFER_LEN) || /* no length known => close */ |
Willy Tarreau | c3e8b25 | 2010-01-28 15:01:20 +0100 | [diff] [blame] | 3765 | s->fe->state == PR_STSTOPPED)) /* frontend is stopping */ |
Willy Tarreau | bbf0b37 | 2010-01-18 16:54:40 +0100 | [diff] [blame] | 3766 | txn->flags = (txn->flags & ~TX_CON_WANT_MSK) | TX_CON_WANT_CLO; |
| 3767 | } |
Willy Tarreau | 7859991 | 2009-10-17 20:12:21 +0200 | [diff] [blame] | 3768 | |
Willy Tarreau | f68a15a | 2011-01-06 16:53:21 +0100 | [diff] [blame] | 3769 | /* we can be blocked here because the request needs to be authenticated, |
| 3770 | * either to pass or to access stats. |
| 3771 | */ |
Willy Tarreau | 20b0de5 | 2012-12-24 15:45:22 +0100 | [diff] [blame] | 3772 | if (http_req_last_rule && http_req_last_rule->action == HTTP_REQ_ACT_AUTH) { |
Willy Tarreau | 5c2e198 | 2012-12-24 12:00:25 +0100 | [diff] [blame] | 3773 | char *realm = http_req_last_rule->arg.auth.realm; |
Krzysztof Piotr Oledzki | 59bb218 | 2010-01-29 17:58:21 +0100 | [diff] [blame] | 3774 | |
Krzysztof Piotr Oledzki | 8c8bd45 | 2010-01-29 19:29:32 +0100 | [diff] [blame] | 3775 | if (!realm) |
Willy Tarreau | 414e9bb | 2013-11-23 00:30:38 +0100 | [diff] [blame] | 3776 | realm = (objt_applet(s->target) == &http_stats_applet) ? STATS_DEFAULT_REALM : px->id; |
Krzysztof Piotr Oledzki | 8c8bd45 | 2010-01-29 19:29:32 +0100 | [diff] [blame] | 3777 | |
Willy Tarreau | 19d14ef | 2012-10-29 16:51:55 +0100 | [diff] [blame] | 3778 | chunk_printf(&trash, (txn->flags & TX_USE_PX_CONN) ? HTTP_407_fmt : HTTP_401_fmt, realm); |
Krzysztof Piotr Oledzki | 59bb218 | 2010-01-29 17:58:21 +0100 | [diff] [blame] | 3779 | txn->status = 401; |
Willy Tarreau | 19d14ef | 2012-10-29 16:51:55 +0100 | [diff] [blame] | 3780 | stream_int_retnclose(req->prod, &trash); |
Willy Tarreau | da7ff64 | 2010-06-23 11:44:09 +0200 | [diff] [blame] | 3781 | /* on 401 we still count one error, because normal browsing |
| 3782 | * won't significantly increase the counter but brute force |
| 3783 | * attempts will. |
| 3784 | */ |
| 3785 | session_inc_http_err_ctr(s); |
Krzysztof Piotr Oledzki | 59bb218 | 2010-01-29 17:58:21 +0100 | [diff] [blame] | 3786 | goto return_prx_cond; |
| 3787 | } |
| 3788 | |
Willy Tarreau | f68a15a | 2011-01-06 16:53:21 +0100 | [diff] [blame] | 3789 | /* add request headers from the rule sets in the same order */ |
| 3790 | list_for_each_entry(wl, &px->req_add, list) { |
| 3791 | if (wl->cond) { |
Willy Tarreau | 32a6f2e | 2012-04-25 10:13:36 +0200 | [diff] [blame] | 3792 | int ret = acl_exec_cond(wl->cond, px, s, txn, SMP_OPT_DIR_REQ|SMP_OPT_FINAL); |
Willy Tarreau | f68a15a | 2011-01-06 16:53:21 +0100 | [diff] [blame] | 3793 | ret = acl_pass(ret); |
| 3794 | if (((struct acl_cond *)wl->cond)->pol == ACL_COND_UNLESS) |
| 3795 | ret = !ret; |
| 3796 | if (!ret) |
| 3797 | continue; |
| 3798 | } |
| 3799 | |
Willy Tarreau | 6acf7c9 | 2012-03-09 13:30:45 +0100 | [diff] [blame] | 3800 | 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] | 3801 | goto return_bad_req; |
Willy Tarreau | 81499eb | 2012-12-27 12:19:02 +0100 | [diff] [blame] | 3802 | } |
| 3803 | |
| 3804 | if (http_req_last_rule && http_req_last_rule->action == HTTP_REQ_ACT_REDIR) { |
| 3805 | if (!http_apply_redirect_rule(http_req_last_rule->arg.redir, s, txn)) |
| 3806 | goto return_bad_req; |
| 3807 | req->analyse_exp = TICK_ETERNITY; |
| 3808 | return 1; |
Willy Tarreau | f68a15a | 2011-01-06 16:53:21 +0100 | [diff] [blame] | 3809 | } |
| 3810 | |
Willy Tarreau | 414e9bb | 2013-11-23 00:30:38 +0100 | [diff] [blame] | 3811 | if (unlikely(objt_applet(s->target) == &http_stats_applet)) { |
Willy Tarreau | 1facd6d | 2012-12-22 22:03:39 +0100 | [diff] [blame] | 3812 | /* process the stats request now */ |
Willy Tarreau | 347a35d | 2013-11-22 17:51:09 +0100 | [diff] [blame] | 3813 | if (s->fe == s->be) /* report it if the request was intercepted by the frontend */ |
| 3814 | s->fe->fe_counters.intercepted_req++; |
| 3815 | |
| 3816 | if (!(s->flags & SN_ERR_MASK)) // this is not really an error but it is |
| 3817 | s->flags |= SN_ERR_LOCAL; // to mark that it comes from the proxy |
| 3818 | if (!(s->flags & SN_FINST_MASK)) |
| 3819 | s->flags |= SN_FINST_R; |
| 3820 | |
| 3821 | req->analyse_exp = TICK_ETERNITY; |
Willy Tarreau | 51437d2 | 2013-12-29 00:43:40 +0100 | [diff] [blame] | 3822 | req->analysers = 0; |
Willy Tarreau | 1facd6d | 2012-12-22 22:03:39 +0100 | [diff] [blame] | 3823 | return 1; |
Willy Tarreau | 1d0dfb1 | 2009-07-07 15:10:31 +0200 | [diff] [blame] | 3824 | } |
Willy Tarreau | b251390 | 2006-12-17 14:52:38 +0100 | [diff] [blame] | 3825 | |
Willy Tarreau | 1d0dfb1 | 2009-07-07 15:10:31 +0200 | [diff] [blame] | 3826 | /* check whether we have some ACLs set to redirect this request */ |
| 3827 | list_for_each_entry(rule, &px->redirect_rules, list) { |
Willy Tarreau | f285f54 | 2010-01-03 20:03:03 +0100 | [diff] [blame] | 3828 | if (rule->cond) { |
Willy Tarreau | 71241ab | 2012-12-27 11:30:54 +0100 | [diff] [blame] | 3829 | int ret; |
| 3830 | |
Willy Tarreau | 32a6f2e | 2012-04-25 10:13:36 +0200 | [diff] [blame] | 3831 | ret = acl_exec_cond(rule->cond, px, s, txn, SMP_OPT_DIR_REQ|SMP_OPT_FINAL); |
Willy Tarreau | f285f54 | 2010-01-03 20:03:03 +0100 | [diff] [blame] | 3832 | ret = acl_pass(ret); |
| 3833 | if (rule->cond->pol == ACL_COND_UNLESS) |
| 3834 | ret = !ret; |
Willy Tarreau | 71241ab | 2012-12-27 11:30:54 +0100 | [diff] [blame] | 3835 | if (!ret) |
| 3836 | continue; |
Willy Tarreau | f285f54 | 2010-01-03 20:03:03 +0100 | [diff] [blame] | 3837 | } |
Willy Tarreau | 71241ab | 2012-12-27 11:30:54 +0100 | [diff] [blame] | 3838 | if (!http_apply_redirect_rule(rule, s, txn)) |
| 3839 | goto return_bad_req; |
Willy Tarreau | a9679ac | 2010-01-03 17:32:57 +0100 | [diff] [blame] | 3840 | |
Willy Tarreau | 71241ab | 2012-12-27 11:30:54 +0100 | [diff] [blame] | 3841 | req->analyse_exp = TICK_ETERNITY; |
| 3842 | return 1; |
Willy Tarreau | 1d0dfb1 | 2009-07-07 15:10:31 +0200 | [diff] [blame] | 3843 | } |
Willy Tarreau | 55ea757 | 2007-06-17 19:56:27 +0200 | [diff] [blame] | 3844 | |
Willy Tarreau | 2be3939 | 2010-01-03 17:24:51 +0100 | [diff] [blame] | 3845 | /* POST requests may be accompanied with an "Expect: 100-Continue" header. |
| 3846 | * If this happens, then the data will not come immediately, so we must |
| 3847 | * send all what we have without waiting. Note that due to the small gain |
| 3848 | * 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] | 3849 | * 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] | 3850 | * itself once used. |
| 3851 | */ |
Willy Tarreau | 03cdb7c | 2012-08-27 23:14:58 +0200 | [diff] [blame] | 3852 | req->flags |= CF_SEND_DONTWAIT; |
Willy Tarreau | 2be3939 | 2010-01-03 17:24:51 +0100 | [diff] [blame] | 3853 | |
Willy Tarreau | 1d0dfb1 | 2009-07-07 15:10:31 +0200 | [diff] [blame] | 3854 | /* that's OK for us now, let's move on to next analysers */ |
| 3855 | return 1; |
Willy Tarreau | 1138281 | 2008-07-09 16:18:21 +0200 | [diff] [blame] | 3856 | |
Willy Tarreau | 1d0dfb1 | 2009-07-07 15:10:31 +0200 | [diff] [blame] | 3857 | return_bad_req: |
| 3858 | /* We centralize bad requests processing here */ |
| 3859 | if (unlikely(msg->msg_state == HTTP_MSG_ERROR) || msg->err_pos >= 0) { |
| 3860 | /* we detected a parsing error. We want to archive this request |
| 3861 | * in the dedicated proxy area for later troubleshooting. |
| 3862 | */ |
Willy Tarreau | 8a0cef2 | 2012-03-09 13:39:23 +0100 | [diff] [blame] | 3863 | http_capture_bad_message(&s->fe->invalid_req, s, msg, msg->msg_state, s->fe); |
Willy Tarreau | 1d0dfb1 | 2009-07-07 15:10:31 +0200 | [diff] [blame] | 3864 | } |
Willy Tarreau | 55ea757 | 2007-06-17 19:56:27 +0200 | [diff] [blame] | 3865 | |
Willy Tarreau | 1d0dfb1 | 2009-07-07 15:10:31 +0200 | [diff] [blame] | 3866 | txn->req.msg_state = HTTP_MSG_ERROR; |
| 3867 | txn->status = 400; |
Willy Tarreau | 783f258 | 2012-09-04 12:19:04 +0200 | [diff] [blame] | 3868 | stream_int_retnclose(req->prod, http_error_message(s, HTTP_ERR_400)); |
Krzysztof Piotr Oledzki | aeebf9b | 2009-10-04 15:43:17 +0200 | [diff] [blame] | 3869 | |
Willy Tarreau | 7d0aaf3 | 2011-03-10 23:25:56 +0100 | [diff] [blame] | 3870 | s->fe->fe_counters.failed_req++; |
Krzysztof Piotr Oledzki | aeebf9b | 2009-10-04 15:43:17 +0200 | [diff] [blame] | 3871 | if (s->listener->counters) |
| 3872 | s->listener->counters->failed_req++; |
Willy Tarreau | 6e4261e | 2007-09-18 18:36:05 +0200 | [diff] [blame] | 3873 | |
Willy Tarreau | 1d0dfb1 | 2009-07-07 15:10:31 +0200 | [diff] [blame] | 3874 | return_prx_cond: |
| 3875 | if (!(s->flags & SN_ERR_MASK)) |
| 3876 | s->flags |= SN_ERR_PRXCOND; |
| 3877 | if (!(s->flags & SN_FINST_MASK)) |
| 3878 | s->flags |= SN_FINST_R; |
Willy Tarreau | f1221aa | 2006-12-17 22:14:12 +0100 | [diff] [blame] | 3879 | |
Willy Tarreau | 1d0dfb1 | 2009-07-07 15:10:31 +0200 | [diff] [blame] | 3880 | req->analysers = 0; |
| 3881 | req->analyse_exp = TICK_ETERNITY; |
| 3882 | return 0; |
| 3883 | } |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 3884 | |
Willy Tarreau | 1d0dfb1 | 2009-07-07 15:10:31 +0200 | [diff] [blame] | 3885 | /* This function performs all the processing enabled for the current request. |
| 3886 | * It returns 1 if the processing can continue on next analysers, or zero if it |
| 3887 | * needs more data, encounters an error, or wants to immediately abort the |
| 3888 | * request. It relies on buffers flags, and updates s->req->analysers. |
| 3889 | */ |
Willy Tarreau | 7421efb | 2012-07-02 15:11:27 +0200 | [diff] [blame] | 3890 | int http_process_request(struct session *s, struct channel *req, int an_bit) |
Willy Tarreau | 1d0dfb1 | 2009-07-07 15:10:31 +0200 | [diff] [blame] | 3891 | { |
| 3892 | struct http_txn *txn = &s->txn; |
| 3893 | struct http_msg *msg = &txn->req; |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 3894 | struct connection *cli_conn = objt_conn(req->prod->end); |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 3895 | |
Willy Tarreau | 655dce9 | 2009-11-08 13:10:58 +0100 | [diff] [blame] | 3896 | if (unlikely(msg->msg_state < HTTP_MSG_BODY)) { |
Willy Tarreau | 51aecc7 | 2009-07-12 09:47:04 +0200 | [diff] [blame] | 3897 | /* we need more data */ |
Willy Tarreau | 8263d2b | 2012-08-28 00:06:31 +0200 | [diff] [blame] | 3898 | channel_dont_connect(req); |
Willy Tarreau | 51aecc7 | 2009-07-12 09:47:04 +0200 | [diff] [blame] | 3899 | return 0; |
| 3900 | } |
| 3901 | |
Willy Tarreau | 02d6cfc | 2012-03-01 18:19:58 +0100 | [diff] [blame] | 3902 | DPRINTF(stderr,"[%u] %s: session=%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] | 3903 | now_ms, __FUNCTION__, |
| 3904 | s, |
| 3905 | req, |
| 3906 | req->rex, req->wex, |
| 3907 | req->flags, |
Willy Tarreau | 9b28e03 | 2012-10-12 23:49:43 +0200 | [diff] [blame] | 3908 | req->buf->i, |
Willy Tarreau | 1d0dfb1 | 2009-07-07 15:10:31 +0200 | [diff] [blame] | 3909 | req->analysers); |
Willy Tarreau | 0661926 | 2006-12-17 08:37:22 +0100 | [diff] [blame] | 3910 | |
William Lallemand | 82fe75c | 2012-10-23 10:25:10 +0200 | [diff] [blame] | 3911 | if (s->fe->comp || s->be->comp) |
| 3912 | select_compression_request_header(s, req->buf); |
| 3913 | |
Willy Tarreau | 59234e9 | 2008-11-30 23:51:27 +0100 | [diff] [blame] | 3914 | /* |
| 3915 | * Right now, we know that we have processed the entire headers |
| 3916 | * and that unwanted requests have been filtered out. We can do |
| 3917 | * whatever we want with the remaining request. Also, now we |
| 3918 | * may have separate values for ->fe, ->be. |
| 3919 | */ |
Willy Tarreau | 0661926 | 2006-12-17 08:37:22 +0100 | [diff] [blame] | 3920 | |
Willy Tarreau | 59234e9 | 2008-11-30 23:51:27 +0100 | [diff] [blame] | 3921 | /* |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 3922 | * If HTTP PROXY is set we simply get remote server address parsing |
| 3923 | * incoming request. Note that this requires that a connection is |
| 3924 | * allocated on the server side. |
Willy Tarreau | 59234e9 | 2008-11-30 23:51:27 +0100 | [diff] [blame] | 3925 | */ |
| 3926 | if ((s->be->options & PR_O_HTTP_PROXY) && !(s->flags & SN_ADDR_SET)) { |
Willy Tarreau | 32e3c6a | 2013-10-11 19:34:20 +0200 | [diff] [blame] | 3927 | struct connection *conn; |
Willy Tarreau | e8df1e1 | 2013-12-16 14:30:55 +0100 | [diff] [blame] | 3928 | char *path; |
Willy Tarreau | 32e3c6a | 2013-10-11 19:34:20 +0200 | [diff] [blame] | 3929 | |
Willy Tarreau | 9471b8c | 2013-12-15 13:31:35 +0100 | [diff] [blame] | 3930 | /* Note that for now we don't reuse existing proxy connections */ |
| 3931 | if (unlikely((conn = si_alloc_conn(req->cons, 0)) == NULL)) { |
Willy Tarreau | 32e3c6a | 2013-10-11 19:34:20 +0200 | [diff] [blame] | 3932 | txn->req.msg_state = HTTP_MSG_ERROR; |
| 3933 | txn->status = 500; |
| 3934 | req->analysers = 0; |
| 3935 | stream_int_retnclose(req->prod, http_error_message(s, HTTP_ERR_500)); |
| 3936 | |
| 3937 | if (!(s->flags & SN_ERR_MASK)) |
| 3938 | s->flags |= SN_ERR_RESOURCE; |
| 3939 | if (!(s->flags & SN_FINST_MASK)) |
| 3940 | s->flags |= SN_FINST_R; |
| 3941 | |
| 3942 | return 0; |
| 3943 | } |
Willy Tarreau | e8df1e1 | 2013-12-16 14:30:55 +0100 | [diff] [blame] | 3944 | |
| 3945 | path = http_get_path(txn); |
| 3946 | url2sa(req->buf->p + msg->sl.rq.u, |
| 3947 | 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] | 3948 | &conn->addr.to, NULL); |
Willy Tarreau | e8df1e1 | 2013-12-16 14:30:55 +0100 | [diff] [blame] | 3949 | /* if the path was found, we have to remove everything between |
| 3950 | * req->buf->p + msg->sl.rq.u and path (excluded). If it was not |
| 3951 | * found, we need to replace from req->buf->p + msg->sl.rq.u for |
| 3952 | * u_l characters by a single "/". |
| 3953 | */ |
| 3954 | if (path) { |
| 3955 | char *cur_ptr = req->buf->p; |
| 3956 | char *cur_end = cur_ptr + txn->req.sl.rq.l; |
| 3957 | int delta; |
| 3958 | |
| 3959 | delta = buffer_replace2(req->buf, req->buf->p + msg->sl.rq.u, path, NULL, 0); |
| 3960 | http_msg_move_end(&txn->req, delta); |
| 3961 | cur_end += delta; |
| 3962 | if (http_parse_reqline(&txn->req, HTTP_MSG_RQMETH, cur_ptr, cur_end + 1, NULL, NULL) == NULL) |
| 3963 | goto return_bad_req; |
| 3964 | } |
| 3965 | else { |
| 3966 | char *cur_ptr = req->buf->p; |
| 3967 | char *cur_end = cur_ptr + txn->req.sl.rq.l; |
| 3968 | int delta; |
| 3969 | |
| 3970 | delta = buffer_replace2(req->buf, req->buf->p + msg->sl.rq.u, |
| 3971 | req->buf->p + msg->sl.rq.u + msg->sl.rq.u_l, "/", 1); |
| 3972 | http_msg_move_end(&txn->req, delta); |
| 3973 | cur_end += delta; |
| 3974 | if (http_parse_reqline(&txn->req, HTTP_MSG_RQMETH, cur_ptr, cur_end + 1, NULL, NULL) == NULL) |
| 3975 | goto return_bad_req; |
| 3976 | } |
Willy Tarreau | 59234e9 | 2008-11-30 23:51:27 +0100 | [diff] [blame] | 3977 | } |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 3978 | |
Willy Tarreau | 59234e9 | 2008-11-30 23:51:27 +0100 | [diff] [blame] | 3979 | /* |
Cyril Bonté | b21570a | 2009-11-29 20:04:48 +0100 | [diff] [blame] | 3980 | * 7: Now we can work with the cookies. |
Willy Tarreau | 59234e9 | 2008-11-30 23:51:27 +0100 | [diff] [blame] | 3981 | * Note that doing so might move headers in the request, but |
| 3982 | * the fields will stay coherent and the URI will not move. |
| 3983 | * This should only be performed in the backend. |
| 3984 | */ |
Willy Tarreau | fd39dda | 2008-10-17 12:01:58 +0200 | [diff] [blame] | 3985 | if ((s->be->cookie_name || s->be->appsession_name || s->fe->capture_name) |
Willy Tarreau | 59234e9 | 2008-11-30 23:51:27 +0100 | [diff] [blame] | 3986 | && !(txn->flags & (TX_CLDENY|TX_CLTARPIT))) |
| 3987 | manage_client_side_cookies(s, req); |
Willy Tarreau | 7ac51f6 | 2007-03-25 16:00:04 +0200 | [diff] [blame] | 3988 | |
Willy Tarreau | 59234e9 | 2008-11-30 23:51:27 +0100 | [diff] [blame] | 3989 | /* |
Cyril Bonté | b21570a | 2009-11-29 20:04:48 +0100 | [diff] [blame] | 3990 | * 8: the appsession cookie was looked up very early in 1.2, |
| 3991 | * so let's do the same now. |
| 3992 | */ |
| 3993 | |
Cyril Bonté | 47fdd8e | 2010-04-25 00:00:51 +0200 | [diff] [blame] | 3994 | /* It needs to look into the URI unless persistence must be ignored */ |
| 3995 | if ((txn->sessid == NULL) && s->be->appsession_name && !(s->flags & SN_IGNORE_PRST)) { |
Willy Tarreau | 9b28e03 | 2012-10-12 23:49:43 +0200 | [diff] [blame] | 3996 | 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] | 3997 | } |
| 3998 | |
William Lallemand | a73203e | 2012-03-12 12:48:57 +0100 | [diff] [blame] | 3999 | /* add unique-id if "header-unique-id" is specified */ |
| 4000 | |
William Lallemand | 5b7ea3a | 2013-08-28 15:44:19 +0200 | [diff] [blame] | 4001 | if (!LIST_ISEMPTY(&s->fe->format_unique_id)) { |
| 4002 | if ((s->unique_id = pool_alloc2(pool2_uniqueid)) == NULL) |
| 4003 | goto return_bad_req; |
| 4004 | s->unique_id[0] = '\0'; |
William Lallemand | a73203e | 2012-03-12 12:48:57 +0100 | [diff] [blame] | 4005 | build_logline(s, s->unique_id, UNIQUEID_LEN, &s->fe->format_unique_id); |
William Lallemand | 5b7ea3a | 2013-08-28 15:44:19 +0200 | [diff] [blame] | 4006 | } |
William Lallemand | a73203e | 2012-03-12 12:48:57 +0100 | [diff] [blame] | 4007 | |
| 4008 | if (s->fe->header_unique_id && s->unique_id) { |
Willy Tarreau | 19d14ef | 2012-10-29 16:51:55 +0100 | [diff] [blame] | 4009 | chunk_printf(&trash, "%s: %s", s->fe->header_unique_id, s->unique_id); |
| 4010 | if (trash.len < 0) |
William Lallemand | a73203e | 2012-03-12 12:48:57 +0100 | [diff] [blame] | 4011 | goto return_bad_req; |
Willy Tarreau | 19d14ef | 2012-10-29 16:51:55 +0100 | [diff] [blame] | 4012 | 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] | 4013 | goto return_bad_req; |
| 4014 | } |
| 4015 | |
Cyril Bonté | b21570a | 2009-11-29 20:04:48 +0100 | [diff] [blame] | 4016 | /* |
Willy Tarreau | 59234e9 | 2008-11-30 23:51:27 +0100 | [diff] [blame] | 4017 | * 9: add X-Forwarded-For if either the frontend or the backend |
| 4018 | * asks for it. |
| 4019 | */ |
| 4020 | if ((s->fe->options | s->be->options) & PR_O_FWDFOR) { |
Willy Tarreau | 87cf514 | 2011-08-19 22:57:24 +0200 | [diff] [blame] | 4021 | struct hdr_ctx ctx = { .idx = 0 }; |
Willy Tarreau | 87cf514 | 2011-08-19 22:57:24 +0200 | [diff] [blame] | 4022 | if (!((s->fe->options | s->be->options) & PR_O_FF_ALWAYS) && |
Cyril Bonté | a32d275 | 2012-05-29 23:27:41 +0200 | [diff] [blame] | 4023 | http_find_header2(s->be->fwdfor_hdr_len ? s->be->fwdfor_hdr_name : s->fe->fwdfor_hdr_name, |
| 4024 | s->be->fwdfor_hdr_len ? s->be->fwdfor_hdr_len : s->fe->fwdfor_hdr_len, |
Willy Tarreau | 9b28e03 | 2012-10-12 23:49:43 +0200 | [diff] [blame] | 4025 | req->buf->p, &txn->hdr_idx, &ctx)) { |
Willy Tarreau | 87cf514 | 2011-08-19 22:57:24 +0200 | [diff] [blame] | 4026 | /* The header is set to be added only if none is present |
| 4027 | * and we found it, so don't do anything. |
| 4028 | */ |
| 4029 | } |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 4030 | else if (cli_conn && cli_conn->addr.from.ss_family == AF_INET) { |
Willy Tarreau | 59234e9 | 2008-11-30 23:51:27 +0100 | [diff] [blame] | 4031 | /* Add an X-Forwarded-For header unless the source IP is |
| 4032 | * in the 'except' network range. |
| 4033 | */ |
| 4034 | if ((!s->fe->except_mask.s_addr || |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 4035 | (((struct sockaddr_in *)&cli_conn->addr.from)->sin_addr.s_addr & s->fe->except_mask.s_addr) |
Willy Tarreau | 59234e9 | 2008-11-30 23:51:27 +0100 | [diff] [blame] | 4036 | != s->fe->except_net.s_addr) && |
| 4037 | (!s->be->except_mask.s_addr || |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 4038 | (((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] | 4039 | != s->be->except_net.s_addr)) { |
Willy Tarreau | 2a32428 | 2006-12-05 00:05:46 +0100 | [diff] [blame] | 4040 | int len; |
Willy Tarreau | 59234e9 | 2008-11-30 23:51:27 +0100 | [diff] [blame] | 4041 | unsigned char *pn; |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 4042 | pn = (unsigned char *)&((struct sockaddr_in *)&cli_conn->addr.from)->sin_addr; |
Ross West | af72a1d | 2008-08-03 10:51:45 +0200 | [diff] [blame] | 4043 | |
| 4044 | /* Note: we rely on the backend to get the header name to be used for |
| 4045 | * x-forwarded-for, because the header is really meant for the backends. |
| 4046 | * However, if the backend did not specify any option, we have to rely |
| 4047 | * on the frontend's header name. |
| 4048 | */ |
Willy Tarreau | 59234e9 | 2008-11-30 23:51:27 +0100 | [diff] [blame] | 4049 | if (s->be->fwdfor_hdr_len) { |
| 4050 | len = s->be->fwdfor_hdr_len; |
Willy Tarreau | 19d14ef | 2012-10-29 16:51:55 +0100 | [diff] [blame] | 4051 | memcpy(trash.str, s->be->fwdfor_hdr_name, len); |
Ross West | af72a1d | 2008-08-03 10:51:45 +0200 | [diff] [blame] | 4052 | } else { |
Willy Tarreau | 59234e9 | 2008-11-30 23:51:27 +0100 | [diff] [blame] | 4053 | len = s->fe->fwdfor_hdr_len; |
Willy Tarreau | 19d14ef | 2012-10-29 16:51:55 +0100 | [diff] [blame] | 4054 | memcpy(trash.str, s->fe->fwdfor_hdr_name, len); |
Willy Tarreau | b86db34 | 2009-11-30 11:50:16 +0100 | [diff] [blame] | 4055 | } |
Willy Tarreau | e9187f8 | 2014-04-14 15:27:14 +0200 | [diff] [blame] | 4056 | 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] | 4057 | |
Willy Tarreau | 19d14ef | 2012-10-29 16:51:55 +0100 | [diff] [blame] | 4058 | 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] | 4059 | goto return_bad_req; |
Willy Tarreau | 2a32428 | 2006-12-05 00:05:46 +0100 | [diff] [blame] | 4060 | } |
| 4061 | } |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 4062 | else if (cli_conn && cli_conn->addr.from.ss_family == AF_INET6) { |
Willy Tarreau | 59234e9 | 2008-11-30 23:51:27 +0100 | [diff] [blame] | 4063 | /* FIXME: for the sake of completeness, we should also support |
| 4064 | * 'except' here, although it is mostly useless in this case. |
matt.farnsworth@nokia.com | 1c2ab96 | 2008-04-14 20:47:37 +0200 | [diff] [blame] | 4065 | */ |
Willy Tarreau | 59234e9 | 2008-11-30 23:51:27 +0100 | [diff] [blame] | 4066 | int len; |
| 4067 | char pn[INET6_ADDRSTRLEN]; |
| 4068 | inet_ntop(AF_INET6, |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 4069 | (const void *)&((struct sockaddr_in6 *)(&cli_conn->addr.from))->sin6_addr, |
Willy Tarreau | 59234e9 | 2008-11-30 23:51:27 +0100 | [diff] [blame] | 4070 | pn, sizeof(pn)); |
matt.farnsworth@nokia.com | 1c2ab96 | 2008-04-14 20:47:37 +0200 | [diff] [blame] | 4071 | |
Willy Tarreau | 59234e9 | 2008-11-30 23:51:27 +0100 | [diff] [blame] | 4072 | /* Note: we rely on the backend to get the header name to be used for |
| 4073 | * x-forwarded-for, because the header is really meant for the backends. |
| 4074 | * However, if the backend did not specify any option, we have to rely |
| 4075 | * on the frontend's header name. |
matt.farnsworth@nokia.com | 1c2ab96 | 2008-04-14 20:47:37 +0200 | [diff] [blame] | 4076 | */ |
Willy Tarreau | 59234e9 | 2008-11-30 23:51:27 +0100 | [diff] [blame] | 4077 | if (s->be->fwdfor_hdr_len) { |
| 4078 | len = s->be->fwdfor_hdr_len; |
Willy Tarreau | 19d14ef | 2012-10-29 16:51:55 +0100 | [diff] [blame] | 4079 | memcpy(trash.str, s->be->fwdfor_hdr_name, len); |
Willy Tarreau | 59234e9 | 2008-11-30 23:51:27 +0100 | [diff] [blame] | 4080 | } else { |
| 4081 | len = s->fe->fwdfor_hdr_len; |
Willy Tarreau | 19d14ef | 2012-10-29 16:51:55 +0100 | [diff] [blame] | 4082 | memcpy(trash.str, s->fe->fwdfor_hdr_name, len); |
matt.farnsworth@nokia.com | 1c2ab96 | 2008-04-14 20:47:37 +0200 | [diff] [blame] | 4083 | } |
Willy Tarreau | e9187f8 | 2014-04-14 15:27:14 +0200 | [diff] [blame] | 4084 | len += snprintf(trash.str + len, trash.size - len, ": %s", pn); |
Willy Tarreau | adfb856 | 2008-08-11 15:24:42 +0200 | [diff] [blame] | 4085 | |
Willy Tarreau | 19d14ef | 2012-10-29 16:51:55 +0100 | [diff] [blame] | 4086 | 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] | 4087 | goto return_bad_req; |
| 4088 | } |
| 4089 | } |
| 4090 | |
| 4091 | /* |
Maik Broemme | 2850cb4 | 2009-04-17 18:53:21 +0200 | [diff] [blame] | 4092 | * 10: add X-Original-To if either the frontend or the backend |
| 4093 | * asks for it. |
| 4094 | */ |
| 4095 | if ((s->fe->options | s->be->options) & PR_O_ORGTO) { |
| 4096 | |
| 4097 | /* FIXME: don't know if IPv6 can handle that case too. */ |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 4098 | if (cli_conn && cli_conn->addr.from.ss_family == AF_INET) { |
Maik Broemme | 2850cb4 | 2009-04-17 18:53:21 +0200 | [diff] [blame] | 4099 | /* Add an X-Original-To header unless the destination IP is |
| 4100 | * in the 'except' network range. |
| 4101 | */ |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 4102 | conn_get_to_addr(cli_conn); |
Maik Broemme | 2850cb4 | 2009-04-17 18:53:21 +0200 | [diff] [blame] | 4103 | |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 4104 | if (cli_conn->addr.to.ss_family == AF_INET && |
Emeric Brun | 5bd86a8 | 2010-10-22 17:23:04 +0200 | [diff] [blame] | 4105 | ((!s->fe->except_mask_to.s_addr || |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 4106 | (((struct sockaddr_in *)&cli_conn->addr.to)->sin_addr.s_addr & s->fe->except_mask_to.s_addr) |
Emeric Brun | 5bd86a8 | 2010-10-22 17:23:04 +0200 | [diff] [blame] | 4107 | != s->fe->except_to.s_addr) && |
| 4108 | (!s->be->except_mask_to.s_addr || |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 4109 | (((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] | 4110 | != s->be->except_to.s_addr))) { |
Maik Broemme | 2850cb4 | 2009-04-17 18:53:21 +0200 | [diff] [blame] | 4111 | int len; |
| 4112 | unsigned char *pn; |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 4113 | pn = (unsigned char *)&((struct sockaddr_in *)&cli_conn->addr.to)->sin_addr; |
Maik Broemme | 2850cb4 | 2009-04-17 18:53:21 +0200 | [diff] [blame] | 4114 | |
| 4115 | /* Note: we rely on the backend to get the header name to be used for |
| 4116 | * x-original-to, because the header is really meant for the backends. |
| 4117 | * However, if the backend did not specify any option, we have to rely |
| 4118 | * on the frontend's header name. |
| 4119 | */ |
| 4120 | if (s->be->orgto_hdr_len) { |
| 4121 | len = s->be->orgto_hdr_len; |
Willy Tarreau | 19d14ef | 2012-10-29 16:51:55 +0100 | [diff] [blame] | 4122 | memcpy(trash.str, s->be->orgto_hdr_name, len); |
Maik Broemme | 2850cb4 | 2009-04-17 18:53:21 +0200 | [diff] [blame] | 4123 | } else { |
| 4124 | len = s->fe->orgto_hdr_len; |
Willy Tarreau | 19d14ef | 2012-10-29 16:51:55 +0100 | [diff] [blame] | 4125 | memcpy(trash.str, s->fe->orgto_hdr_name, len); |
Willy Tarreau | b86db34 | 2009-11-30 11:50:16 +0100 | [diff] [blame] | 4126 | } |
Willy Tarreau | e9187f8 | 2014-04-14 15:27:14 +0200 | [diff] [blame] | 4127 | 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] | 4128 | |
Willy Tarreau | 19d14ef | 2012-10-29 16:51:55 +0100 | [diff] [blame] | 4129 | 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] | 4130 | goto return_bad_req; |
| 4131 | } |
| 4132 | } |
| 4133 | } |
| 4134 | |
Willy Tarreau | 50fc777 | 2012-11-11 22:19:57 +0100 | [diff] [blame] | 4135 | /* 11: add "Connection: close" or "Connection: keep-alive" if needed and not yet set. |
| 4136 | * If an "Upgrade" token is found, the header is left untouched in order not to have |
| 4137 | * to deal with some servers bugs : some of them fail an Upgrade if anything but |
| 4138 | * "Upgrade" is present in the Connection header. |
| 4139 | */ |
| 4140 | if (!(txn->flags & TX_HDR_CONN_UPG) && |
| 4141 | (((txn->flags & TX_CON_WANT_MSK) != TX_CON_WANT_TUN) || |
Willy Tarreau | 02bce8b | 2014-01-30 00:15:28 +0100 | [diff] [blame] | 4142 | ((s->fe->options & PR_O_HTTP_MODE) == PR_O_HTTP_PCL || |
| 4143 | (s->be->options & PR_O_HTTP_MODE) == PR_O_HTTP_PCL))) { |
Willy Tarreau | bbf0b37 | 2010-01-18 16:54:40 +0100 | [diff] [blame] | 4144 | unsigned int want_flags = 0; |
| 4145 | |
Willy Tarreau | a36fc4d | 2012-02-17 17:39:37 +0100 | [diff] [blame] | 4146 | if (msg->flags & HTTP_MSGF_VER_11) { |
Willy Tarreau | 22a9534 | 2010-09-29 14:31:41 +0200 | [diff] [blame] | 4147 | if (((txn->flags & TX_CON_WANT_MSK) >= TX_CON_WANT_SCL || |
Willy Tarreau | 02bce8b | 2014-01-30 00:15:28 +0100 | [diff] [blame] | 4148 | ((s->fe->options & PR_O_HTTP_MODE) == PR_O_HTTP_PCL || |
| 4149 | (s->be->options & PR_O_HTTP_MODE) == PR_O_HTTP_PCL)) && |
Willy Tarreau | 22a9534 | 2010-09-29 14:31:41 +0200 | [diff] [blame] | 4150 | !((s->fe->options2|s->be->options2) & PR_O2_FAKE_KA)) |
Willy Tarreau | bbf0b37 | 2010-01-18 16:54:40 +0100 | [diff] [blame] | 4151 | want_flags |= TX_CON_CLO_SET; |
| 4152 | } else { |
Willy Tarreau | 22a9534 | 2010-09-29 14:31:41 +0200 | [diff] [blame] | 4153 | if (((txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_KAL && |
Willy Tarreau | 02bce8b | 2014-01-30 00:15:28 +0100 | [diff] [blame] | 4154 | ((s->fe->options & PR_O_HTTP_MODE) != PR_O_HTTP_PCL && |
| 4155 | (s->be->options & PR_O_HTTP_MODE) != PR_O_HTTP_PCL)) || |
Willy Tarreau | 22a9534 | 2010-09-29 14:31:41 +0200 | [diff] [blame] | 4156 | ((s->fe->options2|s->be->options2) & PR_O2_FAKE_KA)) |
Willy Tarreau | bbf0b37 | 2010-01-18 16:54:40 +0100 | [diff] [blame] | 4157 | want_flags |= TX_CON_KAL_SET; |
| 4158 | } |
| 4159 | |
| 4160 | 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] | 4161 | http_change_connection_header(txn, msg, want_flags); |
Willy Tarreau | 59234e9 | 2008-11-30 23:51:27 +0100 | [diff] [blame] | 4162 | } |
Willy Tarreau | 522d6c0 | 2009-12-06 18:49:18 +0100 | [diff] [blame] | 4163 | |
Willy Tarreau | bbf0b37 | 2010-01-18 16:54:40 +0100 | [diff] [blame] | 4164 | |
Willy Tarreau | 522d6c0 | 2009-12-06 18:49:18 +0100 | [diff] [blame] | 4165 | /* If we have no server assigned yet and we're balancing on url_param |
| 4166 | * with a POST request, we may be interested in checking the body for |
| 4167 | * that parameter. This will be done in another analyser. |
Willy Tarreau | 59234e9 | 2008-11-30 23:51:27 +0100 | [diff] [blame] | 4168 | */ |
| 4169 | if (!(s->flags & (SN_ASSIGNED|SN_DIRECT)) && |
| 4170 | s->txn.meth == HTTP_METH_POST && s->be->url_param_name != NULL && |
Willy Tarreau | 522d6c0 | 2009-12-06 18:49:18 +0100 | [diff] [blame] | 4171 | s->be->url_param_post_limit != 0 && |
Willy Tarreau | a36fc4d | 2012-02-17 17:39:37 +0100 | [diff] [blame] | 4172 | (msg->flags & (HTTP_MSGF_CNT_LEN|HTTP_MSGF_TE_CHNK))) { |
Willy Tarreau | 8263d2b | 2012-08-28 00:06:31 +0200 | [diff] [blame] | 4173 | channel_dont_connect(req); |
Willy Tarreau | 522d6c0 | 2009-12-06 18:49:18 +0100 | [diff] [blame] | 4174 | req->analysers |= AN_REQ_HTTP_BODY; |
Willy Tarreau | 59234e9 | 2008-11-30 23:51:27 +0100 | [diff] [blame] | 4175 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 4176 | |
Willy Tarreau | a36fc4d | 2012-02-17 17:39:37 +0100 | [diff] [blame] | 4177 | if (msg->flags & HTTP_MSGF_XFER_LEN) { |
Willy Tarreau | d98cf93 | 2009-12-27 22:54:55 +0100 | [diff] [blame] | 4178 | req->analysers |= AN_REQ_HTTP_XFER_BODY; |
Willy Tarreau | 5e20552 | 2011-12-17 16:34:27 +0100 | [diff] [blame] | 4179 | #ifdef TCP_QUICKACK |
| 4180 | /* We expect some data from the client. Unless we know for sure |
| 4181 | * we already have a full request, we have to re-enable quick-ack |
| 4182 | * in case we previously disabled it, otherwise we might cause |
| 4183 | * the client to delay further data. |
| 4184 | */ |
| 4185 | if ((s->listener->options & LI_O_NOQUICKACK) && |
Willy Tarreau | 3c72872 | 2014-01-23 13:50:42 +0100 | [diff] [blame] | 4186 | cli_conn && conn_ctrl_ready(cli_conn) && |
Willy Tarreau | a36fc4d | 2012-02-17 17:39:37 +0100 | [diff] [blame] | 4187 | ((msg->flags & HTTP_MSGF_TE_CHNK) || |
Willy Tarreau | 9b28e03 | 2012-10-12 23:49:43 +0200 | [diff] [blame] | 4188 | (msg->body_len > req->buf->i - txn->req.eoh - 2))) |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 4189 | 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] | 4190 | #endif |
| 4191 | } |
Willy Tarreau | 0394594 | 2009-12-22 16:50:27 +0100 | [diff] [blame] | 4192 | |
Willy Tarreau | 59234e9 | 2008-11-30 23:51:27 +0100 | [diff] [blame] | 4193 | /************************************************************* |
| 4194 | * OK, that's finished for the headers. We have done what we * |
| 4195 | * could. Let's switch to the DATA state. * |
| 4196 | ************************************************************/ |
Willy Tarreau | 522d6c0 | 2009-12-06 18:49:18 +0100 | [diff] [blame] | 4197 | req->analyse_exp = TICK_ETERNITY; |
| 4198 | req->analysers &= ~an_bit; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 4199 | |
Willy Tarreau | 7bb68ab | 2012-05-13 14:48:59 +0200 | [diff] [blame] | 4200 | /* if the server closes the connection, we want to immediately react |
| 4201 | * and close the socket to save packets and syscalls. |
| 4202 | */ |
Willy Tarreau | 40f151a | 2012-12-20 12:10:09 +0100 | [diff] [blame] | 4203 | if (!(req->analysers & AN_REQ_HTTP_XFER_BODY)) |
| 4204 | req->cons->flags |= SI_FL_NOHALF; |
Willy Tarreau | 7bb68ab | 2012-05-13 14:48:59 +0200 | [diff] [blame] | 4205 | |
Willy Tarreau | 59234e9 | 2008-11-30 23:51:27 +0100 | [diff] [blame] | 4206 | s->logs.tv_request = now; |
Willy Tarreau | 59234e9 | 2008-11-30 23:51:27 +0100 | [diff] [blame] | 4207 | /* OK let's go on with the BODY now */ |
| 4208 | return 1; |
Willy Tarreau | 0661926 | 2006-12-17 08:37:22 +0100 | [diff] [blame] | 4209 | |
Willy Tarreau | 59234e9 | 2008-11-30 23:51:27 +0100 | [diff] [blame] | 4210 | return_bad_req: /* let's centralize all bad requests */ |
Willy Tarreau | 4076a15 | 2009-04-02 15:18:36 +0200 | [diff] [blame] | 4211 | if (unlikely(msg->msg_state == HTTP_MSG_ERROR) || msg->err_pos >= 0) { |
Willy Tarreau | f073a83 | 2009-03-01 23:21:47 +0100 | [diff] [blame] | 4212 | /* we detected a parsing error. We want to archive this request |
| 4213 | * in the dedicated proxy area for later troubleshooting. |
| 4214 | */ |
Willy Tarreau | 8a0cef2 | 2012-03-09 13:39:23 +0100 | [diff] [blame] | 4215 | http_capture_bad_message(&s->fe->invalid_req, s, msg, msg->msg_state, s->fe); |
Willy Tarreau | f073a83 | 2009-03-01 23:21:47 +0100 | [diff] [blame] | 4216 | } |
Willy Tarreau | 4076a15 | 2009-04-02 15:18:36 +0200 | [diff] [blame] | 4217 | |
Willy Tarreau | 59234e9 | 2008-11-30 23:51:27 +0100 | [diff] [blame] | 4218 | txn->req.msg_state = HTTP_MSG_ERROR; |
| 4219 | txn->status = 400; |
| 4220 | req->analysers = 0; |
Willy Tarreau | 783f258 | 2012-09-04 12:19:04 +0200 | [diff] [blame] | 4221 | stream_int_retnclose(req->prod, http_error_message(s, HTTP_ERR_400)); |
Krzysztof Piotr Oledzki | aeebf9b | 2009-10-04 15:43:17 +0200 | [diff] [blame] | 4222 | |
Willy Tarreau | 7d0aaf3 | 2011-03-10 23:25:56 +0100 | [diff] [blame] | 4223 | s->fe->fe_counters.failed_req++; |
Krzysztof Piotr Oledzki | aeebf9b | 2009-10-04 15:43:17 +0200 | [diff] [blame] | 4224 | if (s->listener->counters) |
| 4225 | s->listener->counters->failed_req++; |
Willy Tarreau | adfb856 | 2008-08-11 15:24:42 +0200 | [diff] [blame] | 4226 | |
Willy Tarreau | 59234e9 | 2008-11-30 23:51:27 +0100 | [diff] [blame] | 4227 | if (!(s->flags & SN_ERR_MASK)) |
| 4228 | s->flags |= SN_ERR_PRXCOND; |
| 4229 | if (!(s->flags & SN_FINST_MASK)) |
| 4230 | s->flags |= SN_FINST_R; |
Willy Tarreau | dafde43 | 2008-08-17 01:00:46 +0200 | [diff] [blame] | 4231 | return 0; |
Willy Tarreau | c65a3ba | 2008-08-11 23:42:50 +0200 | [diff] [blame] | 4232 | } |
Willy Tarreau | adfb856 | 2008-08-11 15:24:42 +0200 | [diff] [blame] | 4233 | |
Willy Tarreau | 60b85b0 | 2008-11-30 23:28:40 +0100 | [diff] [blame] | 4234 | /* This function is an analyser which processes the HTTP tarpit. It always |
| 4235 | * returns zero, at the beginning because it prevents any other processing |
| 4236 | * from occurring, and at the end because it terminates the request. |
| 4237 | */ |
Willy Tarreau | 7421efb | 2012-07-02 15:11:27 +0200 | [diff] [blame] | 4238 | int http_process_tarpit(struct session *s, struct channel *req, int an_bit) |
Willy Tarreau | 60b85b0 | 2008-11-30 23:28:40 +0100 | [diff] [blame] | 4239 | { |
| 4240 | struct http_txn *txn = &s->txn; |
| 4241 | |
| 4242 | /* This connection is being tarpitted. The CLIENT side has |
| 4243 | * already set the connect expiration date to the right |
| 4244 | * timeout. We just have to check that the client is still |
| 4245 | * there and that the timeout has not expired. |
| 4246 | */ |
Willy Tarreau | 8263d2b | 2012-08-28 00:06:31 +0200 | [diff] [blame] | 4247 | channel_dont_connect(req); |
Willy Tarreau | 03cdb7c | 2012-08-27 23:14:58 +0200 | [diff] [blame] | 4248 | if ((req->flags & (CF_SHUTR|CF_READ_ERROR)) == 0 && |
Willy Tarreau | 60b85b0 | 2008-11-30 23:28:40 +0100 | [diff] [blame] | 4249 | !tick_is_expired(req->analyse_exp, now_ms)) |
| 4250 | return 0; |
| 4251 | |
| 4252 | /* We will set the queue timer to the time spent, just for |
| 4253 | * logging purposes. We fake a 500 server error, so that the |
| 4254 | * attacker will not suspect his connection has been tarpitted. |
| 4255 | * It will not cause trouble to the logs because we can exclude |
| 4256 | * the tarpitted connections by filtering on the 'PT' status flags. |
| 4257 | */ |
Willy Tarreau | 60b85b0 | 2008-11-30 23:28:40 +0100 | [diff] [blame] | 4258 | s->logs.t_queue = tv_ms_elapsed(&s->logs.tv_accept, &now); |
| 4259 | |
| 4260 | txn->status = 500; |
Willy Tarreau | 03cdb7c | 2012-08-27 23:14:58 +0200 | [diff] [blame] | 4261 | if (!(req->flags & CF_READ_ERROR)) |
Willy Tarreau | 783f258 | 2012-09-04 12:19:04 +0200 | [diff] [blame] | 4262 | stream_int_retnclose(req->prod, http_error_message(s, HTTP_ERR_500)); |
Willy Tarreau | 60b85b0 | 2008-11-30 23:28:40 +0100 | [diff] [blame] | 4263 | |
| 4264 | req->analysers = 0; |
| 4265 | req->analyse_exp = TICK_ETERNITY; |
Krzysztof Piotr Oledzki | aeebf9b | 2009-10-04 15:43:17 +0200 | [diff] [blame] | 4266 | |
Willy Tarreau | 60b85b0 | 2008-11-30 23:28:40 +0100 | [diff] [blame] | 4267 | if (!(s->flags & SN_ERR_MASK)) |
| 4268 | s->flags |= SN_ERR_PRXCOND; |
| 4269 | if (!(s->flags & SN_FINST_MASK)) |
| 4270 | s->flags |= SN_FINST_T; |
| 4271 | return 0; |
| 4272 | } |
| 4273 | |
Willy Tarreau | d34af78 | 2008-11-30 23:36:37 +0100 | [diff] [blame] | 4274 | /* This function is an analyser which processes the HTTP request body. It looks |
| 4275 | * for parameters to be used for the load balancing algorithm (url_param). It |
| 4276 | * must only be called after the standard HTTP request processing has occurred, |
| 4277 | * because it expects the request to be parsed. It returns zero if it needs to |
| 4278 | * read more data, or 1 once it has completed its analysis. |
| 4279 | */ |
Willy Tarreau | 7421efb | 2012-07-02 15:11:27 +0200 | [diff] [blame] | 4280 | int http_process_request_body(struct session *s, struct channel *req, int an_bit) |
Willy Tarreau | d34af78 | 2008-11-30 23:36:37 +0100 | [diff] [blame] | 4281 | { |
Willy Tarreau | 522d6c0 | 2009-12-06 18:49:18 +0100 | [diff] [blame] | 4282 | struct http_txn *txn = &s->txn; |
Willy Tarreau | d34af78 | 2008-11-30 23:36:37 +0100 | [diff] [blame] | 4283 | struct http_msg *msg = &s->txn.req; |
Willy Tarreau | d34af78 | 2008-11-30 23:36:37 +0100 | [diff] [blame] | 4284 | long long limit = s->be->url_param_post_limit; |
Willy Tarreau | d34af78 | 2008-11-30 23:36:37 +0100 | [diff] [blame] | 4285 | |
| 4286 | /* We have to parse the HTTP request body to find any required data. |
| 4287 | * "balance url_param check_post" should have been the only way to get |
| 4288 | * into this. We were brought here after HTTP header analysis, so all |
| 4289 | * related structures are ready. |
| 4290 | */ |
| 4291 | |
Willy Tarreau | 522d6c0 | 2009-12-06 18:49:18 +0100 | [diff] [blame] | 4292 | if (unlikely(msg->msg_state < HTTP_MSG_BODY)) |
| 4293 | goto missing_data; |
| 4294 | |
| 4295 | if (msg->msg_state < HTTP_MSG_100_SENT) { |
| 4296 | /* If we have HTTP/1.1 and Expect: 100-continue, then we must |
| 4297 | * send an HTTP/1.1 100 Continue intermediate response. |
| 4298 | */ |
Willy Tarreau | a36fc4d | 2012-02-17 17:39:37 +0100 | [diff] [blame] | 4299 | if (msg->flags & HTTP_MSGF_VER_11) { |
Willy Tarreau | 522d6c0 | 2009-12-06 18:49:18 +0100 | [diff] [blame] | 4300 | struct hdr_ctx ctx; |
| 4301 | ctx.idx = 0; |
| 4302 | /* Expect is allowed in 1.1, look for it */ |
Willy Tarreau | 9b28e03 | 2012-10-12 23:49:43 +0200 | [diff] [blame] | 4303 | if (http_find_header2("Expect", 6, req->buf->p, &txn->hdr_idx, &ctx) && |
Willy Tarreau | 522d6c0 | 2009-12-06 18:49:18 +0100 | [diff] [blame] | 4304 | unlikely(ctx.vlen == 12 && strncasecmp(ctx.line+ctx.val, "100-continue", 12) == 0)) { |
Willy Tarreau | 9dab5fc | 2012-05-07 11:56:55 +0200 | [diff] [blame] | 4305 | bo_inject(s->rep, http_100_chunk.str, http_100_chunk.len); |
Willy Tarreau | 522d6c0 | 2009-12-06 18:49:18 +0100 | [diff] [blame] | 4306 | } |
| 4307 | } |
| 4308 | msg->msg_state = HTTP_MSG_100_SENT; |
| 4309 | } |
| 4310 | |
| 4311 | if (msg->msg_state < HTTP_MSG_CHUNK_SIZE) { |
Willy Tarreau | fa4a03c | 2012-03-09 21:28:54 +0100 | [diff] [blame] | 4312 | /* we have msg->sov which points to the first byte of message body. |
Willy Tarreau | 9b28e03 | 2012-10-12 23:49:43 +0200 | [diff] [blame] | 4313 | * req->buf->p still points to the beginning of the message and msg->sol |
Willy Tarreau | 2692736 | 2012-05-18 23:22:52 +0200 | [diff] [blame] | 4314 | * is still null. We must save the body in msg->next because it |
| 4315 | * survives buffer re-alignments. |
Willy Tarreau | d98cf93 | 2009-12-27 22:54:55 +0100 | [diff] [blame] | 4316 | */ |
Willy Tarreau | ea1175a | 2012-03-05 15:52:30 +0100 | [diff] [blame] | 4317 | msg->next = msg->sov; |
Willy Tarreau | a458b67 | 2012-03-05 11:17:50 +0100 | [diff] [blame] | 4318 | |
Willy Tarreau | a36fc4d | 2012-02-17 17:39:37 +0100 | [diff] [blame] | 4319 | if (msg->flags & HTTP_MSGF_TE_CHNK) |
Willy Tarreau | 522d6c0 | 2009-12-06 18:49:18 +0100 | [diff] [blame] | 4320 | msg->msg_state = HTTP_MSG_CHUNK_SIZE; |
| 4321 | else |
| 4322 | msg->msg_state = HTTP_MSG_DATA; |
| 4323 | } |
| 4324 | |
| 4325 | if (msg->msg_state == HTTP_MSG_CHUNK_SIZE) { |
Willy Tarreau | 124d991 | 2011-03-01 20:30:48 +0100 | [diff] [blame] | 4326 | /* read the chunk size and assign it to ->chunk_len, then |
Willy Tarreau | a458b67 | 2012-03-05 11:17:50 +0100 | [diff] [blame] | 4327 | * 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] | 4328 | * TRAILERS state. |
Willy Tarreau | 115acb9 | 2009-12-26 13:56:06 +0100 | [diff] [blame] | 4329 | */ |
Willy Tarreau | 4baf44b | 2012-03-09 14:10:20 +0100 | [diff] [blame] | 4330 | int ret = http_parse_chunk_size(msg); |
Willy Tarreau | d34af78 | 2008-11-30 23:36:37 +0100 | [diff] [blame] | 4331 | |
Willy Tarreau | 115acb9 | 2009-12-26 13:56:06 +0100 | [diff] [blame] | 4332 | if (!ret) |
| 4333 | goto missing_data; |
Willy Tarreau | da7ff64 | 2010-06-23 11:44:09 +0200 | [diff] [blame] | 4334 | else if (ret < 0) { |
| 4335 | session_inc_http_err_ctr(s); |
Willy Tarreau | 522d6c0 | 2009-12-06 18:49:18 +0100 | [diff] [blame] | 4336 | goto return_bad_req; |
Willy Tarreau | da7ff64 | 2010-06-23 11:44:09 +0200 | [diff] [blame] | 4337 | } |
Willy Tarreau | d34af78 | 2008-11-30 23:36:37 +0100 | [diff] [blame] | 4338 | } |
| 4339 | |
Willy Tarreau | d98cf93 | 2009-12-27 22:54:55 +0100 | [diff] [blame] | 4340 | /* Now we're in HTTP_MSG_DATA or HTTP_MSG_TRAILERS state. |
Willy Tarreau | fa4a03c | 2012-03-09 21:28:54 +0100 | [diff] [blame] | 4341 | * We have the first data byte is in msg->sov. We're waiting for at |
| 4342 | * least <url_param_post_limit> bytes after msg->sov. |
Willy Tarreau | d34af78 | 2008-11-30 23:36:37 +0100 | [diff] [blame] | 4343 | */ |
Willy Tarreau | 522d6c0 | 2009-12-06 18:49:18 +0100 | [diff] [blame] | 4344 | |
Willy Tarreau | 124d991 | 2011-03-01 20:30:48 +0100 | [diff] [blame] | 4345 | if (msg->body_len < limit) |
| 4346 | limit = msg->body_len; |
Willy Tarreau | 522d6c0 | 2009-12-06 18:49:18 +0100 | [diff] [blame] | 4347 | |
Willy Tarreau | 9b28e03 | 2012-10-12 23:49:43 +0200 | [diff] [blame] | 4348 | if (req->buf->i - msg->sov >= limit) /* we have enough bytes now */ |
Willy Tarreau | 522d6c0 | 2009-12-06 18:49:18 +0100 | [diff] [blame] | 4349 | goto http_end; |
| 4350 | |
| 4351 | missing_data: |
| 4352 | /* we get here if we need to wait for more data */ |
Willy Tarreau | 9b28e03 | 2012-10-12 23:49:43 +0200 | [diff] [blame] | 4353 | if (buffer_full(req->buf, global.tune.maxrewrite)) { |
Willy Tarreau | da7ff64 | 2010-06-23 11:44:09 +0200 | [diff] [blame] | 4354 | session_inc_http_err_ctr(s); |
Willy Tarreau | 115acb9 | 2009-12-26 13:56:06 +0100 | [diff] [blame] | 4355 | goto return_bad_req; |
Willy Tarreau | da7ff64 | 2010-06-23 11:44:09 +0200 | [diff] [blame] | 4356 | } |
Willy Tarreau | 115acb9 | 2009-12-26 13:56:06 +0100 | [diff] [blame] | 4357 | |
Willy Tarreau | 03cdb7c | 2012-08-27 23:14:58 +0200 | [diff] [blame] | 4358 | 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] | 4359 | txn->status = 408; |
Willy Tarreau | 783f258 | 2012-09-04 12:19:04 +0200 | [diff] [blame] | 4360 | stream_int_retnclose(req->prod, http_error_message(s, HTTP_ERR_408)); |
Willy Tarreau | 79ebac6 | 2010-06-07 13:47:49 +0200 | [diff] [blame] | 4361 | |
| 4362 | if (!(s->flags & SN_ERR_MASK)) |
| 4363 | s->flags |= SN_ERR_CLITO; |
| 4364 | if (!(s->flags & SN_FINST_MASK)) |
| 4365 | s->flags |= SN_FINST_D; |
Willy Tarreau | 522d6c0 | 2009-12-06 18:49:18 +0100 | [diff] [blame] | 4366 | goto return_err_msg; |
Willy Tarreau | d34af78 | 2008-11-30 23:36:37 +0100 | [diff] [blame] | 4367 | } |
Willy Tarreau | 522d6c0 | 2009-12-06 18:49:18 +0100 | [diff] [blame] | 4368 | |
| 4369 | /* we get here if we need to wait for more data */ |
Willy Tarreau | 9b28e03 | 2012-10-12 23:49:43 +0200 | [diff] [blame] | 4370 | if (!(req->flags & (CF_SHUTR | CF_READ_ERROR)) && !buffer_full(req->buf, global.tune.maxrewrite)) { |
Willy Tarreau | d34af78 | 2008-11-30 23:36:37 +0100 | [diff] [blame] | 4371 | /* Not enough data. We'll re-use the http-request |
| 4372 | * timeout here. Ideally, we should set the timeout |
| 4373 | * relative to the accept() date. We just set the |
| 4374 | * request timeout once at the beginning of the |
| 4375 | * request. |
| 4376 | */ |
Willy Tarreau | 8263d2b | 2012-08-28 00:06:31 +0200 | [diff] [blame] | 4377 | channel_dont_connect(req); |
Willy Tarreau | d34af78 | 2008-11-30 23:36:37 +0100 | [diff] [blame] | 4378 | if (!tick_isset(req->analyse_exp)) |
Willy Tarreau | cd7afc0 | 2009-07-12 10:03:17 +0200 | [diff] [blame] | 4379 | req->analyse_exp = tick_add_ifset(now_ms, s->be->timeout.httpreq); |
Willy Tarreau | d34af78 | 2008-11-30 23:36:37 +0100 | [diff] [blame] | 4380 | return 0; |
| 4381 | } |
Willy Tarreau | 522d6c0 | 2009-12-06 18:49:18 +0100 | [diff] [blame] | 4382 | |
| 4383 | http_end: |
| 4384 | /* The situation will not evolve, so let's give up on the analysis. */ |
| 4385 | s->logs.tv_request = now; /* update the request timer to reflect full request */ |
| 4386 | req->analysers &= ~an_bit; |
| 4387 | req->analyse_exp = TICK_ETERNITY; |
| 4388 | return 1; |
| 4389 | |
| 4390 | return_bad_req: /* let's centralize all bad requests */ |
| 4391 | txn->req.msg_state = HTTP_MSG_ERROR; |
| 4392 | txn->status = 400; |
Willy Tarreau | 783f258 | 2012-09-04 12:19:04 +0200 | [diff] [blame] | 4393 | stream_int_retnclose(req->prod, http_error_message(s, HTTP_ERR_400)); |
Willy Tarreau | 522d6c0 | 2009-12-06 18:49:18 +0100 | [diff] [blame] | 4394 | |
Willy Tarreau | 79ebac6 | 2010-06-07 13:47:49 +0200 | [diff] [blame] | 4395 | if (!(s->flags & SN_ERR_MASK)) |
| 4396 | s->flags |= SN_ERR_PRXCOND; |
| 4397 | if (!(s->flags & SN_FINST_MASK)) |
| 4398 | s->flags |= SN_FINST_R; |
| 4399 | |
Willy Tarreau | 522d6c0 | 2009-12-06 18:49:18 +0100 | [diff] [blame] | 4400 | return_err_msg: |
| 4401 | req->analysers = 0; |
Willy Tarreau | 7d0aaf3 | 2011-03-10 23:25:56 +0100 | [diff] [blame] | 4402 | s->fe->fe_counters.failed_req++; |
Willy Tarreau | 522d6c0 | 2009-12-06 18:49:18 +0100 | [diff] [blame] | 4403 | if (s->listener->counters) |
| 4404 | s->listener->counters->failed_req++; |
Willy Tarreau | 522d6c0 | 2009-12-06 18:49:18 +0100 | [diff] [blame] | 4405 | return 0; |
Willy Tarreau | d34af78 | 2008-11-30 23:36:37 +0100 | [diff] [blame] | 4406 | } |
| 4407 | |
Willy Tarreau | d1de8af | 2012-05-18 22:12:14 +0200 | [diff] [blame] | 4408 | /* send a server's name with an outgoing request over an established connection. |
| 4409 | * Note: this function is designed to be called once the request has been scheduled |
| 4410 | * for being forwarded. This is the reason why it rewinds the buffer before |
| 4411 | * proceeding. |
| 4412 | */ |
Willy Tarreau | 45c0d98 | 2012-03-09 12:11:57 +0100 | [diff] [blame] | 4413 | 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] | 4414 | |
| 4415 | struct hdr_ctx ctx; |
| 4416 | |
Mark Lamourine | c2247f0 | 2012-01-04 13:02:01 -0500 | [diff] [blame] | 4417 | char *hdr_name = be->server_id_hdr_name; |
| 4418 | int hdr_name_len = be->server_id_hdr_len; |
Willy Tarreau | 394db37 | 2012-10-12 22:40:39 +0200 | [diff] [blame] | 4419 | struct channel *chn = txn->req.chn; |
Mark Lamourine | c2247f0 | 2012-01-04 13:02:01 -0500 | [diff] [blame] | 4420 | char *hdr_val; |
Willy Tarreau | d1de8af | 2012-05-18 22:12:14 +0200 | [diff] [blame] | 4421 | unsigned int old_o, old_i; |
Mark Lamourine | c2247f0 | 2012-01-04 13:02:01 -0500 | [diff] [blame] | 4422 | |
William Lallemand | d9e9066 | 2012-01-30 17:27:17 +0100 | [diff] [blame] | 4423 | ctx.idx = 0; |
| 4424 | |
Willy Tarreau | 9b28e03 | 2012-10-12 23:49:43 +0200 | [diff] [blame] | 4425 | old_o = chn->buf->o; |
Willy Tarreau | d1de8af | 2012-05-18 22:12:14 +0200 | [diff] [blame] | 4426 | if (old_o) { |
| 4427 | /* The request was already skipped, let's restore it */ |
Willy Tarreau | 9b28e03 | 2012-10-12 23:49:43 +0200 | [diff] [blame] | 4428 | b_rew(chn->buf, old_o); |
Willy Tarreau | d1de8af | 2012-05-18 22:12:14 +0200 | [diff] [blame] | 4429 | } |
| 4430 | |
Willy Tarreau | 9b28e03 | 2012-10-12 23:49:43 +0200 | [diff] [blame] | 4431 | old_i = chn->buf->i; |
| 4432 | 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] | 4433 | /* remove any existing values from the header */ |
Willy Tarreau | 6acf7c9 | 2012-03-09 13:30:45 +0100 | [diff] [blame] | 4434 | http_remove_header2(&txn->req, &txn->hdr_idx, &ctx); |
Mark Lamourine | c2247f0 | 2012-01-04 13:02:01 -0500 | [diff] [blame] | 4435 | } |
| 4436 | |
| 4437 | /* Add the new header requested with the server value */ |
Willy Tarreau | 19d14ef | 2012-10-29 16:51:55 +0100 | [diff] [blame] | 4438 | hdr_val = trash.str; |
Mark Lamourine | c2247f0 | 2012-01-04 13:02:01 -0500 | [diff] [blame] | 4439 | memcpy(hdr_val, hdr_name, hdr_name_len); |
| 4440 | hdr_val += hdr_name_len; |
| 4441 | *hdr_val++ = ':'; |
| 4442 | *hdr_val++ = ' '; |
Willy Tarreau | 19d14ef | 2012-10-29 16:51:55 +0100 | [diff] [blame] | 4443 | hdr_val += strlcpy2(hdr_val, srv_name, trash.str + trash.size - hdr_val); |
| 4444 | 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] | 4445 | |
Willy Tarreau | d1de8af | 2012-05-18 22:12:14 +0200 | [diff] [blame] | 4446 | if (old_o) { |
| 4447 | /* If this was a forwarded request, we must readjust the amount of |
| 4448 | * data to be forwarded in order to take into account the size |
Willy Tarreau | 2fef9b1 | 2013-03-26 01:08:21 +0100 | [diff] [blame] | 4449 | * variations. Note that if the request was already scheduled for |
| 4450 | * forwarding, it had its req->sol pointing to the body, which |
| 4451 | * must then be updated too. |
Willy Tarreau | d1de8af | 2012-05-18 22:12:14 +0200 | [diff] [blame] | 4452 | */ |
Willy Tarreau | 2fef9b1 | 2013-03-26 01:08:21 +0100 | [diff] [blame] | 4453 | txn->req.sol += chn->buf->i - old_i; |
Willy Tarreau | 9b28e03 | 2012-10-12 23:49:43 +0200 | [diff] [blame] | 4454 | b_adv(chn->buf, old_o + chn->buf->i - old_i); |
Willy Tarreau | d1de8af | 2012-05-18 22:12:14 +0200 | [diff] [blame] | 4455 | } |
| 4456 | |
Mark Lamourine | c2247f0 | 2012-01-04 13:02:01 -0500 | [diff] [blame] | 4457 | return 0; |
| 4458 | } |
| 4459 | |
Willy Tarreau | 610ecce | 2010-01-04 21:15:02 +0100 | [diff] [blame] | 4460 | /* Terminate current transaction and prepare a new one. This is very tricky |
| 4461 | * right now but it works. |
| 4462 | */ |
| 4463 | void http_end_txn_clean_session(struct session *s) |
| 4464 | { |
Willy Tarreau | 068621e | 2013-12-23 15:11:25 +0100 | [diff] [blame] | 4465 | int prev_status = s->txn.status; |
| 4466 | |
Willy Tarreau | 610ecce | 2010-01-04 21:15:02 +0100 | [diff] [blame] | 4467 | /* FIXME: We need a more portable way of releasing a backend's and a |
| 4468 | * server's connections. We need a safer way to reinitialize buffer |
| 4469 | * flags. We also need a more accurate method for computing per-request |
| 4470 | * data. |
| 4471 | */ |
| 4472 | http_silent_debug(__LINE__, s); |
| 4473 | |
Willy Tarreau | 4213a11 | 2013-12-15 10:25:42 +0100 | [diff] [blame] | 4474 | /* unless we're doing keep-alive, we want to quickly close the connection |
| 4475 | * to the server. |
| 4476 | */ |
| 4477 | if (((s->txn.flags & TX_CON_WANT_MSK) != TX_CON_WANT_KAL) || |
| 4478 | !si_conn_ready(s->req->cons)) { |
| 4479 | s->req->cons->flags |= SI_FL_NOLINGER | SI_FL_NOHALF; |
| 4480 | si_shutr(s->req->cons); |
| 4481 | si_shutw(s->req->cons); |
| 4482 | } |
Willy Tarreau | 610ecce | 2010-01-04 21:15:02 +0100 | [diff] [blame] | 4483 | |
| 4484 | http_silent_debug(__LINE__, s); |
| 4485 | |
Willy Tarreau | 2d5cd47 | 2012-03-01 23:34:37 +0100 | [diff] [blame] | 4486 | if (s->flags & SN_BE_ASSIGNED) { |
Willy Tarreau | 610ecce | 2010-01-04 21:15:02 +0100 | [diff] [blame] | 4487 | s->be->beconn--; |
Willy Tarreau | 2d5cd47 | 2012-03-01 23:34:37 +0100 | [diff] [blame] | 4488 | if (unlikely(s->srv_conn)) |
| 4489 | sess_change_server(s, NULL); |
| 4490 | } |
Willy Tarreau | 610ecce | 2010-01-04 21:15:02 +0100 | [diff] [blame] | 4491 | |
| 4492 | s->logs.t_close = tv_ms_elapsed(&s->logs.tv_accept, &now); |
| 4493 | session_process_counters(s); |
Willy Tarreau | f333834 | 2014-01-28 21:40:28 +0100 | [diff] [blame] | 4494 | session_stop_content_counters(s); |
Willy Tarreau | 610ecce | 2010-01-04 21:15:02 +0100 | [diff] [blame] | 4495 | |
| 4496 | if (s->txn.status) { |
| 4497 | int n; |
| 4498 | |
| 4499 | n = s->txn.status / 100; |
| 4500 | if (n < 1 || n > 5) |
| 4501 | n = 0; |
| 4502 | |
Willy Tarreau | 5e16cbc | 2012-11-24 14:54:13 +0100 | [diff] [blame] | 4503 | if (s->fe->mode == PR_MODE_HTTP) { |
Willy Tarreau | 7d0aaf3 | 2011-03-10 23:25:56 +0100 | [diff] [blame] | 4504 | s->fe->fe_counters.p.http.rsp[n]++; |
Willy Tarreau | 8139b99 | 2012-11-27 07:35:31 +0100 | [diff] [blame] | 4505 | if (s->comp_algo && (s->flags & SN_COMP_READY)) |
Willy Tarreau | 5e16cbc | 2012-11-24 14:54:13 +0100 | [diff] [blame] | 4506 | s->fe->fe_counters.p.http.comp_rsp++; |
| 4507 | } |
Willy Tarreau | 2465779 | 2010-02-26 10:30:28 +0100 | [diff] [blame] | 4508 | if ((s->flags & SN_BE_ASSIGNED) && |
Willy Tarreau | 5e16cbc | 2012-11-24 14:54:13 +0100 | [diff] [blame] | 4509 | (s->be->mode == PR_MODE_HTTP)) { |
Willy Tarreau | 7d0aaf3 | 2011-03-10 23:25:56 +0100 | [diff] [blame] | 4510 | s->be->be_counters.p.http.rsp[n]++; |
Willy Tarreau | 5e16cbc | 2012-11-24 14:54:13 +0100 | [diff] [blame] | 4511 | s->be->be_counters.p.http.cum_req++; |
Willy Tarreau | 8139b99 | 2012-11-27 07:35:31 +0100 | [diff] [blame] | 4512 | if (s->comp_algo && (s->flags & SN_COMP_READY)) |
Willy Tarreau | 5e16cbc | 2012-11-24 14:54:13 +0100 | [diff] [blame] | 4513 | s->be->be_counters.p.http.comp_rsp++; |
| 4514 | } |
Willy Tarreau | 610ecce | 2010-01-04 21:15:02 +0100 | [diff] [blame] | 4515 | } |
| 4516 | |
| 4517 | /* don't count other requests' data */ |
Willy Tarreau | 9b28e03 | 2012-10-12 23:49:43 +0200 | [diff] [blame] | 4518 | s->logs.bytes_in -= s->req->buf->i; |
| 4519 | s->logs.bytes_out -= s->rep->buf->i; |
Willy Tarreau | 610ecce | 2010-01-04 21:15:02 +0100 | [diff] [blame] | 4520 | |
| 4521 | /* let's do a final log if we need it */ |
Willy Tarreau | d79a3b2 | 2012-12-28 09:40:16 +0100 | [diff] [blame] | 4522 | if (!LIST_ISEMPTY(&s->fe->logformat) && s->logs.logwait && |
Willy Tarreau | 610ecce | 2010-01-04 21:15:02 +0100 | [diff] [blame] | 4523 | !(s->flags & SN_MONITOR) && |
| 4524 | (!(s->fe->options & PR_O_NULLNOLOG) || s->req->total)) { |
| 4525 | s->do_log(s); |
| 4526 | } |
| 4527 | |
| 4528 | s->logs.accept_date = date; /* user-visible date for logging */ |
| 4529 | s->logs.tv_accept = now; /* corrected date for internal use */ |
| 4530 | tv_zero(&s->logs.tv_request); |
| 4531 | s->logs.t_queue = -1; |
| 4532 | s->logs.t_connect = -1; |
| 4533 | s->logs.t_data = -1; |
| 4534 | s->logs.t_close = 0; |
| 4535 | s->logs.prx_queue_size = 0; /* we get the number of pending conns before us */ |
| 4536 | s->logs.srv_queue_size = 0; /* we will get this number soon */ |
| 4537 | |
Willy Tarreau | 9b28e03 | 2012-10-12 23:49:43 +0200 | [diff] [blame] | 4538 | s->logs.bytes_in = s->req->total = s->req->buf->i; |
| 4539 | s->logs.bytes_out = s->rep->total = s->rep->buf->i; |
Willy Tarreau | 610ecce | 2010-01-04 21:15:02 +0100 | [diff] [blame] | 4540 | |
| 4541 | if (s->pend_pos) |
| 4542 | pendconn_free(s->pend_pos); |
| 4543 | |
Willy Tarreau | 3fdb366 | 2012-11-12 00:42:33 +0100 | [diff] [blame] | 4544 | if (objt_server(s->target)) { |
Willy Tarreau | 610ecce | 2010-01-04 21:15:02 +0100 | [diff] [blame] | 4545 | if (s->flags & SN_CURR_SESS) { |
| 4546 | s->flags &= ~SN_CURR_SESS; |
Willy Tarreau | 3fdb366 | 2012-11-12 00:42:33 +0100 | [diff] [blame] | 4547 | objt_server(s->target)->cur_sess--; |
Willy Tarreau | 610ecce | 2010-01-04 21:15:02 +0100 | [diff] [blame] | 4548 | } |
Willy Tarreau | 3fdb366 | 2012-11-12 00:42:33 +0100 | [diff] [blame] | 4549 | if (may_dequeue_tasks(objt_server(s->target), s->be)) |
| 4550 | process_srv_queue(objt_server(s->target)); |
Willy Tarreau | 610ecce | 2010-01-04 21:15:02 +0100 | [diff] [blame] | 4551 | } |
| 4552 | |
Willy Tarreau | 3fdb366 | 2012-11-12 00:42:33 +0100 | [diff] [blame] | 4553 | s->target = NULL; |
Willy Tarreau | 610ecce | 2010-01-04 21:15:02 +0100 | [diff] [blame] | 4554 | |
Willy Tarreau | 4213a11 | 2013-12-15 10:25:42 +0100 | [diff] [blame] | 4555 | /* only release our endpoint if we don't intend to reuse the |
| 4556 | * connection. |
| 4557 | */ |
| 4558 | if (((s->txn.flags & TX_CON_WANT_MSK) != TX_CON_WANT_KAL) || |
| 4559 | !si_conn_ready(s->req->cons)) { |
| 4560 | si_release_endpoint(s->req->cons); |
| 4561 | } |
| 4562 | |
Willy Tarreau | 610ecce | 2010-01-04 21:15:02 +0100 | [diff] [blame] | 4563 | s->req->cons->state = s->req->cons->prev_state = SI_ST_INI; |
Willy Tarreau | 610ecce | 2010-01-04 21:15:02 +0100 | [diff] [blame] | 4564 | s->req->cons->err_type = SI_ET_NONE; |
Willy Tarreau | 0b3a411 | 2011-03-27 19:16:56 +0200 | [diff] [blame] | 4565 | s->req->cons->conn_retries = 0; /* used for logging too */ |
Willy Tarreau | 610ecce | 2010-01-04 21:15:02 +0100 | [diff] [blame] | 4566 | s->req->cons->exp = TICK_ETERNITY; |
Willy Tarreau | c920096 | 2013-12-31 23:03:09 +0100 | [diff] [blame] | 4567 | s->req->cons->flags &= SI_FL_DONT_WAKE; /* we're in the context of process_session */ |
Willy Tarreau | 03cdb7c | 2012-08-27 23:14:58 +0200 | [diff] [blame] | 4568 | s->req->flags &= ~(CF_SHUTW|CF_SHUTW_NOW|CF_AUTO_CONNECT|CF_WRITE_ERROR|CF_STREAMER|CF_STREAMER_FAST|CF_NEVER_WAIT); |
| 4569 | s->rep->flags &= ~(CF_SHUTR|CF_SHUTR_NOW|CF_READ_ATTACHED|CF_READ_ERROR|CF_READ_NOEXP|CF_STREAMER|CF_STREAMER_FAST|CF_WRITE_PARTIAL|CF_NEVER_WAIT); |
Cyril Bonté | 47fdd8e | 2010-04-25 00:00:51 +0200 | [diff] [blame] | 4570 | s->flags &= ~(SN_DIRECT|SN_ASSIGNED|SN_ADDR_SET|SN_BE_ASSIGNED|SN_FORCE_PRST|SN_IGNORE_PRST); |
Willy Tarreau | 3634624 | 2014-02-24 18:26:30 +0100 | [diff] [blame] | 4571 | s->flags &= ~(SN_CURR_SESS|SN_REDIRECTABLE|SN_SRV_REUSED); |
Willy Tarreau | 543db62 | 2012-11-15 16:41:22 +0100 | [diff] [blame] | 4572 | |
Willy Tarreau | 610ecce | 2010-01-04 21:15:02 +0100 | [diff] [blame] | 4573 | s->txn.meth = 0; |
| 4574 | http_reset_txn(s); |
Willy Tarreau | fcffa69 | 2010-01-10 14:21:19 +0100 | [diff] [blame] | 4575 | s->txn.flags |= TX_NOT_FIRST | TX_WAIT_NEXT_RQ; |
Willy Tarreau | 068621e | 2013-12-23 15:11:25 +0100 | [diff] [blame] | 4576 | |
| 4577 | if (prev_status == 401 || prev_status == 407) { |
| 4578 | /* In HTTP keep-alive mode, if we receive a 401, we still have |
| 4579 | * a chance of being able to send the visitor again to the same |
| 4580 | * server over the same connection. This is required by some |
| 4581 | * broken protocols such as NTLM, and anyway whenever there is |
| 4582 | * an opportunity for sending the challenge to the proper place, |
| 4583 | * it's better to do it (at least it helps with debugging). |
| 4584 | */ |
| 4585 | s->txn.flags |= TX_PREFER_LAST; |
| 4586 | } |
| 4587 | |
Willy Tarreau | ee55dc0 | 2010-06-01 10:56:34 +0200 | [diff] [blame] | 4588 | if (s->fe->options2 & PR_O2_INDEPSTR) |
Willy Tarreau | 610ecce | 2010-01-04 21:15:02 +0100 | [diff] [blame] | 4589 | s->req->cons->flags |= SI_FL_INDEP_STR; |
| 4590 | |
Willy Tarreau | 96e3121 | 2011-05-30 18:10:30 +0200 | [diff] [blame] | 4591 | if (s->fe->options2 & PR_O2_NODELAY) { |
Willy Tarreau | 03cdb7c | 2012-08-27 23:14:58 +0200 | [diff] [blame] | 4592 | s->req->flags |= CF_NEVER_WAIT; |
| 4593 | s->rep->flags |= CF_NEVER_WAIT; |
Willy Tarreau | 96e3121 | 2011-05-30 18:10:30 +0200 | [diff] [blame] | 4594 | } |
| 4595 | |
Willy Tarreau | 610ecce | 2010-01-04 21:15:02 +0100 | [diff] [blame] | 4596 | /* if the request buffer is not empty, it means we're |
| 4597 | * about to process another request, so send pending |
| 4598 | * data with MSG_MORE to merge TCP packets when possible. |
Willy Tarreau | 065e833 | 2010-01-08 00:30:20 +0100 | [diff] [blame] | 4599 | * Just don't do this if the buffer is close to be full, |
| 4600 | * because the request will wait for it to flush a little |
| 4601 | * bit before proceeding. |
Willy Tarreau | 610ecce | 2010-01-04 21:15:02 +0100 | [diff] [blame] | 4602 | */ |
Willy Tarreau | 9b28e03 | 2012-10-12 23:49:43 +0200 | [diff] [blame] | 4603 | if (s->req->buf->i) { |
| 4604 | if (s->rep->buf->o && |
| 4605 | !buffer_full(s->rep->buf, global.tune.maxrewrite) && |
| 4606 | bi_end(s->rep->buf) <= s->rep->buf->data + s->rep->buf->size - global.tune.maxrewrite) |
Willy Tarreau | 03cdb7c | 2012-08-27 23:14:58 +0200 | [diff] [blame] | 4607 | s->rep->flags |= CF_EXPECT_MORE; |
Willy Tarreau | 065e833 | 2010-01-08 00:30:20 +0100 | [diff] [blame] | 4608 | } |
Willy Tarreau | 90deb18 | 2010-01-07 00:20:41 +0100 | [diff] [blame] | 4609 | |
| 4610 | /* we're removing the analysers, we MUST re-enable events detection */ |
Willy Tarreau | 8263d2b | 2012-08-28 00:06:31 +0200 | [diff] [blame] | 4611 | channel_auto_read(s->req); |
| 4612 | channel_auto_close(s->req); |
| 4613 | channel_auto_read(s->rep); |
| 4614 | channel_auto_close(s->rep); |
Willy Tarreau | 610ecce | 2010-01-04 21:15:02 +0100 | [diff] [blame] | 4615 | |
Willy Tarreau | 2737562 | 2013-12-17 00:00:28 +0100 | [diff] [blame] | 4616 | /* we're in keep-alive with an idle connection, monitor it */ |
| 4617 | si_idle_conn(s->req->cons); |
| 4618 | |
Willy Tarreau | 342b11c | 2010-11-24 16:22:09 +0100 | [diff] [blame] | 4619 | s->req->analysers = s->listener->analysers; |
Willy Tarreau | 610ecce | 2010-01-04 21:15:02 +0100 | [diff] [blame] | 4620 | s->rep->analysers = 0; |
| 4621 | |
| 4622 | http_silent_debug(__LINE__, s); |
| 4623 | } |
| 4624 | |
| 4625 | |
| 4626 | /* This function updates the request state machine according to the response |
| 4627 | * state machine and buffer flags. It returns 1 if it changes anything (flag |
| 4628 | * or state), otherwise zero. It ignores any state before HTTP_MSG_DONE, as |
| 4629 | * it is only used to find when a request/response couple is complete. Both |
| 4630 | * this function and its equivalent should loop until both return zero. It |
| 4631 | * can set its own state to DONE, CLOSING, CLOSED, TUNNEL, ERROR. |
| 4632 | */ |
| 4633 | int http_sync_req_state(struct session *s) |
| 4634 | { |
Willy Tarreau | cdbdd52 | 2012-10-12 22:51:15 +0200 | [diff] [blame] | 4635 | struct channel *chn = s->req; |
Willy Tarreau | 610ecce | 2010-01-04 21:15:02 +0100 | [diff] [blame] | 4636 | struct http_txn *txn = &s->txn; |
Willy Tarreau | cdbdd52 | 2012-10-12 22:51:15 +0200 | [diff] [blame] | 4637 | unsigned int old_flags = chn->flags; |
Willy Tarreau | 610ecce | 2010-01-04 21:15:02 +0100 | [diff] [blame] | 4638 | unsigned int old_state = txn->req.msg_state; |
| 4639 | |
| 4640 | http_silent_debug(__LINE__, s); |
| 4641 | if (unlikely(txn->req.msg_state < HTTP_MSG_BODY)) |
| 4642 | return 0; |
| 4643 | |
| 4644 | if (txn->req.msg_state == HTTP_MSG_DONE) { |
Willy Tarreau | 90deb18 | 2010-01-07 00:20:41 +0100 | [diff] [blame] | 4645 | /* No need to read anymore, the request was completely parsed. |
Willy Tarreau | 58bd8fd | 2010-09-28 14:16:41 +0200 | [diff] [blame] | 4646 | * We can shut the read side unless we want to abort_on_close, |
| 4647 | * or we have a POST request. The issue with POST requests is |
| 4648 | * that some browsers still send a CRLF after the request, and |
| 4649 | * this CRLF must be read so that it does not remain in the kernel |
| 4650 | * buffers, otherwise a close could cause an RST on some systems |
| 4651 | * (eg: Linux). |
Willy Tarreau | 3988d93 | 2013-12-27 23:03:08 +0100 | [diff] [blame] | 4652 | * Note that if we're using keep-alive on the client side, we'd |
| 4653 | * rather poll now and keep the polling enabled for the whole |
| 4654 | * session's life than enabling/disabling it between each |
| 4655 | * response and next request. |
Willy Tarreau | 90deb18 | 2010-01-07 00:20:41 +0100 | [diff] [blame] | 4656 | */ |
Willy Tarreau | 3988d93 | 2013-12-27 23:03:08 +0100 | [diff] [blame] | 4657 | if (((txn->flags & TX_CON_WANT_MSK) != TX_CON_WANT_SCL) && |
| 4658 | ((txn->flags & TX_CON_WANT_MSK) != TX_CON_WANT_KAL) && |
| 4659 | !(s->be->options & PR_O_ABRT_CLOSE) && |
| 4660 | txn->meth != HTTP_METH_POST) |
Willy Tarreau | cdbdd52 | 2012-10-12 22:51:15 +0200 | [diff] [blame] | 4661 | channel_dont_read(chn); |
Willy Tarreau | 610ecce | 2010-01-04 21:15:02 +0100 | [diff] [blame] | 4662 | |
Willy Tarreau | 40f151a | 2012-12-20 12:10:09 +0100 | [diff] [blame] | 4663 | /* if the server closes the connection, we want to immediately react |
| 4664 | * and close the socket to save packets and syscalls. |
| 4665 | */ |
| 4666 | chn->cons->flags |= SI_FL_NOHALF; |
| 4667 | |
Willy Tarreau | 610ecce | 2010-01-04 21:15:02 +0100 | [diff] [blame] | 4668 | if (txn->rsp.msg_state == HTTP_MSG_ERROR) |
| 4669 | goto wait_other_side; |
| 4670 | |
| 4671 | if (txn->rsp.msg_state < HTTP_MSG_DONE) { |
| 4672 | /* The server has not finished to respond, so we |
| 4673 | * don't want to move in order not to upset it. |
| 4674 | */ |
| 4675 | goto wait_other_side; |
| 4676 | } |
| 4677 | |
| 4678 | if (txn->rsp.msg_state == HTTP_MSG_TUNNEL) { |
| 4679 | /* if any side switches to tunnel mode, the other one does too */ |
Willy Tarreau | cdbdd52 | 2012-10-12 22:51:15 +0200 | [diff] [blame] | 4680 | channel_auto_read(chn); |
Willy Tarreau | 610ecce | 2010-01-04 21:15:02 +0100 | [diff] [blame] | 4681 | txn->req.msg_state = HTTP_MSG_TUNNEL; |
Willy Tarreau | fc47f91 | 2012-10-20 10:38:09 +0200 | [diff] [blame] | 4682 | chn->flags |= CF_NEVER_WAIT; |
Willy Tarreau | 610ecce | 2010-01-04 21:15:02 +0100 | [diff] [blame] | 4683 | goto wait_other_side; |
| 4684 | } |
| 4685 | |
| 4686 | /* When we get here, it means that both the request and the |
| 4687 | * response have finished receiving. Depending on the connection |
| 4688 | * mode, we'll have to wait for the last bytes to leave in either |
| 4689 | * direction, and sometimes for a close to be effective. |
| 4690 | */ |
| 4691 | |
Willy Tarreau | cce7fa4 | 2010-01-16 23:19:39 +0100 | [diff] [blame] | 4692 | if ((txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_SCL) { |
| 4693 | /* Server-close mode : queue a connection close to the server */ |
Willy Tarreau | cdbdd52 | 2012-10-12 22:51:15 +0200 | [diff] [blame] | 4694 | if (!(chn->flags & (CF_SHUTW|CF_SHUTW_NOW))) |
| 4695 | channel_shutw_now(chn); |
Willy Tarreau | cce7fa4 | 2010-01-16 23:19:39 +0100 | [diff] [blame] | 4696 | } |
| 4697 | else if ((txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_CLO) { |
| 4698 | /* Option forceclose is set, or either side wants to close, |
| 4699 | * let's enforce it now that we're not expecting any new |
| 4700 | * data to come. The caller knows the session is complete |
| 4701 | * once both states are CLOSED. |
| 4702 | */ |
Willy Tarreau | cdbdd52 | 2012-10-12 22:51:15 +0200 | [diff] [blame] | 4703 | if (!(chn->flags & (CF_SHUTW|CF_SHUTW_NOW))) { |
| 4704 | channel_shutr_now(chn); |
| 4705 | channel_shutw_now(chn); |
Willy Tarreau | 610ecce | 2010-01-04 21:15:02 +0100 | [diff] [blame] | 4706 | } |
Willy Tarreau | cce7fa4 | 2010-01-16 23:19:39 +0100 | [diff] [blame] | 4707 | } |
| 4708 | else { |
Willy Tarreau | 4213a11 | 2013-12-15 10:25:42 +0100 | [diff] [blame] | 4709 | /* The last possible modes are keep-alive and tunnel. Tunnel mode |
| 4710 | * will not have any analyser so it needs to poll for reads. |
Willy Tarreau | cce7fa4 | 2010-01-16 23:19:39 +0100 | [diff] [blame] | 4711 | */ |
Willy Tarreau | 4213a11 | 2013-12-15 10:25:42 +0100 | [diff] [blame] | 4712 | if ((txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_TUN) { |
| 4713 | channel_auto_read(chn); |
| 4714 | txn->req.msg_state = HTTP_MSG_TUNNEL; |
| 4715 | chn->flags |= CF_NEVER_WAIT; |
| 4716 | } |
Willy Tarreau | 610ecce | 2010-01-04 21:15:02 +0100 | [diff] [blame] | 4717 | } |
| 4718 | |
Willy Tarreau | cdbdd52 | 2012-10-12 22:51:15 +0200 | [diff] [blame] | 4719 | if (chn->flags & (CF_SHUTW|CF_SHUTW_NOW)) { |
Willy Tarreau | 610ecce | 2010-01-04 21:15:02 +0100 | [diff] [blame] | 4720 | /* if we've just closed an output, let's switch */ |
Willy Tarreau | cdbdd52 | 2012-10-12 22:51:15 +0200 | [diff] [blame] | 4721 | chn->cons->flags |= SI_FL_NOLINGER; /* we want to close ASAP */ |
Willy Tarreau | cce7fa4 | 2010-01-16 23:19:39 +0100 | [diff] [blame] | 4722 | |
Willy Tarreau | cdbdd52 | 2012-10-12 22:51:15 +0200 | [diff] [blame] | 4723 | if (!channel_is_empty(chn)) { |
Willy Tarreau | 610ecce | 2010-01-04 21:15:02 +0100 | [diff] [blame] | 4724 | txn->req.msg_state = HTTP_MSG_CLOSING; |
| 4725 | goto http_msg_closing; |
| 4726 | } |
| 4727 | else { |
| 4728 | txn->req.msg_state = HTTP_MSG_CLOSED; |
| 4729 | goto http_msg_closed; |
| 4730 | } |
| 4731 | } |
Willy Tarreau | cce7fa4 | 2010-01-16 23:19:39 +0100 | [diff] [blame] | 4732 | goto wait_other_side; |
Willy Tarreau | 610ecce | 2010-01-04 21:15:02 +0100 | [diff] [blame] | 4733 | } |
| 4734 | |
| 4735 | if (txn->req.msg_state == HTTP_MSG_CLOSING) { |
| 4736 | http_msg_closing: |
| 4737 | /* nothing else to forward, just waiting for the output buffer |
| 4738 | * to be empty and for the shutw_now to take effect. |
| 4739 | */ |
Willy Tarreau | cdbdd52 | 2012-10-12 22:51:15 +0200 | [diff] [blame] | 4740 | if (channel_is_empty(chn)) { |
Willy Tarreau | 610ecce | 2010-01-04 21:15:02 +0100 | [diff] [blame] | 4741 | txn->req.msg_state = HTTP_MSG_CLOSED; |
| 4742 | goto http_msg_closed; |
| 4743 | } |
Willy Tarreau | cdbdd52 | 2012-10-12 22:51:15 +0200 | [diff] [blame] | 4744 | else if (chn->flags & CF_SHUTW) { |
Willy Tarreau | 610ecce | 2010-01-04 21:15:02 +0100 | [diff] [blame] | 4745 | txn->req.msg_state = HTTP_MSG_ERROR; |
| 4746 | goto wait_other_side; |
| 4747 | } |
| 4748 | } |
| 4749 | |
| 4750 | if (txn->req.msg_state == HTTP_MSG_CLOSED) { |
| 4751 | http_msg_closed: |
Willy Tarreau | 3988d93 | 2013-12-27 23:03:08 +0100 | [diff] [blame] | 4752 | /* see above in MSG_DONE why we only do this in these states */ |
| 4753 | if (((txn->flags & TX_CON_WANT_MSK) != TX_CON_WANT_SCL) && |
| 4754 | ((txn->flags & TX_CON_WANT_MSK) != TX_CON_WANT_KAL) && |
| 4755 | !(s->be->options & PR_O_ABRT_CLOSE)) |
Willy Tarreau | 2e7a165 | 2013-12-15 15:32:10 +0100 | [diff] [blame] | 4756 | channel_dont_read(chn); |
Willy Tarreau | 610ecce | 2010-01-04 21:15:02 +0100 | [diff] [blame] | 4757 | goto wait_other_side; |
| 4758 | } |
| 4759 | |
| 4760 | wait_other_side: |
| 4761 | http_silent_debug(__LINE__, s); |
Willy Tarreau | cdbdd52 | 2012-10-12 22:51:15 +0200 | [diff] [blame] | 4762 | return txn->req.msg_state != old_state || chn->flags != old_flags; |
Willy Tarreau | 610ecce | 2010-01-04 21:15:02 +0100 | [diff] [blame] | 4763 | } |
| 4764 | |
| 4765 | |
| 4766 | /* This function updates the response state machine according to the request |
| 4767 | * state machine and buffer flags. It returns 1 if it changes anything (flag |
| 4768 | * or state), otherwise zero. It ignores any state before HTTP_MSG_DONE, as |
| 4769 | * it is only used to find when a request/response couple is complete. Both |
| 4770 | * this function and its equivalent should loop until both return zero. It |
| 4771 | * can set its own state to DONE, CLOSING, CLOSED, TUNNEL, ERROR. |
| 4772 | */ |
| 4773 | int http_sync_res_state(struct session *s) |
| 4774 | { |
Willy Tarreau | cdbdd52 | 2012-10-12 22:51:15 +0200 | [diff] [blame] | 4775 | struct channel *chn = s->rep; |
Willy Tarreau | 610ecce | 2010-01-04 21:15:02 +0100 | [diff] [blame] | 4776 | struct http_txn *txn = &s->txn; |
Willy Tarreau | cdbdd52 | 2012-10-12 22:51:15 +0200 | [diff] [blame] | 4777 | unsigned int old_flags = chn->flags; |
Willy Tarreau | 610ecce | 2010-01-04 21:15:02 +0100 | [diff] [blame] | 4778 | unsigned int old_state = txn->rsp.msg_state; |
| 4779 | |
| 4780 | http_silent_debug(__LINE__, s); |
| 4781 | if (unlikely(txn->rsp.msg_state < HTTP_MSG_BODY)) |
| 4782 | return 0; |
| 4783 | |
| 4784 | if (txn->rsp.msg_state == HTTP_MSG_DONE) { |
| 4785 | /* In theory, we don't need to read anymore, but we must |
Willy Tarreau | 90deb18 | 2010-01-07 00:20:41 +0100 | [diff] [blame] | 4786 | * still monitor the server connection for a possible close |
| 4787 | * while the request is being uploaded, so we don't disable |
| 4788 | * reading. |
Willy Tarreau | 610ecce | 2010-01-04 21:15:02 +0100 | [diff] [blame] | 4789 | */ |
Willy Tarreau | cdbdd52 | 2012-10-12 22:51:15 +0200 | [diff] [blame] | 4790 | /* channel_dont_read(chn); */ |
Willy Tarreau | 610ecce | 2010-01-04 21:15:02 +0100 | [diff] [blame] | 4791 | |
| 4792 | if (txn->req.msg_state == HTTP_MSG_ERROR) |
| 4793 | goto wait_other_side; |
| 4794 | |
| 4795 | if (txn->req.msg_state < HTTP_MSG_DONE) { |
| 4796 | /* The client seems to still be sending data, probably |
| 4797 | * because we got an error response during an upload. |
| 4798 | * We have the choice of either breaking the connection |
| 4799 | * or letting it pass through. Let's do the later. |
| 4800 | */ |
| 4801 | goto wait_other_side; |
| 4802 | } |
| 4803 | |
| 4804 | if (txn->req.msg_state == HTTP_MSG_TUNNEL) { |
| 4805 | /* if any side switches to tunnel mode, the other one does too */ |
Willy Tarreau | cdbdd52 | 2012-10-12 22:51:15 +0200 | [diff] [blame] | 4806 | channel_auto_read(chn); |
Willy Tarreau | 610ecce | 2010-01-04 21:15:02 +0100 | [diff] [blame] | 4807 | txn->rsp.msg_state = HTTP_MSG_TUNNEL; |
Willy Tarreau | fc47f91 | 2012-10-20 10:38:09 +0200 | [diff] [blame] | 4808 | chn->flags |= CF_NEVER_WAIT; |
Willy Tarreau | 610ecce | 2010-01-04 21:15:02 +0100 | [diff] [blame] | 4809 | goto wait_other_side; |
| 4810 | } |
| 4811 | |
| 4812 | /* When we get here, it means that both the request and the |
| 4813 | * response have finished receiving. Depending on the connection |
| 4814 | * mode, we'll have to wait for the last bytes to leave in either |
| 4815 | * direction, and sometimes for a close to be effective. |
| 4816 | */ |
| 4817 | |
| 4818 | if ((txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_SCL) { |
| 4819 | /* Server-close mode : shut read and wait for the request |
| 4820 | * side to close its output buffer. The caller will detect |
| 4821 | * when we're in DONE and the other is in CLOSED and will |
| 4822 | * catch that for the final cleanup. |
| 4823 | */ |
Willy Tarreau | cdbdd52 | 2012-10-12 22:51:15 +0200 | [diff] [blame] | 4824 | if (!(chn->flags & (CF_SHUTR|CF_SHUTR_NOW))) |
| 4825 | channel_shutr_now(chn); |
Willy Tarreau | 610ecce | 2010-01-04 21:15:02 +0100 | [diff] [blame] | 4826 | } |
Willy Tarreau | cce7fa4 | 2010-01-16 23:19:39 +0100 | [diff] [blame] | 4827 | else if ((txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_CLO) { |
| 4828 | /* Option forceclose is set, or either side wants to close, |
| 4829 | * let's enforce it now that we're not expecting any new |
| 4830 | * data to come. The caller knows the session is complete |
| 4831 | * once both states are CLOSED. |
Willy Tarreau | 610ecce | 2010-01-04 21:15:02 +0100 | [diff] [blame] | 4832 | */ |
Willy Tarreau | cdbdd52 | 2012-10-12 22:51:15 +0200 | [diff] [blame] | 4833 | if (!(chn->flags & (CF_SHUTW|CF_SHUTW_NOW))) { |
| 4834 | channel_shutr_now(chn); |
| 4835 | channel_shutw_now(chn); |
Willy Tarreau | cce7fa4 | 2010-01-16 23:19:39 +0100 | [diff] [blame] | 4836 | } |
Willy Tarreau | 610ecce | 2010-01-04 21:15:02 +0100 | [diff] [blame] | 4837 | } |
| 4838 | else { |
Willy Tarreau | 4213a11 | 2013-12-15 10:25:42 +0100 | [diff] [blame] | 4839 | /* The last possible modes are keep-alive and tunnel. Tunnel will |
| 4840 | * need to forward remaining data. Keep-alive will need to monitor |
| 4841 | * for connection closing. |
Willy Tarreau | 610ecce | 2010-01-04 21:15:02 +0100 | [diff] [blame] | 4842 | */ |
Willy Tarreau | cdbdd52 | 2012-10-12 22:51:15 +0200 | [diff] [blame] | 4843 | channel_auto_read(chn); |
Willy Tarreau | fc47f91 | 2012-10-20 10:38:09 +0200 | [diff] [blame] | 4844 | chn->flags |= CF_NEVER_WAIT; |
Willy Tarreau | 4213a11 | 2013-12-15 10:25:42 +0100 | [diff] [blame] | 4845 | if ((txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_TUN) |
| 4846 | txn->rsp.msg_state = HTTP_MSG_TUNNEL; |
Willy Tarreau | 610ecce | 2010-01-04 21:15:02 +0100 | [diff] [blame] | 4847 | } |
| 4848 | |
Willy Tarreau | cdbdd52 | 2012-10-12 22:51:15 +0200 | [diff] [blame] | 4849 | if (chn->flags & (CF_SHUTW|CF_SHUTW_NOW)) { |
Willy Tarreau | 610ecce | 2010-01-04 21:15:02 +0100 | [diff] [blame] | 4850 | /* if we've just closed an output, let's switch */ |
Willy Tarreau | cdbdd52 | 2012-10-12 22:51:15 +0200 | [diff] [blame] | 4851 | if (!channel_is_empty(chn)) { |
Willy Tarreau | 610ecce | 2010-01-04 21:15:02 +0100 | [diff] [blame] | 4852 | txn->rsp.msg_state = HTTP_MSG_CLOSING; |
| 4853 | goto http_msg_closing; |
| 4854 | } |
| 4855 | else { |
| 4856 | txn->rsp.msg_state = HTTP_MSG_CLOSED; |
| 4857 | goto http_msg_closed; |
| 4858 | } |
| 4859 | } |
| 4860 | goto wait_other_side; |
| 4861 | } |
| 4862 | |
| 4863 | if (txn->rsp.msg_state == HTTP_MSG_CLOSING) { |
| 4864 | http_msg_closing: |
| 4865 | /* nothing else to forward, just waiting for the output buffer |
| 4866 | * to be empty and for the shutw_now to take effect. |
| 4867 | */ |
Willy Tarreau | cdbdd52 | 2012-10-12 22:51:15 +0200 | [diff] [blame] | 4868 | if (channel_is_empty(chn)) { |
Willy Tarreau | 610ecce | 2010-01-04 21:15:02 +0100 | [diff] [blame] | 4869 | txn->rsp.msg_state = HTTP_MSG_CLOSED; |
| 4870 | goto http_msg_closed; |
| 4871 | } |
Willy Tarreau | cdbdd52 | 2012-10-12 22:51:15 +0200 | [diff] [blame] | 4872 | else if (chn->flags & CF_SHUTW) { |
Willy Tarreau | 610ecce | 2010-01-04 21:15:02 +0100 | [diff] [blame] | 4873 | txn->rsp.msg_state = HTTP_MSG_ERROR; |
Willy Tarreau | 7d0aaf3 | 2011-03-10 23:25:56 +0100 | [diff] [blame] | 4874 | s->be->be_counters.cli_aborts++; |
Willy Tarreau | 3fdb366 | 2012-11-12 00:42:33 +0100 | [diff] [blame] | 4875 | if (objt_server(s->target)) |
| 4876 | objt_server(s->target)->counters.cli_aborts++; |
Willy Tarreau | 610ecce | 2010-01-04 21:15:02 +0100 | [diff] [blame] | 4877 | goto wait_other_side; |
| 4878 | } |
| 4879 | } |
| 4880 | |
| 4881 | if (txn->rsp.msg_state == HTTP_MSG_CLOSED) { |
| 4882 | http_msg_closed: |
| 4883 | /* drop any pending data */ |
Willy Tarreau | cdbdd52 | 2012-10-12 22:51:15 +0200 | [diff] [blame] | 4884 | bi_erase(chn); |
| 4885 | channel_auto_close(chn); |
| 4886 | channel_auto_read(chn); |
Willy Tarreau | 610ecce | 2010-01-04 21:15:02 +0100 | [diff] [blame] | 4887 | goto wait_other_side; |
| 4888 | } |
| 4889 | |
| 4890 | wait_other_side: |
| 4891 | http_silent_debug(__LINE__, s); |
Willy Tarreau | fc47f91 | 2012-10-20 10:38:09 +0200 | [diff] [blame] | 4892 | /* We force the response to leave immediately if we're waiting for the |
| 4893 | * other side, since there is no pending shutdown to push it out. |
| 4894 | */ |
| 4895 | if (!channel_is_empty(chn)) |
| 4896 | chn->flags |= CF_SEND_DONTWAIT; |
Willy Tarreau | cdbdd52 | 2012-10-12 22:51:15 +0200 | [diff] [blame] | 4897 | return txn->rsp.msg_state != old_state || chn->flags != old_flags; |
Willy Tarreau | 610ecce | 2010-01-04 21:15:02 +0100 | [diff] [blame] | 4898 | } |
| 4899 | |
| 4900 | |
| 4901 | /* Resync the request and response state machines. Return 1 if either state |
| 4902 | * changes. |
| 4903 | */ |
| 4904 | int http_resync_states(struct session *s) |
| 4905 | { |
| 4906 | struct http_txn *txn = &s->txn; |
| 4907 | int old_req_state = txn->req.msg_state; |
| 4908 | int old_res_state = txn->rsp.msg_state; |
| 4909 | |
| 4910 | http_silent_debug(__LINE__, s); |
| 4911 | http_sync_req_state(s); |
| 4912 | while (1) { |
Willy Tarreau | 90deb18 | 2010-01-07 00:20:41 +0100 | [diff] [blame] | 4913 | http_silent_debug(__LINE__, s); |
Willy Tarreau | 610ecce | 2010-01-04 21:15:02 +0100 | [diff] [blame] | 4914 | if (!http_sync_res_state(s)) |
| 4915 | break; |
Willy Tarreau | 90deb18 | 2010-01-07 00:20:41 +0100 | [diff] [blame] | 4916 | http_silent_debug(__LINE__, s); |
Willy Tarreau | 610ecce | 2010-01-04 21:15:02 +0100 | [diff] [blame] | 4917 | if (!http_sync_req_state(s)) |
| 4918 | break; |
| 4919 | } |
| 4920 | http_silent_debug(__LINE__, s); |
| 4921 | /* OK, both state machines agree on a compatible state. |
| 4922 | * There are a few cases we're interested in : |
| 4923 | * - HTTP_MSG_TUNNEL on either means we have to disable both analysers |
| 4924 | * - HTTP_MSG_CLOSED on both sides means we've reached the end in both |
| 4925 | * directions, so let's simply disable both analysers. |
| 4926 | * - HTTP_MSG_CLOSED on the response only means we must abort the |
| 4927 | * request. |
| 4928 | * - HTTP_MSG_CLOSED on the request and HTTP_MSG_DONE on the response |
| 4929 | * with server-close mode means we've completed one request and we |
| 4930 | * must re-initialize the server connection. |
| 4931 | */ |
| 4932 | |
| 4933 | if (txn->req.msg_state == HTTP_MSG_TUNNEL || |
| 4934 | txn->rsp.msg_state == HTTP_MSG_TUNNEL || |
| 4935 | (txn->req.msg_state == HTTP_MSG_CLOSED && |
| 4936 | txn->rsp.msg_state == HTTP_MSG_CLOSED)) { |
| 4937 | s->req->analysers = 0; |
Willy Tarreau | 8263d2b | 2012-08-28 00:06:31 +0200 | [diff] [blame] | 4938 | channel_auto_close(s->req); |
| 4939 | channel_auto_read(s->req); |
Willy Tarreau | 610ecce | 2010-01-04 21:15:02 +0100 | [diff] [blame] | 4940 | s->rep->analysers = 0; |
Willy Tarreau | 8263d2b | 2012-08-28 00:06:31 +0200 | [diff] [blame] | 4941 | channel_auto_close(s->rep); |
| 4942 | channel_auto_read(s->rep); |
Willy Tarreau | 610ecce | 2010-01-04 21:15:02 +0100 | [diff] [blame] | 4943 | } |
Willy Tarreau | 40f151a | 2012-12-20 12:10:09 +0100 | [diff] [blame] | 4944 | else if ((txn->req.msg_state >= HTTP_MSG_DONE && |
| 4945 | (txn->rsp.msg_state == HTTP_MSG_CLOSED || (s->rep->flags & CF_SHUTW))) || |
Willy Tarreau | 2fa144c | 2010-01-04 23:13:26 +0100 | [diff] [blame] | 4946 | txn->rsp.msg_state == HTTP_MSG_ERROR || |
Willy Tarreau | 40f151a | 2012-12-20 12:10:09 +0100 | [diff] [blame] | 4947 | txn->req.msg_state == HTTP_MSG_ERROR) { |
Willy Tarreau | 90deb18 | 2010-01-07 00:20:41 +0100 | [diff] [blame] | 4948 | s->rep->analysers = 0; |
Willy Tarreau | 8263d2b | 2012-08-28 00:06:31 +0200 | [diff] [blame] | 4949 | channel_auto_close(s->rep); |
| 4950 | channel_auto_read(s->rep); |
Willy Tarreau | 90deb18 | 2010-01-07 00:20:41 +0100 | [diff] [blame] | 4951 | s->req->analysers = 0; |
Willy Tarreau | 8263d2b | 2012-08-28 00:06:31 +0200 | [diff] [blame] | 4952 | channel_abort(s->req); |
| 4953 | channel_auto_close(s->req); |
| 4954 | channel_auto_read(s->req); |
Willy Tarreau | 9dab5fc | 2012-05-07 11:56:55 +0200 | [diff] [blame] | 4955 | bi_erase(s->req); |
Willy Tarreau | 610ecce | 2010-01-04 21:15:02 +0100 | [diff] [blame] | 4956 | } |
Willy Tarreau | 4213a11 | 2013-12-15 10:25:42 +0100 | [diff] [blame] | 4957 | else if ((txn->req.msg_state == HTTP_MSG_DONE || |
| 4958 | txn->req.msg_state == HTTP_MSG_CLOSED) && |
Willy Tarreau | 610ecce | 2010-01-04 21:15:02 +0100 | [diff] [blame] | 4959 | txn->rsp.msg_state == HTTP_MSG_DONE && |
Willy Tarreau | 4213a11 | 2013-12-15 10:25:42 +0100 | [diff] [blame] | 4960 | ((txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_SCL || |
| 4961 | (txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_KAL)) { |
| 4962 | /* server-close/keep-alive: terminate this transaction, |
| 4963 | * possibly killing the server connection and reinitialize |
| 4964 | * a fresh-new transaction. |
Willy Tarreau | 610ecce | 2010-01-04 21:15:02 +0100 | [diff] [blame] | 4965 | */ |
| 4966 | http_end_txn_clean_session(s); |
| 4967 | } |
| 4968 | |
| 4969 | http_silent_debug(__LINE__, s); |
| 4970 | return txn->req.msg_state != old_req_state || |
| 4971 | txn->rsp.msg_state != old_res_state; |
| 4972 | } |
| 4973 | |
Willy Tarreau | d98cf93 | 2009-12-27 22:54:55 +0100 | [diff] [blame] | 4974 | /* This function is an analyser which forwards request body (including chunk |
| 4975 | * sizes if any). It is called as soon as we must forward, even if we forward |
| 4976 | * zero byte. The only situation where it must not be called is when we're in |
| 4977 | * tunnel mode and we want to forward till the close. It's used both to forward |
| 4978 | * remaining data and to resync after end of body. It expects the msg_state to |
| 4979 | * be between MSG_BODY and MSG_DONE (inclusive). It returns zero if it needs to |
| 4980 | * read more data, or 1 once we can go on with next request or end the session. |
Willy Tarreau | 124d991 | 2011-03-01 20:30:48 +0100 | [diff] [blame] | 4981 | * When in MSG_DATA or MSG_TRAILERS, it will automatically forward chunk_len |
Willy Tarreau | 2692736 | 2012-05-18 23:22:52 +0200 | [diff] [blame] | 4982 | * bytes of pending data + the headers if not already done (between sol and sov). |
| 4983 | * It eventually adjusts sol to match sov after the data in between have been sent. |
Willy Tarreau | d98cf93 | 2009-12-27 22:54:55 +0100 | [diff] [blame] | 4984 | */ |
Willy Tarreau | 7421efb | 2012-07-02 15:11:27 +0200 | [diff] [blame] | 4985 | int http_request_forward_body(struct session *s, struct channel *req, int an_bit) |
Willy Tarreau | d98cf93 | 2009-12-27 22:54:55 +0100 | [diff] [blame] | 4986 | { |
| 4987 | struct http_txn *txn = &s->txn; |
| 4988 | struct http_msg *msg = &s->txn.req; |
| 4989 | |
Willy Tarreau | f5c8bd6 | 2010-01-04 07:10:34 +0100 | [diff] [blame] | 4990 | if (unlikely(msg->msg_state < HTTP_MSG_BODY)) |
| 4991 | return 0; |
| 4992 | |
Willy Tarreau | 03cdb7c | 2012-08-27 23:14:58 +0200 | [diff] [blame] | 4993 | 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] | 4994 | ((req->flags & CF_SHUTW) && (req->to_forward || req->buf->o))) { |
Willy Tarreau | 4fe4190 | 2010-06-07 22:27:41 +0200 | [diff] [blame] | 4995 | /* Output closed while we were sending data. We must abort and |
| 4996 | * wake the other side up. |
| 4997 | */ |
| 4998 | msg->msg_state = HTTP_MSG_ERROR; |
| 4999 | http_resync_states(s); |
Willy Tarreau | 082b01c | 2010-01-02 23:58:04 +0100 | [diff] [blame] | 5000 | return 1; |
| 5001 | } |
| 5002 | |
Willy Tarreau | 80a92c0 | 2014-03-12 10:41:13 +0100 | [diff] [blame] | 5003 | /* Some post-connect processing might want us to refrain from starting to |
| 5004 | * forward data. Currently, the only reason for this is "balance url_param" |
| 5005 | * whichs need to parse/process the request after we've enabled forwarding. |
| 5006 | */ |
| 5007 | if (unlikely(msg->flags & HTTP_MSGF_WAIT_CONN)) { |
| 5008 | if (!(s->rep->flags & CF_READ_ATTACHED)) { |
| 5009 | channel_auto_connect(req); |
| 5010 | goto missing_data; |
| 5011 | } |
| 5012 | msg->flags &= ~HTTP_MSGF_WAIT_CONN; |
| 5013 | } |
Willy Tarreau | d98cf93 | 2009-12-27 22:54:55 +0100 | [diff] [blame] | 5014 | |
| 5015 | /* Note that we don't have to send 100-continue back because we don't |
| 5016 | * need the data to complete our job, and it's up to the server to |
| 5017 | * decide whether to return 100, 417 or anything else in return of |
| 5018 | * an "Expect: 100-continue" header. |
| 5019 | */ |
| 5020 | |
| 5021 | if (msg->msg_state < HTTP_MSG_CHUNK_SIZE) { |
Willy Tarreau | fa4a03c | 2012-03-09 21:28:54 +0100 | [diff] [blame] | 5022 | /* we have msg->sov which points to the first byte of message body. |
Willy Tarreau | 9b28e03 | 2012-10-12 23:49:43 +0200 | [diff] [blame] | 5023 | * req->buf->p still points to the beginning of the message and msg->sol |
Willy Tarreau | 2692736 | 2012-05-18 23:22:52 +0200 | [diff] [blame] | 5024 | * is still null. We must save the body in msg->next because it |
| 5025 | * survives buffer re-alignments. |
Willy Tarreau | d98cf93 | 2009-12-27 22:54:55 +0100 | [diff] [blame] | 5026 | */ |
Willy Tarreau | ea1175a | 2012-03-05 15:52:30 +0100 | [diff] [blame] | 5027 | msg->next = msg->sov; |
Willy Tarreau | a458b67 | 2012-03-05 11:17:50 +0100 | [diff] [blame] | 5028 | |
Willy Tarreau | a36fc4d | 2012-02-17 17:39:37 +0100 | [diff] [blame] | 5029 | if (msg->flags & HTTP_MSGF_TE_CHNK) |
Willy Tarreau | d98cf93 | 2009-12-27 22:54:55 +0100 | [diff] [blame] | 5030 | msg->msg_state = HTTP_MSG_CHUNK_SIZE; |
Willy Tarreau | 54d23df | 2012-10-25 19:04:45 +0200 | [diff] [blame] | 5031 | else |
Willy Tarreau | d98cf93 | 2009-12-27 22:54:55 +0100 | [diff] [blame] | 5032 | msg->msg_state = HTTP_MSG_DATA; |
Willy Tarreau | d98cf93 | 2009-12-27 22:54:55 +0100 | [diff] [blame] | 5033 | } |
| 5034 | |
Willy Tarreau | 80a92c0 | 2014-03-12 10:41:13 +0100 | [diff] [blame] | 5035 | /* in most states, we should abort in case of early close */ |
| 5036 | channel_auto_close(req); |
| 5037 | |
Willy Tarreau | d98cf93 | 2009-12-27 22:54:55 +0100 | [diff] [blame] | 5038 | while (1) { |
Willy Tarreau | ea95316 | 2012-05-18 23:41:28 +0200 | [diff] [blame] | 5039 | unsigned int bytes; |
Willy Tarreau | d8ee85a | 2011-03-28 16:06:28 +0200 | [diff] [blame] | 5040 | |
Willy Tarreau | 610ecce | 2010-01-04 21:15:02 +0100 | [diff] [blame] | 5041 | http_silent_debug(__LINE__, s); |
Willy Tarreau | ea95316 | 2012-05-18 23:41:28 +0200 | [diff] [blame] | 5042 | /* we may have some data pending between sol and sov */ |
Willy Tarreau | 2692736 | 2012-05-18 23:22:52 +0200 | [diff] [blame] | 5043 | bytes = msg->sov - msg->sol; |
Willy Tarreau | d8ee85a | 2011-03-28 16:06:28 +0200 | [diff] [blame] | 5044 | if (msg->chunk_len || bytes) { |
Willy Tarreau | 2692736 | 2012-05-18 23:22:52 +0200 | [diff] [blame] | 5045 | msg->sol = msg->sov; |
Willy Tarreau | a458b67 | 2012-03-05 11:17:50 +0100 | [diff] [blame] | 5046 | msg->next -= bytes; /* will be forwarded */ |
Willy Tarreau | ea95316 | 2012-05-18 23:41:28 +0200 | [diff] [blame] | 5047 | msg->chunk_len += bytes; |
Willy Tarreau | 8263d2b | 2012-08-28 00:06:31 +0200 | [diff] [blame] | 5048 | msg->chunk_len -= channel_forward(req, msg->chunk_len); |
Willy Tarreau | 638cd02 | 2010-01-03 07:42:04 +0100 | [diff] [blame] | 5049 | } |
Willy Tarreau | 5523b32 | 2009-12-29 12:05:52 +0100 | [diff] [blame] | 5050 | |
Willy Tarreau | caabe41 | 2010-01-03 23:08:28 +0100 | [diff] [blame] | 5051 | if (msg->msg_state == HTTP_MSG_DATA) { |
| 5052 | /* must still forward */ |
Willy Tarreau | 4afd70a | 2014-01-25 02:26:39 +0100 | [diff] [blame] | 5053 | if (req->to_forward) { |
| 5054 | req->flags |= CF_WAKE_WRITE; |
Willy Tarreau | f5c8bd6 | 2010-01-04 07:10:34 +0100 | [diff] [blame] | 5055 | goto missing_data; |
Willy Tarreau | 4afd70a | 2014-01-25 02:26:39 +0100 | [diff] [blame] | 5056 | } |
Willy Tarreau | caabe41 | 2010-01-03 23:08:28 +0100 | [diff] [blame] | 5057 | |
| 5058 | /* nothing left to forward */ |
Willy Tarreau | a36fc4d | 2012-02-17 17:39:37 +0100 | [diff] [blame] | 5059 | if (msg->flags & HTTP_MSGF_TE_CHNK) |
Willy Tarreau | 54d23df | 2012-10-25 19:04:45 +0200 | [diff] [blame] | 5060 | msg->msg_state = HTTP_MSG_CHUNK_CRLF; |
Willy Tarreau | 610ecce | 2010-01-04 21:15:02 +0100 | [diff] [blame] | 5061 | else |
Willy Tarreau | caabe41 | 2010-01-03 23:08:28 +0100 | [diff] [blame] | 5062 | msg->msg_state = HTTP_MSG_DONE; |
Willy Tarreau | caabe41 | 2010-01-03 23:08:28 +0100 | [diff] [blame] | 5063 | } |
| 5064 | else if (msg->msg_state == HTTP_MSG_CHUNK_SIZE) { |
Willy Tarreau | 124d991 | 2011-03-01 20:30:48 +0100 | [diff] [blame] | 5065 | /* read the chunk size and assign it to ->chunk_len, then |
Willy Tarreau | a458b67 | 2012-03-05 11:17:50 +0100 | [diff] [blame] | 5066 | * 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] | 5067 | * TRAILERS state. |
| 5068 | */ |
Willy Tarreau | 4baf44b | 2012-03-09 14:10:20 +0100 | [diff] [blame] | 5069 | int ret = http_parse_chunk_size(msg); |
Willy Tarreau | d98cf93 | 2009-12-27 22:54:55 +0100 | [diff] [blame] | 5070 | |
Willy Tarreau | 54d23df | 2012-10-25 19:04:45 +0200 | [diff] [blame] | 5071 | if (ret == 0) |
Willy Tarreau | d98cf93 | 2009-12-27 22:54:55 +0100 | [diff] [blame] | 5072 | goto missing_data; |
Willy Tarreau | da7ff64 | 2010-06-23 11:44:09 +0200 | [diff] [blame] | 5073 | else if (ret < 0) { |
| 5074 | session_inc_http_err_ctr(s); |
Willy Tarreau | e1582eb | 2010-12-12 13:10:11 +0100 | [diff] [blame] | 5075 | if (msg->err_pos >= 0) |
Willy Tarreau | 8a0cef2 | 2012-03-09 13:39:23 +0100 | [diff] [blame] | 5076 | http_capture_bad_message(&s->fe->invalid_req, s, msg, HTTP_MSG_CHUNK_SIZE, s->be); |
Willy Tarreau | d98cf93 | 2009-12-27 22:54:55 +0100 | [diff] [blame] | 5077 | goto return_bad_req; |
Willy Tarreau | da7ff64 | 2010-06-23 11:44:09 +0200 | [diff] [blame] | 5078 | } |
Willy Tarreau | d98cf93 | 2009-12-27 22:54:55 +0100 | [diff] [blame] | 5079 | /* otherwise we're in HTTP_MSG_DATA or HTTP_MSG_TRAILERS state */ |
Willy Tarreau | d98cf93 | 2009-12-27 22:54:55 +0100 | [diff] [blame] | 5080 | } |
Willy Tarreau | 54d23df | 2012-10-25 19:04:45 +0200 | [diff] [blame] | 5081 | else if (msg->msg_state == HTTP_MSG_CHUNK_CRLF) { |
Willy Tarreau | d98cf93 | 2009-12-27 22:54:55 +0100 | [diff] [blame] | 5082 | /* we want the CRLF after the data */ |
Willy Tarreau | 54d23df | 2012-10-25 19:04:45 +0200 | [diff] [blame] | 5083 | int ret = http_skip_chunk_crlf(msg); |
Willy Tarreau | d98cf93 | 2009-12-27 22:54:55 +0100 | [diff] [blame] | 5084 | |
| 5085 | if (ret == 0) |
| 5086 | goto missing_data; |
Willy Tarreau | da7ff64 | 2010-06-23 11:44:09 +0200 | [diff] [blame] | 5087 | else if (ret < 0) { |
| 5088 | session_inc_http_err_ctr(s); |
Willy Tarreau | e1582eb | 2010-12-12 13:10:11 +0100 | [diff] [blame] | 5089 | if (msg->err_pos >= 0) |
Willy Tarreau | 54d23df | 2012-10-25 19:04:45 +0200 | [diff] [blame] | 5090 | http_capture_bad_message(&s->fe->invalid_req, s, msg, HTTP_MSG_CHUNK_CRLF, s->be); |
Willy Tarreau | d98cf93 | 2009-12-27 22:54:55 +0100 | [diff] [blame] | 5091 | goto return_bad_req; |
Willy Tarreau | da7ff64 | 2010-06-23 11:44:09 +0200 | [diff] [blame] | 5092 | } |
Willy Tarreau | d98cf93 | 2009-12-27 22:54:55 +0100 | [diff] [blame] | 5093 | /* we're in MSG_CHUNK_SIZE now */ |
| 5094 | } |
| 5095 | else if (msg->msg_state == HTTP_MSG_TRAILERS) { |
Willy Tarreau | 4baf44b | 2012-03-09 14:10:20 +0100 | [diff] [blame] | 5096 | int ret = http_forward_trailers(msg); |
Willy Tarreau | d98cf93 | 2009-12-27 22:54:55 +0100 | [diff] [blame] | 5097 | |
| 5098 | if (ret == 0) |
| 5099 | goto missing_data; |
Willy Tarreau | da7ff64 | 2010-06-23 11:44:09 +0200 | [diff] [blame] | 5100 | else if (ret < 0) { |
| 5101 | session_inc_http_err_ctr(s); |
Willy Tarreau | e1582eb | 2010-12-12 13:10:11 +0100 | [diff] [blame] | 5102 | if (msg->err_pos >= 0) |
Willy Tarreau | 8a0cef2 | 2012-03-09 13:39:23 +0100 | [diff] [blame] | 5103 | http_capture_bad_message(&s->fe->invalid_req, s, msg, HTTP_MSG_TRAILERS, s->be); |
Willy Tarreau | d98cf93 | 2009-12-27 22:54:55 +0100 | [diff] [blame] | 5104 | goto return_bad_req; |
Willy Tarreau | da7ff64 | 2010-06-23 11:44:09 +0200 | [diff] [blame] | 5105 | } |
Willy Tarreau | d98cf93 | 2009-12-27 22:54:55 +0100 | [diff] [blame] | 5106 | /* we're in HTTP_MSG_DONE now */ |
| 5107 | } |
Willy Tarreau | 610ecce | 2010-01-04 21:15:02 +0100 | [diff] [blame] | 5108 | else { |
Willy Tarreau | e1582eb | 2010-12-12 13:10:11 +0100 | [diff] [blame] | 5109 | int old_state = msg->msg_state; |
| 5110 | |
Willy Tarreau | 610ecce | 2010-01-04 21:15:02 +0100 | [diff] [blame] | 5111 | /* other states, DONE...TUNNEL */ |
Willy Tarreau | 4fe4190 | 2010-06-07 22:27:41 +0200 | [diff] [blame] | 5112 | /* for keep-alive we don't want to forward closes on DONE */ |
Willy Tarreau | 92aa1fa | 2010-08-28 18:57:20 +0200 | [diff] [blame] | 5113 | if ((txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_KAL || |
| 5114 | (txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_SCL) |
Willy Tarreau | 8263d2b | 2012-08-28 00:06:31 +0200 | [diff] [blame] | 5115 | channel_dont_close(req); |
Willy Tarreau | 610ecce | 2010-01-04 21:15:02 +0100 | [diff] [blame] | 5116 | if (http_resync_states(s)) { |
| 5117 | /* some state changes occurred, maybe the analyser |
| 5118 | * was disabled too. |
Willy Tarreau | face839 | 2010-01-03 11:37:54 +0100 | [diff] [blame] | 5119 | */ |
Willy Tarreau | 3fe693b | 2010-12-12 12:50:05 +0100 | [diff] [blame] | 5120 | if (unlikely(msg->msg_state == HTTP_MSG_ERROR)) { |
Willy Tarreau | 03cdb7c | 2012-08-27 23:14:58 +0200 | [diff] [blame] | 5121 | if (req->flags & CF_SHUTW) { |
Willy Tarreau | 3fe693b | 2010-12-12 12:50:05 +0100 | [diff] [blame] | 5122 | /* request errors are most likely due to |
| 5123 | * the server aborting the transfer. |
| 5124 | */ |
Willy Tarreau | ed2fd2d | 2010-12-29 11:23:27 +0100 | [diff] [blame] | 5125 | goto aborted_xfer; |
Willy Tarreau | 3fe693b | 2010-12-12 12:50:05 +0100 | [diff] [blame] | 5126 | } |
Willy Tarreau | e1582eb | 2010-12-12 13:10:11 +0100 | [diff] [blame] | 5127 | if (msg->err_pos >= 0) |
Willy Tarreau | 8a0cef2 | 2012-03-09 13:39:23 +0100 | [diff] [blame] | 5128 | http_capture_bad_message(&s->fe->invalid_req, s, msg, old_state, s->be); |
Willy Tarreau | 610ecce | 2010-01-04 21:15:02 +0100 | [diff] [blame] | 5129 | goto return_bad_req; |
Willy Tarreau | 3fe693b | 2010-12-12 12:50:05 +0100 | [diff] [blame] | 5130 | } |
Willy Tarreau | 610ecce | 2010-01-04 21:15:02 +0100 | [diff] [blame] | 5131 | return 1; |
Willy Tarreau | b608feb | 2010-01-02 22:47:18 +0100 | [diff] [blame] | 5132 | } |
Willy Tarreau | 5c54c71 | 2010-07-17 08:02:58 +0200 | [diff] [blame] | 5133 | |
| 5134 | /* If "option abortonclose" is set on the backend, we |
| 5135 | * want to monitor the client's connection and forward |
| 5136 | * any shutdown notification to the server, which will |
| 5137 | * decide whether to close or to go on processing the |
| 5138 | * request. |
| 5139 | */ |
| 5140 | if (s->be->options & PR_O_ABRT_CLOSE) { |
Willy Tarreau | 8263d2b | 2012-08-28 00:06:31 +0200 | [diff] [blame] | 5141 | channel_auto_read(req); |
| 5142 | channel_auto_close(req); |
Willy Tarreau | 5c54c71 | 2010-07-17 08:02:58 +0200 | [diff] [blame] | 5143 | } |
Willy Tarreau | 58bd8fd | 2010-09-28 14:16:41 +0200 | [diff] [blame] | 5144 | else if (s->txn.meth == HTTP_METH_POST) { |
| 5145 | /* POST requests may require to read extra CRLF |
| 5146 | * sent by broken browsers and which could cause |
| 5147 | * an RST to be sent upon close on some systems |
| 5148 | * (eg: Linux). |
| 5149 | */ |
Willy Tarreau | 8263d2b | 2012-08-28 00:06:31 +0200 | [diff] [blame] | 5150 | channel_auto_read(req); |
Willy Tarreau | 58bd8fd | 2010-09-28 14:16:41 +0200 | [diff] [blame] | 5151 | } |
Willy Tarreau | 5c54c71 | 2010-07-17 08:02:58 +0200 | [diff] [blame] | 5152 | |
Willy Tarreau | 610ecce | 2010-01-04 21:15:02 +0100 | [diff] [blame] | 5153 | return 0; |
Willy Tarreau | d98cf93 | 2009-12-27 22:54:55 +0100 | [diff] [blame] | 5154 | } |
| 5155 | } |
| 5156 | |
Willy Tarreau | d98cf93 | 2009-12-27 22:54:55 +0100 | [diff] [blame] | 5157 | missing_data: |
Willy Tarreau | f5c8bd6 | 2010-01-04 07:10:34 +0100 | [diff] [blame] | 5158 | /* stop waiting for data if the input is closed before the end */ |
Willy Tarreau | 03cdb7c | 2012-08-27 23:14:58 +0200 | [diff] [blame] | 5159 | if (req->flags & CF_SHUTR) { |
Willy Tarreau | 79ebac6 | 2010-06-07 13:47:49 +0200 | [diff] [blame] | 5160 | if (!(s->flags & SN_ERR_MASK)) |
| 5161 | s->flags |= SN_ERR_CLICL; |
Willy Tarreau | ed2fd2d | 2010-12-29 11:23:27 +0100 | [diff] [blame] | 5162 | if (!(s->flags & SN_FINST_MASK)) { |
| 5163 | if (txn->rsp.msg_state < HTTP_MSG_ERROR) |
| 5164 | s->flags |= SN_FINST_H; |
| 5165 | else |
| 5166 | s->flags |= SN_FINST_D; |
| 5167 | } |
| 5168 | |
Willy Tarreau | 7d0aaf3 | 2011-03-10 23:25:56 +0100 | [diff] [blame] | 5169 | s->fe->fe_counters.cli_aborts++; |
| 5170 | s->be->be_counters.cli_aborts++; |
Willy Tarreau | 3fdb366 | 2012-11-12 00:42:33 +0100 | [diff] [blame] | 5171 | if (objt_server(s->target)) |
| 5172 | objt_server(s->target)->counters.cli_aborts++; |
Willy Tarreau | ed2fd2d | 2010-12-29 11:23:27 +0100 | [diff] [blame] | 5173 | |
| 5174 | goto return_bad_req_stats_ok; |
Willy Tarreau | 79ebac6 | 2010-06-07 13:47:49 +0200 | [diff] [blame] | 5175 | } |
Willy Tarreau | f5c8bd6 | 2010-01-04 07:10:34 +0100 | [diff] [blame] | 5176 | |
Willy Tarreau | f5c8bd6 | 2010-01-04 07:10:34 +0100 | [diff] [blame] | 5177 | /* waiting for the last bits to leave the buffer */ |
Willy Tarreau | 03cdb7c | 2012-08-27 23:14:58 +0200 | [diff] [blame] | 5178 | if (req->flags & CF_SHUTW) |
Willy Tarreau | ed2fd2d | 2010-12-29 11:23:27 +0100 | [diff] [blame] | 5179 | goto aborted_xfer; |
Willy Tarreau | 610ecce | 2010-01-04 21:15:02 +0100 | [diff] [blame] | 5180 | |
Willy Tarreau | 92aa1fa | 2010-08-28 18:57:20 +0200 | [diff] [blame] | 5181 | /* 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] | 5182 | * 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] | 5183 | */ |
Willy Tarreau | a36fc4d | 2012-02-17 17:39:37 +0100 | [diff] [blame] | 5184 | if (msg->flags & HTTP_MSGF_TE_CHNK) |
Willy Tarreau | 8263d2b | 2012-08-28 00:06:31 +0200 | [diff] [blame] | 5185 | channel_dont_close(req); |
Willy Tarreau | 92aa1fa | 2010-08-28 18:57:20 +0200 | [diff] [blame] | 5186 | |
Willy Tarreau | 5c62092 | 2011-05-11 19:56:11 +0200 | [diff] [blame] | 5187 | /* 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] | 5188 | * 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] | 5189 | * 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] | 5190 | * modes are already handled by the stream sock layer. We must not do |
| 5191 | * this in content-length mode because it could present the MSG_MORE |
| 5192 | * flag with the last block of forwarded data, which would cause an |
| 5193 | * additional delay to be observed by the receiver. |
Willy Tarreau | 5c62092 | 2011-05-11 19:56:11 +0200 | [diff] [blame] | 5194 | */ |
Willy Tarreau | a36fc4d | 2012-02-17 17:39:37 +0100 | [diff] [blame] | 5195 | if (msg->flags & HTTP_MSGF_TE_CHNK) |
Willy Tarreau | 03cdb7c | 2012-08-27 23:14:58 +0200 | [diff] [blame] | 5196 | req->flags |= CF_EXPECT_MORE; |
Willy Tarreau | 5c62092 | 2011-05-11 19:56:11 +0200 | [diff] [blame] | 5197 | |
Willy Tarreau | 610ecce | 2010-01-04 21:15:02 +0100 | [diff] [blame] | 5198 | http_silent_debug(__LINE__, s); |
Willy Tarreau | f5c8bd6 | 2010-01-04 07:10:34 +0100 | [diff] [blame] | 5199 | return 0; |
| 5200 | |
Willy Tarreau | d98cf93 | 2009-12-27 22:54:55 +0100 | [diff] [blame] | 5201 | return_bad_req: /* let's centralize all bad requests */ |
Willy Tarreau | 7d0aaf3 | 2011-03-10 23:25:56 +0100 | [diff] [blame] | 5202 | s->fe->fe_counters.failed_req++; |
Willy Tarreau | d98cf93 | 2009-12-27 22:54:55 +0100 | [diff] [blame] | 5203 | if (s->listener->counters) |
| 5204 | s->listener->counters->failed_req++; |
Willy Tarreau | ed2fd2d | 2010-12-29 11:23:27 +0100 | [diff] [blame] | 5205 | return_bad_req_stats_ok: |
| 5206 | txn->req.msg_state = HTTP_MSG_ERROR; |
| 5207 | if (txn->status) { |
| 5208 | /* Note: we don't send any error if some data were already sent */ |
| 5209 | stream_int_retnclose(req->prod, NULL); |
| 5210 | } else { |
| 5211 | txn->status = 400; |
Willy Tarreau | 783f258 | 2012-09-04 12:19:04 +0200 | [diff] [blame] | 5212 | stream_int_retnclose(req->prod, http_error_message(s, HTTP_ERR_400)); |
Willy Tarreau | ed2fd2d | 2010-12-29 11:23:27 +0100 | [diff] [blame] | 5213 | } |
| 5214 | req->analysers = 0; |
| 5215 | s->rep->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] | 5216 | |
| 5217 | if (!(s->flags & SN_ERR_MASK)) |
| 5218 | s->flags |= SN_ERR_PRXCOND; |
Willy Tarreau | ed2fd2d | 2010-12-29 11:23:27 +0100 | [diff] [blame] | 5219 | if (!(s->flags & SN_FINST_MASK)) { |
| 5220 | if (txn->rsp.msg_state < HTTP_MSG_ERROR) |
| 5221 | s->flags |= SN_FINST_H; |
| 5222 | else |
| 5223 | s->flags |= SN_FINST_D; |
| 5224 | } |
| 5225 | return 0; |
| 5226 | |
| 5227 | aborted_xfer: |
| 5228 | txn->req.msg_state = HTTP_MSG_ERROR; |
| 5229 | if (txn->status) { |
| 5230 | /* Note: we don't send any error if some data were already sent */ |
| 5231 | stream_int_retnclose(req->prod, NULL); |
| 5232 | } else { |
| 5233 | txn->status = 502; |
Willy Tarreau | 783f258 | 2012-09-04 12:19:04 +0200 | [diff] [blame] | 5234 | stream_int_retnclose(req->prod, http_error_message(s, HTTP_ERR_502)); |
Willy Tarreau | ed2fd2d | 2010-12-29 11:23:27 +0100 | [diff] [blame] | 5235 | } |
| 5236 | req->analysers = 0; |
| 5237 | s->rep->analysers = 0; /* we're in data phase, we want to abort both directions */ |
| 5238 | |
Willy Tarreau | 7d0aaf3 | 2011-03-10 23:25:56 +0100 | [diff] [blame] | 5239 | s->fe->fe_counters.srv_aborts++; |
| 5240 | s->be->be_counters.srv_aborts++; |
Willy Tarreau | 3fdb366 | 2012-11-12 00:42:33 +0100 | [diff] [blame] | 5241 | if (objt_server(s->target)) |
| 5242 | objt_server(s->target)->counters.srv_aborts++; |
Willy Tarreau | ed2fd2d | 2010-12-29 11:23:27 +0100 | [diff] [blame] | 5243 | |
| 5244 | if (!(s->flags & SN_ERR_MASK)) |
| 5245 | s->flags |= SN_ERR_SRVCL; |
| 5246 | if (!(s->flags & SN_FINST_MASK)) { |
| 5247 | if (txn->rsp.msg_state < HTTP_MSG_ERROR) |
| 5248 | s->flags |= SN_FINST_H; |
| 5249 | else |
| 5250 | s->flags |= SN_FINST_D; |
| 5251 | } |
Willy Tarreau | d98cf93 | 2009-12-27 22:54:55 +0100 | [diff] [blame] | 5252 | return 0; |
| 5253 | } |
| 5254 | |
Willy Tarreau | b37c27e | 2009-10-18 22:53:08 +0200 | [diff] [blame] | 5255 | /* This stream analyser waits for a complete HTTP response. It returns 1 if the |
| 5256 | * processing can continue on next analysers, or zero if it either needs more |
| 5257 | * data or wants to immediately abort the response (eg: timeout, error, ...). It |
| 5258 | * is tied to AN_RES_WAIT_HTTP and may may remove itself from s->rep->analysers |
| 5259 | * when it has nothing left to do, and may remove any analyser when it wants to |
| 5260 | * abort. |
Willy Tarreau | c65a3ba | 2008-08-11 23:42:50 +0200 | [diff] [blame] | 5261 | */ |
Willy Tarreau | 7421efb | 2012-07-02 15:11:27 +0200 | [diff] [blame] | 5262 | int http_wait_for_response(struct session *s, struct channel *rep, int an_bit) |
Willy Tarreau | c65a3ba | 2008-08-11 23:42:50 +0200 | [diff] [blame] | 5263 | { |
Willy Tarreau | b37c27e | 2009-10-18 22:53:08 +0200 | [diff] [blame] | 5264 | struct http_txn *txn = &s->txn; |
| 5265 | struct http_msg *msg = &txn->rsp; |
Willy Tarreau | b8c82c2 | 2009-10-18 23:45:12 +0200 | [diff] [blame] | 5266 | struct hdr_ctx ctx; |
Willy Tarreau | e8e785b | 2009-12-26 15:34:26 +0100 | [diff] [blame] | 5267 | int use_close_only; |
Willy Tarreau | b37c27e | 2009-10-18 22:53:08 +0200 | [diff] [blame] | 5268 | int cur_idx; |
Krzysztof Piotr Oledzki | 5fb1882 | 2009-10-13 21:14:09 +0200 | [diff] [blame] | 5269 | int n; |
Willy Tarreau | adfb856 | 2008-08-11 15:24:42 +0200 | [diff] [blame] | 5270 | |
Willy Tarreau | 02d6cfc | 2012-03-01 18:19:58 +0100 | [diff] [blame] | 5271 | DPRINTF(stderr,"[%u] %s: session=%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] | 5272 | now_ms, __FUNCTION__, |
Willy Tarreau | b37c27e | 2009-10-18 22:53:08 +0200 | [diff] [blame] | 5273 | s, |
Willy Tarreau | 3a16b2c | 2008-08-28 08:54:27 +0200 | [diff] [blame] | 5274 | rep, |
| 5275 | rep->rex, rep->wex, |
| 5276 | rep->flags, |
Willy Tarreau | 9b28e03 | 2012-10-12 23:49:43 +0200 | [diff] [blame] | 5277 | rep->buf->i, |
Willy Tarreau | 3a16b2c | 2008-08-28 08:54:27 +0200 | [diff] [blame] | 5278 | rep->analysers); |
Willy Tarreau | 67f0eea | 2008-08-10 22:55:22 +0200 | [diff] [blame] | 5279 | |
Willy Tarreau | b37c27e | 2009-10-18 22:53:08 +0200 | [diff] [blame] | 5280 | /* |
| 5281 | * Now parse the partial (or complete) lines. |
| 5282 | * We will check the response syntax, and also join multi-line |
| 5283 | * headers. An index of all the lines will be elaborated while |
| 5284 | * parsing. |
| 5285 | * |
| 5286 | * For the parsing, we use a 28 states FSM. |
| 5287 | * |
| 5288 | * Here is the information we currently have : |
Willy Tarreau | 9b28e03 | 2012-10-12 23:49:43 +0200 | [diff] [blame] | 5289 | * rep->buf->p = beginning of response |
| 5290 | * rep->buf->p + msg->eoh = end of processed headers / start of current one |
| 5291 | * rep->buf->p + rep->buf->i = end of input data |
Willy Tarreau | 2692736 | 2012-05-18 23:22:52 +0200 | [diff] [blame] | 5292 | * msg->eol = end of current header or line (LF or CRLF) |
| 5293 | * msg->next = first non-visited byte |
Willy Tarreau | b37c27e | 2009-10-18 22:53:08 +0200 | [diff] [blame] | 5294 | */ |
| 5295 | |
Willy Tarreau | 83e3af0 | 2009-12-28 17:39:57 +0100 | [diff] [blame] | 5296 | /* There's a protected area at the end of the buffer for rewriting |
| 5297 | * purposes. We don't want to start to parse the request if the |
| 5298 | * protected area is affected, because we may have to move processed |
| 5299 | * data later, which is much more complicated. |
| 5300 | */ |
Willy Tarreau | 9b28e03 | 2012-10-12 23:49:43 +0200 | [diff] [blame] | 5301 | if (buffer_not_empty(rep->buf) && msg->msg_state < HTTP_MSG_ERROR) { |
Willy Tarreau | 379357a | 2013-06-08 12:55:46 +0200 | [diff] [blame] | 5302 | if (unlikely(!channel_reserved(rep))) { |
| 5303 | /* some data has still not left the buffer, wake us once that's done */ |
| 5304 | if (rep->flags & (CF_SHUTW|CF_SHUTW_NOW|CF_WRITE_ERROR|CF_WRITE_TIMEOUT)) |
| 5305 | goto abort_response; |
| 5306 | channel_dont_close(rep); |
| 5307 | rep->flags |= CF_READ_DONTWAIT; /* try to get back here ASAP */ |
Willy Tarreau | d7ad9f5 | 2013-12-31 17:26:25 +0100 | [diff] [blame] | 5308 | rep->flags |= CF_WAKE_WRITE; |
Willy Tarreau | 379357a | 2013-06-08 12:55:46 +0200 | [diff] [blame] | 5309 | return 0; |
Willy Tarreau | 83e3af0 | 2009-12-28 17:39:57 +0100 | [diff] [blame] | 5310 | } |
| 5311 | |
Willy Tarreau | 379357a | 2013-06-08 12:55:46 +0200 | [diff] [blame] | 5312 | if (unlikely(bi_end(rep->buf) < b_ptr(rep->buf, msg->next) || |
| 5313 | bi_end(rep->buf) > rep->buf->data + rep->buf->size - global.tune.maxrewrite)) |
| 5314 | buffer_slow_realign(rep->buf); |
| 5315 | |
Willy Tarreau | 9b28e03 | 2012-10-12 23:49:43 +0200 | [diff] [blame] | 5316 | if (likely(msg->next < rep->buf->i)) |
Willy Tarreau | a560c21 | 2012-03-09 13:50:57 +0100 | [diff] [blame] | 5317 | http_msg_analyzer(msg, &txn->hdr_idx); |
Willy Tarreau | 83e3af0 | 2009-12-28 17:39:57 +0100 | [diff] [blame] | 5318 | } |
| 5319 | |
Willy Tarreau | b37c27e | 2009-10-18 22:53:08 +0200 | [diff] [blame] | 5320 | /* 1: we might have to print this header in debug mode */ |
| 5321 | if (unlikely((global.mode & MODE_DEBUG) && |
| 5322 | (!(global.mode & MODE_QUIET) || (global.mode & MODE_VERBOSE)) && |
Willy Tarreau | 655dce9 | 2009-11-08 13:10:58 +0100 | [diff] [blame] | 5323 | (msg->msg_state >= HTTP_MSG_BODY || msg->msg_state == HTTP_MSG_ERROR))) { |
Willy Tarreau | b37c27e | 2009-10-18 22:53:08 +0200 | [diff] [blame] | 5324 | char *eol, *sol; |
Willy Tarreau | f5483bf | 2008-08-14 18:35:40 +0200 | [diff] [blame] | 5325 | |
Willy Tarreau | 9b28e03 | 2012-10-12 23:49:43 +0200 | [diff] [blame] | 5326 | sol = rep->buf->p; |
| 5327 | 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] | 5328 | debug_hdr("srvrep", s, sol, eol); |
Willy Tarreau | f5483bf | 2008-08-14 18:35:40 +0200 | [diff] [blame] | 5329 | |
Willy Tarreau | b37c27e | 2009-10-18 22:53:08 +0200 | [diff] [blame] | 5330 | sol += hdr_idx_first_pos(&txn->hdr_idx); |
| 5331 | cur_idx = hdr_idx_first_idx(&txn->hdr_idx); |
Willy Tarreau | f5483bf | 2008-08-14 18:35:40 +0200 | [diff] [blame] | 5332 | |
Willy Tarreau | b37c27e | 2009-10-18 22:53:08 +0200 | [diff] [blame] | 5333 | while (cur_idx) { |
| 5334 | eol = sol + txn->hdr_idx.v[cur_idx].len; |
| 5335 | debug_hdr("srvhdr", s, sol, eol); |
| 5336 | sol = eol + txn->hdr_idx.v[cur_idx].cr + 1; |
| 5337 | cur_idx = txn->hdr_idx.v[cur_idx].next; |
| 5338 | } |
| 5339 | } |
Willy Tarreau | f5483bf | 2008-08-14 18:35:40 +0200 | [diff] [blame] | 5340 | |
Willy Tarreau | b37c27e | 2009-10-18 22:53:08 +0200 | [diff] [blame] | 5341 | /* |
| 5342 | * Now we quickly check if we have found a full valid response. |
| 5343 | * If not so, we check the FD and buffer states before leaving. |
| 5344 | * A full response is indicated by the fact that we have seen |
Willy Tarreau | 655dce9 | 2009-11-08 13:10:58 +0100 | [diff] [blame] | 5345 | * the double LF/CRLF, so the state is >= HTTP_MSG_BODY. Invalid |
Willy Tarreau | b37c27e | 2009-10-18 22:53:08 +0200 | [diff] [blame] | 5346 | * responses are checked first. |
| 5347 | * |
| 5348 | * Depending on whether the client is still there or not, we |
| 5349 | * may send an error response back or not. Note that normally |
| 5350 | * we should only check for HTTP status there, and check I/O |
| 5351 | * errors somewhere else. |
| 5352 | */ |
Willy Tarreau | f5483bf | 2008-08-14 18:35:40 +0200 | [diff] [blame] | 5353 | |
Willy Tarreau | 655dce9 | 2009-11-08 13:10:58 +0100 | [diff] [blame] | 5354 | if (unlikely(msg->msg_state < HTTP_MSG_BODY)) { |
Willy Tarreau | b37c27e | 2009-10-18 22:53:08 +0200 | [diff] [blame] | 5355 | /* Invalid response */ |
| 5356 | if (unlikely(msg->msg_state == HTTP_MSG_ERROR)) { |
| 5357 | /* we detected a parsing error. We want to archive this response |
| 5358 | * in the dedicated proxy area for later troubleshooting. |
| 5359 | */ |
| 5360 | hdr_response_bad: |
| 5361 | if (msg->msg_state == HTTP_MSG_ERROR || msg->err_pos >= 0) |
Willy Tarreau | 8a0cef2 | 2012-03-09 13:39:23 +0100 | [diff] [blame] | 5362 | http_capture_bad_message(&s->be->invalid_rep, s, msg, msg->msg_state, s->fe); |
Willy Tarreau | b37c27e | 2009-10-18 22:53:08 +0200 | [diff] [blame] | 5363 | |
Willy Tarreau | 7d0aaf3 | 2011-03-10 23:25:56 +0100 | [diff] [blame] | 5364 | s->be->be_counters.failed_resp++; |
Willy Tarreau | 3fdb366 | 2012-11-12 00:42:33 +0100 | [diff] [blame] | 5365 | if (objt_server(s->target)) { |
| 5366 | objt_server(s->target)->counters.failed_resp++; |
| 5367 | health_adjust(objt_server(s->target), HANA_STATUS_HTTP_HDRRSP); |
Krzysztof Piotr Oledzki | 97f07b8 | 2009-12-15 22:31:24 +0100 | [diff] [blame] | 5368 | } |
Willy Tarreau | 6464841 | 2010-03-05 10:41:54 +0100 | [diff] [blame] | 5369 | abort_response: |
Willy Tarreau | 8263d2b | 2012-08-28 00:06:31 +0200 | [diff] [blame] | 5370 | channel_auto_close(rep); |
Willy Tarreau | b37c27e | 2009-10-18 22:53:08 +0200 | [diff] [blame] | 5371 | rep->analysers = 0; |
| 5372 | txn->status = 502; |
Willy Tarreau | c88ea68 | 2009-12-29 14:56:36 +0100 | [diff] [blame] | 5373 | rep->prod->flags |= SI_FL_NOLINGER; |
Willy Tarreau | 9dab5fc | 2012-05-07 11:56:55 +0200 | [diff] [blame] | 5374 | bi_erase(rep); |
Willy Tarreau | 783f258 | 2012-09-04 12:19:04 +0200 | [diff] [blame] | 5375 | stream_int_retnclose(rep->cons, http_error_message(s, HTTP_ERR_502)); |
Willy Tarreau | b37c27e | 2009-10-18 22:53:08 +0200 | [diff] [blame] | 5376 | |
| 5377 | if (!(s->flags & SN_ERR_MASK)) |
| 5378 | s->flags |= SN_ERR_PRXCOND; |
| 5379 | if (!(s->flags & SN_FINST_MASK)) |
| 5380 | s->flags |= SN_FINST_H; |
| 5381 | |
| 5382 | return 0; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 5383 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 5384 | |
Willy Tarreau | b37c27e | 2009-10-18 22:53:08 +0200 | [diff] [blame] | 5385 | /* too large response does not fit in buffer. */ |
Willy Tarreau | 9b28e03 | 2012-10-12 23:49:43 +0200 | [diff] [blame] | 5386 | else if (buffer_full(rep->buf, global.tune.maxrewrite)) { |
Willy Tarreau | fec4d89 | 2011-09-02 20:04:57 +0200 | [diff] [blame] | 5387 | if (msg->err_pos < 0) |
Willy Tarreau | 9b28e03 | 2012-10-12 23:49:43 +0200 | [diff] [blame] | 5388 | msg->err_pos = rep->buf->i; |
Willy Tarreau | b37c27e | 2009-10-18 22:53:08 +0200 | [diff] [blame] | 5389 | goto hdr_response_bad; |
| 5390 | } |
Willy Tarreau | f5483bf | 2008-08-14 18:35:40 +0200 | [diff] [blame] | 5391 | |
Willy Tarreau | b37c27e | 2009-10-18 22:53:08 +0200 | [diff] [blame] | 5392 | /* read error */ |
Willy Tarreau | 03cdb7c | 2012-08-27 23:14:58 +0200 | [diff] [blame] | 5393 | else if (rep->flags & CF_READ_ERROR) { |
Willy Tarreau | b37c27e | 2009-10-18 22:53:08 +0200 | [diff] [blame] | 5394 | if (msg->err_pos >= 0) |
Willy Tarreau | 8a0cef2 | 2012-03-09 13:39:23 +0100 | [diff] [blame] | 5395 | http_capture_bad_message(&s->be->invalid_rep, s, msg, msg->msg_state, s->fe); |
Willy Tarreau | 6b726ad | 2013-12-15 19:31:37 +0100 | [diff] [blame] | 5396 | else if (txn->flags & TX_NOT_FIRST) |
| 5397 | goto abort_keep_alive; |
Willy Tarreau | 4076a15 | 2009-04-02 15:18:36 +0200 | [diff] [blame] | 5398 | |
Willy Tarreau | 7d0aaf3 | 2011-03-10 23:25:56 +0100 | [diff] [blame] | 5399 | s->be->be_counters.failed_resp++; |
Willy Tarreau | 3fdb366 | 2012-11-12 00:42:33 +0100 | [diff] [blame] | 5400 | if (objt_server(s->target)) { |
| 5401 | objt_server(s->target)->counters.failed_resp++; |
| 5402 | health_adjust(objt_server(s->target), HANA_STATUS_HTTP_READ_ERROR); |
Krzysztof Piotr Oledzki | 97f07b8 | 2009-12-15 22:31:24 +0100 | [diff] [blame] | 5403 | } |
Willy Tarreau | 461f662 | 2008-08-15 23:43:19 +0200 | [diff] [blame] | 5404 | |
Willy Tarreau | 8263d2b | 2012-08-28 00:06:31 +0200 | [diff] [blame] | 5405 | channel_auto_close(rep); |
Willy Tarreau | b37c27e | 2009-10-18 22:53:08 +0200 | [diff] [blame] | 5406 | rep->analysers = 0; |
| 5407 | txn->status = 502; |
Willy Tarreau | c88ea68 | 2009-12-29 14:56:36 +0100 | [diff] [blame] | 5408 | rep->prod->flags |= SI_FL_NOLINGER; |
Willy Tarreau | 9dab5fc | 2012-05-07 11:56:55 +0200 | [diff] [blame] | 5409 | bi_erase(rep); |
Willy Tarreau | 783f258 | 2012-09-04 12:19:04 +0200 | [diff] [blame] | 5410 | stream_int_retnclose(rep->cons, http_error_message(s, HTTP_ERR_502)); |
Willy Tarreau | 816b979 | 2009-09-15 21:25:21 +0200 | [diff] [blame] | 5411 | |
Willy Tarreau | b37c27e | 2009-10-18 22:53:08 +0200 | [diff] [blame] | 5412 | if (!(s->flags & SN_ERR_MASK)) |
| 5413 | s->flags |= SN_ERR_SRVCL; |
| 5414 | if (!(s->flags & SN_FINST_MASK)) |
| 5415 | s->flags |= SN_FINST_H; |
Willy Tarreau | cebf57e | 2008-08-15 18:16:37 +0200 | [diff] [blame] | 5416 | return 0; |
Willy Tarreau | f5483bf | 2008-08-14 18:35:40 +0200 | [diff] [blame] | 5417 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 5418 | |
Willy Tarreau | b37c27e | 2009-10-18 22:53:08 +0200 | [diff] [blame] | 5419 | /* read timeout : return a 504 to the client. */ |
Willy Tarreau | 03cdb7c | 2012-08-27 23:14:58 +0200 | [diff] [blame] | 5420 | else if (rep->flags & CF_READ_TIMEOUT) { |
Willy Tarreau | b37c27e | 2009-10-18 22:53:08 +0200 | [diff] [blame] | 5421 | if (msg->err_pos >= 0) |
Willy Tarreau | 8a0cef2 | 2012-03-09 13:39:23 +0100 | [diff] [blame] | 5422 | http_capture_bad_message(&s->be->invalid_rep, s, msg, msg->msg_state, s->fe); |
Willy Tarreau | 6b726ad | 2013-12-15 19:31:37 +0100 | [diff] [blame] | 5423 | else if (txn->flags & TX_NOT_FIRST) |
| 5424 | goto abort_keep_alive; |
Willy Tarreau | 21d2af3 | 2008-02-14 20:25:24 +0100 | [diff] [blame] | 5425 | |
Willy Tarreau | 7d0aaf3 | 2011-03-10 23:25:56 +0100 | [diff] [blame] | 5426 | s->be->be_counters.failed_resp++; |
Willy Tarreau | 3fdb366 | 2012-11-12 00:42:33 +0100 | [diff] [blame] | 5427 | if (objt_server(s->target)) { |
| 5428 | objt_server(s->target)->counters.failed_resp++; |
| 5429 | health_adjust(objt_server(s->target), HANA_STATUS_HTTP_READ_TIMEOUT); |
Krzysztof Piotr Oledzki | 97f07b8 | 2009-12-15 22:31:24 +0100 | [diff] [blame] | 5430 | } |
Willy Tarreau | 21d2af3 | 2008-02-14 20:25:24 +0100 | [diff] [blame] | 5431 | |
Willy Tarreau | 8263d2b | 2012-08-28 00:06:31 +0200 | [diff] [blame] | 5432 | channel_auto_close(rep); |
Willy Tarreau | b37c27e | 2009-10-18 22:53:08 +0200 | [diff] [blame] | 5433 | rep->analysers = 0; |
| 5434 | txn->status = 504; |
Willy Tarreau | c88ea68 | 2009-12-29 14:56:36 +0100 | [diff] [blame] | 5435 | rep->prod->flags |= SI_FL_NOLINGER; |
Willy Tarreau | 9dab5fc | 2012-05-07 11:56:55 +0200 | [diff] [blame] | 5436 | bi_erase(rep); |
Willy Tarreau | 783f258 | 2012-09-04 12:19:04 +0200 | [diff] [blame] | 5437 | stream_int_retnclose(rep->cons, http_error_message(s, HTTP_ERR_504)); |
Willy Tarreau | 4076a15 | 2009-04-02 15:18:36 +0200 | [diff] [blame] | 5438 | |
Willy Tarreau | b37c27e | 2009-10-18 22:53:08 +0200 | [diff] [blame] | 5439 | if (!(s->flags & SN_ERR_MASK)) |
| 5440 | s->flags |= SN_ERR_SRVTO; |
| 5441 | if (!(s->flags & SN_FINST_MASK)) |
| 5442 | s->flags |= SN_FINST_H; |
| 5443 | return 0; |
| 5444 | } |
Willy Tarreau | a7c5276 | 2008-08-16 18:40:18 +0200 | [diff] [blame] | 5445 | |
Willy Tarreau | f003d37 | 2012-11-26 13:35:37 +0100 | [diff] [blame] | 5446 | /* client abort with an abortonclose */ |
| 5447 | else if ((rep->flags & CF_SHUTR) && ((s->req->flags & (CF_SHUTR|CF_SHUTW)) == (CF_SHUTR|CF_SHUTW))) { |
| 5448 | s->fe->fe_counters.cli_aborts++; |
| 5449 | s->be->be_counters.cli_aborts++; |
| 5450 | if (objt_server(s->target)) |
| 5451 | objt_server(s->target)->counters.cli_aborts++; |
| 5452 | |
| 5453 | rep->analysers = 0; |
| 5454 | channel_auto_close(rep); |
| 5455 | |
| 5456 | txn->status = 400; |
| 5457 | bi_erase(rep); |
| 5458 | stream_int_retnclose(rep->cons, http_error_message(s, HTTP_ERR_400)); |
| 5459 | |
| 5460 | if (!(s->flags & SN_ERR_MASK)) |
| 5461 | s->flags |= SN_ERR_CLICL; |
| 5462 | if (!(s->flags & SN_FINST_MASK)) |
| 5463 | s->flags |= SN_FINST_H; |
| 5464 | |
| 5465 | /* process_session() will take care of the error */ |
| 5466 | return 0; |
| 5467 | } |
| 5468 | |
Willy Tarreau | 3b8c08a | 2011-09-02 20:16:24 +0200 | [diff] [blame] | 5469 | /* 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] | 5470 | else if (rep->flags & CF_SHUTR) { |
Willy Tarreau | 3b8c08a | 2011-09-02 20:16:24 +0200 | [diff] [blame] | 5471 | if (msg->msg_state >= HTTP_MSG_RPVER || msg->err_pos >= 0) |
Willy Tarreau | 8a0cef2 | 2012-03-09 13:39:23 +0100 | [diff] [blame] | 5472 | http_capture_bad_message(&s->be->invalid_rep, s, msg, msg->msg_state, s->fe); |
Willy Tarreau | 6b726ad | 2013-12-15 19:31:37 +0100 | [diff] [blame] | 5473 | else if (txn->flags & TX_NOT_FIRST) |
| 5474 | goto abort_keep_alive; |
Willy Tarreau | 21d2af3 | 2008-02-14 20:25:24 +0100 | [diff] [blame] | 5475 | |
Willy Tarreau | 7d0aaf3 | 2011-03-10 23:25:56 +0100 | [diff] [blame] | 5476 | s->be->be_counters.failed_resp++; |
Willy Tarreau | 3fdb366 | 2012-11-12 00:42:33 +0100 | [diff] [blame] | 5477 | if (objt_server(s->target)) { |
| 5478 | objt_server(s->target)->counters.failed_resp++; |
| 5479 | health_adjust(objt_server(s->target), HANA_STATUS_HTTP_BROKEN_PIPE); |
Krzysztof Piotr Oledzki | 97f07b8 | 2009-12-15 22:31:24 +0100 | [diff] [blame] | 5480 | } |
Willy Tarreau | 21d2af3 | 2008-02-14 20:25:24 +0100 | [diff] [blame] | 5481 | |
Willy Tarreau | 8263d2b | 2012-08-28 00:06:31 +0200 | [diff] [blame] | 5482 | channel_auto_close(rep); |
Willy Tarreau | b37c27e | 2009-10-18 22:53:08 +0200 | [diff] [blame] | 5483 | rep->analysers = 0; |
| 5484 | txn->status = 502; |
Willy Tarreau | c88ea68 | 2009-12-29 14:56:36 +0100 | [diff] [blame] | 5485 | rep->prod->flags |= SI_FL_NOLINGER; |
Willy Tarreau | 9dab5fc | 2012-05-07 11:56:55 +0200 | [diff] [blame] | 5486 | bi_erase(rep); |
Willy Tarreau | 783f258 | 2012-09-04 12:19:04 +0200 | [diff] [blame] | 5487 | stream_int_retnclose(rep->cons, http_error_message(s, HTTP_ERR_502)); |
Willy Tarreau | 21d2af3 | 2008-02-14 20:25:24 +0100 | [diff] [blame] | 5488 | |
Willy Tarreau | b37c27e | 2009-10-18 22:53:08 +0200 | [diff] [blame] | 5489 | if (!(s->flags & SN_ERR_MASK)) |
| 5490 | s->flags |= SN_ERR_SRVCL; |
| 5491 | if (!(s->flags & SN_FINST_MASK)) |
| 5492 | s->flags |= SN_FINST_H; |
| 5493 | return 0; |
| 5494 | } |
Krzysztof Piotr Oledzki | 5fb1882 | 2009-10-13 21:14:09 +0200 | [diff] [blame] | 5495 | |
Willy Tarreau | b37c27e | 2009-10-18 22:53:08 +0200 | [diff] [blame] | 5496 | /* write error to client (we don't send any message then) */ |
Willy Tarreau | 03cdb7c | 2012-08-27 23:14:58 +0200 | [diff] [blame] | 5497 | else if (rep->flags & CF_WRITE_ERROR) { |
Willy Tarreau | b37c27e | 2009-10-18 22:53:08 +0200 | [diff] [blame] | 5498 | if (msg->err_pos >= 0) |
Willy Tarreau | 8a0cef2 | 2012-03-09 13:39:23 +0100 | [diff] [blame] | 5499 | http_capture_bad_message(&s->be->invalid_rep, s, msg, msg->msg_state, s->fe); |
Willy Tarreau | 6b726ad | 2013-12-15 19:31:37 +0100 | [diff] [blame] | 5500 | else if (txn->flags & TX_NOT_FIRST) |
| 5501 | goto abort_keep_alive; |
Krzysztof Piotr Oledzki | 5fb1882 | 2009-10-13 21:14:09 +0200 | [diff] [blame] | 5502 | |
Willy Tarreau | 7d0aaf3 | 2011-03-10 23:25:56 +0100 | [diff] [blame] | 5503 | s->be->be_counters.failed_resp++; |
Willy Tarreau | b37c27e | 2009-10-18 22:53:08 +0200 | [diff] [blame] | 5504 | rep->analysers = 0; |
Willy Tarreau | 8263d2b | 2012-08-28 00:06:31 +0200 | [diff] [blame] | 5505 | channel_auto_close(rep); |
Willy Tarreau | b37c27e | 2009-10-18 22:53:08 +0200 | [diff] [blame] | 5506 | |
| 5507 | if (!(s->flags & SN_ERR_MASK)) |
| 5508 | s->flags |= SN_ERR_CLICL; |
| 5509 | if (!(s->flags & SN_FINST_MASK)) |
| 5510 | s->flags |= SN_FINST_H; |
| 5511 | |
| 5512 | /* process_session() will take care of the error */ |
| 5513 | return 0; |
Willy Tarreau | f5483bf | 2008-08-14 18:35:40 +0200 | [diff] [blame] | 5514 | } |
Willy Tarreau | 21d2af3 | 2008-02-14 20:25:24 +0100 | [diff] [blame] | 5515 | |
Willy Tarreau | 8263d2b | 2012-08-28 00:06:31 +0200 | [diff] [blame] | 5516 | channel_dont_close(rep); |
Willy Tarreau | 3f3997e | 2013-12-15 15:21:32 +0100 | [diff] [blame] | 5517 | rep->flags |= CF_READ_DONTWAIT; /* try to get back here ASAP */ |
Willy Tarreau | b37c27e | 2009-10-18 22:53:08 +0200 | [diff] [blame] | 5518 | return 0; |
| 5519 | } |
| 5520 | |
| 5521 | /* More interesting part now : we know that we have a complete |
| 5522 | * response which at least looks like HTTP. We have an indicator |
| 5523 | * of each header's length, so we can parse them quickly. |
| 5524 | */ |
| 5525 | |
| 5526 | if (unlikely(msg->err_pos >= 0)) |
Willy Tarreau | 8a0cef2 | 2012-03-09 13:39:23 +0100 | [diff] [blame] | 5527 | http_capture_bad_message(&s->be->invalid_rep, s, msg, msg->msg_state, s->fe); |
Willy Tarreau | b37c27e | 2009-10-18 22:53:08 +0200 | [diff] [blame] | 5528 | |
Willy Tarreau | b37c27e | 2009-10-18 22:53:08 +0200 | [diff] [blame] | 5529 | /* |
| 5530 | * 1: get the status code |
| 5531 | */ |
Willy Tarreau | 9b28e03 | 2012-10-12 23:49:43 +0200 | [diff] [blame] | 5532 | n = rep->buf->p[msg->sl.st.c] - '0'; |
Willy Tarreau | b37c27e | 2009-10-18 22:53:08 +0200 | [diff] [blame] | 5533 | if (n < 1 || n > 5) |
| 5534 | n = 0; |
Willy Tarreau | da7ff64 | 2010-06-23 11:44:09 +0200 | [diff] [blame] | 5535 | /* when the client triggers a 4xx from the server, it's most often due |
| 5536 | * to a missing object or permission. These events should be tracked |
| 5537 | * because if they happen often, it may indicate a brute force or a |
| 5538 | * vulnerability scan. |
| 5539 | */ |
| 5540 | if (n == 4) |
| 5541 | session_inc_http_err_ctr(s); |
| 5542 | |
Willy Tarreau | 3fdb366 | 2012-11-12 00:42:33 +0100 | [diff] [blame] | 5543 | if (objt_server(s->target)) |
| 5544 | objt_server(s->target)->counters.p.http.rsp[n]++; |
Willy Tarreau | b37c27e | 2009-10-18 22:53:08 +0200 | [diff] [blame] | 5545 | |
Willy Tarreau | 5b15447 | 2009-12-21 20:11:07 +0100 | [diff] [blame] | 5546 | /* check if the response is HTTP/1.1 or above */ |
| 5547 | if ((msg->sl.st.v_l == 8) && |
Willy Tarreau | 9b28e03 | 2012-10-12 23:49:43 +0200 | [diff] [blame] | 5548 | ((rep->buf->p[5] > '1') || |
| 5549 | ((rep->buf->p[5] == '1') && (rep->buf->p[7] >= '1')))) |
Willy Tarreau | a36fc4d | 2012-02-17 17:39:37 +0100 | [diff] [blame] | 5550 | msg->flags |= HTTP_MSGF_VER_11; |
Willy Tarreau | 5b15447 | 2009-12-21 20:11:07 +0100 | [diff] [blame] | 5551 | |
| 5552 | /* "connection" has not been parsed yet */ |
Willy Tarreau | 50fc777 | 2012-11-11 22:19:57 +0100 | [diff] [blame] | 5553 | 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] | 5554 | |
Willy Tarreau | e8e785b | 2009-12-26 15:34:26 +0100 | [diff] [blame] | 5555 | /* transfer length unknown*/ |
Willy Tarreau | a36fc4d | 2012-02-17 17:39:37 +0100 | [diff] [blame] | 5556 | msg->flags &= ~HTTP_MSGF_XFER_LEN; |
Willy Tarreau | e8e785b | 2009-12-26 15:34:26 +0100 | [diff] [blame] | 5557 | |
Willy Tarreau | 9b28e03 | 2012-10-12 23:49:43 +0200 | [diff] [blame] | 5558 | 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] | 5559 | |
Willy Tarreau | 3965040 | 2010-03-15 19:44:39 +0100 | [diff] [blame] | 5560 | /* Adjust server's health based on status code. Note: status codes 501 |
| 5561 | * and 505 are triggered on demand by client request, so we must not |
| 5562 | * count them as server failures. |
| 5563 | */ |
Willy Tarreau | 3fdb366 | 2012-11-12 00:42:33 +0100 | [diff] [blame] | 5564 | if (objt_server(s->target)) { |
Willy Tarreau | d45b3d5 | 2010-05-20 11:49:03 +0200 | [diff] [blame] | 5565 | 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] | 5566 | health_adjust(objt_server(s->target), HANA_STATUS_HTTP_OK); |
Willy Tarreau | d45b3d5 | 2010-05-20 11:49:03 +0200 | [diff] [blame] | 5567 | else |
Willy Tarreau | 3fdb366 | 2012-11-12 00:42:33 +0100 | [diff] [blame] | 5568 | health_adjust(objt_server(s->target), HANA_STATUS_HTTP_STS); |
Willy Tarreau | d45b3d5 | 2010-05-20 11:49:03 +0200 | [diff] [blame] | 5569 | } |
Krzysztof Piotr Oledzki | 97f07b8 | 2009-12-15 22:31:24 +0100 | [diff] [blame] | 5570 | |
Willy Tarreau | b37c27e | 2009-10-18 22:53:08 +0200 | [diff] [blame] | 5571 | /* |
| 5572 | * 2: check for cacheability. |
| 5573 | */ |
| 5574 | |
| 5575 | switch (txn->status) { |
| 5576 | case 200: |
| 5577 | case 203: |
| 5578 | case 206: |
| 5579 | case 300: |
| 5580 | case 301: |
| 5581 | case 410: |
| 5582 | /* RFC2616 @13.4: |
| 5583 | * "A response received with a status code of |
| 5584 | * 200, 203, 206, 300, 301 or 410 MAY be stored |
| 5585 | * by a cache (...) unless a cache-control |
| 5586 | * directive prohibits caching." |
| 5587 | * |
| 5588 | * RFC2616 @9.5: POST method : |
| 5589 | * "Responses to this method are not cacheable, |
| 5590 | * unless the response includes appropriate |
| 5591 | * Cache-Control or Expires header fields." |
Willy Tarreau | f5483bf | 2008-08-14 18:35:40 +0200 | [diff] [blame] | 5592 | */ |
Willy Tarreau | b37c27e | 2009-10-18 22:53:08 +0200 | [diff] [blame] | 5593 | if (likely(txn->meth != HTTP_METH_POST) && |
Willy Tarreau | 6740213 | 2012-05-31 20:40:20 +0200 | [diff] [blame] | 5594 | ((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] | 5595 | txn->flags |= TX_CACHEABLE | TX_CACHE_COOK; |
| 5596 | break; |
| 5597 | default: |
| 5598 | break; |
| 5599 | } |
Willy Tarreau | f5483bf | 2008-08-14 18:35:40 +0200 | [diff] [blame] | 5600 | |
Willy Tarreau | b37c27e | 2009-10-18 22:53:08 +0200 | [diff] [blame] | 5601 | /* |
| 5602 | * 3: we may need to capture headers |
| 5603 | */ |
| 5604 | s->logs.logwait &= ~LW_RESP; |
Willy Tarreau | 42f7d89 | 2012-03-24 08:28:09 +0100 | [diff] [blame] | 5605 | if (unlikely((s->logs.logwait & LW_RSPHDR) && txn->rsp.cap)) |
Willy Tarreau | 9b28e03 | 2012-10-12 23:49:43 +0200 | [diff] [blame] | 5606 | capture_headers(rep->buf->p, &txn->hdr_idx, |
Willy Tarreau | b37c27e | 2009-10-18 22:53:08 +0200 | [diff] [blame] | 5607 | txn->rsp.cap, s->fe->rsp_cap); |
| 5608 | |
Willy Tarreau | e8e785b | 2009-12-26 15:34:26 +0100 | [diff] [blame] | 5609 | /* 4: determine the transfer-length. |
| 5610 | * According to RFC2616 #4.4, amended by the HTTPbis working group, |
| 5611 | * the presence of a message-body in a RESPONSE and its transfer length |
| 5612 | * must be determined that way : |
Willy Tarreau | b8c82c2 | 2009-10-18 23:45:12 +0200 | [diff] [blame] | 5613 | * |
Willy Tarreau | e8e785b | 2009-12-26 15:34:26 +0100 | [diff] [blame] | 5614 | * All responses to the HEAD request method MUST NOT include a |
| 5615 | * message-body, even though the presence of entity-header fields |
| 5616 | * might lead one to believe they do. All 1xx (informational), 204 |
| 5617 | * (No Content), and 304 (Not Modified) responses MUST NOT include a |
| 5618 | * message-body. All other responses do include a message-body, |
| 5619 | * although it MAY be of zero length. |
Willy Tarreau | b8c82c2 | 2009-10-18 23:45:12 +0200 | [diff] [blame] | 5620 | * |
Willy Tarreau | e8e785b | 2009-12-26 15:34:26 +0100 | [diff] [blame] | 5621 | * 1. Any response which "MUST NOT" include a message-body (such as the |
| 5622 | * 1xx, 204 and 304 responses and any response to a HEAD request) is |
| 5623 | * always terminated by the first empty line after the header fields, |
| 5624 | * regardless of the entity-header fields present in the message. |
| 5625 | * |
| 5626 | * 2. If a Transfer-Encoding header field (Section 9.7) is present and |
| 5627 | * the "chunked" transfer-coding (Section 6.2) is used, the |
| 5628 | * transfer-length is defined by the use of this transfer-coding. |
| 5629 | * If a Transfer-Encoding header field is present and the "chunked" |
| 5630 | * transfer-coding is not present, the transfer-length is defined by |
| 5631 | * the sender closing the connection. |
| 5632 | * |
| 5633 | * 3. If a Content-Length header field is present, its decimal value in |
| 5634 | * OCTETs represents both the entity-length and the transfer-length. |
| 5635 | * If a message is received with both a Transfer-Encoding header |
| 5636 | * field and a Content-Length header field, the latter MUST be ignored. |
| 5637 | * |
| 5638 | * 4. If the message uses the media type "multipart/byteranges", and |
| 5639 | * the transfer-length is not otherwise specified, then this self- |
| 5640 | * delimiting media type defines the transfer-length. This media |
| 5641 | * type MUST NOT be used unless the sender knows that the recipient |
| 5642 | * can parse it; the presence in a request of a Range header with |
| 5643 | * multiple byte-range specifiers from a 1.1 client implies that the |
| 5644 | * client can parse multipart/byteranges responses. |
| 5645 | * |
| 5646 | * 5. By the server closing the connection. |
Willy Tarreau | b8c82c2 | 2009-10-18 23:45:12 +0200 | [diff] [blame] | 5647 | */ |
| 5648 | |
| 5649 | /* Skip parsing if no content length is possible. The response flags |
Willy Tarreau | 124d991 | 2011-03-01 20:30:48 +0100 | [diff] [blame] | 5650 | * 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] | 5651 | * 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] | 5652 | * FIXME: should we parse anyway and return an error on chunked encoding ? |
| 5653 | */ |
| 5654 | if (txn->meth == HTTP_METH_HEAD || |
| 5655 | (txn->status >= 100 && txn->status < 200) || |
Willy Tarreau | e8e785b | 2009-12-26 15:34:26 +0100 | [diff] [blame] | 5656 | txn->status == 204 || txn->status == 304) { |
Willy Tarreau | a36fc4d | 2012-02-17 17:39:37 +0100 | [diff] [blame] | 5657 | msg->flags |= HTTP_MSGF_XFER_LEN; |
Willy Tarreau | 9101535 | 2012-11-27 07:31:33 +0100 | [diff] [blame] | 5658 | s->comp_algo = NULL; |
Willy Tarreau | e8e785b | 2009-12-26 15:34:26 +0100 | [diff] [blame] | 5659 | goto skip_content_length; |
| 5660 | } |
| 5661 | |
Willy Tarreau | e8e785b | 2009-12-26 15:34:26 +0100 | [diff] [blame] | 5662 | use_close_only = 0; |
Willy Tarreau | b8c82c2 | 2009-10-18 23:45:12 +0200 | [diff] [blame] | 5663 | ctx.idx = 0; |
Willy Tarreau | a36fc4d | 2012-02-17 17:39:37 +0100 | [diff] [blame] | 5664 | while ((msg->flags & HTTP_MSGF_VER_11) && |
Willy Tarreau | 9b28e03 | 2012-10-12 23:49:43 +0200 | [diff] [blame] | 5665 | 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] | 5666 | if (ctx.vlen == 7 && strncasecmp(ctx.line + ctx.val, "chunked", 7) == 0) |
Willy Tarreau | a36fc4d | 2012-02-17 17:39:37 +0100 | [diff] [blame] | 5667 | msg->flags |= (HTTP_MSGF_TE_CHNK | HTTP_MSGF_XFER_LEN); |
| 5668 | else if (msg->flags & HTTP_MSGF_TE_CHNK) { |
Willy Tarreau | e8e785b | 2009-12-26 15:34:26 +0100 | [diff] [blame] | 5669 | /* bad transfer-encoding (chunked followed by something else) */ |
| 5670 | use_close_only = 1; |
Willy Tarreau | a36fc4d | 2012-02-17 17:39:37 +0100 | [diff] [blame] | 5671 | msg->flags &= ~(HTTP_MSGF_TE_CHNK | HTTP_MSGF_XFER_LEN); |
Willy Tarreau | e8e785b | 2009-12-26 15:34:26 +0100 | [diff] [blame] | 5672 | break; |
| 5673 | } |
Willy Tarreau | b8c82c2 | 2009-10-18 23:45:12 +0200 | [diff] [blame] | 5674 | } |
| 5675 | |
| 5676 | /* FIXME: below we should remove the content-length header(s) in case of chunked encoding */ |
| 5677 | ctx.idx = 0; |
Willy Tarreau | a36fc4d | 2012-02-17 17:39:37 +0100 | [diff] [blame] | 5678 | while (!(msg->flags & HTTP_MSGF_TE_CHNK) && !use_close_only && |
Willy Tarreau | 9b28e03 | 2012-10-12 23:49:43 +0200 | [diff] [blame] | 5679 | 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] | 5680 | signed long long cl; |
| 5681 | |
Willy Tarreau | ad14f75 | 2011-09-02 20:33:27 +0200 | [diff] [blame] | 5682 | if (!ctx.vlen) { |
Willy Tarreau | 9b28e03 | 2012-10-12 23:49:43 +0200 | [diff] [blame] | 5683 | msg->err_pos = ctx.line + ctx.val - rep->buf->p; |
Willy Tarreau | b8c82c2 | 2009-10-18 23:45:12 +0200 | [diff] [blame] | 5684 | goto hdr_response_bad; |
Willy Tarreau | ad14f75 | 2011-09-02 20:33:27 +0200 | [diff] [blame] | 5685 | } |
Willy Tarreau | b8c82c2 | 2009-10-18 23:45:12 +0200 | [diff] [blame] | 5686 | |
Willy Tarreau | ad14f75 | 2011-09-02 20:33:27 +0200 | [diff] [blame] | 5687 | if (strl2llrc(ctx.line + ctx.val, ctx.vlen, &cl)) { |
Willy Tarreau | 9b28e03 | 2012-10-12 23:49:43 +0200 | [diff] [blame] | 5688 | msg->err_pos = ctx.line + ctx.val - rep->buf->p; |
Willy Tarreau | b8c82c2 | 2009-10-18 23:45:12 +0200 | [diff] [blame] | 5689 | goto hdr_response_bad; /* parse failure */ |
Willy Tarreau | ad14f75 | 2011-09-02 20:33:27 +0200 | [diff] [blame] | 5690 | } |
Willy Tarreau | b8c82c2 | 2009-10-18 23:45:12 +0200 | [diff] [blame] | 5691 | |
Willy Tarreau | ad14f75 | 2011-09-02 20:33:27 +0200 | [diff] [blame] | 5692 | if (cl < 0) { |
Willy Tarreau | 9b28e03 | 2012-10-12 23:49:43 +0200 | [diff] [blame] | 5693 | msg->err_pos = ctx.line + ctx.val - rep->buf->p; |
Willy Tarreau | b8c82c2 | 2009-10-18 23:45:12 +0200 | [diff] [blame] | 5694 | goto hdr_response_bad; |
Willy Tarreau | ad14f75 | 2011-09-02 20:33:27 +0200 | [diff] [blame] | 5695 | } |
Willy Tarreau | b8c82c2 | 2009-10-18 23:45:12 +0200 | [diff] [blame] | 5696 | |
Willy Tarreau | a36fc4d | 2012-02-17 17:39:37 +0100 | [diff] [blame] | 5697 | if ((msg->flags & HTTP_MSGF_CNT_LEN) && (msg->chunk_len != cl)) { |
Willy Tarreau | 9b28e03 | 2012-10-12 23:49:43 +0200 | [diff] [blame] | 5698 | msg->err_pos = ctx.line + ctx.val - rep->buf->p; |
Willy Tarreau | b8c82c2 | 2009-10-18 23:45:12 +0200 | [diff] [blame] | 5699 | goto hdr_response_bad; /* already specified, was different */ |
Willy Tarreau | ad14f75 | 2011-09-02 20:33:27 +0200 | [diff] [blame] | 5700 | } |
Willy Tarreau | b8c82c2 | 2009-10-18 23:45:12 +0200 | [diff] [blame] | 5701 | |
Willy Tarreau | a36fc4d | 2012-02-17 17:39:37 +0100 | [diff] [blame] | 5702 | msg->flags |= HTTP_MSGF_CNT_LEN | HTTP_MSGF_XFER_LEN; |
Willy Tarreau | 124d991 | 2011-03-01 20:30:48 +0100 | [diff] [blame] | 5703 | msg->body_len = msg->chunk_len = cl; |
Willy Tarreau | b8c82c2 | 2009-10-18 23:45:12 +0200 | [diff] [blame] | 5704 | } |
| 5705 | |
William Lallemand | 82fe75c | 2012-10-23 10:25:10 +0200 | [diff] [blame] | 5706 | if (s->fe->comp || s->be->comp) |
| 5707 | select_compression_response_header(s, rep->buf); |
| 5708 | |
Willy Tarreau | e8e785b | 2009-12-26 15:34:26 +0100 | [diff] [blame] | 5709 | /* FIXME: we should also implement the multipart/byterange method. |
| 5710 | * For now on, we resort to close mode in this case (unknown length). |
| 5711 | */ |
Willy Tarreau | b8c82c2 | 2009-10-18 23:45:12 +0200 | [diff] [blame] | 5712 | skip_content_length: |
Willy Tarreau | b8c82c2 | 2009-10-18 23:45:12 +0200 | [diff] [blame] | 5713 | |
Willy Tarreau | b37c27e | 2009-10-18 22:53:08 +0200 | [diff] [blame] | 5714 | /* end of job, return OK */ |
| 5715 | rep->analysers &= ~an_bit; |
| 5716 | rep->analyse_exp = TICK_ETERNITY; |
Willy Tarreau | 8263d2b | 2012-08-28 00:06:31 +0200 | [diff] [blame] | 5717 | channel_auto_close(rep); |
Willy Tarreau | b37c27e | 2009-10-18 22:53:08 +0200 | [diff] [blame] | 5718 | return 1; |
Willy Tarreau | 6b726ad | 2013-12-15 19:31:37 +0100 | [diff] [blame] | 5719 | |
| 5720 | abort_keep_alive: |
| 5721 | /* A keep-alive request to the server failed on a network error. |
| 5722 | * The client is required to retry. We need to close without returning |
| 5723 | * any other information so that the client retries. |
| 5724 | */ |
| 5725 | txn->status = 0; |
| 5726 | rep->analysers = 0; |
| 5727 | s->req->analysers = 0; |
| 5728 | channel_auto_close(rep); |
| 5729 | s->logs.logwait = 0; |
| 5730 | s->logs.level = 0; |
| 5731 | s->rep->flags &= ~CF_EXPECT_MORE; /* speed up sending a previous response */ |
| 5732 | bi_erase(rep); |
| 5733 | stream_int_retnclose(rep->cons, NULL); |
| 5734 | return 0; |
Willy Tarreau | b37c27e | 2009-10-18 22:53:08 +0200 | [diff] [blame] | 5735 | } |
| 5736 | |
| 5737 | /* This function performs all the processing enabled for the current response. |
Willy Tarreau | e3fa6e5 | 2010-01-04 22:57:43 +0100 | [diff] [blame] | 5738 | * It normally returns 1 unless it wants to break. It relies on buffers flags, |
| 5739 | * and updates t->rep->analysers. It might make sense to explode it into several |
| 5740 | * other functions. It works like process_request (see indications above). |
Willy Tarreau | b37c27e | 2009-10-18 22:53:08 +0200 | [diff] [blame] | 5741 | */ |
Willy Tarreau | 7421efb | 2012-07-02 15:11:27 +0200 | [diff] [blame] | 5742 | int http_process_res_common(struct session *t, struct channel *rep, int an_bit, struct proxy *px) |
Willy Tarreau | b37c27e | 2009-10-18 22:53:08 +0200 | [diff] [blame] | 5743 | { |
| 5744 | struct http_txn *txn = &t->txn; |
Willy Tarreau | b37c27e | 2009-10-18 22:53:08 +0200 | [diff] [blame] | 5745 | struct http_msg *msg = &txn->rsp; |
| 5746 | struct proxy *cur_proxy; |
Willy Tarreau | f4f0412 | 2010-01-28 18:10:50 +0100 | [diff] [blame] | 5747 | struct cond_wordlist *wl; |
Willy Tarreau | e365c0b | 2013-06-11 16:06:12 +0200 | [diff] [blame] | 5748 | struct http_res_rule *http_res_last_rule = NULL; |
Willy Tarreau | b37c27e | 2009-10-18 22:53:08 +0200 | [diff] [blame] | 5749 | |
Willy Tarreau | 02d6cfc | 2012-03-01 18:19:58 +0100 | [diff] [blame] | 5750 | DPRINTF(stderr,"[%u] %s: session=%p b=%p, exp(r,w)=%u,%u bf=%08x bh=%d analysers=%02x\n", |
Willy Tarreau | b37c27e | 2009-10-18 22:53:08 +0200 | [diff] [blame] | 5751 | now_ms, __FUNCTION__, |
| 5752 | t, |
| 5753 | rep, |
| 5754 | rep->rex, rep->wex, |
| 5755 | rep->flags, |
Willy Tarreau | 9b28e03 | 2012-10-12 23:49:43 +0200 | [diff] [blame] | 5756 | rep->buf->i, |
Willy Tarreau | b37c27e | 2009-10-18 22:53:08 +0200 | [diff] [blame] | 5757 | rep->analysers); |
| 5758 | |
Willy Tarreau | 655dce9 | 2009-11-08 13:10:58 +0100 | [diff] [blame] | 5759 | if (unlikely(msg->msg_state < HTTP_MSG_BODY)) /* we need more data */ |
Willy Tarreau | b37c27e | 2009-10-18 22:53:08 +0200 | [diff] [blame] | 5760 | return 0; |
| 5761 | |
| 5762 | rep->analysers &= ~an_bit; |
| 5763 | rep->analyse_exp = TICK_ETERNITY; |
| 5764 | |
Willy Tarreau | 5b15447 | 2009-12-21 20:11:07 +0100 | [diff] [blame] | 5765 | /* Now we have to check if we need to modify the Connection header. |
| 5766 | * This is more difficult on the response than it is on the request, |
| 5767 | * because we can have two different HTTP versions and we don't know |
| 5768 | * how the client will interprete a response. For instance, let's say |
| 5769 | * that the client sends a keep-alive request in HTTP/1.0 and gets an |
| 5770 | * HTTP/1.1 response without any header. Maybe it will bound itself to |
| 5771 | * HTTP/1.0 because it only knows about it, and will consider the lack |
| 5772 | * of header as a close, or maybe it knows HTTP/1.1 and can consider |
| 5773 | * the lack of header as a keep-alive. Thus we will use two flags |
| 5774 | * indicating how a request MAY be understood by the client. In case |
| 5775 | * of multiple possibilities, we'll fix the header to be explicit. If |
| 5776 | * ambiguous cases such as both close and keepalive are seen, then we |
| 5777 | * will fall back to explicit close. Note that we won't take risks with |
| 5778 | * HTTP/1.0 clients which may not necessarily understand keep-alive. |
Willy Tarreau | 6046652 | 2010-01-18 19:08:45 +0100 | [diff] [blame] | 5779 | * See doc/internals/connection-header.txt for the complete matrix. |
Willy Tarreau | 5b15447 | 2009-12-21 20:11:07 +0100 | [diff] [blame] | 5780 | */ |
| 5781 | |
Willy Tarreau | dc008c5 | 2010-02-01 16:20:08 +0100 | [diff] [blame] | 5782 | if (unlikely((txn->meth == HTTP_METH_CONNECT && txn->status == 200) || |
| 5783 | txn->status == 101)) { |
| 5784 | /* Either we've established an explicit tunnel, or we're |
| 5785 | * switching the protocol. In both cases, we're very unlikely |
Willy Tarreau | 5843d1a | 2010-02-01 15:13:32 +0100 | [diff] [blame] | 5786 | * to understand the next protocols. We have to switch to tunnel |
| 5787 | * mode, so that we transfer the request and responses then let |
| 5788 | * this protocol pass unmodified. When we later implement specific |
| 5789 | * parsers for such protocols, we'll want to check the Upgrade |
Willy Tarreau | dc008c5 | 2010-02-01 16:20:08 +0100 | [diff] [blame] | 5790 | * header which contains information about that protocol for |
| 5791 | * responses with status 101 (eg: see RFC2817 about TLS). |
Willy Tarreau | 5843d1a | 2010-02-01 15:13:32 +0100 | [diff] [blame] | 5792 | */ |
| 5793 | txn->flags = (txn->flags & ~TX_CON_WANT_MSK) | TX_CON_WANT_TUN; |
| 5794 | } |
Willy Tarreau | dc008c5 | 2010-02-01 16:20:08 +0100 | [diff] [blame] | 5795 | else if ((txn->status >= 200) && !(txn->flags & TX_HDR_CONN_PRS) && |
| 5796 | ((txn->flags & TX_CON_WANT_MSK) != TX_CON_WANT_TUN || |
Willy Tarreau | 02bce8b | 2014-01-30 00:15:28 +0100 | [diff] [blame] | 5797 | ((t->fe->options & PR_O_HTTP_MODE) == PR_O_HTTP_PCL || |
| 5798 | (t->be->options & PR_O_HTTP_MODE) == PR_O_HTTP_PCL))) { |
Willy Tarreau | 6046652 | 2010-01-18 19:08:45 +0100 | [diff] [blame] | 5799 | int to_del = 0; |
Willy Tarreau | 5b15447 | 2009-12-21 20:11:07 +0100 | [diff] [blame] | 5800 | |
Willy Tarreau | 70dffda | 2014-01-30 03:07:23 +0100 | [diff] [blame] | 5801 | /* this situation happens when combining pretend-keepalive with httpclose. */ |
| 5802 | if ((txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_KAL && |
| 5803 | ((t->fe->options & PR_O_HTTP_MODE) == PR_O_HTTP_PCL || |
| 5804 | (t->be->options & PR_O_HTTP_MODE) == PR_O_HTTP_PCL)) |
| 5805 | txn->flags = (txn->flags & ~TX_CON_WANT_MSK) | TX_CON_WANT_CLO; |
| 5806 | |
Willy Tarreau | 6046652 | 2010-01-18 19:08:45 +0100 | [diff] [blame] | 5807 | /* on unknown transfer length, we must close */ |
Willy Tarreau | a36fc4d | 2012-02-17 17:39:37 +0100 | [diff] [blame] | 5808 | if (!(msg->flags & HTTP_MSGF_XFER_LEN) && |
Willy Tarreau | 6046652 | 2010-01-18 19:08:45 +0100 | [diff] [blame] | 5809 | (txn->flags & TX_CON_WANT_MSK) != TX_CON_WANT_TUN) |
| 5810 | txn->flags = (txn->flags & ~TX_CON_WANT_MSK) | TX_CON_WANT_CLO; |
Willy Tarreau | 5b15447 | 2009-12-21 20:11:07 +0100 | [diff] [blame] | 5811 | |
Willy Tarreau | 6046652 | 2010-01-18 19:08:45 +0100 | [diff] [blame] | 5812 | /* now adjust header transformations depending on current state */ |
| 5813 | if ((txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_TUN || |
| 5814 | (txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_CLO) { |
| 5815 | to_del |= 2; /* remove "keep-alive" on any response */ |
Willy Tarreau | a36fc4d | 2012-02-17 17:39:37 +0100 | [diff] [blame] | 5816 | if (!(msg->flags & HTTP_MSGF_VER_11)) |
Willy Tarreau | 6046652 | 2010-01-18 19:08:45 +0100 | [diff] [blame] | 5817 | to_del |= 1; /* remove "close" for HTTP/1.0 responses */ |
Willy Tarreau | 5b15447 | 2009-12-21 20:11:07 +0100 | [diff] [blame] | 5818 | } |
Willy Tarreau | 6046652 | 2010-01-18 19:08:45 +0100 | [diff] [blame] | 5819 | else { /* SCL / KAL */ |
| 5820 | to_del |= 1; /* remove "close" on any response */ |
Willy Tarreau | a36fc4d | 2012-02-17 17:39:37 +0100 | [diff] [blame] | 5821 | if (txn->req.flags & msg->flags & HTTP_MSGF_VER_11) |
Willy Tarreau | 6046652 | 2010-01-18 19:08:45 +0100 | [diff] [blame] | 5822 | to_del |= 2; /* remove "keep-alive" on pure 1.1 responses */ |
Willy Tarreau | 5b15447 | 2009-12-21 20:11:07 +0100 | [diff] [blame] | 5823 | } |
Willy Tarreau | 5b15447 | 2009-12-21 20:11:07 +0100 | [diff] [blame] | 5824 | |
Willy Tarreau | 6046652 | 2010-01-18 19:08:45 +0100 | [diff] [blame] | 5825 | /* Parse and remove some headers from the connection header */ |
Willy Tarreau | 6acf7c9 | 2012-03-09 13:30:45 +0100 | [diff] [blame] | 5826 | http_parse_connection_header(txn, msg, to_del); |
Willy Tarreau | 5b15447 | 2009-12-21 20:11:07 +0100 | [diff] [blame] | 5827 | |
Willy Tarreau | 6046652 | 2010-01-18 19:08:45 +0100 | [diff] [blame] | 5828 | /* Some keep-alive responses are converted to Server-close if |
| 5829 | * the server wants to close. |
Willy Tarreau | 5b15447 | 2009-12-21 20:11:07 +0100 | [diff] [blame] | 5830 | */ |
Willy Tarreau | 6046652 | 2010-01-18 19:08:45 +0100 | [diff] [blame] | 5831 | if ((txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_KAL) { |
| 5832 | if ((txn->flags & TX_HDR_CONN_CLO) || |
Willy Tarreau | a36fc4d | 2012-02-17 17:39:37 +0100 | [diff] [blame] | 5833 | (!(txn->flags & TX_HDR_CONN_KAL) && !(msg->flags & HTTP_MSGF_VER_11))) |
Willy Tarreau | 6046652 | 2010-01-18 19:08:45 +0100 | [diff] [blame] | 5834 | txn->flags = (txn->flags & ~TX_CON_WANT_MSK) | TX_CON_WANT_SCL; |
Willy Tarreau | b608feb | 2010-01-02 22:47:18 +0100 | [diff] [blame] | 5835 | } |
Willy Tarreau | 5b15447 | 2009-12-21 20:11:07 +0100 | [diff] [blame] | 5836 | } |
| 5837 | |
Willy Tarreau | 7959a55 | 2013-09-23 16:44:27 +0200 | [diff] [blame] | 5838 | /* we want to have the response time before we start processing it */ |
| 5839 | t->logs.t_data = tv_ms_elapsed(&t->logs.tv_accept, &now); |
| 5840 | |
Willy Tarreau | b37c27e | 2009-10-18 22:53:08 +0200 | [diff] [blame] | 5841 | if (1) { |
Willy Tarreau | f5483bf | 2008-08-14 18:35:40 +0200 | [diff] [blame] | 5842 | /* |
| 5843 | * 3: we will have to evaluate the filters. |
| 5844 | * As opposed to version 1.2, now they will be evaluated in the |
| 5845 | * filters order and not in the header order. This means that |
| 5846 | * each filter has to be validated among all headers. |
| 5847 | * |
| 5848 | * Filters are tried with ->be first, then with ->fe if it is |
| 5849 | * different from ->be. |
| 5850 | */ |
| 5851 | |
Willy Tarreau | f5483bf | 2008-08-14 18:35:40 +0200 | [diff] [blame] | 5852 | cur_proxy = t->be; |
| 5853 | while (1) { |
| 5854 | struct proxy *rule_set = cur_proxy; |
| 5855 | |
Willy Tarreau | e365c0b | 2013-06-11 16:06:12 +0200 | [diff] [blame] | 5856 | /* evaluate http-response rules */ |
| 5857 | if (!http_res_last_rule) |
| 5858 | http_res_last_rule = http_res_get_intercept_rule(cur_proxy, &cur_proxy->http_res_rules, t, txn); |
| 5859 | |
Willy Tarreau | f5483bf | 2008-08-14 18:35:40 +0200 | [diff] [blame] | 5860 | /* try headers filters */ |
| 5861 | if (rule_set->rsp_exp != NULL) { |
Willy Tarreau | fdb563c | 2010-01-31 15:43:27 +0100 | [diff] [blame] | 5862 | if (apply_filters_to_response(t, rep, rule_set) < 0) { |
Willy Tarreau | f5483bf | 2008-08-14 18:35:40 +0200 | [diff] [blame] | 5863 | return_bad_resp: |
Willy Tarreau | 3fdb366 | 2012-11-12 00:42:33 +0100 | [diff] [blame] | 5864 | if (objt_server(t->target)) { |
| 5865 | objt_server(t->target)->counters.failed_resp++; |
| 5866 | health_adjust(objt_server(t->target), HANA_STATUS_HTTP_RSP); |
Krzysztof Piotr Oledzki | 97f07b8 | 2009-12-15 22:31:24 +0100 | [diff] [blame] | 5867 | } |
Willy Tarreau | 7d0aaf3 | 2011-03-10 23:25:56 +0100 | [diff] [blame] | 5868 | t->be->be_counters.failed_resp++; |
Willy Tarreau | f5483bf | 2008-08-14 18:35:40 +0200 | [diff] [blame] | 5869 | return_srv_prx_502: |
Willy Tarreau | 2df28e8 | 2008-08-17 15:20:19 +0200 | [diff] [blame] | 5870 | rep->analysers = 0; |
Willy Tarreau | f5483bf | 2008-08-14 18:35:40 +0200 | [diff] [blame] | 5871 | txn->status = 502; |
Willy Tarreau | 7959a55 | 2013-09-23 16:44:27 +0200 | [diff] [blame] | 5872 | t->logs.t_data = -1; /* was not a valid response */ |
Willy Tarreau | c88ea68 | 2009-12-29 14:56:36 +0100 | [diff] [blame] | 5873 | rep->prod->flags |= SI_FL_NOLINGER; |
Willy Tarreau | 9dab5fc | 2012-05-07 11:56:55 +0200 | [diff] [blame] | 5874 | bi_erase(rep); |
Willy Tarreau | 783f258 | 2012-09-04 12:19:04 +0200 | [diff] [blame] | 5875 | stream_int_retnclose(rep->cons, http_error_message(t, HTTP_ERR_502)); |
Willy Tarreau | f5483bf | 2008-08-14 18:35:40 +0200 | [diff] [blame] | 5876 | if (!(t->flags & SN_ERR_MASK)) |
| 5877 | t->flags |= SN_ERR_PRXCOND; |
| 5878 | if (!(t->flags & SN_FINST_MASK)) |
| 5879 | t->flags |= SN_FINST_H; |
Willy Tarreau | dafde43 | 2008-08-17 01:00:46 +0200 | [diff] [blame] | 5880 | return 0; |
Willy Tarreau | 21d2af3 | 2008-02-14 20:25:24 +0100 | [diff] [blame] | 5881 | } |
Willy Tarreau | f5483bf | 2008-08-14 18:35:40 +0200 | [diff] [blame] | 5882 | } |
Willy Tarreau | 21d2af3 | 2008-02-14 20:25:24 +0100 | [diff] [blame] | 5883 | |
Willy Tarreau | f5483bf | 2008-08-14 18:35:40 +0200 | [diff] [blame] | 5884 | /* has the response been denied ? */ |
| 5885 | if (txn->flags & TX_SVDENY) { |
Willy Tarreau | 3fdb366 | 2012-11-12 00:42:33 +0100 | [diff] [blame] | 5886 | if (objt_server(t->target)) |
| 5887 | objt_server(t->target)->counters.failed_secu++; |
Krzysztof Piotr Oledzki | aeebf9b | 2009-10-04 15:43:17 +0200 | [diff] [blame] | 5888 | |
Willy Tarreau | 7d0aaf3 | 2011-03-10 23:25:56 +0100 | [diff] [blame] | 5889 | t->be->be_counters.denied_resp++; |
| 5890 | t->fe->fe_counters.denied_resp++; |
Krzysztof Piotr Oledzki | aeebf9b | 2009-10-04 15:43:17 +0200 | [diff] [blame] | 5891 | if (t->listener->counters) |
| 5892 | t->listener->counters->denied_resp++; |
| 5893 | |
Willy Tarreau | f5483bf | 2008-08-14 18:35:40 +0200 | [diff] [blame] | 5894 | goto return_srv_prx_502; |
Willy Tarreau | 5140623 | 2008-03-10 22:04:20 +0100 | [diff] [blame] | 5895 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 5896 | |
Willy Tarreau | f5483bf | 2008-08-14 18:35:40 +0200 | [diff] [blame] | 5897 | /* add response headers from the rule sets in the same order */ |
Willy Tarreau | deb9ed8 | 2010-01-03 21:03:22 +0100 | [diff] [blame] | 5898 | list_for_each_entry(wl, &rule_set->rsp_add, list) { |
Willy Tarreau | 816b979 | 2009-09-15 21:25:21 +0200 | [diff] [blame] | 5899 | if (txn->status < 200) |
| 5900 | break; |
Willy Tarreau | fdb563c | 2010-01-31 15:43:27 +0100 | [diff] [blame] | 5901 | if (wl->cond) { |
Willy Tarreau | 32a6f2e | 2012-04-25 10:13:36 +0200 | [diff] [blame] | 5902 | int ret = acl_exec_cond(wl->cond, px, t, txn, SMP_OPT_DIR_RES|SMP_OPT_FINAL); |
Willy Tarreau | fdb563c | 2010-01-31 15:43:27 +0100 | [diff] [blame] | 5903 | ret = acl_pass(ret); |
| 5904 | if (((struct acl_cond *)wl->cond)->pol == ACL_COND_UNLESS) |
| 5905 | ret = !ret; |
| 5906 | if (!ret) |
| 5907 | continue; |
| 5908 | } |
Willy Tarreau | 6acf7c9 | 2012-03-09 13:30:45 +0100 | [diff] [blame] | 5909 | if (unlikely(http_header_add_tail(&txn->rsp, &txn->hdr_idx, wl->s) < 0)) |
Willy Tarreau | f5483bf | 2008-08-14 18:35:40 +0200 | [diff] [blame] | 5910 | goto return_bad_resp; |
Willy Tarreau | 0bbc3cf | 2006-10-15 14:26:02 +0200 | [diff] [blame] | 5911 | } |
| 5912 | |
Willy Tarreau | f5483bf | 2008-08-14 18:35:40 +0200 | [diff] [blame] | 5913 | /* check whether we're already working on the frontend */ |
| 5914 | if (cur_proxy == t->fe) |
| 5915 | break; |
| 5916 | cur_proxy = t->fe; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 5917 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 5918 | |
Willy Tarreau | f5483bf | 2008-08-14 18:35:40 +0200 | [diff] [blame] | 5919 | /* |
Willy Tarreau | 5843d1a | 2010-02-01 15:13:32 +0100 | [diff] [blame] | 5920 | * We may be facing a 100-continue response, in which case this |
| 5921 | * is not the right response, and we're waiting for the next one. |
| 5922 | * Let's allow this response to go to the client and wait for the |
Willy Tarreau | 63c9e5f | 2009-12-22 16:01:27 +0100 | [diff] [blame] | 5923 | * next one. |
| 5924 | */ |
Willy Tarreau | 5843d1a | 2010-02-01 15:13:32 +0100 | [diff] [blame] | 5925 | if (unlikely(txn->status == 100)) { |
Willy Tarreau | 63c9e5f | 2009-12-22 16:01:27 +0100 | [diff] [blame] | 5926 | hdr_idx_init(&txn->hdr_idx); |
Willy Tarreau | 8263d2b | 2012-08-28 00:06:31 +0200 | [diff] [blame] | 5927 | msg->next -= channel_forward(rep, msg->next); |
Willy Tarreau | 63c9e5f | 2009-12-22 16:01:27 +0100 | [diff] [blame] | 5928 | msg->msg_state = HTTP_MSG_RPBEFORE; |
| 5929 | txn->status = 0; |
Willy Tarreau | 7959a55 | 2013-09-23 16:44:27 +0200 | [diff] [blame] | 5930 | t->logs.t_data = -1; /* was not a response yet */ |
Willy Tarreau | 63c9e5f | 2009-12-22 16:01:27 +0100 | [diff] [blame] | 5931 | rep->analysers |= AN_RES_WAIT_HTTP | an_bit; |
| 5932 | return 1; |
| 5933 | } |
Willy Tarreau | 5843d1a | 2010-02-01 15:13:32 +0100 | [diff] [blame] | 5934 | else if (unlikely(txn->status < 200)) |
| 5935 | goto skip_header_mangling; |
Willy Tarreau | 63c9e5f | 2009-12-22 16:01:27 +0100 | [diff] [blame] | 5936 | |
| 5937 | /* we don't have any 1xx status code now */ |
| 5938 | |
| 5939 | /* |
Willy Tarreau | f5483bf | 2008-08-14 18:35:40 +0200 | [diff] [blame] | 5940 | * 4: check for server cookie. |
| 5941 | */ |
Willy Tarreau | 63c9e5f | 2009-12-22 16:01:27 +0100 | [diff] [blame] | 5942 | if (t->be->cookie_name || t->be->appsession_name || t->fe->capture_name || |
| 5943 | (t->be->options & PR_O_CHK_CACHE)) |
Willy Tarreau | f5483bf | 2008-08-14 18:35:40 +0200 | [diff] [blame] | 5944 | manage_server_side_cookies(t, rep); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 5945 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 5946 | |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 5947 | /* |
Willy Tarreau | f5483bf | 2008-08-14 18:35:40 +0200 | [diff] [blame] | 5948 | * 5: check for cache-control or pragma headers if required. |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 5949 | */ |
Willy Tarreau | 6740213 | 2012-05-31 20:40:20 +0200 | [diff] [blame] | 5950 | if ((t->be->options & PR_O_CHK_CACHE) || (t->be->ck_opts & PR_CK_NOC)) |
Willy Tarreau | f5483bf | 2008-08-14 18:35:40 +0200 | [diff] [blame] | 5951 | check_response_for_cacheability(t, rep); |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 5952 | |
Willy Tarreau | f5483bf | 2008-08-14 18:35:40 +0200 | [diff] [blame] | 5953 | /* |
| 5954 | * 6: add server cookie in the response if needed |
| 5955 | */ |
Willy Tarreau | 3fdb366 | 2012-11-12 00:42:33 +0100 | [diff] [blame] | 5956 | if (objt_server(t->target) && (t->be->ck_opts & PR_CK_INS) && |
Willy Tarreau | 6740213 | 2012-05-31 20:40:20 +0200 | [diff] [blame] | 5957 | !((txn->flags & TX_SCK_FOUND) && (t->be->ck_opts & PR_CK_PSV)) && |
Willy Tarreau | ef4f391 | 2010-10-07 21:00:29 +0200 | [diff] [blame] | 5958 | (!(t->flags & SN_DIRECT) || |
| 5959 | ((t->be->cookie_maxidle || txn->cookie_last_date) && |
| 5960 | (!txn->cookie_last_date || (txn->cookie_last_date - date.tv_sec) < 0)) || |
| 5961 | (t->be->cookie_maxlife && !txn->cookie_first_date) || // set the first_date |
| 5962 | (!t->be->cookie_maxlife && txn->cookie_first_date)) && // remove the first_date |
Willy Tarreau | 6740213 | 2012-05-31 20:40:20 +0200 | [diff] [blame] | 5963 | (!(t->be->ck_opts & PR_CK_POST) || (txn->meth == HTTP_METH_POST)) && |
Cyril Bonté | 47fdd8e | 2010-04-25 00:00:51 +0200 | [diff] [blame] | 5964 | !(t->flags & SN_IGNORE_PRST)) { |
Willy Tarreau | ef4f391 | 2010-10-07 21:00:29 +0200 | [diff] [blame] | 5965 | /* the server is known, it's not the one the client requested, or the |
| 5966 | * cookie's last seen date needs to be refreshed. We have to |
Willy Tarreau | f5483bf | 2008-08-14 18:35:40 +0200 | [diff] [blame] | 5967 | * insert a set-cookie here, except if we want to insert only on POST |
| 5968 | * requests and this one isn't. Note that servers which don't have cookies |
| 5969 | * (eg: some backup servers) will return a full cookie removal request. |
| 5970 | */ |
Willy Tarreau | 3fdb366 | 2012-11-12 00:42:33 +0100 | [diff] [blame] | 5971 | if (!objt_server(t->target)->cookie) { |
Willy Tarreau | 19d14ef | 2012-10-29 16:51:55 +0100 | [diff] [blame] | 5972 | chunk_printf(&trash, |
Willy Tarreau | ef4f391 | 2010-10-07 21:00:29 +0200 | [diff] [blame] | 5973 | "Set-Cookie: %s=; Expires=Thu, 01-Jan-1970 00:00:01 GMT; path=/", |
| 5974 | t->be->cookie_name); |
| 5975 | } |
| 5976 | else { |
Willy Tarreau | 3fdb366 | 2012-11-12 00:42:33 +0100 | [diff] [blame] | 5977 | chunk_printf(&trash, "Set-Cookie: %s=%s", t->be->cookie_name, objt_server(t->target)->cookie); |
Willy Tarreau | ef4f391 | 2010-10-07 21:00:29 +0200 | [diff] [blame] | 5978 | |
| 5979 | if (t->be->cookie_maxidle || t->be->cookie_maxlife) { |
| 5980 | /* emit last_date, which is mandatory */ |
Willy Tarreau | 19d14ef | 2012-10-29 16:51:55 +0100 | [diff] [blame] | 5981 | trash.str[trash.len++] = COOKIE_DELIM_DATE; |
| 5982 | s30tob64((date.tv_sec+3) >> 2, trash.str + trash.len); |
| 5983 | trash.len += 5; |
| 5984 | |
Willy Tarreau | ef4f391 | 2010-10-07 21:00:29 +0200 | [diff] [blame] | 5985 | if (t->be->cookie_maxlife) { |
| 5986 | /* emit first_date, which is either the original one or |
| 5987 | * the current date. |
| 5988 | */ |
Willy Tarreau | 19d14ef | 2012-10-29 16:51:55 +0100 | [diff] [blame] | 5989 | trash.str[trash.len++] = COOKIE_DELIM_DATE; |
Willy Tarreau | ef4f391 | 2010-10-07 21:00:29 +0200 | [diff] [blame] | 5990 | s30tob64(txn->cookie_first_date ? |
| 5991 | txn->cookie_first_date >> 2 : |
Willy Tarreau | 19d14ef | 2012-10-29 16:51:55 +0100 | [diff] [blame] | 5992 | (date.tv_sec+3) >> 2, trash.str + trash.len); |
| 5993 | trash.len += 5; |
Willy Tarreau | ef4f391 | 2010-10-07 21:00:29 +0200 | [diff] [blame] | 5994 | } |
| 5995 | } |
Willy Tarreau | 19d14ef | 2012-10-29 16:51:55 +0100 | [diff] [blame] | 5996 | chunk_appendf(&trash, "; path=/"); |
Willy Tarreau | ef4f391 | 2010-10-07 21:00:29 +0200 | [diff] [blame] | 5997 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 5998 | |
Willy Tarreau | f5483bf | 2008-08-14 18:35:40 +0200 | [diff] [blame] | 5999 | if (t->be->cookie_domain) |
Willy Tarreau | 19d14ef | 2012-10-29 16:51:55 +0100 | [diff] [blame] | 6000 | chunk_appendf(&trash, "; domain=%s", t->be->cookie_domain); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 6001 | |
Willy Tarreau | 4992dd2 | 2012-05-31 21:02:17 +0200 | [diff] [blame] | 6002 | if (t->be->ck_opts & PR_CK_HTTPONLY) |
Willy Tarreau | 19d14ef | 2012-10-29 16:51:55 +0100 | [diff] [blame] | 6003 | chunk_appendf(&trash, "; HttpOnly"); |
Willy Tarreau | 4992dd2 | 2012-05-31 21:02:17 +0200 | [diff] [blame] | 6004 | |
| 6005 | if (t->be->ck_opts & PR_CK_SECURE) |
Willy Tarreau | 19d14ef | 2012-10-29 16:51:55 +0100 | [diff] [blame] | 6006 | chunk_appendf(&trash, "; Secure"); |
Willy Tarreau | 4992dd2 | 2012-05-31 21:02:17 +0200 | [diff] [blame] | 6007 | |
Willy Tarreau | 19d14ef | 2012-10-29 16:51:55 +0100 | [diff] [blame] | 6008 | if (unlikely(http_header_add_tail2(&txn->rsp, &txn->hdr_idx, trash.str, trash.len) < 0)) |
Willy Tarreau | f5483bf | 2008-08-14 18:35:40 +0200 | [diff] [blame] | 6009 | goto return_bad_resp; |
Willy Tarreau | ef4f391 | 2010-10-07 21:00:29 +0200 | [diff] [blame] | 6010 | |
Willy Tarreau | f134831 | 2010-10-07 15:54:11 +0200 | [diff] [blame] | 6011 | txn->flags &= ~TX_SCK_MASK; |
Willy Tarreau | 3fdb366 | 2012-11-12 00:42:33 +0100 | [diff] [blame] | 6012 | if (objt_server(t->target)->cookie && (t->flags & SN_DIRECT)) |
Willy Tarreau | ef4f391 | 2010-10-07 21:00:29 +0200 | [diff] [blame] | 6013 | /* the server did not change, only the date was updated */ |
| 6014 | txn->flags |= TX_SCK_UPDATED; |
| 6015 | else |
| 6016 | txn->flags |= TX_SCK_INSERTED; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 6017 | |
Willy Tarreau | f5483bf | 2008-08-14 18:35:40 +0200 | [diff] [blame] | 6018 | /* Here, we will tell an eventual cache on the client side that we don't |
| 6019 | * want it to cache this reply because HTTP/1.0 caches also cache cookies ! |
| 6020 | * Some caches understand the correct form: 'no-cache="set-cookie"', but |
| 6021 | * others don't (eg: apache <= 1.3.26). So we use 'private' instead. |
| 6022 | */ |
Willy Tarreau | 6740213 | 2012-05-31 20:40:20 +0200 | [diff] [blame] | 6023 | if ((t->be->ck_opts & PR_CK_NOC) && (txn->flags & TX_CACHEABLE)) { |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 6024 | |
Willy Tarreau | f5483bf | 2008-08-14 18:35:40 +0200 | [diff] [blame] | 6025 | txn->flags &= ~TX_CACHEABLE & ~TX_CACHE_COOK; |
| 6026 | |
Willy Tarreau | 6acf7c9 | 2012-03-09 13:30:45 +0100 | [diff] [blame] | 6027 | if (unlikely(http_header_add_tail2(&txn->rsp, &txn->hdr_idx, |
Willy Tarreau | 58cc872 | 2009-12-28 06:57:33 +0100 | [diff] [blame] | 6028 | "Cache-control: private", 22) < 0)) |
Willy Tarreau | f5483bf | 2008-08-14 18:35:40 +0200 | [diff] [blame] | 6029 | goto return_bad_resp; |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 6030 | } |
| 6031 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 6032 | |
Willy Tarreau | f5483bf | 2008-08-14 18:35:40 +0200 | [diff] [blame] | 6033 | /* |
| 6034 | * 7: check if result will be cacheable with a cookie. |
| 6035 | * We'll block the response if security checks have caught |
| 6036 | * nasty things such as a cacheable cookie. |
| 6037 | */ |
Willy Tarreau | f134831 | 2010-10-07 15:54:11 +0200 | [diff] [blame] | 6038 | if (((txn->flags & (TX_CACHEABLE | TX_CACHE_COOK | TX_SCK_PRESENT)) == |
| 6039 | (TX_CACHEABLE | TX_CACHE_COOK | TX_SCK_PRESENT)) && |
Willy Tarreau | 63c9e5f | 2009-12-22 16:01:27 +0100 | [diff] [blame] | 6040 | (t->be->options & PR_O_CHK_CACHE)) { |
Willy Tarreau | f5483bf | 2008-08-14 18:35:40 +0200 | [diff] [blame] | 6041 | |
| 6042 | /* we're in presence of a cacheable response containing |
| 6043 | * a set-cookie header. We'll block it as requested by |
| 6044 | * the 'checkcache' option, and send an alert. |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 6045 | */ |
Willy Tarreau | 3fdb366 | 2012-11-12 00:42:33 +0100 | [diff] [blame] | 6046 | if (objt_server(t->target)) |
| 6047 | objt_server(t->target)->counters.failed_secu++; |
Krzysztof Piotr Oledzki | aeebf9b | 2009-10-04 15:43:17 +0200 | [diff] [blame] | 6048 | |
Willy Tarreau | 7d0aaf3 | 2011-03-10 23:25:56 +0100 | [diff] [blame] | 6049 | t->be->be_counters.denied_resp++; |
| 6050 | t->fe->fe_counters.denied_resp++; |
Krzysztof Piotr Oledzki | aeebf9b | 2009-10-04 15:43:17 +0200 | [diff] [blame] | 6051 | if (t->listener->counters) |
| 6052 | t->listener->counters->denied_resp++; |
| 6053 | |
Willy Tarreau | f5483bf | 2008-08-14 18:35:40 +0200 | [diff] [blame] | 6054 | Alert("Blocking cacheable cookie in response from instance %s, server %s.\n", |
Willy Tarreau | 3fdb366 | 2012-11-12 00:42:33 +0100 | [diff] [blame] | 6055 | t->be->id, objt_server(t->target) ? objt_server(t->target)->id : "<dispatch>"); |
Willy Tarreau | f5483bf | 2008-08-14 18:35:40 +0200 | [diff] [blame] | 6056 | send_log(t->be, LOG_ALERT, |
| 6057 | "Blocking cacheable cookie in response from instance %s, server %s.\n", |
Willy Tarreau | 3fdb366 | 2012-11-12 00:42:33 +0100 | [diff] [blame] | 6058 | t->be->id, objt_server(t->target) ? objt_server(t->target)->id : "<dispatch>"); |
Willy Tarreau | f5483bf | 2008-08-14 18:35:40 +0200 | [diff] [blame] | 6059 | goto return_srv_prx_502; |
| 6060 | } |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 6061 | |
| 6062 | /* |
Willy Tarreau | 6046652 | 2010-01-18 19:08:45 +0100 | [diff] [blame] | 6063 | * 8: adjust "Connection: close" or "Connection: keep-alive" if needed. |
Willy Tarreau | 50fc777 | 2012-11-11 22:19:57 +0100 | [diff] [blame] | 6064 | * If an "Upgrade" token is found, the header is left untouched in order |
| 6065 | * not to have to deal with some client bugs : some of them fail an upgrade |
| 6066 | * if anything but "Upgrade" is present in the Connection header. |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 6067 | */ |
Willy Tarreau | 50fc777 | 2012-11-11 22:19:57 +0100 | [diff] [blame] | 6068 | if (!(txn->flags & TX_HDR_CONN_UPG) && |
| 6069 | (((txn->flags & TX_CON_WANT_MSK) != TX_CON_WANT_TUN) || |
Willy Tarreau | 02bce8b | 2014-01-30 00:15:28 +0100 | [diff] [blame] | 6070 | ((t->fe->options & PR_O_HTTP_MODE) == PR_O_HTTP_PCL || |
| 6071 | (t->be->options & PR_O_HTTP_MODE) == PR_O_HTTP_PCL))) { |
Willy Tarreau | 6046652 | 2010-01-18 19:08:45 +0100 | [diff] [blame] | 6072 | unsigned int want_flags = 0; |
| 6073 | |
| 6074 | if ((txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_KAL || |
| 6075 | (txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_SCL) { |
| 6076 | /* we want a keep-alive response here. Keep-alive header |
| 6077 | * required if either side is not 1.1. |
| 6078 | */ |
Willy Tarreau | a36fc4d | 2012-02-17 17:39:37 +0100 | [diff] [blame] | 6079 | if (!(txn->req.flags & msg->flags & HTTP_MSGF_VER_11)) |
Willy Tarreau | 6046652 | 2010-01-18 19:08:45 +0100 | [diff] [blame] | 6080 | want_flags |= TX_CON_KAL_SET; |
| 6081 | } |
| 6082 | else { |
| 6083 | /* we want a close response here. Close header required if |
| 6084 | * the server is 1.1, regardless of the client. |
| 6085 | */ |
Willy Tarreau | a36fc4d | 2012-02-17 17:39:37 +0100 | [diff] [blame] | 6086 | if (msg->flags & HTTP_MSGF_VER_11) |
Willy Tarreau | 6046652 | 2010-01-18 19:08:45 +0100 | [diff] [blame] | 6087 | want_flags |= TX_CON_CLO_SET; |
| 6088 | } |
| 6089 | |
| 6090 | 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] | 6091 | http_change_connection_header(txn, msg, want_flags); |
Willy Tarreau | b608feb | 2010-01-02 22:47:18 +0100 | [diff] [blame] | 6092 | } |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 6093 | |
Willy Tarreau | 5843d1a | 2010-02-01 15:13:32 +0100 | [diff] [blame] | 6094 | skip_header_mangling: |
Willy Tarreau | a36fc4d | 2012-02-17 17:39:37 +0100 | [diff] [blame] | 6095 | if ((msg->flags & HTTP_MSGF_XFER_LEN) || |
Willy Tarreau | dc008c5 | 2010-02-01 16:20:08 +0100 | [diff] [blame] | 6096 | (txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_TUN) |
Willy Tarreau | d98cf93 | 2009-12-27 22:54:55 +0100 | [diff] [blame] | 6097 | rep->analysers |= AN_RES_HTTP_XFER_BODY; |
Willy Tarreau | 0394594 | 2009-12-22 16:50:27 +0100 | [diff] [blame] | 6098 | |
Willy Tarreau | f5483bf | 2008-08-14 18:35:40 +0200 | [diff] [blame] | 6099 | /************************************************************* |
| 6100 | * OK, that's finished for the headers. We have done what we * |
| 6101 | * could. Let's switch to the DATA state. * |
| 6102 | ************************************************************/ |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 6103 | |
Willy Tarreau | f5483bf | 2008-08-14 18:35:40 +0200 | [diff] [blame] | 6104 | /* if the user wants to log as soon as possible, without counting |
| 6105 | * bytes from the server, then this is the right moment. We have |
| 6106 | * to temporarily assign bytes_out to log what we currently have. |
| 6107 | */ |
Willy Tarreau | d79a3b2 | 2012-12-28 09:40:16 +0100 | [diff] [blame] | 6108 | if (!LIST_ISEMPTY(&t->fe->logformat) && !(t->logs.logwait & LW_BYTES)) { |
Willy Tarreau | f5483bf | 2008-08-14 18:35:40 +0200 | [diff] [blame] | 6109 | t->logs.t_close = t->logs.t_data; /* to get a valid end date */ |
| 6110 | t->logs.bytes_out = txn->rsp.eoh; |
Willy Tarreau | a5555ec | 2008-11-30 19:02:32 +0100 | [diff] [blame] | 6111 | t->do_log(t); |
Willy Tarreau | f5483bf | 2008-08-14 18:35:40 +0200 | [diff] [blame] | 6112 | t->logs.bytes_out = 0; |
| 6113 | } |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 6114 | |
Willy Tarreau | f5483bf | 2008-08-14 18:35:40 +0200 | [diff] [blame] | 6115 | /* Note: we must not try to cheat by jumping directly to DATA, |
| 6116 | * otherwise we would not let the client side wake up. |
| 6117 | */ |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 6118 | |
Willy Tarreau | e3fa6e5 | 2010-01-04 22:57:43 +0100 | [diff] [blame] | 6119 | return 1; |
Willy Tarreau | f5483bf | 2008-08-14 18:35:40 +0200 | [diff] [blame] | 6120 | } |
Willy Tarreau | e3fa6e5 | 2010-01-04 22:57:43 +0100 | [diff] [blame] | 6121 | return 1; |
Willy Tarreau | f5483bf | 2008-08-14 18:35:40 +0200 | [diff] [blame] | 6122 | } |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 6123 | |
Willy Tarreau | d98cf93 | 2009-12-27 22:54:55 +0100 | [diff] [blame] | 6124 | /* This function is an analyser which forwards response body (including chunk |
| 6125 | * sizes if any). It is called as soon as we must forward, even if we forward |
| 6126 | * zero byte. The only situation where it must not be called is when we're in |
| 6127 | * tunnel mode and we want to forward till the close. It's used both to forward |
| 6128 | * remaining data and to resync after end of body. It expects the msg_state to |
| 6129 | * be between MSG_BODY and MSG_DONE (inclusive). It returns zero if it needs to |
| 6130 | * read more data, or 1 once we can go on with next request or end the session. |
Willy Tarreau | 124d991 | 2011-03-01 20:30:48 +0100 | [diff] [blame] | 6131 | * When in MSG_DATA or MSG_TRAILERS, it will automatically forward chunk_len |
Willy Tarreau | 2692736 | 2012-05-18 23:22:52 +0200 | [diff] [blame] | 6132 | * bytes of pending data + the headers if not already done (between sol and sov). |
| 6133 | * It eventually adjusts sol to match sov after the data in between have been sent. |
Willy Tarreau | d98cf93 | 2009-12-27 22:54:55 +0100 | [diff] [blame] | 6134 | */ |
Willy Tarreau | 7421efb | 2012-07-02 15:11:27 +0200 | [diff] [blame] | 6135 | int http_response_forward_body(struct session *s, struct channel *res, int an_bit) |
Willy Tarreau | d98cf93 | 2009-12-27 22:54:55 +0100 | [diff] [blame] | 6136 | { |
| 6137 | struct http_txn *txn = &s->txn; |
| 6138 | struct http_msg *msg = &s->txn.rsp; |
Willy Tarreau | ea95316 | 2012-05-18 23:41:28 +0200 | [diff] [blame] | 6139 | unsigned int bytes; |
William Lallemand | 82fe75c | 2012-10-23 10:25:10 +0200 | [diff] [blame] | 6140 | static struct buffer *tmpbuf = NULL; |
| 6141 | int compressing = 0; |
William Lallemand | bf3ae61 | 2012-11-19 12:35:37 +0100 | [diff] [blame] | 6142 | int consumed_data = 0; |
Willy Tarreau | d655ffe | 2013-04-02 01:48:58 +0200 | [diff] [blame] | 6143 | int ret; |
Willy Tarreau | d98cf93 | 2009-12-27 22:54:55 +0100 | [diff] [blame] | 6144 | |
Willy Tarreau | f5c8bd6 | 2010-01-04 07:10:34 +0100 | [diff] [blame] | 6145 | if (unlikely(msg->msg_state < HTTP_MSG_BODY)) |
| 6146 | return 0; |
| 6147 | |
Willy Tarreau | 03cdb7c | 2012-08-27 23:14:58 +0200 | [diff] [blame] | 6148 | 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] | 6149 | ((res->flags & CF_SHUTW) && (res->to_forward || res->buf->o)) || |
Willy Tarreau | 6c2cbe1 | 2010-01-03 17:07:49 +0100 | [diff] [blame] | 6150 | !s->req->analysers) { |
Willy Tarreau | 4fe4190 | 2010-06-07 22:27:41 +0200 | [diff] [blame] | 6151 | /* Output closed while we were sending data. We must abort and |
| 6152 | * wake the other side up. |
| 6153 | */ |
| 6154 | msg->msg_state = HTTP_MSG_ERROR; |
| 6155 | http_resync_states(s); |
Willy Tarreau | 082b01c | 2010-01-02 23:58:04 +0100 | [diff] [blame] | 6156 | return 1; |
| 6157 | } |
| 6158 | |
Willy Tarreau | 4fe4190 | 2010-06-07 22:27:41 +0200 | [diff] [blame] | 6159 | /* in most states, we should abort in case of early close */ |
Willy Tarreau | 8263d2b | 2012-08-28 00:06:31 +0200 | [diff] [blame] | 6160 | channel_auto_close(res); |
Willy Tarreau | b608feb | 2010-01-02 22:47:18 +0100 | [diff] [blame] | 6161 | |
William Lallemand | 82fe75c | 2012-10-23 10:25:10 +0200 | [diff] [blame] | 6162 | /* this is the first time we need the compression buffer */ |
| 6163 | if (s->comp_algo != NULL && tmpbuf == NULL) { |
| 6164 | if ((tmpbuf = pool_alloc2(pool2_buffer)) == NULL) |
| 6165 | goto aborted_xfer; /* no memory */ |
| 6166 | } |
| 6167 | |
Willy Tarreau | d98cf93 | 2009-12-27 22:54:55 +0100 | [diff] [blame] | 6168 | if (msg->msg_state < HTTP_MSG_CHUNK_SIZE) { |
Willy Tarreau | fa4a03c | 2012-03-09 21:28:54 +0100 | [diff] [blame] | 6169 | /* we have msg->sov which points to the first byte of message body. |
William Lallemand | 82fe75c | 2012-10-23 10:25:10 +0200 | [diff] [blame] | 6170 | * rep->buf.p still points to the beginning of the message and msg->sol |
| 6171 | * is still null. We forward the headers, we don't need them. |
Willy Tarreau | d98cf93 | 2009-12-27 22:54:55 +0100 | [diff] [blame] | 6172 | */ |
William Lallemand | 82fe75c | 2012-10-23 10:25:10 +0200 | [diff] [blame] | 6173 | channel_forward(res, msg->sov); |
| 6174 | msg->next = 0; |
| 6175 | msg->sov = 0; |
Willy Tarreau | a458b67 | 2012-03-05 11:17:50 +0100 | [diff] [blame] | 6176 | |
Willy Tarreau | a36fc4d | 2012-02-17 17:39:37 +0100 | [diff] [blame] | 6177 | if (msg->flags & HTTP_MSGF_TE_CHNK) |
Willy Tarreau | d98cf93 | 2009-12-27 22:54:55 +0100 | [diff] [blame] | 6178 | msg->msg_state = HTTP_MSG_CHUNK_SIZE; |
Willy Tarreau | 54d23df | 2012-10-25 19:04:45 +0200 | [diff] [blame] | 6179 | else |
Willy Tarreau | d98cf93 | 2009-12-27 22:54:55 +0100 | [diff] [blame] | 6180 | msg->msg_state = HTTP_MSG_DATA; |
Willy Tarreau | d98cf93 | 2009-12-27 22:54:55 +0100 | [diff] [blame] | 6181 | } |
| 6182 | |
William Lallemand | 82fe75c | 2012-10-23 10:25:10 +0200 | [diff] [blame] | 6183 | if (s->comp_algo != NULL) { |
Willy Tarreau | d655ffe | 2013-04-02 01:48:58 +0200 | [diff] [blame] | 6184 | ret = http_compression_buffer_init(s, res->buf, tmpbuf); /* init a buffer with headers */ |
Willy Tarreau | 4afd70a | 2014-01-25 02:26:39 +0100 | [diff] [blame] | 6185 | if (ret < 0) { |
| 6186 | res->flags |= CF_WAKE_WRITE; |
William Lallemand | 82fe75c | 2012-10-23 10:25:10 +0200 | [diff] [blame] | 6187 | goto missing_data; /* not enough spaces in buffers */ |
Willy Tarreau | 4afd70a | 2014-01-25 02:26:39 +0100 | [diff] [blame] | 6188 | } |
William Lallemand | 82fe75c | 2012-10-23 10:25:10 +0200 | [diff] [blame] | 6189 | compressing = 1; |
| 6190 | } |
| 6191 | |
Willy Tarreau | d98cf93 | 2009-12-27 22:54:55 +0100 | [diff] [blame] | 6192 | while (1) { |
Willy Tarreau | 610ecce | 2010-01-04 21:15:02 +0100 | [diff] [blame] | 6193 | http_silent_debug(__LINE__, s); |
Willy Tarreau | ea95316 | 2012-05-18 23:41:28 +0200 | [diff] [blame] | 6194 | /* we may have some data pending between sol and sov */ |
William Lallemand | 82fe75c | 2012-10-23 10:25:10 +0200 | [diff] [blame] | 6195 | if (s->comp_algo == NULL) { |
| 6196 | bytes = msg->sov - msg->sol; |
| 6197 | if (msg->chunk_len || bytes) { |
| 6198 | msg->sol = msg->sov; |
| 6199 | msg->next -= bytes; /* will be forwarded */ |
| 6200 | msg->chunk_len += bytes; |
| 6201 | msg->chunk_len -= channel_forward(res, msg->chunk_len); |
| 6202 | } |
Willy Tarreau | 638cd02 | 2010-01-03 07:42:04 +0100 | [diff] [blame] | 6203 | } |
| 6204 | |
Willy Tarreau | d655ffe | 2013-04-02 01:48:58 +0200 | [diff] [blame] | 6205 | switch (msg->msg_state - HTTP_MSG_DATA) { |
| 6206 | case HTTP_MSG_DATA - HTTP_MSG_DATA: /* must still forward */ |
William Lallemand | bf3ae61 | 2012-11-19 12:35:37 +0100 | [diff] [blame] | 6207 | if (compressing) { |
| 6208 | consumed_data += ret = http_compression_buffer_add_data(s, res->buf, tmpbuf); |
| 6209 | if (ret < 0) |
| 6210 | goto aborted_xfer; |
| 6211 | } |
William Lallemand | 82fe75c | 2012-10-23 10:25:10 +0200 | [diff] [blame] | 6212 | |
Willy Tarreau | 4afd70a | 2014-01-25 02:26:39 +0100 | [diff] [blame] | 6213 | if (res->to_forward || msg->chunk_len) { |
| 6214 | res->flags |= CF_WAKE_WRITE; |
Willy Tarreau | f5c8bd6 | 2010-01-04 07:10:34 +0100 | [diff] [blame] | 6215 | goto missing_data; |
Willy Tarreau | 4afd70a | 2014-01-25 02:26:39 +0100 | [diff] [blame] | 6216 | } |
Willy Tarreau | caabe41 | 2010-01-03 23:08:28 +0100 | [diff] [blame] | 6217 | |
| 6218 | /* nothing left to forward */ |
William Lallemand | bf3ae61 | 2012-11-19 12:35:37 +0100 | [diff] [blame] | 6219 | if (msg->flags & HTTP_MSGF_TE_CHNK) { |
Willy Tarreau | 54d23df | 2012-10-25 19:04:45 +0200 | [diff] [blame] | 6220 | msg->msg_state = HTTP_MSG_CHUNK_CRLF; |
William Lallemand | bf3ae61 | 2012-11-19 12:35:37 +0100 | [diff] [blame] | 6221 | } else { |
Willy Tarreau | caabe41 | 2010-01-03 23:08:28 +0100 | [diff] [blame] | 6222 | msg->msg_state = HTTP_MSG_DONE; |
William Lallemand | bf3ae61 | 2012-11-19 12:35:37 +0100 | [diff] [blame] | 6223 | if (compressing && consumed_data) { |
| 6224 | http_compression_buffer_end(s, &res->buf, &tmpbuf, 1); |
| 6225 | compressing = 0; |
| 6226 | } |
Willy Tarreau | d655ffe | 2013-04-02 01:48:58 +0200 | [diff] [blame] | 6227 | break; |
William Lallemand | bf3ae61 | 2012-11-19 12:35:37 +0100 | [diff] [blame] | 6228 | } |
Willy Tarreau | d655ffe | 2013-04-02 01:48:58 +0200 | [diff] [blame] | 6229 | /* fall through for HTTP_MSG_CHUNK_CRLF */ |
| 6230 | |
| 6231 | case HTTP_MSG_CHUNK_CRLF - HTTP_MSG_DATA: |
| 6232 | /* we want the CRLF after the data */ |
| 6233 | |
| 6234 | ret = http_skip_chunk_crlf(msg); |
| 6235 | if (ret == 0) |
| 6236 | goto missing_data; |
| 6237 | else if (ret < 0) { |
| 6238 | if (msg->err_pos >= 0) |
| 6239 | http_capture_bad_message(&s->be->invalid_rep, s, msg, HTTP_MSG_CHUNK_CRLF, s->fe); |
| 6240 | goto return_bad_res; |
| 6241 | } |
| 6242 | /* skipping data in buffer for compression */ |
| 6243 | if (compressing) { |
| 6244 | b_adv(res->buf, msg->next); |
| 6245 | msg->next = 0; |
| 6246 | msg->sov = 0; |
| 6247 | msg->sol = 0; |
| 6248 | } |
| 6249 | /* we're in MSG_CHUNK_SIZE now, fall through */ |
| 6250 | |
| 6251 | case HTTP_MSG_CHUNK_SIZE - HTTP_MSG_DATA: |
Willy Tarreau | 124d991 | 2011-03-01 20:30:48 +0100 | [diff] [blame] | 6252 | /* read the chunk size and assign it to ->chunk_len, then |
Willy Tarreau | a458b67 | 2012-03-05 11:17:50 +0100 | [diff] [blame] | 6253 | * set ->sov and ->next to point to the body and switch to DATA or |
| 6254 | * TRAILERS state. |
Willy Tarreau | d98cf93 | 2009-12-27 22:54:55 +0100 | [diff] [blame] | 6255 | */ |
Willy Tarreau | d98cf93 | 2009-12-27 22:54:55 +0100 | [diff] [blame] | 6256 | |
Willy Tarreau | d655ffe | 2013-04-02 01:48:58 +0200 | [diff] [blame] | 6257 | ret = http_parse_chunk_size(msg); |
Willy Tarreau | 54d23df | 2012-10-25 19:04:45 +0200 | [diff] [blame] | 6258 | if (ret == 0) |
Willy Tarreau | d98cf93 | 2009-12-27 22:54:55 +0100 | [diff] [blame] | 6259 | goto missing_data; |
Willy Tarreau | e1582eb | 2010-12-12 13:10:11 +0100 | [diff] [blame] | 6260 | else if (ret < 0) { |
| 6261 | if (msg->err_pos >= 0) |
Willy Tarreau | 8a0cef2 | 2012-03-09 13:39:23 +0100 | [diff] [blame] | 6262 | http_capture_bad_message(&s->be->invalid_rep, s, msg, HTTP_MSG_CHUNK_SIZE, s->fe); |
Willy Tarreau | d98cf93 | 2009-12-27 22:54:55 +0100 | [diff] [blame] | 6263 | goto return_bad_res; |
Willy Tarreau | e1582eb | 2010-12-12 13:10:11 +0100 | [diff] [blame] | 6264 | } |
William Lallemand | bf3ae61 | 2012-11-19 12:35:37 +0100 | [diff] [blame] | 6265 | if (compressing) { |
| 6266 | if (likely(msg->chunk_len > 0)) { |
| 6267 | /* skipping data if we are in compression mode */ |
| 6268 | b_adv(res->buf, msg->next); |
| 6269 | msg->next = 0; |
| 6270 | msg->sov = 0; |
| 6271 | msg->sol = 0; |
| 6272 | } else { |
| 6273 | if (consumed_data) { |
| 6274 | http_compression_buffer_end(s, &res->buf, &tmpbuf, 1); |
| 6275 | compressing = 0; |
| 6276 | } |
| 6277 | } |
William Lallemand | 82fe75c | 2012-10-23 10:25:10 +0200 | [diff] [blame] | 6278 | } |
Willy Tarreau | 0161d62 | 2013-04-02 01:26:55 +0200 | [diff] [blame] | 6279 | /* otherwise we're in HTTP_MSG_DATA or HTTP_MSG_TRAILERS state */ |
Willy Tarreau | d655ffe | 2013-04-02 01:48:58 +0200 | [diff] [blame] | 6280 | break; |
Willy Tarreau | 5523b32 | 2009-12-29 12:05:52 +0100 | [diff] [blame] | 6281 | |
Willy Tarreau | d655ffe | 2013-04-02 01:48:58 +0200 | [diff] [blame] | 6282 | case HTTP_MSG_TRAILERS - HTTP_MSG_DATA: |
| 6283 | ret = http_forward_trailers(msg); |
Willy Tarreau | d98cf93 | 2009-12-27 22:54:55 +0100 | [diff] [blame] | 6284 | if (ret == 0) |
| 6285 | goto missing_data; |
Willy Tarreau | e1582eb | 2010-12-12 13:10:11 +0100 | [diff] [blame] | 6286 | else if (ret < 0) { |
| 6287 | if (msg->err_pos >= 0) |
Willy Tarreau | 8a0cef2 | 2012-03-09 13:39:23 +0100 | [diff] [blame] | 6288 | http_capture_bad_message(&s->be->invalid_rep, s, msg, HTTP_MSG_TRAILERS, s->fe); |
Willy Tarreau | d98cf93 | 2009-12-27 22:54:55 +0100 | [diff] [blame] | 6289 | goto return_bad_res; |
Willy Tarreau | e1582eb | 2010-12-12 13:10:11 +0100 | [diff] [blame] | 6290 | } |
William Lallemand | 00bf1de | 2012-11-22 17:55:14 +0100 | [diff] [blame] | 6291 | if (s->comp_algo != NULL) { |
| 6292 | /* forwarding trailers */ |
| 6293 | channel_forward(res, msg->next); |
| 6294 | msg->next = 0; |
| 6295 | } |
Willy Tarreau | 2d43e18 | 2013-04-03 00:22:25 +0200 | [diff] [blame] | 6296 | /* we're in HTTP_MSG_DONE now, but we might still have |
| 6297 | * some data pending, so let's loop over once. |
| 6298 | */ |
| 6299 | break; |
Willy Tarreau | d655ffe | 2013-04-02 01:48:58 +0200 | [diff] [blame] | 6300 | |
| 6301 | default: |
Willy Tarreau | 610ecce | 2010-01-04 21:15:02 +0100 | [diff] [blame] | 6302 | /* other states, DONE...TUNNEL */ |
Willy Tarreau | d655ffe | 2013-04-02 01:48:58 +0200 | [diff] [blame] | 6303 | |
| 6304 | ret = msg->msg_state; |
Willy Tarreau | 4fe4190 | 2010-06-07 22:27:41 +0200 | [diff] [blame] | 6305 | /* for keep-alive we don't want to forward closes on DONE */ |
Willy Tarreau | 92aa1fa | 2010-08-28 18:57:20 +0200 | [diff] [blame] | 6306 | if ((txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_KAL || |
| 6307 | (txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_SCL) |
Willy Tarreau | 8263d2b | 2012-08-28 00:06:31 +0200 | [diff] [blame] | 6308 | channel_dont_close(res); |
Willy Tarreau | 610ecce | 2010-01-04 21:15:02 +0100 | [diff] [blame] | 6309 | if (http_resync_states(s)) { |
| 6310 | http_silent_debug(__LINE__, s); |
| 6311 | /* some state changes occurred, maybe the analyser |
| 6312 | * was disabled too. |
Willy Tarreau | 5523b32 | 2009-12-29 12:05:52 +0100 | [diff] [blame] | 6313 | */ |
Willy Tarreau | 3fe693b | 2010-12-12 12:50:05 +0100 | [diff] [blame] | 6314 | if (unlikely(msg->msg_state == HTTP_MSG_ERROR)) { |
Willy Tarreau | 03cdb7c | 2012-08-27 23:14:58 +0200 | [diff] [blame] | 6315 | if (res->flags & CF_SHUTW) { |
Willy Tarreau | 3fe693b | 2010-12-12 12:50:05 +0100 | [diff] [blame] | 6316 | /* response errors are most likely due to |
| 6317 | * the client aborting the transfer. |
| 6318 | */ |
Willy Tarreau | ed2fd2d | 2010-12-29 11:23:27 +0100 | [diff] [blame] | 6319 | goto aborted_xfer; |
Willy Tarreau | 3fe693b | 2010-12-12 12:50:05 +0100 | [diff] [blame] | 6320 | } |
Willy Tarreau | e1582eb | 2010-12-12 13:10:11 +0100 | [diff] [blame] | 6321 | if (msg->err_pos >= 0) |
Willy Tarreau | d655ffe | 2013-04-02 01:48:58 +0200 | [diff] [blame] | 6322 | http_capture_bad_message(&s->be->invalid_rep, s, msg, ret, s->fe); |
Willy Tarreau | 610ecce | 2010-01-04 21:15:02 +0100 | [diff] [blame] | 6323 | goto return_bad_res; |
Willy Tarreau | 3fe693b | 2010-12-12 12:50:05 +0100 | [diff] [blame] | 6324 | } |
Willy Tarreau | 610ecce | 2010-01-04 21:15:02 +0100 | [diff] [blame] | 6325 | return 1; |
Willy Tarreau | 5523b32 | 2009-12-29 12:05:52 +0100 | [diff] [blame] | 6326 | } |
Willy Tarreau | 610ecce | 2010-01-04 21:15:02 +0100 | [diff] [blame] | 6327 | return 0; |
Willy Tarreau | d98cf93 | 2009-12-27 22:54:55 +0100 | [diff] [blame] | 6328 | } |
| 6329 | } |
| 6330 | |
Willy Tarreau | d98cf93 | 2009-12-27 22:54:55 +0100 | [diff] [blame] | 6331 | missing_data: |
William Lallemand | bf3ae61 | 2012-11-19 12:35:37 +0100 | [diff] [blame] | 6332 | if (compressing && consumed_data) { |
William Lallemand | 82fe75c | 2012-10-23 10:25:10 +0200 | [diff] [blame] | 6333 | http_compression_buffer_end(s, &res->buf, &tmpbuf, 0); |
| 6334 | compressing = 0; |
| 6335 | } |
Willy Tarreau | f003d37 | 2012-11-26 13:35:37 +0100 | [diff] [blame] | 6336 | |
| 6337 | if (res->flags & CF_SHUTW) |
| 6338 | goto aborted_xfer; |
| 6339 | |
| 6340 | /* stop waiting for data if the input is closed before the end. If the |
| 6341 | * client side was already closed, it means that the client has aborted, |
| 6342 | * so we don't want to count this as a server abort. Otherwise it's a |
| 6343 | * server abort. |
| 6344 | */ |
Willy Tarreau | 03cdb7c | 2012-08-27 23:14:58 +0200 | [diff] [blame] | 6345 | if (res->flags & CF_SHUTR) { |
Willy Tarreau | f003d37 | 2012-11-26 13:35:37 +0100 | [diff] [blame] | 6346 | if ((res->flags & CF_SHUTW_NOW) || (s->req->flags & CF_SHUTR)) |
| 6347 | goto aborted_xfer; |
Willy Tarreau | 40dba09 | 2010-03-04 18:14:51 +0100 | [diff] [blame] | 6348 | if (!(s->flags & SN_ERR_MASK)) |
| 6349 | s->flags |= SN_ERR_SRVCL; |
Willy Tarreau | 7d0aaf3 | 2011-03-10 23:25:56 +0100 | [diff] [blame] | 6350 | s->be->be_counters.srv_aborts++; |
Willy Tarreau | 3fdb366 | 2012-11-12 00:42:33 +0100 | [diff] [blame] | 6351 | if (objt_server(s->target)) |
| 6352 | objt_server(s->target)->counters.srv_aborts++; |
Willy Tarreau | ed2fd2d | 2010-12-29 11:23:27 +0100 | [diff] [blame] | 6353 | goto return_bad_res_stats_ok; |
Willy Tarreau | 40dba09 | 2010-03-04 18:14:51 +0100 | [diff] [blame] | 6354 | } |
Willy Tarreau | f5c8bd6 | 2010-01-04 07:10:34 +0100 | [diff] [blame] | 6355 | |
Willy Tarreau | 40dba09 | 2010-03-04 18:14:51 +0100 | [diff] [blame] | 6356 | /* we need to obey the req analyser, so if it leaves, we must too */ |
Willy Tarreau | 610ecce | 2010-01-04 21:15:02 +0100 | [diff] [blame] | 6357 | if (!s->req->analysers) |
| 6358 | goto return_bad_res; |
| 6359 | |
Willy Tarreau | ea95316 | 2012-05-18 23:41:28 +0200 | [diff] [blame] | 6360 | /* forward any data pending between sol and sov */ |
William Lallemand | 82fe75c | 2012-10-23 10:25:10 +0200 | [diff] [blame] | 6361 | if (s->comp_algo == NULL) { |
| 6362 | bytes = msg->sov - msg->sol; |
| 6363 | if (msg->chunk_len || bytes) { |
| 6364 | msg->sol = msg->sov; |
| 6365 | msg->next -= bytes; /* will be forwarded */ |
| 6366 | msg->chunk_len += bytes; |
| 6367 | msg->chunk_len -= channel_forward(res, msg->chunk_len); |
| 6368 | } |
Willy Tarreau | d98cf93 | 2009-12-27 22:54:55 +0100 | [diff] [blame] | 6369 | } |
| 6370 | |
Willy Tarreau | 92aa1fa | 2010-08-28 18:57:20 +0200 | [diff] [blame] | 6371 | /* 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] | 6372 | * 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] | 6373 | * Similarly, with keep-alive on the client side, we don't want to forward a |
| 6374 | * close. |
| 6375 | */ |
Willy Tarreau | 08b4d79 | 2012-10-27 01:36:34 +0200 | [diff] [blame] | 6376 | if ((msg->flags & HTTP_MSGF_TE_CHNK) || s->comp_algo || |
Willy Tarreau | 92aa1fa | 2010-08-28 18:57:20 +0200 | [diff] [blame] | 6377 | (txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_KAL || |
| 6378 | (txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_SCL) |
Willy Tarreau | 8263d2b | 2012-08-28 00:06:31 +0200 | [diff] [blame] | 6379 | channel_dont_close(res); |
Willy Tarreau | 92aa1fa | 2010-08-28 18:57:20 +0200 | [diff] [blame] | 6380 | |
Willy Tarreau | 5c62092 | 2011-05-11 19:56:11 +0200 | [diff] [blame] | 6381 | /* 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] | 6382 | * 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] | 6383 | * 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] | 6384 | * modes are already handled by the stream sock layer. We must not do |
| 6385 | * this in content-length mode because it could present the MSG_MORE |
| 6386 | * flag with the last block of forwarded data, which would cause an |
| 6387 | * additional delay to be observed by the receiver. |
Willy Tarreau | 5c62092 | 2011-05-11 19:56:11 +0200 | [diff] [blame] | 6388 | */ |
Willy Tarreau | 08b4d79 | 2012-10-27 01:36:34 +0200 | [diff] [blame] | 6389 | if ((msg->flags & HTTP_MSGF_TE_CHNK) || s->comp_algo) |
Willy Tarreau | 03cdb7c | 2012-08-27 23:14:58 +0200 | [diff] [blame] | 6390 | res->flags |= CF_EXPECT_MORE; |
Willy Tarreau | 5c62092 | 2011-05-11 19:56:11 +0200 | [diff] [blame] | 6391 | |
Willy Tarreau | d98cf93 | 2009-12-27 22:54:55 +0100 | [diff] [blame] | 6392 | /* the session handler will take care of timeouts and errors */ |
Willy Tarreau | 610ecce | 2010-01-04 21:15:02 +0100 | [diff] [blame] | 6393 | http_silent_debug(__LINE__, s); |
Willy Tarreau | d98cf93 | 2009-12-27 22:54:55 +0100 | [diff] [blame] | 6394 | return 0; |
| 6395 | |
Willy Tarreau | 40dba09 | 2010-03-04 18:14:51 +0100 | [diff] [blame] | 6396 | return_bad_res: /* let's centralize all bad responses */ |
Willy Tarreau | 7d0aaf3 | 2011-03-10 23:25:56 +0100 | [diff] [blame] | 6397 | s->be->be_counters.failed_resp++; |
Willy Tarreau | 3fdb366 | 2012-11-12 00:42:33 +0100 | [diff] [blame] | 6398 | if (objt_server(s->target)) |
| 6399 | objt_server(s->target)->counters.failed_resp++; |
Willy Tarreau | ed2fd2d | 2010-12-29 11:23:27 +0100 | [diff] [blame] | 6400 | |
| 6401 | return_bad_res_stats_ok: |
Willy Tarreau | d98cf93 | 2009-12-27 22:54:55 +0100 | [diff] [blame] | 6402 | txn->rsp.msg_state = HTTP_MSG_ERROR; |
Willy Tarreau | 148d099 | 2010-01-10 10:21:21 +0100 | [diff] [blame] | 6403 | /* don't send any error message as we're in the body */ |
| 6404 | stream_int_retnclose(res->cons, NULL); |
Willy Tarreau | d98cf93 | 2009-12-27 22:54:55 +0100 | [diff] [blame] | 6405 | res->analysers = 0; |
Willy Tarreau | ed2fd2d | 2010-12-29 11:23:27 +0100 | [diff] [blame] | 6406 | 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] | 6407 | if (objt_server(s->target)) |
| 6408 | health_adjust(objt_server(s->target), HANA_STATUS_HTTP_HDRRSP); |
Willy Tarreau | d98cf93 | 2009-12-27 22:54:55 +0100 | [diff] [blame] | 6409 | |
| 6410 | if (!(s->flags & SN_ERR_MASK)) |
| 6411 | s->flags |= SN_ERR_PRXCOND; |
| 6412 | if (!(s->flags & SN_FINST_MASK)) |
Willy Tarreau | 40dba09 | 2010-03-04 18:14:51 +0100 | [diff] [blame] | 6413 | s->flags |= SN_FINST_D; |
Willy Tarreau | ed2fd2d | 2010-12-29 11:23:27 +0100 | [diff] [blame] | 6414 | return 0; |
| 6415 | |
| 6416 | aborted_xfer: |
| 6417 | txn->rsp.msg_state = HTTP_MSG_ERROR; |
| 6418 | /* don't send any error message as we're in the body */ |
| 6419 | stream_int_retnclose(res->cons, NULL); |
| 6420 | res->analysers = 0; |
| 6421 | s->req->analysers = 0; /* we're in data phase, we want to abort both directions */ |
| 6422 | |
Willy Tarreau | 7d0aaf3 | 2011-03-10 23:25:56 +0100 | [diff] [blame] | 6423 | s->fe->fe_counters.cli_aborts++; |
| 6424 | s->be->be_counters.cli_aborts++; |
Willy Tarreau | 3fdb366 | 2012-11-12 00:42:33 +0100 | [diff] [blame] | 6425 | if (objt_server(s->target)) |
| 6426 | objt_server(s->target)->counters.cli_aborts++; |
Willy Tarreau | ed2fd2d | 2010-12-29 11:23:27 +0100 | [diff] [blame] | 6427 | |
| 6428 | if (!(s->flags & SN_ERR_MASK)) |
| 6429 | s->flags |= SN_ERR_CLICL; |
| 6430 | if (!(s->flags & SN_FINST_MASK)) |
| 6431 | s->flags |= SN_FINST_D; |
Willy Tarreau | d98cf93 | 2009-12-27 22:54:55 +0100 | [diff] [blame] | 6432 | return 0; |
| 6433 | } |
| 6434 | |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 6435 | /* Iterate the same filter through all request headers. |
| 6436 | * Returns 1 if this filter can be stopped upon return, otherwise 0. |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 6437 | * Since it can manage the switch to another backend, it updates the per-proxy |
| 6438 | * DENY stats. |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 6439 | */ |
Willy Tarreau | 7421efb | 2012-07-02 15:11:27 +0200 | [diff] [blame] | 6440 | int apply_filter_to_req_headers(struct session *t, struct channel *req, struct hdr_exp *exp) |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 6441 | { |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 6442 | char term; |
| 6443 | char *cur_ptr, *cur_end, *cur_next; |
| 6444 | int cur_idx, old_idx, last_hdr; |
Willy Tarreau | 4dbc4a2 | 2007-03-03 16:23:22 +0100 | [diff] [blame] | 6445 | struct http_txn *txn = &t->txn; |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 6446 | struct hdr_idx_elem *cur_hdr; |
Willy Tarreau | 19d14ef | 2012-10-29 16:51:55 +0100 | [diff] [blame] | 6447 | int delta; |
Willy Tarreau | 0f7562b | 2007-01-07 15:46:13 +0100 | [diff] [blame] | 6448 | |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 6449 | last_hdr = 0; |
| 6450 | |
Willy Tarreau | 9b28e03 | 2012-10-12 23:49:43 +0200 | [diff] [blame] | 6451 | cur_next = req->buf->p + hdr_idx_first_pos(&txn->hdr_idx); |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 6452 | old_idx = 0; |
| 6453 | |
| 6454 | while (!last_hdr) { |
Willy Tarreau | 3d30059 | 2007-03-18 18:34:41 +0100 | [diff] [blame] | 6455 | if (unlikely(txn->flags & (TX_CLDENY | TX_CLTARPIT))) |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 6456 | return 1; |
Willy Tarreau | 3d30059 | 2007-03-18 18:34:41 +0100 | [diff] [blame] | 6457 | else if (unlikely(txn->flags & TX_CLALLOW) && |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 6458 | (exp->action == ACT_ALLOW || |
| 6459 | exp->action == ACT_DENY || |
| 6460 | exp->action == ACT_TARPIT)) |
| 6461 | return 0; |
| 6462 | |
Willy Tarreau | 4dbc4a2 | 2007-03-03 16:23:22 +0100 | [diff] [blame] | 6463 | cur_idx = txn->hdr_idx.v[old_idx].next; |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 6464 | if (!cur_idx) |
| 6465 | break; |
| 6466 | |
Willy Tarreau | 4dbc4a2 | 2007-03-03 16:23:22 +0100 | [diff] [blame] | 6467 | cur_hdr = &txn->hdr_idx.v[cur_idx]; |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 6468 | cur_ptr = cur_next; |
| 6469 | cur_end = cur_ptr + cur_hdr->len; |
| 6470 | cur_next = cur_end + cur_hdr->cr + 1; |
| 6471 | |
| 6472 | /* Now we have one header between cur_ptr and cur_end, |
| 6473 | * and the next header starts at cur_next. |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 6474 | */ |
| 6475 | |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 6476 | /* The annoying part is that pattern matching needs |
| 6477 | * that we modify the contents to null-terminate all |
| 6478 | * strings before testing them. |
| 6479 | */ |
| 6480 | |
| 6481 | term = *cur_end; |
| 6482 | *cur_end = '\0'; |
| 6483 | |
| 6484 | if (regexec(exp->preg, cur_ptr, MAX_MATCH, pmatch, 0) == 0) { |
| 6485 | switch (exp->action) { |
| 6486 | case ACT_SETBE: |
| 6487 | /* It is not possible to jump a second time. |
| 6488 | * FIXME: should we return an HTTP/500 here so that |
| 6489 | * the admin knows there's a problem ? |
| 6490 | */ |
| 6491 | if (t->be != t->fe) |
| 6492 | break; |
| 6493 | |
| 6494 | /* Swithing Proxy */ |
Willy Tarreau | 1d0dfb1 | 2009-07-07 15:10:31 +0200 | [diff] [blame] | 6495 | session_set_backend(t, (struct proxy *)exp->replace); |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 6496 | last_hdr = 1; |
| 6497 | break; |
| 6498 | |
| 6499 | case ACT_ALLOW: |
Willy Tarreau | 3d30059 | 2007-03-18 18:34:41 +0100 | [diff] [blame] | 6500 | txn->flags |= TX_CLALLOW; |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 6501 | last_hdr = 1; |
| 6502 | break; |
| 6503 | |
| 6504 | case ACT_DENY: |
Willy Tarreau | 3d30059 | 2007-03-18 18:34:41 +0100 | [diff] [blame] | 6505 | txn->flags |= TX_CLDENY; |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 6506 | last_hdr = 1; |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 6507 | break; |
| 6508 | |
| 6509 | case ACT_TARPIT: |
Willy Tarreau | 3d30059 | 2007-03-18 18:34:41 +0100 | [diff] [blame] | 6510 | txn->flags |= TX_CLTARPIT; |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 6511 | last_hdr = 1; |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 6512 | break; |
| 6513 | |
| 6514 | case ACT_REPLACE: |
Willy Tarreau | 19d14ef | 2012-10-29 16:51:55 +0100 | [diff] [blame] | 6515 | trash.len = exp_replace(trash.str, cur_ptr, exp->replace, pmatch); |
| 6516 | 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] | 6517 | /* FIXME: if the user adds a newline in the replacement, the |
| 6518 | * index will not be recalculated for now, and the new line |
| 6519 | * will not be counted as a new header. |
| 6520 | */ |
| 6521 | |
| 6522 | cur_end += delta; |
| 6523 | cur_next += delta; |
| 6524 | cur_hdr->len += delta; |
Willy Tarreau | fa355d4 | 2009-11-29 18:12:29 +0100 | [diff] [blame] | 6525 | http_msg_move_end(&txn->req, delta); |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 6526 | break; |
| 6527 | |
| 6528 | case ACT_REMOVE: |
Willy Tarreau | 9b28e03 | 2012-10-12 23:49:43 +0200 | [diff] [blame] | 6529 | delta = buffer_replace2(req->buf, cur_ptr, cur_next, NULL, 0); |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 6530 | cur_next += delta; |
| 6531 | |
Willy Tarreau | fa355d4 | 2009-11-29 18:12:29 +0100 | [diff] [blame] | 6532 | http_msg_move_end(&txn->req, delta); |
Willy Tarreau | 4dbc4a2 | 2007-03-03 16:23:22 +0100 | [diff] [blame] | 6533 | txn->hdr_idx.v[old_idx].next = cur_hdr->next; |
| 6534 | txn->hdr_idx.used--; |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 6535 | cur_hdr->len = 0; |
| 6536 | cur_end = NULL; /* null-term has been rewritten */ |
Willy Tarreau | 26db59e | 2010-11-28 06:57:24 +0100 | [diff] [blame] | 6537 | cur_idx = old_idx; |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 6538 | break; |
| 6539 | |
| 6540 | } |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 6541 | } |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 6542 | if (cur_end) |
| 6543 | *cur_end = term; /* restore the string terminator */ |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 6544 | |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 6545 | /* keep the link from this header to next one in case of later |
| 6546 | * removal of next header. |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 6547 | */ |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 6548 | old_idx = cur_idx; |
| 6549 | } |
| 6550 | return 0; |
| 6551 | } |
| 6552 | |
| 6553 | |
| 6554 | /* Apply the filter to the request line. |
| 6555 | * Returns 0 if nothing has been done, 1 if the filter has been applied, |
| 6556 | * or -1 if a replacement resulted in an invalid request line. |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 6557 | * Since it can manage the switch to another backend, it updates the per-proxy |
| 6558 | * DENY stats. |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 6559 | */ |
Willy Tarreau | 7421efb | 2012-07-02 15:11:27 +0200 | [diff] [blame] | 6560 | int apply_filter_to_req_line(struct session *t, struct channel *req, struct hdr_exp *exp) |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 6561 | { |
| 6562 | char term; |
| 6563 | char *cur_ptr, *cur_end; |
| 6564 | int done; |
Willy Tarreau | 4dbc4a2 | 2007-03-03 16:23:22 +0100 | [diff] [blame] | 6565 | struct http_txn *txn = &t->txn; |
Willy Tarreau | 19d14ef | 2012-10-29 16:51:55 +0100 | [diff] [blame] | 6566 | int delta; |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 6567 | |
Willy Tarreau | 3d30059 | 2007-03-18 18:34:41 +0100 | [diff] [blame] | 6568 | if (unlikely(txn->flags & (TX_CLDENY | TX_CLTARPIT))) |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 6569 | return 1; |
Willy Tarreau | 3d30059 | 2007-03-18 18:34:41 +0100 | [diff] [blame] | 6570 | else if (unlikely(txn->flags & TX_CLALLOW) && |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 6571 | (exp->action == ACT_ALLOW || |
| 6572 | exp->action == ACT_DENY || |
| 6573 | exp->action == ACT_TARPIT)) |
| 6574 | return 0; |
| 6575 | else if (exp->action == ACT_REMOVE) |
| 6576 | return 0; |
| 6577 | |
| 6578 | done = 0; |
| 6579 | |
Willy Tarreau | 9b28e03 | 2012-10-12 23:49:43 +0200 | [diff] [blame] | 6580 | cur_ptr = req->buf->p; |
Willy Tarreau | 4dbc4a2 | 2007-03-03 16:23:22 +0100 | [diff] [blame] | 6581 | cur_end = cur_ptr + txn->req.sl.rq.l; |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 6582 | |
| 6583 | /* Now we have the request line between cur_ptr and cur_end */ |
| 6584 | |
| 6585 | /* The annoying part is that pattern matching needs |
| 6586 | * that we modify the contents to null-terminate all |
| 6587 | * strings before testing them. |
| 6588 | */ |
| 6589 | |
| 6590 | term = *cur_end; |
| 6591 | *cur_end = '\0'; |
| 6592 | |
| 6593 | if (regexec(exp->preg, cur_ptr, MAX_MATCH, pmatch, 0) == 0) { |
| 6594 | switch (exp->action) { |
| 6595 | case ACT_SETBE: |
| 6596 | /* It is not possible to jump a second time. |
| 6597 | * FIXME: should we return an HTTP/500 here so that |
| 6598 | * the admin knows there's a problem ? |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 6599 | */ |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 6600 | if (t->be != t->fe) |
| 6601 | break; |
| 6602 | |
| 6603 | /* Swithing Proxy */ |
Willy Tarreau | 1d0dfb1 | 2009-07-07 15:10:31 +0200 | [diff] [blame] | 6604 | session_set_backend(t, (struct proxy *)exp->replace); |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 6605 | done = 1; |
| 6606 | break; |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 6607 | |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 6608 | case ACT_ALLOW: |
Willy Tarreau | 3d30059 | 2007-03-18 18:34:41 +0100 | [diff] [blame] | 6609 | txn->flags |= TX_CLALLOW; |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 6610 | done = 1; |
| 6611 | break; |
Willy Tarreau | a496b60 | 2006-12-17 23:15:24 +0100 | [diff] [blame] | 6612 | |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 6613 | case ACT_DENY: |
Willy Tarreau | 3d30059 | 2007-03-18 18:34:41 +0100 | [diff] [blame] | 6614 | txn->flags |= TX_CLDENY; |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 6615 | done = 1; |
| 6616 | break; |
Willy Tarreau | a496b60 | 2006-12-17 23:15:24 +0100 | [diff] [blame] | 6617 | |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 6618 | case ACT_TARPIT: |
Willy Tarreau | 3d30059 | 2007-03-18 18:34:41 +0100 | [diff] [blame] | 6619 | txn->flags |= TX_CLTARPIT; |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 6620 | done = 1; |
| 6621 | break; |
Willy Tarreau | a496b60 | 2006-12-17 23:15:24 +0100 | [diff] [blame] | 6622 | |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 6623 | case ACT_REPLACE: |
| 6624 | *cur_end = term; /* restore the string terminator */ |
Willy Tarreau | 19d14ef | 2012-10-29 16:51:55 +0100 | [diff] [blame] | 6625 | trash.len = exp_replace(trash.str, cur_ptr, exp->replace, pmatch); |
| 6626 | 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] | 6627 | /* FIXME: if the user adds a newline in the replacement, the |
| 6628 | * index will not be recalculated for now, and the new line |
| 6629 | * will not be counted as a new header. |
| 6630 | */ |
Willy Tarreau | a496b60 | 2006-12-17 23:15:24 +0100 | [diff] [blame] | 6631 | |
Willy Tarreau | fa355d4 | 2009-11-29 18:12:29 +0100 | [diff] [blame] | 6632 | http_msg_move_end(&txn->req, delta); |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 6633 | cur_end += delta; |
Willy Tarreau | 69d8c5d | 2012-05-08 09:44:41 +0200 | [diff] [blame] | 6634 | cur_end = (char *)http_parse_reqline(&txn->req, |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 6635 | HTTP_MSG_RQMETH, |
| 6636 | cur_ptr, cur_end + 1, |
| 6637 | NULL, NULL); |
| 6638 | if (unlikely(!cur_end)) |
| 6639 | return -1; |
Willy Tarreau | a496b60 | 2006-12-17 23:15:24 +0100 | [diff] [blame] | 6640 | |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 6641 | /* we have a full request and we know that we have either a CR |
| 6642 | * or an LF at <ptr>. |
| 6643 | */ |
Willy Tarreau | 4dbc4a2 | 2007-03-03 16:23:22 +0100 | [diff] [blame] | 6644 | txn->meth = find_http_meth(cur_ptr, txn->req.sl.rq.m_l); |
| 6645 | 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] | 6646 | /* there is no point trying this regex on headers */ |
| 6647 | return 1; |
| 6648 | } |
| 6649 | } |
| 6650 | *cur_end = term; /* restore the string terminator */ |
| 6651 | return done; |
| 6652 | } |
Willy Tarreau | 97de624 | 2006-12-27 17:18:38 +0100 | [diff] [blame] | 6653 | |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 6654 | |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 6655 | |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 6656 | /* |
Willy Tarreau | 6c123b1 | 2010-01-28 20:22:06 +0100 | [diff] [blame] | 6657 | * Apply all the req filters of proxy <px> to all headers in buffer <req> of session <s>. |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 6658 | * 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] | 6659 | * unparsable request. Since it can manage the switch to another backend, it |
| 6660 | * updates the per-proxy DENY stats. |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 6661 | */ |
Willy Tarreau | 7421efb | 2012-07-02 15:11:27 +0200 | [diff] [blame] | 6662 | int apply_filters_to_request(struct session *s, struct channel *req, struct proxy *px) |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 6663 | { |
Willy Tarreau | 6c123b1 | 2010-01-28 20:22:06 +0100 | [diff] [blame] | 6664 | struct http_txn *txn = &s->txn; |
| 6665 | struct hdr_exp *exp; |
| 6666 | |
| 6667 | for (exp = px->req_exp; exp; exp = exp->next) { |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 6668 | int ret; |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 6669 | |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 6670 | /* |
| 6671 | * The interleaving of transformations and verdicts |
| 6672 | * makes it difficult to decide to continue or stop |
| 6673 | * the evaluation. |
| 6674 | */ |
| 6675 | |
Willy Tarreau | 6c123b1 | 2010-01-28 20:22:06 +0100 | [diff] [blame] | 6676 | if (txn->flags & (TX_CLDENY|TX_CLTARPIT)) |
| 6677 | break; |
| 6678 | |
Willy Tarreau | 3d30059 | 2007-03-18 18:34:41 +0100 | [diff] [blame] | 6679 | if ((txn->flags & TX_CLALLOW) && |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 6680 | (exp->action == ACT_ALLOW || exp->action == ACT_DENY || |
Willy Tarreau | 6c123b1 | 2010-01-28 20:22:06 +0100 | [diff] [blame] | 6681 | exp->action == ACT_TARPIT || exp->action == ACT_PASS)) |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 6682 | continue; |
Willy Tarreau | 6c123b1 | 2010-01-28 20:22:06 +0100 | [diff] [blame] | 6683 | |
| 6684 | /* if this filter had a condition, evaluate it now and skip to |
| 6685 | * next filter if the condition does not match. |
| 6686 | */ |
| 6687 | if (exp->cond) { |
Willy Tarreau | 32a6f2e | 2012-04-25 10:13:36 +0200 | [diff] [blame] | 6688 | ret = acl_exec_cond(exp->cond, px, s, txn, SMP_OPT_DIR_REQ|SMP_OPT_FINAL); |
Willy Tarreau | 6c123b1 | 2010-01-28 20:22:06 +0100 | [diff] [blame] | 6689 | ret = acl_pass(ret); |
| 6690 | if (((struct acl_cond *)exp->cond)->pol == ACL_COND_UNLESS) |
| 6691 | ret = !ret; |
| 6692 | |
| 6693 | if (!ret) |
| 6694 | continue; |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 6695 | } |
| 6696 | |
| 6697 | /* Apply the filter to the request line. */ |
Willy Tarreau | 6c123b1 | 2010-01-28 20:22:06 +0100 | [diff] [blame] | 6698 | ret = apply_filter_to_req_line(s, req, exp); |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 6699 | if (unlikely(ret < 0)) |
| 6700 | return -1; |
| 6701 | |
| 6702 | if (likely(ret == 0)) { |
| 6703 | /* The filter did not match the request, it can be |
| 6704 | * iterated through all headers. |
| 6705 | */ |
Willy Tarreau | 6c123b1 | 2010-01-28 20:22:06 +0100 | [diff] [blame] | 6706 | apply_filter_to_req_headers(s, req, exp); |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 6707 | } |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 6708 | } |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 6709 | return 0; |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 6710 | } |
| 6711 | |
| 6712 | |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 6713 | |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 6714 | /* |
Cyril Bonté | bf47aeb | 2009-10-15 00:15:40 +0200 | [diff] [blame] | 6715 | * Try to retrieve the server associated to the appsession. |
| 6716 | * If the server is found, it's assigned to the session. |
| 6717 | */ |
Cyril Bonté | b21570a | 2009-11-29 20:04:48 +0100 | [diff] [blame] | 6718 | void manage_client_side_appsession(struct session *t, const char *buf, int len) { |
Cyril Bonté | bf47aeb | 2009-10-15 00:15:40 +0200 | [diff] [blame] | 6719 | struct http_txn *txn = &t->txn; |
| 6720 | appsess *asession = NULL; |
| 6721 | char *sessid_temp = NULL; |
| 6722 | |
Cyril Bonté | b21570a | 2009-11-29 20:04:48 +0100 | [diff] [blame] | 6723 | if (len > t->be->appsession_len) { |
| 6724 | len = t->be->appsession_len; |
| 6725 | } |
| 6726 | |
Cyril Bonté | bf47aeb | 2009-10-15 00:15:40 +0200 | [diff] [blame] | 6727 | if (t->be->options2 & PR_O2_AS_REQL) { |
| 6728 | /* request-learn option is enabled : store the sessid in the session for future use */ |
Willy Tarreau | a3377ee | 2010-01-10 10:49:11 +0100 | [diff] [blame] | 6729 | if (txn->sessid != NULL) { |
Cyril Bonté | bf47aeb | 2009-10-15 00:15:40 +0200 | [diff] [blame] | 6730 | /* free previously allocated memory as we don't need the session id found in the URL anymore */ |
Willy Tarreau | a3377ee | 2010-01-10 10:49:11 +0100 | [diff] [blame] | 6731 | pool_free2(apools.sessid, txn->sessid); |
Cyril Bonté | bf47aeb | 2009-10-15 00:15:40 +0200 | [diff] [blame] | 6732 | } |
| 6733 | |
Willy Tarreau | a3377ee | 2010-01-10 10:49:11 +0100 | [diff] [blame] | 6734 | if ((txn->sessid = pool_alloc2(apools.sessid)) == NULL) { |
Cyril Bonté | bf47aeb | 2009-10-15 00:15:40 +0200 | [diff] [blame] | 6735 | Alert("Not enough memory process_cli():asession->sessid:malloc().\n"); |
| 6736 | send_log(t->be, LOG_ALERT, "Not enough memory process_cli():asession->sessid:malloc().\n"); |
| 6737 | return; |
| 6738 | } |
| 6739 | |
Willy Tarreau | a3377ee | 2010-01-10 10:49:11 +0100 | [diff] [blame] | 6740 | memcpy(txn->sessid, buf, len); |
| 6741 | txn->sessid[len] = 0; |
Cyril Bonté | bf47aeb | 2009-10-15 00:15:40 +0200 | [diff] [blame] | 6742 | } |
| 6743 | |
| 6744 | if ((sessid_temp = pool_alloc2(apools.sessid)) == NULL) { |
| 6745 | Alert("Not enough memory process_cli():asession->sessid:malloc().\n"); |
| 6746 | send_log(t->be, LOG_ALERT, "Not enough memory process_cli():asession->sessid:malloc().\n"); |
| 6747 | return; |
| 6748 | } |
| 6749 | |
Cyril Bonté | b21570a | 2009-11-29 20:04:48 +0100 | [diff] [blame] | 6750 | memcpy(sessid_temp, buf, len); |
| 6751 | sessid_temp[len] = 0; |
Cyril Bonté | bf47aeb | 2009-10-15 00:15:40 +0200 | [diff] [blame] | 6752 | |
| 6753 | asession = appsession_hash_lookup(&(t->be->htbl_proxy), sessid_temp); |
| 6754 | /* free previously allocated memory */ |
| 6755 | pool_free2(apools.sessid, sessid_temp); |
| 6756 | |
| 6757 | if (asession != NULL) { |
| 6758 | asession->expire = tick_add_ifset(now_ms, t->be->timeout.appsession); |
| 6759 | if (!(t->be->options2 & PR_O2_AS_REQL)) |
| 6760 | asession->request_count++; |
| 6761 | |
| 6762 | if (asession->serverid != NULL) { |
| 6763 | struct server *srv = t->be->srv; |
Cyril Bonté | 47fdd8e | 2010-04-25 00:00:51 +0200 | [diff] [blame] | 6764 | |
Cyril Bonté | bf47aeb | 2009-10-15 00:15:40 +0200 | [diff] [blame] | 6765 | while (srv) { |
| 6766 | if (strcmp(srv->id, asession->serverid) == 0) { |
Willy Tarreau | 4de9149 | 2010-01-22 19:10:05 +0100 | [diff] [blame] | 6767 | if ((srv->state & SRV_RUNNING) || |
| 6768 | (t->be->options & PR_O_PERSIST) || |
| 6769 | (t->flags & SN_FORCE_PRST)) { |
Cyril Bonté | bf47aeb | 2009-10-15 00:15:40 +0200 | [diff] [blame] | 6770 | /* we found the server and it's usable */ |
| 6771 | txn->flags &= ~TX_CK_MASK; |
Willy Tarreau | 2a6d88d | 2010-01-24 13:10:43 +0100 | [diff] [blame] | 6772 | txn->flags |= (srv->state & SRV_RUNNING) ? TX_CK_VALID : TX_CK_DOWN; |
Cyril Bonté | bf47aeb | 2009-10-15 00:15:40 +0200 | [diff] [blame] | 6773 | t->flags |= SN_DIRECT | SN_ASSIGNED; |
Willy Tarreau | 3fdb366 | 2012-11-12 00:42:33 +0100 | [diff] [blame] | 6774 | t->target = &srv->obj_type; |
Willy Tarreau | 664beb8 | 2011-03-10 11:38:29 +0100 | [diff] [blame] | 6775 | |
Cyril Bonté | bf47aeb | 2009-10-15 00:15:40 +0200 | [diff] [blame] | 6776 | break; |
| 6777 | } else { |
| 6778 | txn->flags &= ~TX_CK_MASK; |
| 6779 | txn->flags |= TX_CK_DOWN; |
| 6780 | } |
| 6781 | } |
| 6782 | srv = srv->next; |
| 6783 | } |
| 6784 | } |
| 6785 | } |
| 6786 | } |
| 6787 | |
Willy Tarreau | eb7b0a2 | 2010-08-31 16:45:02 +0200 | [diff] [blame] | 6788 | /* Find the end of a cookie value contained between <s> and <e>. It works the |
| 6789 | * same way as with headers above except that the semi-colon also ends a token. |
| 6790 | * See RFC2965 for more information. Note that it requires a valid header to |
| 6791 | * return a valid result. |
| 6792 | */ |
| 6793 | char *find_cookie_value_end(char *s, const char *e) |
| 6794 | { |
| 6795 | int quoted, qdpair; |
| 6796 | |
| 6797 | quoted = qdpair = 0; |
| 6798 | for (; s < e; s++) { |
| 6799 | if (qdpair) qdpair = 0; |
| 6800 | else if (quoted) { |
| 6801 | if (*s == '\\') qdpair = 1; |
| 6802 | else if (*s == '"') quoted = 0; |
| 6803 | } |
| 6804 | else if (*s == '"') quoted = 1; |
| 6805 | else if (*s == ',' || *s == ';') return s; |
| 6806 | } |
| 6807 | return s; |
| 6808 | } |
| 6809 | |
| 6810 | /* Delete a value in a header between delimiters <from> and <next> in buffer |
| 6811 | * <buf>. The number of characters displaced is returned, and the pointer to |
| 6812 | * the first delimiter is updated if required. The function tries as much as |
| 6813 | * possible to respect the following principles : |
| 6814 | * - replace <from> delimiter by the <next> one unless <from> points to a |
| 6815 | * colon, in which case <next> is simply removed |
| 6816 | * - set exactly one space character after the new first delimiter, unless |
| 6817 | * there are not enough characters in the block being moved to do so. |
| 6818 | * - remove unneeded spaces before the previous delimiter and after the new |
| 6819 | * one. |
| 6820 | * |
| 6821 | * It is the caller's responsibility to ensure that : |
| 6822 | * - <from> points to a valid delimiter or the colon ; |
| 6823 | * - <next> points to a valid delimiter or the final CR/LF ; |
| 6824 | * - there are non-space chars before <from> ; |
| 6825 | * - there is a CR/LF at or after <next>. |
| 6826 | */ |
Willy Tarreau | af81935 | 2012-08-27 22:08:00 +0200 | [diff] [blame] | 6827 | int del_hdr_value(struct buffer *buf, char **from, char *next) |
Willy Tarreau | eb7b0a2 | 2010-08-31 16:45:02 +0200 | [diff] [blame] | 6828 | { |
| 6829 | char *prev = *from; |
| 6830 | |
| 6831 | if (*prev == ':') { |
| 6832 | /* We're removing the first value, preserve the colon and add a |
| 6833 | * space if possible. |
| 6834 | */ |
| 6835 | if (!http_is_crlf[(unsigned char)*next]) |
| 6836 | next++; |
| 6837 | prev++; |
| 6838 | if (prev < next) |
| 6839 | *prev++ = ' '; |
| 6840 | |
| 6841 | while (http_is_spht[(unsigned char)*next]) |
| 6842 | next++; |
| 6843 | } else { |
| 6844 | /* Remove useless spaces before the old delimiter. */ |
| 6845 | while (http_is_spht[(unsigned char)*(prev-1)]) |
| 6846 | prev--; |
| 6847 | *from = prev; |
| 6848 | |
| 6849 | /* copy the delimiter and if possible a space if we're |
| 6850 | * not at the end of the line. |
| 6851 | */ |
| 6852 | if (!http_is_crlf[(unsigned char)*next]) { |
| 6853 | *prev++ = *next++; |
| 6854 | if (prev + 1 < next) |
| 6855 | *prev++ = ' '; |
| 6856 | while (http_is_spht[(unsigned char)*next]) |
| 6857 | next++; |
| 6858 | } |
| 6859 | } |
| 6860 | return buffer_replace2(buf, prev, next, NULL, 0); |
| 6861 | } |
| 6862 | |
Cyril Bonté | bf47aeb | 2009-10-15 00:15:40 +0200 | [diff] [blame] | 6863 | /* |
Willy Tarreau | 396d2c6 | 2007-11-04 19:30:00 +0100 | [diff] [blame] | 6864 | * 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] | 6865 | * desirable to call it only when needed. This code is quite complex because |
| 6866 | * of the multiple very crappy and ambiguous syntaxes we have to support. it |
| 6867 | * highly recommended not to touch this part without a good reason ! |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 6868 | */ |
Willy Tarreau | 7421efb | 2012-07-02 15:11:27 +0200 | [diff] [blame] | 6869 | void manage_client_side_cookies(struct session *t, struct channel *req) |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 6870 | { |
Willy Tarreau | 4dbc4a2 | 2007-03-03 16:23:22 +0100 | [diff] [blame] | 6871 | struct http_txn *txn = &t->txn; |
Willy Tarreau | eb7b0a2 | 2010-08-31 16:45:02 +0200 | [diff] [blame] | 6872 | int preserve_hdr; |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 6873 | int cur_idx, old_idx; |
Willy Tarreau | eb7b0a2 | 2010-08-31 16:45:02 +0200 | [diff] [blame] | 6874 | char *hdr_beg, *hdr_end, *hdr_next, *del_from; |
| 6875 | char *prev, *att_beg, *att_end, *equal, *val_beg, *val_end, *next; |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 6876 | |
Willy Tarreau | eb7b0a2 | 2010-08-31 16:45:02 +0200 | [diff] [blame] | 6877 | /* Iterate through the headers, we start with the start line. */ |
Willy Tarreau | 83969f4 | 2007-01-22 08:55:47 +0100 | [diff] [blame] | 6878 | old_idx = 0; |
Willy Tarreau | 9b28e03 | 2012-10-12 23:49:43 +0200 | [diff] [blame] | 6879 | hdr_next = req->buf->p + hdr_idx_first_pos(&txn->hdr_idx); |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 6880 | |
Willy Tarreau | 4dbc4a2 | 2007-03-03 16:23:22 +0100 | [diff] [blame] | 6881 | while ((cur_idx = txn->hdr_idx.v[old_idx].next)) { |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 6882 | struct hdr_idx_elem *cur_hdr; |
Willy Tarreau | aa9dce3 | 2007-03-18 23:50:16 +0100 | [diff] [blame] | 6883 | int val; |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 6884 | |
Willy Tarreau | 4dbc4a2 | 2007-03-03 16:23:22 +0100 | [diff] [blame] | 6885 | cur_hdr = &txn->hdr_idx.v[cur_idx]; |
Willy Tarreau | eb7b0a2 | 2010-08-31 16:45:02 +0200 | [diff] [blame] | 6886 | hdr_beg = hdr_next; |
| 6887 | hdr_end = hdr_beg + cur_hdr->len; |
| 6888 | hdr_next = hdr_end + cur_hdr->cr + 1; |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 6889 | |
Willy Tarreau | eb7b0a2 | 2010-08-31 16:45:02 +0200 | [diff] [blame] | 6890 | /* We have one full header between hdr_beg and hdr_end, and the |
| 6891 | * next header starts at hdr_next. We're only interested in |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 6892 | * "Cookie:" headers. |
| 6893 | */ |
| 6894 | |
Willy Tarreau | eb7b0a2 | 2010-08-31 16:45:02 +0200 | [diff] [blame] | 6895 | val = http_header_match2(hdr_beg, hdr_end, "Cookie", 6); |
Willy Tarreau | aa9dce3 | 2007-03-18 23:50:16 +0100 | [diff] [blame] | 6896 | if (!val) { |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 6897 | old_idx = cur_idx; |
| 6898 | continue; |
| 6899 | } |
| 6900 | |
Willy Tarreau | eb7b0a2 | 2010-08-31 16:45:02 +0200 | [diff] [blame] | 6901 | del_from = NULL; /* nothing to be deleted */ |
| 6902 | preserve_hdr = 0; /* assume we may kill the whole header */ |
| 6903 | |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 6904 | /* Now look for cookies. Conforming to RFC2109, we have to support |
| 6905 | * attributes whose name begin with a '$', and associate them with |
| 6906 | * the right cookie, if we want to delete this cookie. |
| 6907 | * So there are 3 cases for each cookie read : |
| 6908 | * 1) it's a special attribute, beginning with a '$' : ignore it. |
| 6909 | * 2) it's a server id cookie that we *MAY* want to delete : save |
| 6910 | * some pointers on it (last semi-colon, beginning of cookie...) |
| 6911 | * 3) it's an application cookie : we *MAY* have to delete a previous |
| 6912 | * "special" cookie. |
| 6913 | * At the end of loop, if a "special" cookie remains, we may have to |
| 6914 | * remove it. If no application cookie persists in the header, we |
Willy Tarreau | eb7b0a2 | 2010-08-31 16:45:02 +0200 | [diff] [blame] | 6915 | * *MUST* delete it. |
| 6916 | * |
| 6917 | * Note: RFC2965 is unclear about the processing of spaces around |
| 6918 | * the equal sign in the ATTR=VALUE form. A careful inspection of |
| 6919 | * the RFC explicitly allows spaces before it, and not within the |
| 6920 | * tokens (attrs or values). An inspection of RFC2109 allows that |
| 6921 | * too but section 10.1.3 lets one think that spaces may be allowed |
| 6922 | * after the equal sign too, resulting in some (rare) buggy |
| 6923 | * implementations trying to do that. So let's do what servers do. |
| 6924 | * Latest ietf draft forbids spaces all around. Also, earlier RFCs |
| 6925 | * allowed quoted strings in values, with any possible character |
| 6926 | * after a backslash, including control chars and delimitors, which |
| 6927 | * causes parsing to become ambiguous. Browsers also allow spaces |
| 6928 | * within values even without quotes. |
| 6929 | * |
| 6930 | * We have to keep multiple pointers in order to support cookie |
| 6931 | * removal at the beginning, middle or end of header without |
| 6932 | * corrupting the header. All of these headers are valid : |
| 6933 | * |
| 6934 | * Cookie:NAME1=VALUE1;NAME2=VALUE2;NAME3=VALUE3\r\n |
| 6935 | * Cookie:NAME1=VALUE1;NAME2_ONLY ;NAME3=VALUE3\r\n |
| 6936 | * Cookie: NAME1 = VALUE 1 ; NAME2 = VALUE2 ; NAME3 = VALUE3\r\n |
| 6937 | * | | | | | | | | | |
| 6938 | * | | | | | | | | hdr_end <--+ |
| 6939 | * | | | | | | | +--> next |
| 6940 | * | | | | | | +----> val_end |
| 6941 | * | | | | | +-----------> val_beg |
| 6942 | * | | | | +--------------> equal |
| 6943 | * | | | +----------------> att_end |
| 6944 | * | | +---------------------> att_beg |
| 6945 | * | +--------------------------> prev |
| 6946 | * +--------------------------------> hdr_beg |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 6947 | */ |
| 6948 | |
Willy Tarreau | eb7b0a2 | 2010-08-31 16:45:02 +0200 | [diff] [blame] | 6949 | for (prev = hdr_beg + 6; prev < hdr_end; prev = next) { |
| 6950 | /* Iterate through all cookies on this line */ |
| 6951 | |
| 6952 | /* find att_beg */ |
| 6953 | att_beg = prev + 1; |
| 6954 | while (att_beg < hdr_end && http_is_spht[(unsigned char)*att_beg]) |
| 6955 | att_beg++; |
| 6956 | |
| 6957 | /* find att_end : this is the first character after the last non |
| 6958 | * space before the equal. It may be equal to hdr_end. |
| 6959 | */ |
| 6960 | equal = att_end = att_beg; |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 6961 | |
Willy Tarreau | eb7b0a2 | 2010-08-31 16:45:02 +0200 | [diff] [blame] | 6962 | while (equal < hdr_end) { |
| 6963 | if (*equal == '=' || *equal == ',' || *equal == ';') |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 6964 | break; |
Willy Tarreau | eb7b0a2 | 2010-08-31 16:45:02 +0200 | [diff] [blame] | 6965 | if (http_is_spht[(unsigned char)*equal++]) |
| 6966 | continue; |
| 6967 | att_end = equal; |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 6968 | } |
| 6969 | |
Willy Tarreau | eb7b0a2 | 2010-08-31 16:45:02 +0200 | [diff] [blame] | 6970 | /* here, <equal> points to '=', a delimitor or the end. <att_end> |
| 6971 | * is between <att_beg> and <equal>, both may be identical. |
| 6972 | */ |
| 6973 | |
| 6974 | /* look for end of cookie if there is an equal sign */ |
| 6975 | if (equal < hdr_end && *equal == '=') { |
| 6976 | /* look for the beginning of the value */ |
| 6977 | val_beg = equal + 1; |
| 6978 | while (val_beg < hdr_end && http_is_spht[(unsigned char)*val_beg]) |
| 6979 | val_beg++; |
| 6980 | |
| 6981 | /* find the end of the value, respecting quotes */ |
| 6982 | next = find_cookie_value_end(val_beg, hdr_end); |
| 6983 | |
| 6984 | /* make val_end point to the first white space or delimitor after the value */ |
| 6985 | val_end = next; |
| 6986 | while (val_end > val_beg && http_is_spht[(unsigned char)*(val_end - 1)]) |
| 6987 | val_end--; |
| 6988 | } else { |
| 6989 | val_beg = val_end = next = equal; |
Willy Tarreau | 305ae85 | 2010-01-03 19:45:54 +0100 | [diff] [blame] | 6990 | } |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 6991 | |
Willy Tarreau | eb7b0a2 | 2010-08-31 16:45:02 +0200 | [diff] [blame] | 6992 | /* We have nothing to do with attributes beginning with '$'. However, |
| 6993 | * they will automatically be removed if a header before them is removed, |
| 6994 | * since they're supposed to be linked together. |
| 6995 | */ |
| 6996 | if (*att_beg == '$') |
| 6997 | continue; |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 6998 | |
Willy Tarreau | eb7b0a2 | 2010-08-31 16:45:02 +0200 | [diff] [blame] | 6999 | /* Ignore cookies with no equal sign */ |
| 7000 | if (equal == next) { |
| 7001 | /* This is not our cookie, so we must preserve it. But if we already |
| 7002 | * scheduled another cookie for removal, we cannot remove the |
| 7003 | * complete header, but we can remove the previous block itself. |
| 7004 | */ |
| 7005 | preserve_hdr = 1; |
| 7006 | if (del_from != NULL) { |
Willy Tarreau | 9b28e03 | 2012-10-12 23:49:43 +0200 | [diff] [blame] | 7007 | int delta = del_hdr_value(req->buf, &del_from, prev); |
Willy Tarreau | eb7b0a2 | 2010-08-31 16:45:02 +0200 | [diff] [blame] | 7008 | val_end += delta; |
| 7009 | next += delta; |
| 7010 | hdr_end += delta; |
| 7011 | hdr_next += delta; |
| 7012 | cur_hdr->len += delta; |
| 7013 | http_msg_move_end(&txn->req, delta); |
| 7014 | prev = del_from; |
| 7015 | del_from = NULL; |
| 7016 | } |
| 7017 | continue; |
Willy Tarreau | 305ae85 | 2010-01-03 19:45:54 +0100 | [diff] [blame] | 7018 | } |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 7019 | |
Willy Tarreau | eb7b0a2 | 2010-08-31 16:45:02 +0200 | [diff] [blame] | 7020 | /* if there are spaces around the equal sign, we need to |
| 7021 | * strip them otherwise we'll get trouble for cookie captures, |
| 7022 | * or even for rewrites. Since this happens extremely rarely, |
| 7023 | * it does not hurt performance. |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 7024 | */ |
Willy Tarreau | eb7b0a2 | 2010-08-31 16:45:02 +0200 | [diff] [blame] | 7025 | if (unlikely(att_end != equal || val_beg > equal + 1)) { |
| 7026 | int stripped_before = 0; |
| 7027 | int stripped_after = 0; |
| 7028 | |
| 7029 | if (att_end != equal) { |
Willy Tarreau | 9b28e03 | 2012-10-12 23:49:43 +0200 | [diff] [blame] | 7030 | stripped_before = buffer_replace2(req->buf, att_end, equal, NULL, 0); |
Willy Tarreau | eb7b0a2 | 2010-08-31 16:45:02 +0200 | [diff] [blame] | 7031 | equal += stripped_before; |
| 7032 | val_beg += stripped_before; |
| 7033 | } |
| 7034 | |
| 7035 | if (val_beg > equal + 1) { |
Willy Tarreau | 9b28e03 | 2012-10-12 23:49:43 +0200 | [diff] [blame] | 7036 | stripped_after = buffer_replace2(req->buf, equal + 1, val_beg, NULL, 0); |
Willy Tarreau | eb7b0a2 | 2010-08-31 16:45:02 +0200 | [diff] [blame] | 7037 | val_beg += stripped_after; |
| 7038 | stripped_before += stripped_after; |
| 7039 | } |
| 7040 | |
| 7041 | val_end += stripped_before; |
| 7042 | next += stripped_before; |
| 7043 | hdr_end += stripped_before; |
| 7044 | hdr_next += stripped_before; |
| 7045 | cur_hdr->len += stripped_before; |
| 7046 | http_msg_move_end(&txn->req, stripped_before); |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 7047 | } |
Willy Tarreau | eb7b0a2 | 2010-08-31 16:45:02 +0200 | [diff] [blame] | 7048 | /* now everything is as on the diagram above */ |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 7049 | |
Willy Tarreau | eb7b0a2 | 2010-08-31 16:45:02 +0200 | [diff] [blame] | 7050 | /* First, let's see if we want to capture this cookie. We check |
| 7051 | * that we don't already have a client side cookie, because we |
| 7052 | * can only capture one. Also as an optimisation, we ignore |
| 7053 | * cookies shorter than the declared name. |
| 7054 | */ |
| 7055 | if (t->fe->capture_name != NULL && txn->cli_cookie == NULL && |
| 7056 | (val_end - att_beg >= t->fe->capture_namelen) && |
| 7057 | memcmp(att_beg, t->fe->capture_name, t->fe->capture_namelen) == 0) { |
| 7058 | int log_len = val_end - att_beg; |
| 7059 | |
| 7060 | if ((txn->cli_cookie = pool_alloc2(pool2_capture)) == NULL) { |
| 7061 | Alert("HTTP logging : out of memory.\n"); |
| 7062 | } else { |
| 7063 | if (log_len > t->fe->capture_len) |
| 7064 | log_len = t->fe->capture_len; |
| 7065 | memcpy(txn->cli_cookie, att_beg, log_len); |
| 7066 | txn->cli_cookie[log_len] = 0; |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 7067 | } |
Willy Tarreau | eb7b0a2 | 2010-08-31 16:45:02 +0200 | [diff] [blame] | 7068 | } |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 7069 | |
Willy Tarreau | bca9969 | 2010-10-06 19:25:55 +0200 | [diff] [blame] | 7070 | /* Persistence cookies in passive, rewrite or insert mode have the |
| 7071 | * following form : |
Willy Tarreau | eb7b0a2 | 2010-08-31 16:45:02 +0200 | [diff] [blame] | 7072 | * |
Willy Tarreau | bca9969 | 2010-10-06 19:25:55 +0200 | [diff] [blame] | 7073 | * Cookie: NAME=SRV[|<lastseen>[|<firstseen>]] |
Willy Tarreau | eb7b0a2 | 2010-08-31 16:45:02 +0200 | [diff] [blame] | 7074 | * |
Willy Tarreau | bca9969 | 2010-10-06 19:25:55 +0200 | [diff] [blame] | 7075 | * For cookies in prefix mode, the form is : |
| 7076 | * |
| 7077 | * Cookie: NAME=SRV~VALUE |
Willy Tarreau | eb7b0a2 | 2010-08-31 16:45:02 +0200 | [diff] [blame] | 7078 | */ |
| 7079 | if ((att_end - att_beg == t->be->cookie_len) && (t->be->cookie_name != NULL) && |
| 7080 | (memcmp(att_beg, t->be->cookie_name, att_end - att_beg) == 0)) { |
| 7081 | struct server *srv = t->be->srv; |
| 7082 | char *delim; |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 7083 | |
Willy Tarreau | eb7b0a2 | 2010-08-31 16:45:02 +0200 | [diff] [blame] | 7084 | /* if we're in cookie prefix mode, we'll search the delimitor so that we |
| 7085 | * have the server ID between val_beg and delim, and the original cookie between |
| 7086 | * delim+1 and val_end. Otherwise, delim==val_end : |
| 7087 | * |
| 7088 | * Cookie: NAME=SRV; # in all but prefix modes |
| 7089 | * Cookie: NAME=SRV~OPAQUE ; # in prefix mode |
| 7090 | * | || || | |+-> next |
| 7091 | * | || || | +--> val_end |
| 7092 | * | || || +---------> delim |
| 7093 | * | || |+------------> val_beg |
| 7094 | * | || +-------------> att_end = equal |
| 7095 | * | |+-----------------> att_beg |
| 7096 | * | +------------------> prev |
| 7097 | * +-------------------------> hdr_beg |
| 7098 | */ |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 7099 | |
Willy Tarreau | 6740213 | 2012-05-31 20:40:20 +0200 | [diff] [blame] | 7100 | if (t->be->ck_opts & PR_CK_PFX) { |
Willy Tarreau | eb7b0a2 | 2010-08-31 16:45:02 +0200 | [diff] [blame] | 7101 | for (delim = val_beg; delim < val_end; delim++) |
| 7102 | if (*delim == COOKIE_DELIM) |
| 7103 | break; |
Willy Tarreau | bca9969 | 2010-10-06 19:25:55 +0200 | [diff] [blame] | 7104 | } else { |
| 7105 | char *vbar1; |
Willy Tarreau | eb7b0a2 | 2010-08-31 16:45:02 +0200 | [diff] [blame] | 7106 | delim = val_end; |
Willy Tarreau | bca9969 | 2010-10-06 19:25:55 +0200 | [diff] [blame] | 7107 | /* Now check if the cookie contains a date field, which would |
| 7108 | * appear after a vertical bar ('|') just after the server name |
| 7109 | * and before the delimiter. |
| 7110 | */ |
| 7111 | vbar1 = memchr(val_beg, COOKIE_DELIM_DATE, val_end - val_beg); |
| 7112 | if (vbar1) { |
| 7113 | /* OK, so left of the bar is the server's cookie and |
Willy Tarreau | f64d141 | 2010-10-07 20:06:11 +0200 | [diff] [blame] | 7114 | * right is the last seen date. It is a base64 encoded |
| 7115 | * 30-bit value representing the UNIX date since the |
| 7116 | * epoch in 4-second quantities. |
Willy Tarreau | bca9969 | 2010-10-06 19:25:55 +0200 | [diff] [blame] | 7117 | */ |
Willy Tarreau | f64d141 | 2010-10-07 20:06:11 +0200 | [diff] [blame] | 7118 | int val; |
Willy Tarreau | bca9969 | 2010-10-06 19:25:55 +0200 | [diff] [blame] | 7119 | delim = vbar1++; |
Willy Tarreau | f64d141 | 2010-10-07 20:06:11 +0200 | [diff] [blame] | 7120 | if (val_end - vbar1 >= 5) { |
| 7121 | val = b64tos30(vbar1); |
| 7122 | if (val > 0) |
| 7123 | txn->cookie_last_date = val << 2; |
| 7124 | } |
| 7125 | /* look for a second vertical bar */ |
| 7126 | vbar1 = memchr(vbar1, COOKIE_DELIM_DATE, val_end - vbar1); |
| 7127 | if (vbar1 && (val_end - vbar1 > 5)) { |
| 7128 | val = b64tos30(vbar1 + 1); |
| 7129 | if (val > 0) |
| 7130 | txn->cookie_first_date = val << 2; |
| 7131 | } |
Willy Tarreau | bca9969 | 2010-10-06 19:25:55 +0200 | [diff] [blame] | 7132 | } |
| 7133 | } |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 7134 | |
Willy Tarreau | f64d141 | 2010-10-07 20:06:11 +0200 | [diff] [blame] | 7135 | /* if the cookie has an expiration date and the proxy wants to check |
| 7136 | * it, then we do that now. We first check if the cookie is too old, |
| 7137 | * then only if it has expired. We detect strict overflow because the |
| 7138 | * time resolution here is not great (4 seconds). Cookies with dates |
| 7139 | * in the future are ignored if their offset is beyond one day. This |
| 7140 | * allows an admin to fix timezone issues without expiring everyone |
| 7141 | * and at the same time avoids keeping unwanted side effects for too |
| 7142 | * long. |
| 7143 | */ |
| 7144 | if (txn->cookie_first_date && t->be->cookie_maxlife && |
Willy Tarreau | ef4f391 | 2010-10-07 21:00:29 +0200 | [diff] [blame] | 7145 | (((signed)(date.tv_sec - txn->cookie_first_date) > (signed)t->be->cookie_maxlife) || |
| 7146 | ((signed)(txn->cookie_first_date - date.tv_sec) > 86400))) { |
Willy Tarreau | f64d141 | 2010-10-07 20:06:11 +0200 | [diff] [blame] | 7147 | txn->flags &= ~TX_CK_MASK; |
| 7148 | txn->flags |= TX_CK_OLD; |
| 7149 | delim = val_beg; // let's pretend we have not found the cookie |
| 7150 | txn->cookie_first_date = 0; |
| 7151 | txn->cookie_last_date = 0; |
| 7152 | } |
| 7153 | else if (txn->cookie_last_date && t->be->cookie_maxidle && |
Willy Tarreau | ef4f391 | 2010-10-07 21:00:29 +0200 | [diff] [blame] | 7154 | (((signed)(date.tv_sec - txn->cookie_last_date) > (signed)t->be->cookie_maxidle) || |
| 7155 | ((signed)(txn->cookie_last_date - date.tv_sec) > 86400))) { |
Willy Tarreau | f64d141 | 2010-10-07 20:06:11 +0200 | [diff] [blame] | 7156 | txn->flags &= ~TX_CK_MASK; |
| 7157 | txn->flags |= TX_CK_EXPIRED; |
| 7158 | delim = val_beg; // let's pretend we have not found the cookie |
| 7159 | txn->cookie_first_date = 0; |
| 7160 | txn->cookie_last_date = 0; |
| 7161 | } |
| 7162 | |
Willy Tarreau | eb7b0a2 | 2010-08-31 16:45:02 +0200 | [diff] [blame] | 7163 | /* Here, we'll look for the first running server which supports the cookie. |
| 7164 | * This allows to share a same cookie between several servers, for example |
| 7165 | * to dedicate backup servers to specific servers only. |
| 7166 | * However, to prevent clients from sticking to cookie-less backup server |
| 7167 | * when they have incidentely learned an empty cookie, we simply ignore |
| 7168 | * empty cookies and mark them as invalid. |
| 7169 | * The same behaviour is applied when persistence must be ignored. |
| 7170 | */ |
Willy Tarreau | 4a5cade | 2012-04-05 21:09:48 +0200 | [diff] [blame] | 7171 | if ((delim == val_beg) || (t->flags & (SN_IGNORE_PRST | SN_ASSIGNED))) |
Willy Tarreau | eb7b0a2 | 2010-08-31 16:45:02 +0200 | [diff] [blame] | 7172 | srv = NULL; |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 7173 | |
Willy Tarreau | eb7b0a2 | 2010-08-31 16:45:02 +0200 | [diff] [blame] | 7174 | while (srv) { |
| 7175 | if (srv->cookie && (srv->cklen == delim - val_beg) && |
| 7176 | !memcmp(val_beg, srv->cookie, delim - val_beg)) { |
| 7177 | if ((srv->state & SRV_RUNNING) || |
| 7178 | (t->be->options & PR_O_PERSIST) || |
| 7179 | (t->flags & SN_FORCE_PRST)) { |
| 7180 | /* we found the server and we can use it */ |
| 7181 | txn->flags &= ~TX_CK_MASK; |
| 7182 | txn->flags |= (srv->state & SRV_RUNNING) ? TX_CK_VALID : TX_CK_DOWN; |
| 7183 | t->flags |= SN_DIRECT | SN_ASSIGNED; |
Willy Tarreau | 3fdb366 | 2012-11-12 00:42:33 +0100 | [diff] [blame] | 7184 | t->target = &srv->obj_type; |
Willy Tarreau | eb7b0a2 | 2010-08-31 16:45:02 +0200 | [diff] [blame] | 7185 | break; |
| 7186 | } else { |
| 7187 | /* we found a server, but it's down, |
| 7188 | * mark it as such and go on in case |
| 7189 | * another one is available. |
| 7190 | */ |
| 7191 | txn->flags &= ~TX_CK_MASK; |
| 7192 | txn->flags |= TX_CK_DOWN; |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 7193 | } |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 7194 | } |
Willy Tarreau | eb7b0a2 | 2010-08-31 16:45:02 +0200 | [diff] [blame] | 7195 | srv = srv->next; |
| 7196 | } |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 7197 | |
Willy Tarreau | f64d141 | 2010-10-07 20:06:11 +0200 | [diff] [blame] | 7198 | 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] | 7199 | /* no server matched this cookie or we deliberately skipped it */ |
Willy Tarreau | eb7b0a2 | 2010-08-31 16:45:02 +0200 | [diff] [blame] | 7200 | txn->flags &= ~TX_CK_MASK; |
Willy Tarreau | c89ccb6 | 2012-04-05 21:18:22 +0200 | [diff] [blame] | 7201 | if ((t->flags & (SN_IGNORE_PRST | SN_ASSIGNED))) |
| 7202 | txn->flags |= TX_CK_UNUSED; |
| 7203 | else |
| 7204 | txn->flags |= TX_CK_INVALID; |
Willy Tarreau | eb7b0a2 | 2010-08-31 16:45:02 +0200 | [diff] [blame] | 7205 | } |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 7206 | |
Willy Tarreau | eb7b0a2 | 2010-08-31 16:45:02 +0200 | [diff] [blame] | 7207 | /* depending on the cookie mode, we may have to either : |
| 7208 | * - delete the complete cookie if we're in insert+indirect mode, so that |
| 7209 | * the server never sees it ; |
| 7210 | * - remove the server id from the cookie value, and tag the cookie as an |
| 7211 | * application cookie so that it does not get accidentely removed later, |
| 7212 | * if we're in cookie prefix mode |
| 7213 | */ |
Willy Tarreau | 6740213 | 2012-05-31 20:40:20 +0200 | [diff] [blame] | 7214 | if ((t->be->ck_opts & PR_CK_PFX) && (delim != val_end)) { |
Willy Tarreau | eb7b0a2 | 2010-08-31 16:45:02 +0200 | [diff] [blame] | 7215 | int delta; /* negative */ |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 7216 | |
Willy Tarreau | 9b28e03 | 2012-10-12 23:49:43 +0200 | [diff] [blame] | 7217 | delta = buffer_replace2(req->buf, val_beg, delim + 1, NULL, 0); |
Willy Tarreau | eb7b0a2 | 2010-08-31 16:45:02 +0200 | [diff] [blame] | 7218 | val_end += delta; |
| 7219 | next += delta; |
| 7220 | hdr_end += delta; |
| 7221 | hdr_next += delta; |
| 7222 | cur_hdr->len += delta; |
| 7223 | http_msg_move_end(&txn->req, delta); |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 7224 | |
Willy Tarreau | eb7b0a2 | 2010-08-31 16:45:02 +0200 | [diff] [blame] | 7225 | del_from = NULL; |
| 7226 | preserve_hdr = 1; /* we want to keep this cookie */ |
| 7227 | } |
| 7228 | else if (del_from == NULL && |
Willy Tarreau | 6740213 | 2012-05-31 20:40:20 +0200 | [diff] [blame] | 7229 | (t->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] | 7230 | del_from = prev; |
| 7231 | } |
| 7232 | } else { |
| 7233 | /* This is not our cookie, so we must preserve it. But if we already |
| 7234 | * scheduled another cookie for removal, we cannot remove the |
| 7235 | * complete header, but we can remove the previous block itself. |
| 7236 | */ |
| 7237 | preserve_hdr = 1; |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 7238 | |
Willy Tarreau | eb7b0a2 | 2010-08-31 16:45:02 +0200 | [diff] [blame] | 7239 | if (del_from != NULL) { |
Willy Tarreau | 9b28e03 | 2012-10-12 23:49:43 +0200 | [diff] [blame] | 7240 | int delta = del_hdr_value(req->buf, &del_from, prev); |
Willy Tarreau | b810554 | 2010-11-24 18:31:28 +0100 | [diff] [blame] | 7241 | if (att_beg >= del_from) |
| 7242 | att_beg += delta; |
| 7243 | if (att_end >= del_from) |
| 7244 | att_end += delta; |
| 7245 | val_beg += delta; |
Willy Tarreau | eb7b0a2 | 2010-08-31 16:45:02 +0200 | [diff] [blame] | 7246 | val_end += delta; |
| 7247 | next += delta; |
| 7248 | hdr_end += delta; |
| 7249 | hdr_next += delta; |
| 7250 | cur_hdr->len += delta; |
| 7251 | http_msg_move_end(&txn->req, delta); |
| 7252 | prev = del_from; |
| 7253 | del_from = NULL; |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 7254 | } |
Willy Tarreau | eb7b0a2 | 2010-08-31 16:45:02 +0200 | [diff] [blame] | 7255 | } |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 7256 | |
Willy Tarreau | eb7b0a2 | 2010-08-31 16:45:02 +0200 | [diff] [blame] | 7257 | /* Look for the appsession cookie unless persistence must be ignored */ |
| 7258 | if (!(t->flags & SN_IGNORE_PRST) && (t->be->appsession_name != NULL)) { |
| 7259 | int cmp_len, value_len; |
| 7260 | char *value_begin; |
Aleksandar Lazic | 697bbb0 | 2008-08-13 19:57:02 +0200 | [diff] [blame] | 7261 | |
Willy Tarreau | eb7b0a2 | 2010-08-31 16:45:02 +0200 | [diff] [blame] | 7262 | if (t->be->options2 & PR_O2_AS_PFX) { |
| 7263 | cmp_len = MIN(val_end - att_beg, t->be->appsession_name_len); |
| 7264 | value_begin = att_beg + t->be->appsession_name_len; |
| 7265 | value_len = val_end - att_beg - t->be->appsession_name_len; |
| 7266 | } else { |
| 7267 | cmp_len = att_end - att_beg; |
| 7268 | value_begin = val_beg; |
| 7269 | value_len = val_end - val_beg; |
| 7270 | } |
Cyril Bonté | b21570a | 2009-11-29 20:04:48 +0100 | [diff] [blame] | 7271 | |
Willy Tarreau | eb7b0a2 | 2010-08-31 16:45:02 +0200 | [diff] [blame] | 7272 | /* let's see if the cookie is our appcookie */ |
| 7273 | if (cmp_len == t->be->appsession_name_len && |
| 7274 | memcmp(att_beg, t->be->appsession_name, cmp_len) == 0) { |
| 7275 | manage_client_side_appsession(t, value_begin, value_len); |
| 7276 | } |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 7277 | } |
| 7278 | |
Willy Tarreau | eb7b0a2 | 2010-08-31 16:45:02 +0200 | [diff] [blame] | 7279 | /* continue with next cookie on this header line */ |
| 7280 | att_beg = next; |
| 7281 | } /* for each cookie */ |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 7282 | |
Willy Tarreau | eb7b0a2 | 2010-08-31 16:45:02 +0200 | [diff] [blame] | 7283 | /* There are no more cookies on this line. |
| 7284 | * We may still have one (or several) marked for deletion at the |
| 7285 | * end of the line. We must do this now in two ways : |
| 7286 | * - if some cookies must be preserved, we only delete from the |
| 7287 | * mark to the end of line ; |
| 7288 | * - if nothing needs to be preserved, simply delete the whole header |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 7289 | */ |
Willy Tarreau | eb7b0a2 | 2010-08-31 16:45:02 +0200 | [diff] [blame] | 7290 | if (del_from) { |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 7291 | int delta; |
Willy Tarreau | eb7b0a2 | 2010-08-31 16:45:02 +0200 | [diff] [blame] | 7292 | if (preserve_hdr) { |
Willy Tarreau | 9b28e03 | 2012-10-12 23:49:43 +0200 | [diff] [blame] | 7293 | delta = del_hdr_value(req->buf, &del_from, hdr_end); |
Willy Tarreau | eb7b0a2 | 2010-08-31 16:45:02 +0200 | [diff] [blame] | 7294 | hdr_end = del_from; |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 7295 | cur_hdr->len += delta; |
| 7296 | } else { |
Willy Tarreau | 9b28e03 | 2012-10-12 23:49:43 +0200 | [diff] [blame] | 7297 | delta = buffer_replace2(req->buf, hdr_beg, hdr_next, NULL, 0); |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 7298 | |
| 7299 | /* FIXME: this should be a separate function */ |
Willy Tarreau | 4dbc4a2 | 2007-03-03 16:23:22 +0100 | [diff] [blame] | 7300 | txn->hdr_idx.v[old_idx].next = cur_hdr->next; |
| 7301 | txn->hdr_idx.used--; |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 7302 | cur_hdr->len = 0; |
Willy Tarreau | 26db59e | 2010-11-28 06:57:24 +0100 | [diff] [blame] | 7303 | cur_idx = old_idx; |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 7304 | } |
Willy Tarreau | eb7b0a2 | 2010-08-31 16:45:02 +0200 | [diff] [blame] | 7305 | hdr_next += delta; |
Willy Tarreau | fa355d4 | 2009-11-29 18:12:29 +0100 | [diff] [blame] | 7306 | http_msg_move_end(&txn->req, delta); |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 7307 | } |
| 7308 | |
Willy Tarreau | eb7b0a2 | 2010-08-31 16:45:02 +0200 | [diff] [blame] | 7309 | /* check next header */ |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 7310 | old_idx = cur_idx; |
Willy Tarreau | eb7b0a2 | 2010-08-31 16:45:02 +0200 | [diff] [blame] | 7311 | } |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 7312 | } |
| 7313 | |
| 7314 | |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 7315 | /* Iterate the same filter through all response headers contained in <rtr>. |
| 7316 | * Returns 1 if this filter can be stopped upon return, otherwise 0. |
| 7317 | */ |
Willy Tarreau | 7421efb | 2012-07-02 15:11:27 +0200 | [diff] [blame] | 7318 | int apply_filter_to_resp_headers(struct session *t, struct channel *rtr, struct hdr_exp *exp) |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 7319 | { |
| 7320 | char term; |
| 7321 | char *cur_ptr, *cur_end, *cur_next; |
| 7322 | int cur_idx, old_idx, last_hdr; |
| 7323 | struct http_txn *txn = &t->txn; |
| 7324 | struct hdr_idx_elem *cur_hdr; |
Willy Tarreau | 19d14ef | 2012-10-29 16:51:55 +0100 | [diff] [blame] | 7325 | int delta; |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 7326 | |
| 7327 | last_hdr = 0; |
| 7328 | |
Willy Tarreau | 9b28e03 | 2012-10-12 23:49:43 +0200 | [diff] [blame] | 7329 | cur_next = rtr->buf->p + hdr_idx_first_pos(&txn->hdr_idx); |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 7330 | old_idx = 0; |
| 7331 | |
| 7332 | while (!last_hdr) { |
Willy Tarreau | 3d30059 | 2007-03-18 18:34:41 +0100 | [diff] [blame] | 7333 | if (unlikely(txn->flags & TX_SVDENY)) |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 7334 | return 1; |
Willy Tarreau | 3d30059 | 2007-03-18 18:34:41 +0100 | [diff] [blame] | 7335 | else if (unlikely(txn->flags & TX_SVALLOW) && |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 7336 | (exp->action == ACT_ALLOW || |
| 7337 | exp->action == ACT_DENY)) |
| 7338 | return 0; |
| 7339 | |
| 7340 | cur_idx = txn->hdr_idx.v[old_idx].next; |
| 7341 | if (!cur_idx) |
| 7342 | break; |
| 7343 | |
| 7344 | cur_hdr = &txn->hdr_idx.v[cur_idx]; |
| 7345 | cur_ptr = cur_next; |
| 7346 | cur_end = cur_ptr + cur_hdr->len; |
| 7347 | cur_next = cur_end + cur_hdr->cr + 1; |
| 7348 | |
| 7349 | /* Now we have one header between cur_ptr and cur_end, |
| 7350 | * and the next header starts at cur_next. |
| 7351 | */ |
| 7352 | |
| 7353 | /* The annoying part is that pattern matching needs |
| 7354 | * that we modify the contents to null-terminate all |
| 7355 | * strings before testing them. |
| 7356 | */ |
| 7357 | |
| 7358 | term = *cur_end; |
| 7359 | *cur_end = '\0'; |
| 7360 | |
| 7361 | if (regexec(exp->preg, cur_ptr, MAX_MATCH, pmatch, 0) == 0) { |
| 7362 | switch (exp->action) { |
| 7363 | case ACT_ALLOW: |
Willy Tarreau | 3d30059 | 2007-03-18 18:34:41 +0100 | [diff] [blame] | 7364 | txn->flags |= TX_SVALLOW; |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 7365 | last_hdr = 1; |
| 7366 | break; |
| 7367 | |
| 7368 | case ACT_DENY: |
Willy Tarreau | 3d30059 | 2007-03-18 18:34:41 +0100 | [diff] [blame] | 7369 | txn->flags |= TX_SVDENY; |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 7370 | last_hdr = 1; |
| 7371 | break; |
| 7372 | |
| 7373 | case ACT_REPLACE: |
Willy Tarreau | 19d14ef | 2012-10-29 16:51:55 +0100 | [diff] [blame] | 7374 | trash.len = exp_replace(trash.str, cur_ptr, exp->replace, pmatch); |
| 7375 | 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] | 7376 | /* FIXME: if the user adds a newline in the replacement, the |
| 7377 | * index will not be recalculated for now, and the new line |
| 7378 | * will not be counted as a new header. |
| 7379 | */ |
| 7380 | |
| 7381 | cur_end += delta; |
| 7382 | cur_next += delta; |
| 7383 | cur_hdr->len += delta; |
Willy Tarreau | fa355d4 | 2009-11-29 18:12:29 +0100 | [diff] [blame] | 7384 | http_msg_move_end(&txn->rsp, delta); |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 7385 | break; |
| 7386 | |
| 7387 | case ACT_REMOVE: |
Willy Tarreau | 9b28e03 | 2012-10-12 23:49:43 +0200 | [diff] [blame] | 7388 | delta = buffer_replace2(rtr->buf, cur_ptr, cur_next, NULL, 0); |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 7389 | cur_next += delta; |
| 7390 | |
Willy Tarreau | fa355d4 | 2009-11-29 18:12:29 +0100 | [diff] [blame] | 7391 | http_msg_move_end(&txn->rsp, delta); |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 7392 | txn->hdr_idx.v[old_idx].next = cur_hdr->next; |
| 7393 | txn->hdr_idx.used--; |
| 7394 | cur_hdr->len = 0; |
| 7395 | cur_end = NULL; /* null-term has been rewritten */ |
Willy Tarreau | 26db59e | 2010-11-28 06:57:24 +0100 | [diff] [blame] | 7396 | cur_idx = old_idx; |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 7397 | break; |
| 7398 | |
| 7399 | } |
| 7400 | } |
| 7401 | if (cur_end) |
| 7402 | *cur_end = term; /* restore the string terminator */ |
| 7403 | |
| 7404 | /* keep the link from this header to next one in case of later |
| 7405 | * removal of next header. |
| 7406 | */ |
| 7407 | old_idx = cur_idx; |
| 7408 | } |
| 7409 | return 0; |
| 7410 | } |
| 7411 | |
| 7412 | |
| 7413 | /* Apply the filter to the status line in the response buffer <rtr>. |
| 7414 | * Returns 0 if nothing has been done, 1 if the filter has been applied, |
| 7415 | * or -1 if a replacement resulted in an invalid status line. |
| 7416 | */ |
Willy Tarreau | 7421efb | 2012-07-02 15:11:27 +0200 | [diff] [blame] | 7417 | int apply_filter_to_sts_line(struct session *t, struct channel *rtr, struct hdr_exp *exp) |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 7418 | { |
| 7419 | char term; |
| 7420 | char *cur_ptr, *cur_end; |
| 7421 | int done; |
| 7422 | struct http_txn *txn = &t->txn; |
Willy Tarreau | 19d14ef | 2012-10-29 16:51:55 +0100 | [diff] [blame] | 7423 | int delta; |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 7424 | |
| 7425 | |
Willy Tarreau | 3d30059 | 2007-03-18 18:34:41 +0100 | [diff] [blame] | 7426 | if (unlikely(txn->flags & TX_SVDENY)) |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 7427 | return 1; |
Willy Tarreau | 3d30059 | 2007-03-18 18:34:41 +0100 | [diff] [blame] | 7428 | else if (unlikely(txn->flags & TX_SVALLOW) && |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 7429 | (exp->action == ACT_ALLOW || |
| 7430 | exp->action == ACT_DENY)) |
| 7431 | return 0; |
| 7432 | else if (exp->action == ACT_REMOVE) |
| 7433 | return 0; |
| 7434 | |
| 7435 | done = 0; |
| 7436 | |
Willy Tarreau | 9b28e03 | 2012-10-12 23:49:43 +0200 | [diff] [blame] | 7437 | cur_ptr = rtr->buf->p; |
Willy Tarreau | 1ba0e5f | 2010-06-07 13:57:32 +0200 | [diff] [blame] | 7438 | cur_end = cur_ptr + txn->rsp.sl.st.l; |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 7439 | |
| 7440 | /* Now we have the status line between cur_ptr and cur_end */ |
| 7441 | |
| 7442 | /* The annoying part is that pattern matching needs |
| 7443 | * that we modify the contents to null-terminate all |
| 7444 | * strings before testing them. |
| 7445 | */ |
| 7446 | |
| 7447 | term = *cur_end; |
| 7448 | *cur_end = '\0'; |
| 7449 | |
| 7450 | if (regexec(exp->preg, cur_ptr, MAX_MATCH, pmatch, 0) == 0) { |
| 7451 | switch (exp->action) { |
| 7452 | case ACT_ALLOW: |
Willy Tarreau | 3d30059 | 2007-03-18 18:34:41 +0100 | [diff] [blame] | 7453 | txn->flags |= TX_SVALLOW; |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 7454 | done = 1; |
| 7455 | break; |
| 7456 | |
| 7457 | case ACT_DENY: |
Willy Tarreau | 3d30059 | 2007-03-18 18:34:41 +0100 | [diff] [blame] | 7458 | txn->flags |= TX_SVDENY; |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 7459 | done = 1; |
| 7460 | break; |
| 7461 | |
| 7462 | case ACT_REPLACE: |
| 7463 | *cur_end = term; /* restore the string terminator */ |
Willy Tarreau | 19d14ef | 2012-10-29 16:51:55 +0100 | [diff] [blame] | 7464 | trash.len = exp_replace(trash.str, cur_ptr, exp->replace, pmatch); |
| 7465 | 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] | 7466 | /* FIXME: if the user adds a newline in the replacement, the |
| 7467 | * index will not be recalculated for now, and the new line |
| 7468 | * will not be counted as a new header. |
| 7469 | */ |
| 7470 | |
Willy Tarreau | fa355d4 | 2009-11-29 18:12:29 +0100 | [diff] [blame] | 7471 | http_msg_move_end(&txn->rsp, delta); |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 7472 | cur_end += delta; |
Willy Tarreau | 69d8c5d | 2012-05-08 09:44:41 +0200 | [diff] [blame] | 7473 | cur_end = (char *)http_parse_stsline(&txn->rsp, |
Willy Tarreau | 0278576 | 2007-04-03 14:45:44 +0200 | [diff] [blame] | 7474 | HTTP_MSG_RPVER, |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 7475 | cur_ptr, cur_end + 1, |
| 7476 | NULL, NULL); |
| 7477 | if (unlikely(!cur_end)) |
| 7478 | return -1; |
| 7479 | |
| 7480 | /* we have a full respnse and we know that we have either a CR |
| 7481 | * or an LF at <ptr>. |
| 7482 | */ |
Willy Tarreau | 9b28e03 | 2012-10-12 23:49:43 +0200 | [diff] [blame] | 7483 | 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] | 7484 | 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] | 7485 | /* there is no point trying this regex on headers */ |
| 7486 | return 1; |
| 7487 | } |
| 7488 | } |
| 7489 | *cur_end = term; /* restore the string terminator */ |
| 7490 | return done; |
| 7491 | } |
| 7492 | |
| 7493 | |
| 7494 | |
| 7495 | /* |
Willy Tarreau | fdb563c | 2010-01-31 15:43:27 +0100 | [diff] [blame] | 7496 | * Apply all the resp filters of proxy <px> to all headers in buffer <rtr> of session <s>. |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 7497 | * Returns 0 if everything is alright, or -1 in case a replacement lead to an |
| 7498 | * unparsable response. |
| 7499 | */ |
Willy Tarreau | 7421efb | 2012-07-02 15:11:27 +0200 | [diff] [blame] | 7500 | int apply_filters_to_response(struct session *s, struct channel *rtr, struct proxy *px) |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 7501 | { |
Willy Tarreau | fdb563c | 2010-01-31 15:43:27 +0100 | [diff] [blame] | 7502 | struct http_txn *txn = &s->txn; |
| 7503 | struct hdr_exp *exp; |
| 7504 | |
| 7505 | for (exp = px->rsp_exp; exp; exp = exp->next) { |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 7506 | int ret; |
| 7507 | |
| 7508 | /* |
| 7509 | * The interleaving of transformations and verdicts |
| 7510 | * makes it difficult to decide to continue or stop |
| 7511 | * the evaluation. |
| 7512 | */ |
| 7513 | |
Willy Tarreau | fdb563c | 2010-01-31 15:43:27 +0100 | [diff] [blame] | 7514 | if (txn->flags & TX_SVDENY) |
| 7515 | break; |
| 7516 | |
Willy Tarreau | 3d30059 | 2007-03-18 18:34:41 +0100 | [diff] [blame] | 7517 | if ((txn->flags & TX_SVALLOW) && |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 7518 | (exp->action == ACT_ALLOW || exp->action == ACT_DENY || |
| 7519 | exp->action == ACT_PASS)) { |
| 7520 | exp = exp->next; |
| 7521 | continue; |
| 7522 | } |
| 7523 | |
Willy Tarreau | fdb563c | 2010-01-31 15:43:27 +0100 | [diff] [blame] | 7524 | /* if this filter had a condition, evaluate it now and skip to |
| 7525 | * next filter if the condition does not match. |
| 7526 | */ |
| 7527 | if (exp->cond) { |
Willy Tarreau | 32a6f2e | 2012-04-25 10:13:36 +0200 | [diff] [blame] | 7528 | ret = acl_exec_cond(exp->cond, px, s, txn, SMP_OPT_DIR_RES|SMP_OPT_FINAL); |
Willy Tarreau | fdb563c | 2010-01-31 15:43:27 +0100 | [diff] [blame] | 7529 | ret = acl_pass(ret); |
| 7530 | if (((struct acl_cond *)exp->cond)->pol == ACL_COND_UNLESS) |
| 7531 | ret = !ret; |
| 7532 | if (!ret) |
| 7533 | continue; |
| 7534 | } |
| 7535 | |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 7536 | /* Apply the filter to the status line. */ |
Willy Tarreau | fdb563c | 2010-01-31 15:43:27 +0100 | [diff] [blame] | 7537 | ret = apply_filter_to_sts_line(s, rtr, exp); |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 7538 | if (unlikely(ret < 0)) |
| 7539 | return -1; |
| 7540 | |
| 7541 | if (likely(ret == 0)) { |
| 7542 | /* The filter did not match the response, it can be |
| 7543 | * iterated through all headers. |
| 7544 | */ |
Willy Tarreau | fdb563c | 2010-01-31 15:43:27 +0100 | [diff] [blame] | 7545 | apply_filter_to_resp_headers(s, rtr, exp); |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 7546 | } |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 7547 | } |
| 7548 | return 0; |
| 7549 | } |
| 7550 | |
| 7551 | |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 7552 | /* |
Willy Tarreau | 396d2c6 | 2007-11-04 19:30:00 +0100 | [diff] [blame] | 7553 | * 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] | 7554 | * desirable to call it only when needed. This function is also used when we |
| 7555 | * 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] | 7556 | */ |
Willy Tarreau | 7421efb | 2012-07-02 15:11:27 +0200 | [diff] [blame] | 7557 | void manage_server_side_cookies(struct session *t, struct channel *res) |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 7558 | { |
| 7559 | struct http_txn *txn = &t->txn; |
Willy Tarreau | 827aee9 | 2011-03-10 16:55:02 +0100 | [diff] [blame] | 7560 | struct server *srv; |
Willy Tarreau | 24581ba | 2010-08-31 22:39:35 +0200 | [diff] [blame] | 7561 | int is_cookie2; |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 7562 | int cur_idx, old_idx, delta; |
Willy Tarreau | 24581ba | 2010-08-31 22:39:35 +0200 | [diff] [blame] | 7563 | char *hdr_beg, *hdr_end, *hdr_next; |
| 7564 | char *prev, *att_beg, *att_end, *equal, *val_beg, *val_end, *next; |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 7565 | |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 7566 | /* Iterate through the headers. |
| 7567 | * we start with the start line. |
| 7568 | */ |
| 7569 | old_idx = 0; |
Willy Tarreau | 9b28e03 | 2012-10-12 23:49:43 +0200 | [diff] [blame] | 7570 | hdr_next = res->buf->p + hdr_idx_first_pos(&txn->hdr_idx); |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 7571 | |
| 7572 | while ((cur_idx = txn->hdr_idx.v[old_idx].next)) { |
| 7573 | struct hdr_idx_elem *cur_hdr; |
Willy Tarreau | aa9dce3 | 2007-03-18 23:50:16 +0100 | [diff] [blame] | 7574 | int val; |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 7575 | |
| 7576 | cur_hdr = &txn->hdr_idx.v[cur_idx]; |
Willy Tarreau | 24581ba | 2010-08-31 22:39:35 +0200 | [diff] [blame] | 7577 | hdr_beg = hdr_next; |
| 7578 | hdr_end = hdr_beg + cur_hdr->len; |
| 7579 | hdr_next = hdr_end + cur_hdr->cr + 1; |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 7580 | |
Willy Tarreau | 24581ba | 2010-08-31 22:39:35 +0200 | [diff] [blame] | 7581 | /* We have one full header between hdr_beg and hdr_end, and the |
| 7582 | * next header starts at hdr_next. We're only interested in |
| 7583 | * "Set-Cookie" and "Set-Cookie2" headers. |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 7584 | */ |
| 7585 | |
Willy Tarreau | 24581ba | 2010-08-31 22:39:35 +0200 | [diff] [blame] | 7586 | is_cookie2 = 0; |
| 7587 | prev = hdr_beg + 10; |
| 7588 | val = http_header_match2(hdr_beg, hdr_end, "Set-Cookie", 10); |
Willy Tarreau | aa9dce3 | 2007-03-18 23:50:16 +0100 | [diff] [blame] | 7589 | if (!val) { |
Willy Tarreau | 24581ba | 2010-08-31 22:39:35 +0200 | [diff] [blame] | 7590 | val = http_header_match2(hdr_beg, hdr_end, "Set-Cookie2", 11); |
| 7591 | if (!val) { |
| 7592 | old_idx = cur_idx; |
| 7593 | continue; |
| 7594 | } |
| 7595 | is_cookie2 = 1; |
| 7596 | prev = hdr_beg + 11; |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 7597 | } |
| 7598 | |
Willy Tarreau | 24581ba | 2010-08-31 22:39:35 +0200 | [diff] [blame] | 7599 | /* OK, right now we know we have a Set-Cookie* at hdr_beg, and |
| 7600 | * <prev> points to the colon. |
| 7601 | */ |
Willy Tarreau | f134831 | 2010-10-07 15:54:11 +0200 | [diff] [blame] | 7602 | txn->flags |= TX_SCK_PRESENT; |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 7603 | |
Willy Tarreau | 24581ba | 2010-08-31 22:39:35 +0200 | [diff] [blame] | 7604 | /* Maybe we only wanted to see if there was a Set-Cookie (eg: |
| 7605 | * check-cache is enabled) and we are not interested in checking |
| 7606 | * them. Warning, the cookie capture is declared in the frontend. |
Willy Tarreau | fd39dda | 2008-10-17 12:01:58 +0200 | [diff] [blame] | 7607 | */ |
Willy Tarreau | e2e27a5 | 2007-04-01 00:01:37 +0200 | [diff] [blame] | 7608 | if (t->be->cookie_name == NULL && |
| 7609 | t->be->appsession_name == NULL && |
Willy Tarreau | fd39dda | 2008-10-17 12:01:58 +0200 | [diff] [blame] | 7610 | t->fe->capture_name == NULL) |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 7611 | return; |
| 7612 | |
Willy Tarreau | 24581ba | 2010-08-31 22:39:35 +0200 | [diff] [blame] | 7613 | /* OK so now we know we have to process this response cookie. |
| 7614 | * The format of the Set-Cookie header is slightly different |
| 7615 | * from the format of the Cookie header in that it does not |
| 7616 | * support the comma as a cookie delimiter (thus the header |
| 7617 | * cannot be folded) because the Expires attribute described in |
| 7618 | * the original Netscape's spec may contain an unquoted date |
| 7619 | * with a comma inside. We have to live with this because |
| 7620 | * many browsers don't support Max-Age and some browsers don't |
| 7621 | * support quoted strings. However the Set-Cookie2 header is |
| 7622 | * clean. |
| 7623 | * |
| 7624 | * We have to keep multiple pointers in order to support cookie |
| 7625 | * removal at the beginning, middle or end of header without |
| 7626 | * corrupting the header (in case of set-cookie2). A special |
| 7627 | * pointer, <scav> points to the beginning of the set-cookie-av |
| 7628 | * fields after the first semi-colon. The <next> pointer points |
| 7629 | * either to the end of line (set-cookie) or next unquoted comma |
| 7630 | * (set-cookie2). All of these headers are valid : |
| 7631 | * |
| 7632 | * Set-Cookie: NAME1 = VALUE 1 ; Secure; Path="/"\r\n |
| 7633 | * Set-Cookie:NAME=VALUE; Secure; Expires=Thu, 01-Jan-1970 00:00:01 GMT\r\n |
| 7634 | * Set-Cookie: NAME = VALUE ; Secure; Expires=Thu, 01-Jan-1970 00:00:01 GMT\r\n |
| 7635 | * Set-Cookie2: NAME1 = VALUE 1 ; Max-Age=0, NAME2=VALUE2; Discard\r\n |
| 7636 | * | | | | | | | | | | |
| 7637 | * | | | | | | | | +-> next hdr_end <--+ |
| 7638 | * | | | | | | | +------------> scav |
| 7639 | * | | | | | | +--------------> val_end |
| 7640 | * | | | | | +--------------------> val_beg |
| 7641 | * | | | | +----------------------> equal |
| 7642 | * | | | +------------------------> att_end |
| 7643 | * | | +----------------------------> att_beg |
| 7644 | * | +------------------------------> prev |
| 7645 | * +-----------------------------------------> hdr_beg |
| 7646 | */ |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 7647 | |
Willy Tarreau | 24581ba | 2010-08-31 22:39:35 +0200 | [diff] [blame] | 7648 | for (; prev < hdr_end; prev = next) { |
| 7649 | /* Iterate through all cookies on this line */ |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 7650 | |
Willy Tarreau | 24581ba | 2010-08-31 22:39:35 +0200 | [diff] [blame] | 7651 | /* find att_beg */ |
| 7652 | att_beg = prev + 1; |
| 7653 | while (att_beg < hdr_end && http_is_spht[(unsigned char)*att_beg]) |
| 7654 | att_beg++; |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 7655 | |
Willy Tarreau | 24581ba | 2010-08-31 22:39:35 +0200 | [diff] [blame] | 7656 | /* find att_end : this is the first character after the last non |
| 7657 | * space before the equal. It may be equal to hdr_end. |
| 7658 | */ |
| 7659 | equal = att_end = att_beg; |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 7660 | |
Willy Tarreau | 24581ba | 2010-08-31 22:39:35 +0200 | [diff] [blame] | 7661 | while (equal < hdr_end) { |
| 7662 | if (*equal == '=' || *equal == ';' || (is_cookie2 && *equal == ',')) |
| 7663 | break; |
| 7664 | if (http_is_spht[(unsigned char)*equal++]) |
| 7665 | continue; |
| 7666 | att_end = equal; |
| 7667 | } |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 7668 | |
Willy Tarreau | 24581ba | 2010-08-31 22:39:35 +0200 | [diff] [blame] | 7669 | /* here, <equal> points to '=', a delimitor or the end. <att_end> |
| 7670 | * is between <att_beg> and <equal>, both may be identical. |
| 7671 | */ |
| 7672 | |
| 7673 | /* look for end of cookie if there is an equal sign */ |
| 7674 | if (equal < hdr_end && *equal == '=') { |
| 7675 | /* look for the beginning of the value */ |
| 7676 | val_beg = equal + 1; |
| 7677 | while (val_beg < hdr_end && http_is_spht[(unsigned char)*val_beg]) |
| 7678 | val_beg++; |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 7679 | |
Willy Tarreau | 24581ba | 2010-08-31 22:39:35 +0200 | [diff] [blame] | 7680 | /* find the end of the value, respecting quotes */ |
| 7681 | next = find_cookie_value_end(val_beg, hdr_end); |
| 7682 | |
| 7683 | /* make val_end point to the first white space or delimitor after the value */ |
| 7684 | val_end = next; |
| 7685 | while (val_end > val_beg && http_is_spht[(unsigned char)*(val_end - 1)]) |
| 7686 | val_end--; |
| 7687 | } else { |
| 7688 | /* <equal> points to next comma, semi-colon or EOL */ |
| 7689 | val_beg = val_end = next = equal; |
| 7690 | } |
| 7691 | |
| 7692 | if (next < hdr_end) { |
| 7693 | /* Set-Cookie2 supports multiple cookies, and <next> points to |
| 7694 | * a colon or semi-colon before the end. So skip all attr-value |
| 7695 | * pairs and look for the next comma. For Set-Cookie, since |
| 7696 | * commas are permitted in values, skip to the end. |
| 7697 | */ |
| 7698 | if (is_cookie2) |
| 7699 | next = find_hdr_value_end(next, hdr_end); |
| 7700 | else |
| 7701 | next = hdr_end; |
| 7702 | } |
| 7703 | |
| 7704 | /* Now everything is as on the diagram above */ |
| 7705 | |
| 7706 | /* Ignore cookies with no equal sign */ |
| 7707 | if (equal == val_end) |
| 7708 | continue; |
| 7709 | |
| 7710 | /* If there are spaces around the equal sign, we need to |
| 7711 | * strip them otherwise we'll get trouble for cookie captures, |
| 7712 | * or even for rewrites. Since this happens extremely rarely, |
| 7713 | * it does not hurt performance. |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 7714 | */ |
Willy Tarreau | 24581ba | 2010-08-31 22:39:35 +0200 | [diff] [blame] | 7715 | if (unlikely(att_end != equal || val_beg > equal + 1)) { |
| 7716 | int stripped_before = 0; |
| 7717 | int stripped_after = 0; |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 7718 | |
Willy Tarreau | 24581ba | 2010-08-31 22:39:35 +0200 | [diff] [blame] | 7719 | if (att_end != equal) { |
Willy Tarreau | 9b28e03 | 2012-10-12 23:49:43 +0200 | [diff] [blame] | 7720 | stripped_before = buffer_replace2(res->buf, att_end, equal, NULL, 0); |
Willy Tarreau | 24581ba | 2010-08-31 22:39:35 +0200 | [diff] [blame] | 7721 | equal += stripped_before; |
| 7722 | val_beg += stripped_before; |
| 7723 | } |
| 7724 | |
| 7725 | if (val_beg > equal + 1) { |
Willy Tarreau | 9b28e03 | 2012-10-12 23:49:43 +0200 | [diff] [blame] | 7726 | stripped_after = buffer_replace2(res->buf, equal + 1, val_beg, NULL, 0); |
Willy Tarreau | 24581ba | 2010-08-31 22:39:35 +0200 | [diff] [blame] | 7727 | val_beg += stripped_after; |
| 7728 | stripped_before += stripped_after; |
| 7729 | } |
| 7730 | |
| 7731 | val_end += stripped_before; |
| 7732 | next += stripped_before; |
| 7733 | hdr_end += stripped_before; |
| 7734 | hdr_next += stripped_before; |
| 7735 | cur_hdr->len += stripped_before; |
Willy Tarreau | 1fc1f45 | 2011-04-07 22:35:37 +0200 | [diff] [blame] | 7736 | http_msg_move_end(&txn->rsp, stripped_before); |
Willy Tarreau | 24581ba | 2010-08-31 22:39:35 +0200 | [diff] [blame] | 7737 | } |
| 7738 | |
| 7739 | /* First, let's see if we want to capture this cookie. We check |
| 7740 | * that we don't already have a server side cookie, because we |
| 7741 | * can only capture one. Also as an optimisation, we ignore |
| 7742 | * cookies shorter than the declared name. |
| 7743 | */ |
Willy Tarreau | fd39dda | 2008-10-17 12:01:58 +0200 | [diff] [blame] | 7744 | if (t->fe->capture_name != NULL && |
Willy Tarreau | 3bac9ff | 2007-03-18 17:31:28 +0100 | [diff] [blame] | 7745 | txn->srv_cookie == NULL && |
Willy Tarreau | 24581ba | 2010-08-31 22:39:35 +0200 | [diff] [blame] | 7746 | (val_end - att_beg >= t->fe->capture_namelen) && |
| 7747 | memcmp(att_beg, t->fe->capture_name, t->fe->capture_namelen) == 0) { |
| 7748 | int log_len = val_end - att_beg; |
Willy Tarreau | 086b3b4 | 2007-05-13 21:45:51 +0200 | [diff] [blame] | 7749 | if ((txn->srv_cookie = pool_alloc2(pool2_capture)) == NULL) { |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 7750 | Alert("HTTP logging : out of memory.\n"); |
| 7751 | } |
Willy Tarreau | f70fc75 | 2010-11-19 11:27:18 +0100 | [diff] [blame] | 7752 | else { |
| 7753 | if (log_len > t->fe->capture_len) |
| 7754 | log_len = t->fe->capture_len; |
| 7755 | memcpy(txn->srv_cookie, att_beg, log_len); |
| 7756 | txn->srv_cookie[log_len] = 0; |
| 7757 | } |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 7758 | } |
| 7759 | |
Willy Tarreau | 3fdb366 | 2012-11-12 00:42:33 +0100 | [diff] [blame] | 7760 | srv = objt_server(t->target); |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 7761 | /* now check if we need to process it for persistence */ |
Willy Tarreau | 24581ba | 2010-08-31 22:39:35 +0200 | [diff] [blame] | 7762 | if (!(t->flags & SN_IGNORE_PRST) && |
| 7763 | (att_end - att_beg == t->be->cookie_len) && (t->be->cookie_name != NULL) && |
| 7764 | (memcmp(att_beg, t->be->cookie_name, att_end - att_beg) == 0)) { |
Willy Tarreau | f134831 | 2010-10-07 15:54:11 +0200 | [diff] [blame] | 7765 | /* assume passive cookie by default */ |
| 7766 | txn->flags &= ~TX_SCK_MASK; |
| 7767 | txn->flags |= TX_SCK_FOUND; |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 7768 | |
| 7769 | /* If the cookie is in insert mode on a known server, we'll delete |
| 7770 | * this occurrence because we'll insert another one later. |
| 7771 | * 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] | 7772 | * a direct access. |
| 7773 | */ |
Willy Tarreau | 6740213 | 2012-05-31 20:40:20 +0200 | [diff] [blame] | 7774 | if (t->be->ck_opts & PR_CK_PSV) { |
Willy Tarreau | ba4c5be | 2010-10-23 12:46:42 +0200 | [diff] [blame] | 7775 | /* The "preserve" flag was set, we don't want to touch the |
| 7776 | * server's cookie. |
| 7777 | */ |
| 7778 | } |
Willy Tarreau | 6740213 | 2012-05-31 20:40:20 +0200 | [diff] [blame] | 7779 | else if ((srv && (t->be->ck_opts & PR_CK_INS)) || |
| 7780 | ((t->flags & SN_DIRECT) && (t->be->ck_opts & PR_CK_IND))) { |
Willy Tarreau | 24581ba | 2010-08-31 22:39:35 +0200 | [diff] [blame] | 7781 | /* this cookie must be deleted */ |
| 7782 | if (*prev == ':' && next == hdr_end) { |
| 7783 | /* whole header */ |
Willy Tarreau | 9b28e03 | 2012-10-12 23:49:43 +0200 | [diff] [blame] | 7784 | delta = buffer_replace2(res->buf, hdr_beg, hdr_next, NULL, 0); |
Willy Tarreau | 24581ba | 2010-08-31 22:39:35 +0200 | [diff] [blame] | 7785 | txn->hdr_idx.v[old_idx].next = cur_hdr->next; |
| 7786 | txn->hdr_idx.used--; |
| 7787 | cur_hdr->len = 0; |
Willy Tarreau | 26db59e | 2010-11-28 06:57:24 +0100 | [diff] [blame] | 7788 | cur_idx = old_idx; |
Willy Tarreau | 24581ba | 2010-08-31 22:39:35 +0200 | [diff] [blame] | 7789 | hdr_next += delta; |
| 7790 | http_msg_move_end(&txn->rsp, delta); |
| 7791 | /* note: while both invalid now, <next> and <hdr_end> |
| 7792 | * are still equal, so the for() will stop as expected. |
| 7793 | */ |
| 7794 | } else { |
| 7795 | /* just remove the value */ |
Willy Tarreau | 9b28e03 | 2012-10-12 23:49:43 +0200 | [diff] [blame] | 7796 | int delta = del_hdr_value(res->buf, &prev, next); |
Willy Tarreau | 24581ba | 2010-08-31 22:39:35 +0200 | [diff] [blame] | 7797 | next = prev; |
| 7798 | hdr_end += delta; |
| 7799 | hdr_next += delta; |
| 7800 | cur_hdr->len += delta; |
| 7801 | http_msg_move_end(&txn->rsp, delta); |
| 7802 | } |
Willy Tarreau | f134831 | 2010-10-07 15:54:11 +0200 | [diff] [blame] | 7803 | txn->flags &= ~TX_SCK_MASK; |
Willy Tarreau | 3d30059 | 2007-03-18 18:34:41 +0100 | [diff] [blame] | 7804 | txn->flags |= TX_SCK_DELETED; |
Willy Tarreau | 24581ba | 2010-08-31 22:39:35 +0200 | [diff] [blame] | 7805 | /* and go on with next cookie */ |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 7806 | } |
Willy Tarreau | 6740213 | 2012-05-31 20:40:20 +0200 | [diff] [blame] | 7807 | else if (srv && srv->cookie && (t->be->ck_opts & PR_CK_RW)) { |
Willy Tarreau | 24581ba | 2010-08-31 22:39:35 +0200 | [diff] [blame] | 7808 | /* replace bytes val_beg->val_end with the cookie name associated |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 7809 | * with this server since we know it. |
| 7810 | */ |
Willy Tarreau | 9b28e03 | 2012-10-12 23:49:43 +0200 | [diff] [blame] | 7811 | 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] | 7812 | next += delta; |
| 7813 | hdr_end += delta; |
| 7814 | hdr_next += delta; |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 7815 | cur_hdr->len += delta; |
Willy Tarreau | fa355d4 | 2009-11-29 18:12:29 +0100 | [diff] [blame] | 7816 | http_msg_move_end(&txn->rsp, delta); |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 7817 | |
Willy Tarreau | f134831 | 2010-10-07 15:54:11 +0200 | [diff] [blame] | 7818 | txn->flags &= ~TX_SCK_MASK; |
| 7819 | txn->flags |= TX_SCK_REPLACED; |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 7820 | } |
Willy Tarreau | a059031 | 2012-06-06 16:07:00 +0200 | [diff] [blame] | 7821 | else if (srv && srv->cookie && (t->be->ck_opts & PR_CK_PFX)) { |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 7822 | /* insert the cookie name associated with this server |
Willy Tarreau | 24581ba | 2010-08-31 22:39:35 +0200 | [diff] [blame] | 7823 | * before existing cookie, and insert a delimiter between them.. |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 7824 | */ |
Willy Tarreau | 9b28e03 | 2012-10-12 23:49:43 +0200 | [diff] [blame] | 7825 | 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] | 7826 | next += delta; |
| 7827 | hdr_end += delta; |
| 7828 | hdr_next += delta; |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 7829 | cur_hdr->len += delta; |
Willy Tarreau | fa355d4 | 2009-11-29 18:12:29 +0100 | [diff] [blame] | 7830 | http_msg_move_end(&txn->rsp, delta); |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 7831 | |
Willy Tarreau | 827aee9 | 2011-03-10 16:55:02 +0100 | [diff] [blame] | 7832 | val_beg[srv->cklen] = COOKIE_DELIM; |
Willy Tarreau | f134831 | 2010-10-07 15:54:11 +0200 | [diff] [blame] | 7833 | txn->flags &= ~TX_SCK_MASK; |
| 7834 | txn->flags |= TX_SCK_REPLACED; |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 7835 | } |
| 7836 | } |
Cyril Bonté | 47fdd8e | 2010-04-25 00:00:51 +0200 | [diff] [blame] | 7837 | /* next, let's see if the cookie is our appcookie, unless persistence must be ignored */ |
| 7838 | else if (!(t->flags & SN_IGNORE_PRST) && (t->be->appsession_name != NULL)) { |
Cyril Bonté | b21570a | 2009-11-29 20:04:48 +0100 | [diff] [blame] | 7839 | int cmp_len, value_len; |
| 7840 | char *value_begin; |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 7841 | |
Cyril Bonté | b21570a | 2009-11-29 20:04:48 +0100 | [diff] [blame] | 7842 | if (t->be->options2 & PR_O2_AS_PFX) { |
Willy Tarreau | 24581ba | 2010-08-31 22:39:35 +0200 | [diff] [blame] | 7843 | cmp_len = MIN(val_end - att_beg, t->be->appsession_name_len); |
| 7844 | value_begin = att_beg + t->be->appsession_name_len; |
| 7845 | value_len = MIN(t->be->appsession_len, val_end - att_beg - t->be->appsession_name_len); |
Cyril Bonté | b21570a | 2009-11-29 20:04:48 +0100 | [diff] [blame] | 7846 | } else { |
Willy Tarreau | 24581ba | 2010-08-31 22:39:35 +0200 | [diff] [blame] | 7847 | cmp_len = att_end - att_beg; |
| 7848 | value_begin = val_beg; |
| 7849 | value_len = MIN(t->be->appsession_len, val_end - val_beg); |
Cyril Bonté | bf47aeb | 2009-10-15 00:15:40 +0200 | [diff] [blame] | 7850 | } |
Cyril Bonté | b21570a | 2009-11-29 20:04:48 +0100 | [diff] [blame] | 7851 | |
Cyril Bonté | 17530c3 | 2010-04-06 21:11:10 +0200 | [diff] [blame] | 7852 | if ((cmp_len == t->be->appsession_name_len) && |
Willy Tarreau | 24581ba | 2010-08-31 22:39:35 +0200 | [diff] [blame] | 7853 | (memcmp(att_beg, t->be->appsession_name, t->be->appsession_name_len) == 0)) { |
| 7854 | /* free a possibly previously allocated memory */ |
| 7855 | pool_free2(apools.sessid, txn->sessid); |
| 7856 | |
Cyril Bonté | b21570a | 2009-11-29 20:04:48 +0100 | [diff] [blame] | 7857 | /* Store the sessid in the session for future use */ |
Willy Tarreau | a3377ee | 2010-01-10 10:49:11 +0100 | [diff] [blame] | 7858 | if ((txn->sessid = pool_alloc2(apools.sessid)) == NULL) { |
Cyril Bonté | b21570a | 2009-11-29 20:04:48 +0100 | [diff] [blame] | 7859 | Alert("Not enough Memory process_srv():asession->sessid:malloc().\n"); |
| 7860 | send_log(t->be, LOG_ALERT, "Not enough Memory process_srv():asession->sessid:malloc().\n"); |
| 7861 | return; |
| 7862 | } |
Willy Tarreau | a3377ee | 2010-01-10 10:49:11 +0100 | [diff] [blame] | 7863 | memcpy(txn->sessid, value_begin, value_len); |
| 7864 | txn->sessid[value_len] = 0; |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 7865 | } |
Willy Tarreau | 24581ba | 2010-08-31 22:39:35 +0200 | [diff] [blame] | 7866 | } |
| 7867 | /* that's done for this cookie, check the next one on the same |
| 7868 | * line when next != hdr_end (only if is_cookie2). |
| 7869 | */ |
| 7870 | } |
| 7871 | /* check next header */ |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 7872 | old_idx = cur_idx; |
Willy Tarreau | 24581ba | 2010-08-31 22:39:35 +0200 | [diff] [blame] | 7873 | } |
Cyril Bonté | bf47aeb | 2009-10-15 00:15:40 +0200 | [diff] [blame] | 7874 | |
Willy Tarreau | a3377ee | 2010-01-10 10:49:11 +0100 | [diff] [blame] | 7875 | if (txn->sessid != NULL) { |
Cyril Bonté | bf47aeb | 2009-10-15 00:15:40 +0200 | [diff] [blame] | 7876 | appsess *asession = NULL; |
| 7877 | /* only do insert, if lookup fails */ |
Willy Tarreau | a3377ee | 2010-01-10 10:49:11 +0100 | [diff] [blame] | 7878 | asession = appsession_hash_lookup(&(t->be->htbl_proxy), txn->sessid); |
Cyril Bonté | bf47aeb | 2009-10-15 00:15:40 +0200 | [diff] [blame] | 7879 | if (asession == NULL) { |
Willy Tarreau | 1fac753 | 2010-01-09 19:23:06 +0100 | [diff] [blame] | 7880 | size_t server_id_len; |
Cyril Bonté | bf47aeb | 2009-10-15 00:15:40 +0200 | [diff] [blame] | 7881 | if ((asession = pool_alloc2(pool2_appsess)) == NULL) { |
| 7882 | Alert("Not enough Memory process_srv():asession:calloc().\n"); |
| 7883 | send_log(t->be, LOG_ALERT, "Not enough Memory process_srv():asession:calloc().\n"); |
| 7884 | return; |
| 7885 | } |
Willy Tarreau | 77eb9b8 | 2010-11-19 11:29:06 +0100 | [diff] [blame] | 7886 | asession->serverid = NULL; /* to avoid a double free in case of allocation error */ |
| 7887 | |
Cyril Bonté | bf47aeb | 2009-10-15 00:15:40 +0200 | [diff] [blame] | 7888 | if ((asession->sessid = pool_alloc2(apools.sessid)) == NULL) { |
| 7889 | Alert("Not enough Memory process_srv():asession->sessid:malloc().\n"); |
| 7890 | send_log(t->be, LOG_ALERT, "Not enough Memory process_srv():asession->sessid:malloc().\n"); |
Cyril Bonté | 41689c2 | 2010-01-10 00:30:14 +0100 | [diff] [blame] | 7891 | t->be->htbl_proxy.destroy(asession); |
Cyril Bonté | bf47aeb | 2009-10-15 00:15:40 +0200 | [diff] [blame] | 7892 | return; |
| 7893 | } |
Willy Tarreau | a3377ee | 2010-01-10 10:49:11 +0100 | [diff] [blame] | 7894 | memcpy(asession->sessid, txn->sessid, t->be->appsession_len); |
Cyril Bonté | bf47aeb | 2009-10-15 00:15:40 +0200 | [diff] [blame] | 7895 | asession->sessid[t->be->appsession_len] = 0; |
| 7896 | |
Willy Tarreau | 3fdb366 | 2012-11-12 00:42:33 +0100 | [diff] [blame] | 7897 | server_id_len = strlen(objt_server(t->target)->id) + 1; |
Cyril Bonté | bf47aeb | 2009-10-15 00:15:40 +0200 | [diff] [blame] | 7898 | if ((asession->serverid = pool_alloc2(apools.serverid)) == NULL) { |
Willy Tarreau | 77eb9b8 | 2010-11-19 11:29:06 +0100 | [diff] [blame] | 7899 | Alert("Not enough Memory process_srv():asession->serverid:malloc().\n"); |
Cyril Bonté | bf47aeb | 2009-10-15 00:15:40 +0200 | [diff] [blame] | 7900 | send_log(t->be, LOG_ALERT, "Not enough Memory process_srv():asession->sessid:malloc().\n"); |
Cyril Bonté | 41689c2 | 2010-01-10 00:30:14 +0100 | [diff] [blame] | 7901 | t->be->htbl_proxy.destroy(asession); |
Cyril Bonté | bf47aeb | 2009-10-15 00:15:40 +0200 | [diff] [blame] | 7902 | return; |
| 7903 | } |
| 7904 | asession->serverid[0] = '\0'; |
Willy Tarreau | 3fdb366 | 2012-11-12 00:42:33 +0100 | [diff] [blame] | 7905 | memcpy(asession->serverid, objt_server(t->target)->id, server_id_len); |
Cyril Bonté | bf47aeb | 2009-10-15 00:15:40 +0200 | [diff] [blame] | 7906 | |
| 7907 | asession->request_count = 0; |
| 7908 | appsession_hash_insert(&(t->be->htbl_proxy), asession); |
| 7909 | } |
| 7910 | |
| 7911 | asession->expire = tick_add_ifset(now_ms, t->be->timeout.appsession); |
| 7912 | asession->request_count++; |
| 7913 | } |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 7914 | } |
| 7915 | |
| 7916 | |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 7917 | /* |
| 7918 | * Check if response is cacheable or not. Updates t->flags. |
| 7919 | */ |
Willy Tarreau | 7421efb | 2012-07-02 15:11:27 +0200 | [diff] [blame] | 7920 | void check_response_for_cacheability(struct session *t, struct channel *rtr) |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 7921 | { |
| 7922 | struct http_txn *txn = &t->txn; |
| 7923 | char *p1, *p2; |
| 7924 | |
| 7925 | char *cur_ptr, *cur_end, *cur_next; |
| 7926 | int cur_idx; |
| 7927 | |
Willy Tarreau | 5df5187 | 2007-11-25 16:20:08 +0100 | [diff] [blame] | 7928 | if (!(txn->flags & TX_CACHEABLE)) |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 7929 | return; |
| 7930 | |
| 7931 | /* Iterate through the headers. |
| 7932 | * we start with the start line. |
| 7933 | */ |
| 7934 | cur_idx = 0; |
Willy Tarreau | 9b28e03 | 2012-10-12 23:49:43 +0200 | [diff] [blame] | 7935 | cur_next = rtr->buf->p + hdr_idx_first_pos(&txn->hdr_idx); |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 7936 | |
| 7937 | while ((cur_idx = txn->hdr_idx.v[cur_idx].next)) { |
| 7938 | struct hdr_idx_elem *cur_hdr; |
Willy Tarreau | aa9dce3 | 2007-03-18 23:50:16 +0100 | [diff] [blame] | 7939 | int val; |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 7940 | |
| 7941 | cur_hdr = &txn->hdr_idx.v[cur_idx]; |
| 7942 | cur_ptr = cur_next; |
| 7943 | cur_end = cur_ptr + cur_hdr->len; |
| 7944 | cur_next = cur_end + cur_hdr->cr + 1; |
| 7945 | |
| 7946 | /* We have one full header between cur_ptr and cur_end, and the |
| 7947 | * next header starts at cur_next. We're only interested in |
| 7948 | * "Cookie:" headers. |
| 7949 | */ |
| 7950 | |
Willy Tarreau | aa9dce3 | 2007-03-18 23:50:16 +0100 | [diff] [blame] | 7951 | val = http_header_match2(cur_ptr, cur_end, "Pragma", 6); |
| 7952 | if (val) { |
| 7953 | if ((cur_end - (cur_ptr + val) >= 8) && |
| 7954 | strncasecmp(cur_ptr + val, "no-cache", 8) == 0) { |
| 7955 | txn->flags &= ~TX_CACHEABLE & ~TX_CACHE_COOK; |
| 7956 | return; |
| 7957 | } |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 7958 | } |
| 7959 | |
Willy Tarreau | aa9dce3 | 2007-03-18 23:50:16 +0100 | [diff] [blame] | 7960 | val = http_header_match2(cur_ptr, cur_end, "Cache-control", 13); |
| 7961 | if (!val) |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 7962 | continue; |
| 7963 | |
| 7964 | /* OK, right now we know we have a cache-control header at cur_ptr */ |
| 7965 | |
Willy Tarreau | aa9dce3 | 2007-03-18 23:50:16 +0100 | [diff] [blame] | 7966 | p1 = cur_ptr + val; /* first non-space char after 'cache-control:' */ |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 7967 | |
| 7968 | if (p1 >= cur_end) /* no more info */ |
| 7969 | continue; |
| 7970 | |
| 7971 | /* p1 is at the beginning of the value */ |
| 7972 | p2 = p1; |
| 7973 | |
Willy Tarreau | 8f8e645 | 2007-06-17 21:51:38 +0200 | [diff] [blame] | 7974 | while (p2 < cur_end && *p2 != '=' && *p2 != ',' && !isspace((unsigned char)*p2)) |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 7975 | p2++; |
| 7976 | |
| 7977 | /* we have a complete value between p1 and p2 */ |
| 7978 | if (p2 < cur_end && *p2 == '=') { |
| 7979 | /* we have something of the form no-cache="set-cookie" */ |
| 7980 | if ((cur_end - p1 >= 21) && |
| 7981 | strncasecmp(p1, "no-cache=\"set-cookie", 20) == 0 |
| 7982 | && (p1[20] == '"' || p1[20] == ',')) |
Willy Tarreau | 3d30059 | 2007-03-18 18:34:41 +0100 | [diff] [blame] | 7983 | txn->flags &= ~TX_CACHE_COOK; |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 7984 | continue; |
| 7985 | } |
| 7986 | |
| 7987 | /* OK, so we know that either p2 points to the end of string or to a comma */ |
| 7988 | if (((p2 - p1 == 7) && strncasecmp(p1, "private", 7) == 0) || |
Willy Tarreau | 5b15f90 | 2013-07-04 12:46:56 +0200 | [diff] [blame] | 7989 | ((p2 - p1 == 8) && strncasecmp(p1, "no-cache", 8) == 0) || |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 7990 | ((p2 - p1 == 8) && strncasecmp(p1, "no-store", 8) == 0) || |
| 7991 | ((p2 - p1 == 9) && strncasecmp(p1, "max-age=0", 9) == 0) || |
| 7992 | ((p2 - p1 == 10) && strncasecmp(p1, "s-maxage=0", 10) == 0)) { |
Willy Tarreau | 3d30059 | 2007-03-18 18:34:41 +0100 | [diff] [blame] | 7993 | txn->flags &= ~TX_CACHEABLE & ~TX_CACHE_COOK; |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 7994 | return; |
| 7995 | } |
| 7996 | |
| 7997 | if ((p2 - p1 == 6) && strncasecmp(p1, "public", 6) == 0) { |
Willy Tarreau | 3d30059 | 2007-03-18 18:34:41 +0100 | [diff] [blame] | 7998 | txn->flags |= TX_CACHEABLE | TX_CACHE_COOK; |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 7999 | continue; |
| 8000 | } |
| 8001 | } |
| 8002 | } |
| 8003 | |
| 8004 | |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 8005 | /* |
| 8006 | * Try to retrieve a known appsession in the URI, then the associated server. |
| 8007 | * If the server is found, it's assigned to the session. |
| 8008 | */ |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 8009 | void get_srv_from_appsession(struct session *t, const char *begin, int len) |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 8010 | { |
Cyril Bonté | b21570a | 2009-11-29 20:04:48 +0100 | [diff] [blame] | 8011 | char *end_params, *first_param, *cur_param, *next_param; |
| 8012 | char separator; |
| 8013 | int value_len; |
| 8014 | |
| 8015 | int mode = t->be->options2 & PR_O2_AS_M_ANY; |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 8016 | |
Willy Tarreau | e2e27a5 | 2007-04-01 00:01:37 +0200 | [diff] [blame] | 8017 | if (t->be->appsession_name == NULL || |
Cyril Bonté | 17530c3 | 2010-04-06 21:11:10 +0200 | [diff] [blame] | 8018 | (t->txn.meth != HTTP_METH_GET && t->txn.meth != HTTP_METH_POST && t->txn.meth != HTTP_METH_HEAD)) { |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 8019 | return; |
Cyril Bonté | b21570a | 2009-11-29 20:04:48 +0100 | [diff] [blame] | 8020 | } |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 8021 | |
Cyril Bonté | b21570a | 2009-11-29 20:04:48 +0100 | [diff] [blame] | 8022 | first_param = NULL; |
| 8023 | switch (mode) { |
| 8024 | case PR_O2_AS_M_PP: |
| 8025 | first_param = memchr(begin, ';', len); |
| 8026 | break; |
| 8027 | case PR_O2_AS_M_QS: |
| 8028 | first_param = memchr(begin, '?', len); |
| 8029 | break; |
| 8030 | } |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 8031 | |
Cyril Bonté | b21570a | 2009-11-29 20:04:48 +0100 | [diff] [blame] | 8032 | if (first_param == NULL) { |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 8033 | return; |
Cyril Bonté | b21570a | 2009-11-29 20:04:48 +0100 | [diff] [blame] | 8034 | } |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 8035 | |
Cyril Bonté | b21570a | 2009-11-29 20:04:48 +0100 | [diff] [blame] | 8036 | switch (mode) { |
| 8037 | case PR_O2_AS_M_PP: |
| 8038 | if ((end_params = memchr(first_param, '?', len - (begin - first_param))) == NULL) { |
| 8039 | end_params = (char *) begin + len; |
| 8040 | } |
| 8041 | separator = ';'; |
| 8042 | break; |
| 8043 | case PR_O2_AS_M_QS: |
| 8044 | end_params = (char *) begin + len; |
| 8045 | separator = '&'; |
| 8046 | break; |
| 8047 | default: |
| 8048 | /* unknown mode, shouldn't happen */ |
| 8049 | return; |
| 8050 | } |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 8051 | |
Cyril Bonté | b21570a | 2009-11-29 20:04:48 +0100 | [diff] [blame] | 8052 | cur_param = next_param = end_params; |
| 8053 | while (cur_param > first_param) { |
| 8054 | cur_param--; |
| 8055 | if ((cur_param[0] == separator) || (cur_param == first_param)) { |
| 8056 | /* let's see if this is the appsession parameter */ |
| 8057 | if ((cur_param + t->be->appsession_name_len + 1 < next_param) && |
| 8058 | ((t->be->options2 & PR_O2_AS_PFX) || cur_param[t->be->appsession_name_len + 1] == '=') && |
| 8059 | (strncasecmp(cur_param + 1, t->be->appsession_name, t->be->appsession_name_len) == 0)) { |
| 8060 | /* Cool... it's the right one */ |
| 8061 | cur_param += t->be->appsession_name_len + (t->be->options2 & PR_O2_AS_PFX ? 1 : 2); |
| 8062 | value_len = MIN(t->be->appsession_len, next_param - cur_param); |
| 8063 | if (value_len > 0) { |
| 8064 | manage_client_side_appsession(t, cur_param, value_len); |
| 8065 | } |
| 8066 | break; |
| 8067 | } |
| 8068 | next_param = cur_param; |
| 8069 | } |
| 8070 | } |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 8071 | #if defined(DEBUG_HASH) |
Aleksandar Lazic | 697bbb0 | 2008-08-13 19:57:02 +0200 | [diff] [blame] | 8072 | Alert("get_srv_from_appsession\n"); |
Willy Tarreau | 51041c7 | 2007-09-09 21:56:53 +0200 | [diff] [blame] | 8073 | appsession_hash_dump(&(t->be->htbl_proxy)); |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 8074 | #endif |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 8075 | } |
| 8076 | |
Willy Tarreau | b251390 | 2006-12-17 14:52:38 +0100 | [diff] [blame] | 8077 | /* |
Cyril Bonté | 70be45d | 2010-10-12 00:14:35 +0200 | [diff] [blame] | 8078 | * 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] | 8079 | * for the current backend. |
Willy Tarreau | b251390 | 2006-12-17 14:52:38 +0100 | [diff] [blame] | 8080 | * |
Cyril Bonté | 70be45d | 2010-10-12 00:14:35 +0200 | [diff] [blame] | 8081 | * 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] | 8082 | * uri_auth field is valid. |
Willy Tarreau | b251390 | 2006-12-17 14:52:38 +0100 | [diff] [blame] | 8083 | * |
Krzysztof Piotr Oledzki | 8c8bd45 | 2010-01-29 19:29:32 +0100 | [diff] [blame] | 8084 | * Returns 1 if stats should be provided, otherwise 0. |
Willy Tarreau | b251390 | 2006-12-17 14:52:38 +0100 | [diff] [blame] | 8085 | */ |
Willy Tarreau | 295a837 | 2011-03-10 11:25:07 +0100 | [diff] [blame] | 8086 | 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] | 8087 | { |
| 8088 | struct uri_auth *uri_auth = backend->uri_auth; |
Willy Tarreau | 3a215be | 2012-03-09 21:39:51 +0100 | [diff] [blame] | 8089 | struct http_msg *msg = &txn->req; |
Willy Tarreau | 9b28e03 | 2012-10-12 23:49:43 +0200 | [diff] [blame] | 8090 | const char *uri = msg->chn->buf->p+ msg->sl.rq.u; |
Willy Tarreau | b251390 | 2006-12-17 14:52:38 +0100 | [diff] [blame] | 8091 | |
Krzysztof Piotr Oledzki | 8c8bd45 | 2010-01-29 19:29:32 +0100 | [diff] [blame] | 8092 | if (!uri_auth) |
| 8093 | return 0; |
| 8094 | |
Cyril Bonté | 70be45d | 2010-10-12 00:14:35 +0200 | [diff] [blame] | 8095 | 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] | 8096 | return 0; |
| 8097 | |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 8098 | /* check URI size */ |
Willy Tarreau | 3a215be | 2012-03-09 21:39:51 +0100 | [diff] [blame] | 8099 | if (uri_auth->uri_len > msg->sl.rq.u_l) |
Willy Tarreau | b251390 | 2006-12-17 14:52:38 +0100 | [diff] [blame] | 8100 | return 0; |
| 8101 | |
Willy Tarreau | 414e9bb | 2013-11-23 00:30:38 +0100 | [diff] [blame] | 8102 | if (memcmp(uri, uri_auth->uri_prefix, uri_auth->uri_len) != 0) |
Willy Tarreau | b251390 | 2006-12-17 14:52:38 +0100 | [diff] [blame] | 8103 | return 0; |
| 8104 | |
Willy Tarreau | b251390 | 2006-12-17 14:52:38 +0100 | [diff] [blame] | 8105 | return 1; |
| 8106 | } |
| 8107 | |
Willy Tarreau | 4076a15 | 2009-04-02 15:18:36 +0200 | [diff] [blame] | 8108 | /* |
| 8109 | * 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] | 8110 | * By default it tries to report the error position as msg->err_pos. However if |
| 8111 | * this one is not set, it will then report msg->next, which is the last known |
| 8112 | * 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] | 8113 | * displays buffers as a contiguous area starting at buf->p. |
Willy Tarreau | 4076a15 | 2009-04-02 15:18:36 +0200 | [diff] [blame] | 8114 | */ |
| 8115 | void http_capture_bad_message(struct error_snapshot *es, struct session *s, |
Willy Tarreau | 8a0cef2 | 2012-03-09 13:39:23 +0100 | [diff] [blame] | 8116 | struct http_msg *msg, |
Willy Tarreau | 3770f23 | 2013-12-07 00:01:53 +0100 | [diff] [blame] | 8117 | enum ht_state state, struct proxy *other_end) |
Willy Tarreau | 4076a15 | 2009-04-02 15:18:36 +0200 | [diff] [blame] | 8118 | { |
Willy Tarreau | cdbdd52 | 2012-10-12 22:51:15 +0200 | [diff] [blame] | 8119 | struct channel *chn = msg->chn; |
Willy Tarreau | 69d8c5d | 2012-05-08 09:44:41 +0200 | [diff] [blame] | 8120 | int len1, len2; |
Willy Tarreau | 8a0cef2 | 2012-03-09 13:39:23 +0100 | [diff] [blame] | 8121 | |
Willy Tarreau | 9b28e03 | 2012-10-12 23:49:43 +0200 | [diff] [blame] | 8122 | es->len = MIN(chn->buf->i, sizeof(es->buf)); |
| 8123 | len1 = chn->buf->data + chn->buf->size - chn->buf->p; |
Willy Tarreau | 69d8c5d | 2012-05-08 09:44:41 +0200 | [diff] [blame] | 8124 | len1 = MIN(len1, es->len); |
| 8125 | len2 = es->len - len1; /* remaining data if buffer wraps */ |
| 8126 | |
Willy Tarreau | 9b28e03 | 2012-10-12 23:49:43 +0200 | [diff] [blame] | 8127 | memcpy(es->buf, chn->buf->p, len1); |
Willy Tarreau | 69d8c5d | 2012-05-08 09:44:41 +0200 | [diff] [blame] | 8128 | if (len2) |
Willy Tarreau | 9b28e03 | 2012-10-12 23:49:43 +0200 | [diff] [blame] | 8129 | memcpy(es->buf + len1, chn->buf->data, len2); |
Willy Tarreau | 81f2fb9 | 2010-12-12 13:09:08 +0100 | [diff] [blame] | 8130 | |
Willy Tarreau | 4076a15 | 2009-04-02 15:18:36 +0200 | [diff] [blame] | 8131 | if (msg->err_pos >= 0) |
Willy Tarreau | 69d8c5d | 2012-05-08 09:44:41 +0200 | [diff] [blame] | 8132 | es->pos = msg->err_pos; |
Willy Tarreau | 81f2fb9 | 2010-12-12 13:09:08 +0100 | [diff] [blame] | 8133 | else |
Willy Tarreau | 69d8c5d | 2012-05-08 09:44:41 +0200 | [diff] [blame] | 8134 | es->pos = msg->next; |
Willy Tarreau | 81f2fb9 | 2010-12-12 13:09:08 +0100 | [diff] [blame] | 8135 | |
Willy Tarreau | 4076a15 | 2009-04-02 15:18:36 +0200 | [diff] [blame] | 8136 | es->when = date; // user-visible date |
| 8137 | es->sid = s->uniq_id; |
Willy Tarreau | 3fdb366 | 2012-11-12 00:42:33 +0100 | [diff] [blame] | 8138 | es->srv = objt_server(s->target); |
Willy Tarreau | 4076a15 | 2009-04-02 15:18:36 +0200 | [diff] [blame] | 8139 | es->oe = other_end; |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 8140 | if (objt_conn(s->req->prod->end)) |
| 8141 | es->src = __objt_conn(s->req->prod->end)->addr.from; |
| 8142 | else |
| 8143 | memset(&es->src, 0, sizeof(es->src)); |
| 8144 | |
Willy Tarreau | 078272e | 2010-12-12 12:46:33 +0100 | [diff] [blame] | 8145 | es->state = state; |
Willy Tarreau | 10479e4 | 2010-12-12 14:00:34 +0100 | [diff] [blame] | 8146 | es->ev_id = error_snapshot_id++; |
Willy Tarreau | cdbdd52 | 2012-10-12 22:51:15 +0200 | [diff] [blame] | 8147 | es->b_flags = chn->flags; |
Willy Tarreau | d04b1bc | 2012-05-08 11:03:10 +0200 | [diff] [blame] | 8148 | es->s_flags = s->flags; |
| 8149 | es->t_flags = s->txn.flags; |
| 8150 | es->m_flags = msg->flags; |
Willy Tarreau | 9b28e03 | 2012-10-12 23:49:43 +0200 | [diff] [blame] | 8151 | es->b_out = chn->buf->o; |
| 8152 | es->b_wrap = chn->buf->data + chn->buf->size - chn->buf->p; |
Willy Tarreau | cdbdd52 | 2012-10-12 22:51:15 +0200 | [diff] [blame] | 8153 | es->b_tot = chn->total; |
Willy Tarreau | d04b1bc | 2012-05-08 11:03:10 +0200 | [diff] [blame] | 8154 | es->m_clen = msg->chunk_len; |
| 8155 | es->m_blen = msg->body_len; |
Willy Tarreau | 4076a15 | 2009-04-02 15:18:36 +0200 | [diff] [blame] | 8156 | } |
Willy Tarreau | b251390 | 2006-12-17 14:52:38 +0100 | [diff] [blame] | 8157 | |
Willy Tarreau | 294c473 | 2011-12-16 21:35:50 +0100 | [diff] [blame] | 8158 | /* Return in <vptr> and <vlen> the pointer and length of occurrence <occ> of |
| 8159 | * header whose name is <hname> of length <hlen>. If <ctx> is null, lookup is |
| 8160 | * performed over the whole headers. Otherwise it must contain a valid header |
| 8161 | * context, initialised with ctx->idx=0 for the first lookup in a series. If |
| 8162 | * <occ> is positive or null, occurrence #occ from the beginning (or last ctx) |
| 8163 | * is returned. Occ #0 and #1 are equivalent. If <occ> is negative (and no less |
| 8164 | * 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] | 8165 | * -1. The value fetch stops at commas, so this function is suited for use with |
| 8166 | * list headers. |
Willy Tarreau | 294c473 | 2011-12-16 21:35:50 +0100 | [diff] [blame] | 8167 | * 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] | 8168 | */ |
Willy Tarreau | 185b5c4 | 2012-04-26 15:11:51 +0200 | [diff] [blame] | 8169 | 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] | 8170 | struct hdr_idx *idx, int occ, |
| 8171 | struct hdr_ctx *ctx, char **vptr, int *vlen) |
Willy Tarreau | bce7088 | 2009-09-07 11:51:47 +0200 | [diff] [blame] | 8172 | { |
Willy Tarreau | 294c473 | 2011-12-16 21:35:50 +0100 | [diff] [blame] | 8173 | struct hdr_ctx local_ctx; |
| 8174 | char *ptr_hist[MAX_HDR_HISTORY]; |
| 8175 | int len_hist[MAX_HDR_HISTORY]; |
Willy Tarreau | bce7088 | 2009-09-07 11:51:47 +0200 | [diff] [blame] | 8176 | unsigned int hist_ptr; |
Willy Tarreau | 294c473 | 2011-12-16 21:35:50 +0100 | [diff] [blame] | 8177 | int found; |
Willy Tarreau | bce7088 | 2009-09-07 11:51:47 +0200 | [diff] [blame] | 8178 | |
Willy Tarreau | 294c473 | 2011-12-16 21:35:50 +0100 | [diff] [blame] | 8179 | if (!ctx) { |
| 8180 | local_ctx.idx = 0; |
| 8181 | ctx = &local_ctx; |
| 8182 | } |
| 8183 | |
Willy Tarreau | bce7088 | 2009-09-07 11:51:47 +0200 | [diff] [blame] | 8184 | if (occ >= 0) { |
Willy Tarreau | 294c473 | 2011-12-16 21:35:50 +0100 | [diff] [blame] | 8185 | /* search from the beginning */ |
Willy Tarreau | 9b28e03 | 2012-10-12 23:49:43 +0200 | [diff] [blame] | 8186 | while (http_find_header2(hname, hlen, msg->chn->buf->p, idx, ctx)) { |
Willy Tarreau | bce7088 | 2009-09-07 11:51:47 +0200 | [diff] [blame] | 8187 | occ--; |
| 8188 | if (occ <= 0) { |
Willy Tarreau | 294c473 | 2011-12-16 21:35:50 +0100 | [diff] [blame] | 8189 | *vptr = ctx->line + ctx->val; |
| 8190 | *vlen = ctx->vlen; |
| 8191 | return 1; |
Willy Tarreau | bce7088 | 2009-09-07 11:51:47 +0200 | [diff] [blame] | 8192 | } |
| 8193 | } |
Willy Tarreau | 294c473 | 2011-12-16 21:35:50 +0100 | [diff] [blame] | 8194 | return 0; |
Willy Tarreau | bce7088 | 2009-09-07 11:51:47 +0200 | [diff] [blame] | 8195 | } |
| 8196 | |
| 8197 | /* negative occurrence, we scan all the list then walk back */ |
| 8198 | if (-occ > MAX_HDR_HISTORY) |
| 8199 | return 0; |
| 8200 | |
Willy Tarreau | 294c473 | 2011-12-16 21:35:50 +0100 | [diff] [blame] | 8201 | found = hist_ptr = 0; |
Willy Tarreau | 9b28e03 | 2012-10-12 23:49:43 +0200 | [diff] [blame] | 8202 | while (http_find_header2(hname, hlen, msg->chn->buf->p, idx, ctx)) { |
Willy Tarreau | 294c473 | 2011-12-16 21:35:50 +0100 | [diff] [blame] | 8203 | ptr_hist[hist_ptr] = ctx->line + ctx->val; |
| 8204 | len_hist[hist_ptr] = ctx->vlen; |
| 8205 | if (++hist_ptr >= MAX_HDR_HISTORY) |
Willy Tarreau | bce7088 | 2009-09-07 11:51:47 +0200 | [diff] [blame] | 8206 | hist_ptr = 0; |
| 8207 | found++; |
| 8208 | } |
| 8209 | if (-occ > found) |
| 8210 | return 0; |
| 8211 | /* 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] | 8212 | * find occurrence -occ. 0 <= hist_ptr < MAX_HDR_HISTORY, and we have |
| 8213 | * -10 <= occ <= -1. So we have to check [hist_ptr%MAX_HDR_HISTORY+occ] |
| 8214 | * to remain in the 0..9 range. |
Willy Tarreau | bce7088 | 2009-09-07 11:51:47 +0200 | [diff] [blame] | 8215 | */ |
Willy Tarreau | 67dad27 | 2013-06-12 22:27:44 +0200 | [diff] [blame] | 8216 | hist_ptr += occ + MAX_HDR_HISTORY; |
Willy Tarreau | bce7088 | 2009-09-07 11:51:47 +0200 | [diff] [blame] | 8217 | if (hist_ptr >= MAX_HDR_HISTORY) |
| 8218 | hist_ptr -= MAX_HDR_HISTORY; |
Willy Tarreau | 294c473 | 2011-12-16 21:35:50 +0100 | [diff] [blame] | 8219 | *vptr = ptr_hist[hist_ptr]; |
| 8220 | *vlen = len_hist[hist_ptr]; |
| 8221 | return 1; |
Willy Tarreau | bce7088 | 2009-09-07 11:51:47 +0200 | [diff] [blame] | 8222 | } |
| 8223 | |
Willy Tarreau | 04ff9f1 | 2013-06-10 18:39:42 +0200 | [diff] [blame] | 8224 | /* Return in <vptr> and <vlen> the pointer and length of occurrence <occ> of |
| 8225 | * header whose name is <hname> of length <hlen>. If <ctx> is null, lookup is |
| 8226 | * performed over the whole headers. Otherwise it must contain a valid header |
| 8227 | * context, initialised with ctx->idx=0 for the first lookup in a series. If |
| 8228 | * <occ> is positive or null, occurrence #occ from the beginning (or last ctx) |
| 8229 | * is returned. Occ #0 and #1 are equivalent. If <occ> is negative (and no less |
| 8230 | * than -MAX_HDR_HISTORY), the occurrence is counted from the last one which is |
| 8231 | * -1. This function differs from http_get_hdr() in that it only returns full |
| 8232 | * line header values and does not stop at commas. |
| 8233 | * The return value is 0 if nothing was found, or non-zero otherwise. |
| 8234 | */ |
| 8235 | unsigned int http_get_fhdr(const struct http_msg *msg, const char *hname, int hlen, |
| 8236 | struct hdr_idx *idx, int occ, |
| 8237 | struct hdr_ctx *ctx, char **vptr, int *vlen) |
| 8238 | { |
| 8239 | struct hdr_ctx local_ctx; |
| 8240 | char *ptr_hist[MAX_HDR_HISTORY]; |
| 8241 | int len_hist[MAX_HDR_HISTORY]; |
| 8242 | unsigned int hist_ptr; |
| 8243 | int found; |
| 8244 | |
| 8245 | if (!ctx) { |
| 8246 | local_ctx.idx = 0; |
| 8247 | ctx = &local_ctx; |
| 8248 | } |
| 8249 | |
| 8250 | if (occ >= 0) { |
| 8251 | /* search from the beginning */ |
| 8252 | while (http_find_full_header2(hname, hlen, msg->chn->buf->p, idx, ctx)) { |
| 8253 | occ--; |
| 8254 | if (occ <= 0) { |
| 8255 | *vptr = ctx->line + ctx->val; |
| 8256 | *vlen = ctx->vlen; |
| 8257 | return 1; |
| 8258 | } |
| 8259 | } |
| 8260 | return 0; |
| 8261 | } |
| 8262 | |
| 8263 | /* negative occurrence, we scan all the list then walk back */ |
| 8264 | if (-occ > MAX_HDR_HISTORY) |
| 8265 | return 0; |
| 8266 | |
| 8267 | found = hist_ptr = 0; |
| 8268 | while (http_find_full_header2(hname, hlen, msg->chn->buf->p, idx, ctx)) { |
| 8269 | ptr_hist[hist_ptr] = ctx->line + ctx->val; |
| 8270 | len_hist[hist_ptr] = ctx->vlen; |
| 8271 | if (++hist_ptr >= MAX_HDR_HISTORY) |
| 8272 | hist_ptr = 0; |
| 8273 | found++; |
| 8274 | } |
| 8275 | if (-occ > found) |
| 8276 | return 0; |
| 8277 | /* OK now we have the last occurrence in [hist_ptr-1], and we need to |
| 8278 | * find occurrence -occ, so we have to check [hist_ptr+occ]. |
| 8279 | */ |
| 8280 | hist_ptr += occ; |
| 8281 | if (hist_ptr >= MAX_HDR_HISTORY) |
| 8282 | hist_ptr -= MAX_HDR_HISTORY; |
| 8283 | *vptr = ptr_hist[hist_ptr]; |
| 8284 | *vlen = len_hist[hist_ptr]; |
| 8285 | return 1; |
| 8286 | } |
| 8287 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 8288 | /* |
Willy Tarreau | e92693a | 2012-09-24 21:13:39 +0200 | [diff] [blame] | 8289 | * Print a debug line with a header. Always stop at the first CR or LF char, |
| 8290 | * so it is safe to pass it a full buffer if needed. If <err> is not NULL, an |
| 8291 | * arrow is printed after the line which contains the pointer. |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 8292 | */ |
| 8293 | void debug_hdr(const char *dir, struct session *t, const char *start, const char *end) |
| 8294 | { |
Willy Tarreau | 19d14ef | 2012-10-29 16:51:55 +0100 | [diff] [blame] | 8295 | int max; |
| 8296 | chunk_printf(&trash, "%08x:%s.%s[%04x:%04x]: ", t->uniq_id, t->be->id, |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 8297 | dir, |
| 8298 | objt_conn(t->req->prod->end) ? (unsigned short)objt_conn(t->req->prod->end)->t.sock.fd : -1, |
| 8299 | objt_conn(t->req->cons->end) ? (unsigned short)objt_conn(t->req->cons->end)->t.sock.fd : -1); |
Willy Tarreau | e92693a | 2012-09-24 21:13:39 +0200 | [diff] [blame] | 8300 | |
| 8301 | for (max = 0; start + max < end; max++) |
| 8302 | if (start[max] == '\r' || start[max] == '\n') |
| 8303 | break; |
| 8304 | |
Willy Tarreau | 19d14ef | 2012-10-29 16:51:55 +0100 | [diff] [blame] | 8305 | UBOUND(max, trash.size - trash.len - 3); |
| 8306 | trash.len += strlcpy2(trash.str + trash.len, start, max + 1); |
| 8307 | trash.str[trash.len++] = '\n'; |
Willy Tarreau | 89efaed | 2013-12-13 15:14:55 +0100 | [diff] [blame] | 8308 | shut_your_big_mouth_gcc(write(1, trash.str, trash.len)); |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 8309 | } |
| 8310 | |
Willy Tarreau | 0937bc4 | 2009-12-22 15:03:09 +0100 | [diff] [blame] | 8311 | /* |
| 8312 | * Initialize a new HTTP transaction for session <s>. It is assumed that all |
| 8313 | * the required fields are properly allocated and that we only need to (re)init |
| 8314 | * them. This should be used before processing any new request. |
| 8315 | */ |
| 8316 | void http_init_txn(struct session *s) |
| 8317 | { |
| 8318 | struct http_txn *txn = &s->txn; |
| 8319 | struct proxy *fe = s->fe; |
| 8320 | |
| 8321 | txn->flags = 0; |
| 8322 | txn->status = -1; |
| 8323 | |
Willy Tarreau | f64d141 | 2010-10-07 20:06:11 +0200 | [diff] [blame] | 8324 | txn->cookie_first_date = 0; |
| 8325 | txn->cookie_last_date = 0; |
| 8326 | |
Willy Tarreau | a36fc4d | 2012-02-17 17:39:37 +0100 | [diff] [blame] | 8327 | txn->req.flags = 0; |
Willy Tarreau | 2692736 | 2012-05-18 23:22:52 +0200 | [diff] [blame] | 8328 | 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] | 8329 | txn->req.next = 0; |
Willy Tarreau | a36fc4d | 2012-02-17 17:39:37 +0100 | [diff] [blame] | 8330 | txn->rsp.flags = 0; |
Willy Tarreau | 2692736 | 2012-05-18 23:22:52 +0200 | [diff] [blame] | 8331 | 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] | 8332 | txn->rsp.next = 0; |
Willy Tarreau | 124d991 | 2011-03-01 20:30:48 +0100 | [diff] [blame] | 8333 | txn->req.chunk_len = 0LL; |
| 8334 | txn->req.body_len = 0LL; |
| 8335 | txn->rsp.chunk_len = 0LL; |
| 8336 | txn->rsp.body_len = 0LL; |
Willy Tarreau | 0937bc4 | 2009-12-22 15:03:09 +0100 | [diff] [blame] | 8337 | txn->req.msg_state = HTTP_MSG_RQBEFORE; /* at the very beginning of the request */ |
| 8338 | txn->rsp.msg_state = HTTP_MSG_RPBEFORE; /* at the very beginning of the response */ |
Willy Tarreau | 394db37 | 2012-10-12 22:40:39 +0200 | [diff] [blame] | 8339 | txn->req.chn = s->req; |
| 8340 | txn->rsp.chn = s->rep; |
Krzysztof Piotr Oledzki | f9423ae | 2010-01-29 19:26:18 +0100 | [diff] [blame] | 8341 | |
| 8342 | txn->auth.method = HTTP_AUTH_UNKNOWN; |
Willy Tarreau | 0937bc4 | 2009-12-22 15:03:09 +0100 | [diff] [blame] | 8343 | |
| 8344 | txn->req.err_pos = txn->rsp.err_pos = -2; /* block buggy requests/responses */ |
| 8345 | if (fe->options2 & PR_O2_REQBUG_OK) |
| 8346 | txn->req.err_pos = -1; /* let buggy requests pass */ |
| 8347 | |
Willy Tarreau | 4602363 | 2010-01-07 22:51:47 +0100 | [diff] [blame] | 8348 | if (txn->req.cap) |
Willy Tarreau | 0937bc4 | 2009-12-22 15:03:09 +0100 | [diff] [blame] | 8349 | memset(txn->req.cap, 0, fe->nb_req_cap * sizeof(void *)); |
| 8350 | |
Willy Tarreau | 4602363 | 2010-01-07 22:51:47 +0100 | [diff] [blame] | 8351 | if (txn->rsp.cap) |
Willy Tarreau | 0937bc4 | 2009-12-22 15:03:09 +0100 | [diff] [blame] | 8352 | memset(txn->rsp.cap, 0, fe->nb_rsp_cap * sizeof(void *)); |
| 8353 | |
| 8354 | if (txn->hdr_idx.v) |
| 8355 | hdr_idx_init(&txn->hdr_idx); |
| 8356 | } |
| 8357 | |
| 8358 | /* to be used at the end of a transaction */ |
| 8359 | void http_end_txn(struct session *s) |
| 8360 | { |
| 8361 | struct http_txn *txn = &s->txn; |
| 8362 | |
Willy Tarreau | 7519560 | 2014-03-11 15:48:55 +0100 | [diff] [blame] | 8363 | /* release any possible compression context */ |
| 8364 | if (s->flags & SN_COMP_READY) |
| 8365 | s->comp_algo->end(&s->comp_ctx); |
| 8366 | s->comp_algo = NULL; |
| 8367 | s->flags &= ~SN_COMP_READY; |
| 8368 | |
Willy Tarreau | 0937bc4 | 2009-12-22 15:03:09 +0100 | [diff] [blame] | 8369 | /* these ones will have been dynamically allocated */ |
| 8370 | pool_free2(pool2_requri, txn->uri); |
| 8371 | pool_free2(pool2_capture, txn->cli_cookie); |
| 8372 | pool_free2(pool2_capture, txn->srv_cookie); |
Willy Tarreau | a3377ee | 2010-01-10 10:49:11 +0100 | [diff] [blame] | 8373 | pool_free2(apools.sessid, txn->sessid); |
William Lallemand | a73203e | 2012-03-12 12:48:57 +0100 | [diff] [blame] | 8374 | pool_free2(pool2_uniqueid, s->unique_id); |
Krzysztof Piotr Oledzki | f9423ae | 2010-01-29 19:26:18 +0100 | [diff] [blame] | 8375 | |
William Lallemand | a73203e | 2012-03-12 12:48:57 +0100 | [diff] [blame] | 8376 | s->unique_id = NULL; |
Willy Tarreau | a3377ee | 2010-01-10 10:49:11 +0100 | [diff] [blame] | 8377 | txn->sessid = NULL; |
Willy Tarreau | 0937bc4 | 2009-12-22 15:03:09 +0100 | [diff] [blame] | 8378 | txn->uri = NULL; |
| 8379 | txn->srv_cookie = NULL; |
| 8380 | txn->cli_cookie = NULL; |
Willy Tarreau | 4602363 | 2010-01-07 22:51:47 +0100 | [diff] [blame] | 8381 | |
| 8382 | if (txn->req.cap) { |
| 8383 | struct cap_hdr *h; |
| 8384 | for (h = s->fe->req_cap; h; h = h->next) |
| 8385 | pool_free2(h->pool, txn->req.cap[h->index]); |
| 8386 | memset(txn->req.cap, 0, s->fe->nb_req_cap * sizeof(void *)); |
| 8387 | } |
| 8388 | |
| 8389 | if (txn->rsp.cap) { |
| 8390 | struct cap_hdr *h; |
| 8391 | for (h = s->fe->rsp_cap; h; h = h->next) |
| 8392 | pool_free2(h->pool, txn->rsp.cap[h->index]); |
| 8393 | memset(txn->rsp.cap, 0, s->fe->nb_rsp_cap * sizeof(void *)); |
| 8394 | } |
| 8395 | |
Willy Tarreau | 0937bc4 | 2009-12-22 15:03:09 +0100 | [diff] [blame] | 8396 | } |
| 8397 | |
| 8398 | /* to be used at the end of a transaction to prepare a new one */ |
| 8399 | void http_reset_txn(struct session *s) |
| 8400 | { |
| 8401 | http_end_txn(s); |
| 8402 | http_init_txn(s); |
| 8403 | |
| 8404 | s->be = s->fe; |
Willy Tarreau | 0937bc4 | 2009-12-22 15:03:09 +0100 | [diff] [blame] | 8405 | s->logs.logwait = s->fe->to_log; |
Willy Tarreau | abcd514 | 2013-06-11 17:18:02 +0200 | [diff] [blame] | 8406 | s->logs.level = 0; |
Simon Horman | af51495 | 2011-06-21 14:34:57 +0900 | [diff] [blame] | 8407 | session_del_srv_conn(s); |
Willy Tarreau | 3fdb366 | 2012-11-12 00:42:33 +0100 | [diff] [blame] | 8408 | s->target = NULL; |
Emeric Brun | b982a3d | 2010-01-04 15:45:53 +0100 | [diff] [blame] | 8409 | /* re-init store persistence */ |
| 8410 | s->store_count = 0; |
Willy Tarreau | 1f0da24 | 2014-01-25 11:01:50 +0100 | [diff] [blame] | 8411 | s->uniq_id = global.req_count++; |
Emeric Brun | b982a3d | 2010-01-04 15:45:53 +0100 | [diff] [blame] | 8412 | |
Willy Tarreau | 0937bc4 | 2009-12-22 15:03:09 +0100 | [diff] [blame] | 8413 | s->pend_pos = NULL; |
Willy Tarreau | 0937bc4 | 2009-12-22 15:03:09 +0100 | [diff] [blame] | 8414 | |
Willy Tarreau | 03cdb7c | 2012-08-27 23:14:58 +0200 | [diff] [blame] | 8415 | s->req->flags |= CF_READ_DONTWAIT; /* one read is usually enough */ |
Willy Tarreau | 0937bc4 | 2009-12-22 15:03:09 +0100 | [diff] [blame] | 8416 | |
Willy Tarreau | 739cfba | 2010-01-25 23:11:14 +0100 | [diff] [blame] | 8417 | /* We must trim any excess data from the response buffer, because we |
| 8418 | * may have blocked an invalid response from a server that we don't |
| 8419 | * want to accidentely forward once we disable the analysers, nor do |
| 8420 | * we want those data to come along with next response. A typical |
| 8421 | * example of such data would be from a buggy server responding to |
| 8422 | * a HEAD with some data, or sending more than the advertised |
| 8423 | * content-length. |
| 8424 | */ |
Willy Tarreau | 9b28e03 | 2012-10-12 23:49:43 +0200 | [diff] [blame] | 8425 | if (unlikely(s->rep->buf->i)) |
| 8426 | s->rep->buf->i = 0; |
Willy Tarreau | 739cfba | 2010-01-25 23:11:14 +0100 | [diff] [blame] | 8427 | |
Willy Tarreau | 0937bc4 | 2009-12-22 15:03:09 +0100 | [diff] [blame] | 8428 | s->req->rto = s->fe->timeout.client; |
Willy Tarreau | d04e858 | 2010-05-31 12:31:35 +0200 | [diff] [blame] | 8429 | s->req->wto = TICK_ETERNITY; |
Willy Tarreau | 0937bc4 | 2009-12-22 15:03:09 +0100 | [diff] [blame] | 8430 | |
Willy Tarreau | d04e858 | 2010-05-31 12:31:35 +0200 | [diff] [blame] | 8431 | s->rep->rto = TICK_ETERNITY; |
Willy Tarreau | 0937bc4 | 2009-12-22 15:03:09 +0100 | [diff] [blame] | 8432 | s->rep->wto = s->fe->timeout.client; |
Willy Tarreau | 0937bc4 | 2009-12-22 15:03:09 +0100 | [diff] [blame] | 8433 | |
| 8434 | s->req->rex = TICK_ETERNITY; |
| 8435 | s->req->wex = TICK_ETERNITY; |
| 8436 | s->req->analyse_exp = TICK_ETERNITY; |
| 8437 | s->rep->rex = TICK_ETERNITY; |
| 8438 | s->rep->wex = TICK_ETERNITY; |
| 8439 | s->rep->analyse_exp = TICK_ETERNITY; |
| 8440 | } |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 8441 | |
Willy Tarreau | ff011f2 | 2011-01-06 17:51:27 +0100 | [diff] [blame] | 8442 | void free_http_req_rules(struct list *r) { |
| 8443 | struct http_req_rule *tr, *pr; |
| 8444 | |
| 8445 | list_for_each_entry_safe(pr, tr, r, list) { |
| 8446 | LIST_DEL(&pr->list); |
Willy Tarreau | 20b0de5 | 2012-12-24 15:45:22 +0100 | [diff] [blame] | 8447 | if (pr->action == HTTP_REQ_ACT_AUTH) |
Willy Tarreau | 5c2e198 | 2012-12-24 12:00:25 +0100 | [diff] [blame] | 8448 | free(pr->arg.auth.realm); |
Willy Tarreau | ff011f2 | 2011-01-06 17:51:27 +0100 | [diff] [blame] | 8449 | |
| 8450 | free(pr); |
| 8451 | } |
| 8452 | } |
| 8453 | |
Willy Tarreau | e365c0b | 2013-06-11 16:06:12 +0200 | [diff] [blame] | 8454 | /* parse an "http-request" rule */ |
Willy Tarreau | ff011f2 | 2011-01-06 17:51:27 +0100 | [diff] [blame] | 8455 | struct http_req_rule *parse_http_req_cond(const char **args, const char *file, int linenum, struct proxy *proxy) |
| 8456 | { |
| 8457 | struct http_req_rule *rule; |
| 8458 | int cur_arg; |
| 8459 | |
| 8460 | rule = (struct http_req_rule*)calloc(1, sizeof(struct http_req_rule)); |
| 8461 | if (!rule) { |
| 8462 | Alert("parsing [%s:%d]: out of memory.\n", file, linenum); |
Willy Tarreau | 81499eb | 2012-12-27 12:19:02 +0100 | [diff] [blame] | 8463 | goto out_err; |
Willy Tarreau | ff011f2 | 2011-01-06 17:51:27 +0100 | [diff] [blame] | 8464 | } |
| 8465 | |
Willy Tarreau | 5c2e198 | 2012-12-24 12:00:25 +0100 | [diff] [blame] | 8466 | if (!strcmp(args[0], "allow")) { |
Willy Tarreau | ff011f2 | 2011-01-06 17:51:27 +0100 | [diff] [blame] | 8467 | rule->action = HTTP_REQ_ACT_ALLOW; |
| 8468 | cur_arg = 1; |
| 8469 | } else if (!strcmp(args[0], "deny")) { |
| 8470 | rule->action = HTTP_REQ_ACT_DENY; |
| 8471 | cur_arg = 1; |
Willy Tarreau | ccbcc37 | 2012-12-27 12:37:57 +0100 | [diff] [blame] | 8472 | } else if (!strcmp(args[0], "tarpit")) { |
| 8473 | rule->action = HTTP_REQ_ACT_TARPIT; |
| 8474 | cur_arg = 1; |
Willy Tarreau | ff011f2 | 2011-01-06 17:51:27 +0100 | [diff] [blame] | 8475 | } else if (!strcmp(args[0], "auth")) { |
Willy Tarreau | 20b0de5 | 2012-12-24 15:45:22 +0100 | [diff] [blame] | 8476 | rule->action = HTTP_REQ_ACT_AUTH; |
Willy Tarreau | ff011f2 | 2011-01-06 17:51:27 +0100 | [diff] [blame] | 8477 | cur_arg = 1; |
| 8478 | |
| 8479 | while(*args[cur_arg]) { |
| 8480 | if (!strcmp(args[cur_arg], "realm")) { |
Willy Tarreau | 5c2e198 | 2012-12-24 12:00:25 +0100 | [diff] [blame] | 8481 | rule->arg.auth.realm = strdup(args[cur_arg + 1]); |
Willy Tarreau | ff011f2 | 2011-01-06 17:51:27 +0100 | [diff] [blame] | 8482 | cur_arg+=2; |
| 8483 | continue; |
| 8484 | } else |
| 8485 | break; |
| 8486 | } |
Willy Tarreau | f4c43c1 | 2013-06-11 17:01:13 +0200 | [diff] [blame] | 8487 | } else if (!strcmp(args[0], "set-nice")) { |
| 8488 | rule->action = HTTP_REQ_ACT_SET_NICE; |
| 8489 | cur_arg = 1; |
| 8490 | |
| 8491 | if (!*args[cur_arg] || |
| 8492 | (*args[cur_arg + 1] && strcmp(args[cur_arg + 1], "if") != 0 && strcmp(args[cur_arg + 1], "unless") != 0)) { |
| 8493 | Alert("parsing [%s:%d]: 'http-request %s' expects exactly 1 argument (integer value).\n", |
| 8494 | file, linenum, args[0]); |
| 8495 | goto out_err; |
| 8496 | } |
| 8497 | rule->arg.nice = atoi(args[cur_arg]); |
| 8498 | if (rule->arg.nice < -1024) |
| 8499 | rule->arg.nice = -1024; |
| 8500 | else if (rule->arg.nice > 1024) |
| 8501 | rule->arg.nice = 1024; |
| 8502 | cur_arg++; |
Willy Tarreau | 42cf39e | 2013-06-11 18:51:32 +0200 | [diff] [blame] | 8503 | } else if (!strcmp(args[0], "set-tos")) { |
| 8504 | #ifdef IP_TOS |
| 8505 | char *err; |
| 8506 | rule->action = HTTP_REQ_ACT_SET_TOS; |
| 8507 | cur_arg = 1; |
| 8508 | |
| 8509 | if (!*args[cur_arg] || |
| 8510 | (*args[cur_arg + 1] && strcmp(args[cur_arg + 1], "if") != 0 && strcmp(args[cur_arg + 1], "unless") != 0)) { |
| 8511 | Alert("parsing [%s:%d]: 'http-request %s' expects exactly 1 argument (integer/hex value).\n", |
| 8512 | file, linenum, args[0]); |
| 8513 | goto out_err; |
| 8514 | } |
| 8515 | |
| 8516 | rule->arg.tos = strtol(args[cur_arg], &err, 0); |
| 8517 | if (err && *err != '\0') { |
| 8518 | Alert("parsing [%s:%d]: invalid character starting at '%s' in 'http-request %s' (integer/hex value expected).\n", |
| 8519 | file, linenum, err, args[0]); |
| 8520 | goto out_err; |
| 8521 | } |
| 8522 | cur_arg++; |
| 8523 | #else |
| 8524 | Alert("parsing [%s:%d]: 'http-request %s' is not supported on this platform (IP_TOS undefined).\n", file, linenum, args[0]); |
| 8525 | goto out_err; |
| 8526 | #endif |
Willy Tarreau | 51347ed | 2013-06-11 19:34:13 +0200 | [diff] [blame] | 8527 | } else if (!strcmp(args[0], "set-mark")) { |
| 8528 | #ifdef SO_MARK |
| 8529 | char *err; |
| 8530 | rule->action = HTTP_REQ_ACT_SET_MARK; |
| 8531 | cur_arg = 1; |
| 8532 | |
| 8533 | if (!*args[cur_arg] || |
| 8534 | (*args[cur_arg + 1] && strcmp(args[cur_arg + 1], "if") != 0 && strcmp(args[cur_arg + 1], "unless") != 0)) { |
| 8535 | Alert("parsing [%s:%d]: 'http-request %s' expects exactly 1 argument (integer/hex value).\n", |
| 8536 | file, linenum, args[0]); |
| 8537 | goto out_err; |
| 8538 | } |
| 8539 | |
| 8540 | rule->arg.mark = strtoul(args[cur_arg], &err, 0); |
| 8541 | if (err && *err != '\0') { |
| 8542 | Alert("parsing [%s:%d]: invalid character starting at '%s' in 'http-request %s' (integer/hex value expected).\n", |
| 8543 | file, linenum, err, args[0]); |
| 8544 | goto out_err; |
| 8545 | } |
| 8546 | cur_arg++; |
| 8547 | global.last_checks |= LSTCHK_NETADM; |
| 8548 | #else |
| 8549 | Alert("parsing [%s:%d]: 'http-request %s' is not supported on this platform (SO_MARK undefined).\n", file, linenum, args[0]); |
| 8550 | goto out_err; |
| 8551 | #endif |
Willy Tarreau | 9a355ec | 2013-06-11 17:45:46 +0200 | [diff] [blame] | 8552 | } else if (!strcmp(args[0], "set-log-level")) { |
| 8553 | rule->action = HTTP_REQ_ACT_SET_LOGL; |
| 8554 | cur_arg = 1; |
| 8555 | |
| 8556 | if (!*args[cur_arg] || |
| 8557 | (*args[cur_arg + 1] && strcmp(args[cur_arg + 1], "if") != 0 && strcmp(args[cur_arg + 1], "unless") != 0)) { |
| 8558 | bad_log_level: |
| 8559 | Alert("parsing [%s:%d]: 'http-request %s' expects exactly 1 argument (log level name or 'silent').\n", |
| 8560 | file, linenum, args[0]); |
| 8561 | goto out_err; |
| 8562 | } |
| 8563 | if (strcmp(args[cur_arg], "silent") == 0) |
| 8564 | rule->arg.loglevel = -1; |
| 8565 | else if ((rule->arg.loglevel = get_log_level(args[cur_arg]) + 1) == 0) |
| 8566 | goto bad_log_level; |
| 8567 | cur_arg++; |
Willy Tarreau | 20b0de5 | 2012-12-24 15:45:22 +0100 | [diff] [blame] | 8568 | } else if (strcmp(args[0], "add-header") == 0 || strcmp(args[0], "set-header") == 0) { |
| 8569 | rule->action = *args[0] == 'a' ? HTTP_REQ_ACT_ADD_HDR : HTTP_REQ_ACT_SET_HDR; |
| 8570 | cur_arg = 1; |
| 8571 | |
Willy Tarreau | 8d1c516 | 2013-04-03 14:13:58 +0200 | [diff] [blame] | 8572 | if (!*args[cur_arg] || !*args[cur_arg+1] || |
| 8573 | (*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] | 8574 | Alert("parsing [%s:%d]: 'http-request %s' expects exactly 2 arguments.\n", |
| 8575 | file, linenum, args[0]); |
Willy Tarreau | 81499eb | 2012-12-27 12:19:02 +0100 | [diff] [blame] | 8576 | goto out_err; |
Willy Tarreau | 20b0de5 | 2012-12-24 15:45:22 +0100 | [diff] [blame] | 8577 | } |
| 8578 | |
| 8579 | rule->arg.hdr_add.name = strdup(args[cur_arg]); |
| 8580 | rule->arg.hdr_add.name_len = strlen(rule->arg.hdr_add.name); |
| 8581 | LIST_INIT(&rule->arg.hdr_add.fmt); |
Willy Tarreau | a4312fa | 2013-04-02 16:34:32 +0200 | [diff] [blame] | 8582 | |
Thierry FOURNIER | 1c0054f | 2013-11-20 15:09:52 +0100 | [diff] [blame] | 8583 | proxy->conf.args.ctx = ARGC_HRQ; |
Thierry FOURNIER | d048d8b | 2014-03-13 16:46:18 +0100 | [diff] [blame] | 8584 | 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] | 8585 | (proxy->cap & PR_CAP_FE) ? SMP_VAL_FE_HRQ_HDR : SMP_VAL_BE_HRQ_HDR, |
| 8586 | file, linenum); |
Willy Tarreau | 59ad1a2 | 2014-01-29 14:39:58 +0100 | [diff] [blame] | 8587 | free(proxy->conf.lfs_file); |
| 8588 | proxy->conf.lfs_file = strdup(proxy->conf.args.file); |
| 8589 | proxy->conf.lfs_line = proxy->conf.args.line; |
Willy Tarreau | 20b0de5 | 2012-12-24 15:45:22 +0100 | [diff] [blame] | 8590 | cur_arg += 2; |
Willy Tarreau | 81499eb | 2012-12-27 12:19:02 +0100 | [diff] [blame] | 8591 | } else if (strcmp(args[0], "redirect") == 0) { |
| 8592 | struct redirect_rule *redir; |
Willy Tarreau | 6d4890c | 2013-11-18 18:04:25 +0100 | [diff] [blame] | 8593 | char *errmsg = NULL; |
Willy Tarreau | 81499eb | 2012-12-27 12:19:02 +0100 | [diff] [blame] | 8594 | |
Thierry FOURNIER | d18cd0f | 2013-11-29 12:15:45 +0100 | [diff] [blame] | 8595 | 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] | 8596 | Alert("parsing [%s:%d] : error detected in %s '%s' while parsing 'http-request %s' rule : %s.\n", |
| 8597 | file, linenum, proxy_type_str(proxy), proxy->id, args[0], errmsg); |
| 8598 | goto out_err; |
| 8599 | } |
| 8600 | |
| 8601 | /* this redirect rule might already contain a parsed condition which |
| 8602 | * we'll pass to the http-request rule. |
| 8603 | */ |
| 8604 | rule->action = HTTP_REQ_ACT_REDIR; |
| 8605 | rule->arg.redir = redir; |
| 8606 | rule->cond = redir->cond; |
| 8607 | redir->cond = NULL; |
| 8608 | cur_arg = 2; |
| 8609 | return rule; |
Willy Tarreau | ff011f2 | 2011-01-06 17:51:27 +0100 | [diff] [blame] | 8610 | } else { |
Willy Tarreau | 51347ed | 2013-06-11 19:34:13 +0200 | [diff] [blame] | 8611 | Alert("parsing [%s:%d]: 'http-request' expects 'allow', 'deny', 'auth', 'redirect', 'tarpit', 'add-header', 'set-header', 'set-nice', 'set-tos', 'set-mark', 'set-log-level', but got '%s'%s.\n", |
Willy Tarreau | 5c2e198 | 2012-12-24 12:00:25 +0100 | [diff] [blame] | 8612 | file, linenum, args[0], *args[0] ? "" : " (missing argument)"); |
Willy Tarreau | 81499eb | 2012-12-27 12:19:02 +0100 | [diff] [blame] | 8613 | goto out_err; |
Willy Tarreau | ff011f2 | 2011-01-06 17:51:27 +0100 | [diff] [blame] | 8614 | } |
| 8615 | |
| 8616 | if (strcmp(args[cur_arg], "if") == 0 || strcmp(args[cur_arg], "unless") == 0) { |
| 8617 | struct acl_cond *cond; |
Willy Tarreau | b7451bb | 2012-04-27 12:38:15 +0200 | [diff] [blame] | 8618 | char *errmsg = NULL; |
Willy Tarreau | ff011f2 | 2011-01-06 17:51:27 +0100 | [diff] [blame] | 8619 | |
Willy Tarreau | b7451bb | 2012-04-27 12:38:15 +0200 | [diff] [blame] | 8620 | if ((cond = build_acl_cond(file, linenum, proxy, args+cur_arg, &errmsg)) == NULL) { |
| 8621 | Alert("parsing [%s:%d] : error detected while parsing an 'http-request %s' condition : %s.\n", |
| 8622 | file, linenum, args[0], errmsg); |
| 8623 | free(errmsg); |
Willy Tarreau | 81499eb | 2012-12-27 12:19:02 +0100 | [diff] [blame] | 8624 | goto out_err; |
Willy Tarreau | ff011f2 | 2011-01-06 17:51:27 +0100 | [diff] [blame] | 8625 | } |
| 8626 | rule->cond = cond; |
| 8627 | } |
| 8628 | else if (*args[cur_arg]) { |
| 8629 | Alert("parsing [%s:%d]: 'http-request %s' expects 'realm' for 'auth' or" |
| 8630 | " either 'if' or 'unless' followed by a condition but found '%s'.\n", |
| 8631 | file, linenum, args[0], args[cur_arg]); |
Willy Tarreau | 81499eb | 2012-12-27 12:19:02 +0100 | [diff] [blame] | 8632 | goto out_err; |
Willy Tarreau | ff011f2 | 2011-01-06 17:51:27 +0100 | [diff] [blame] | 8633 | } |
| 8634 | |
| 8635 | return rule; |
Willy Tarreau | 81499eb | 2012-12-27 12:19:02 +0100 | [diff] [blame] | 8636 | out_err: |
| 8637 | free(rule); |
| 8638 | return NULL; |
Willy Tarreau | ff011f2 | 2011-01-06 17:51:27 +0100 | [diff] [blame] | 8639 | } |
| 8640 | |
Willy Tarreau | e365c0b | 2013-06-11 16:06:12 +0200 | [diff] [blame] | 8641 | /* parse an "http-respose" rule */ |
| 8642 | struct http_res_rule *parse_http_res_cond(const char **args, const char *file, int linenum, struct proxy *proxy) |
| 8643 | { |
| 8644 | struct http_res_rule *rule; |
| 8645 | int cur_arg; |
| 8646 | |
| 8647 | rule = calloc(1, sizeof(*rule)); |
| 8648 | if (!rule) { |
| 8649 | Alert("parsing [%s:%d]: out of memory.\n", file, linenum); |
| 8650 | goto out_err; |
| 8651 | } |
| 8652 | |
| 8653 | if (!strcmp(args[0], "allow")) { |
| 8654 | rule->action = HTTP_RES_ACT_ALLOW; |
| 8655 | cur_arg = 1; |
| 8656 | } else if (!strcmp(args[0], "deny")) { |
| 8657 | rule->action = HTTP_RES_ACT_DENY; |
| 8658 | cur_arg = 1; |
Willy Tarreau | f4c43c1 | 2013-06-11 17:01:13 +0200 | [diff] [blame] | 8659 | } else if (!strcmp(args[0], "set-nice")) { |
| 8660 | rule->action = HTTP_RES_ACT_SET_NICE; |
| 8661 | cur_arg = 1; |
| 8662 | |
| 8663 | if (!*args[cur_arg] || |
| 8664 | (*args[cur_arg + 1] && strcmp(args[cur_arg + 1], "if") != 0 && strcmp(args[cur_arg + 1], "unless") != 0)) { |
| 8665 | Alert("parsing [%s:%d]: 'http-response %s' expects exactly 1 argument (integer value).\n", |
| 8666 | file, linenum, args[0]); |
| 8667 | goto out_err; |
| 8668 | } |
| 8669 | rule->arg.nice = atoi(args[cur_arg]); |
| 8670 | if (rule->arg.nice < -1024) |
| 8671 | rule->arg.nice = -1024; |
| 8672 | else if (rule->arg.nice > 1024) |
| 8673 | rule->arg.nice = 1024; |
| 8674 | cur_arg++; |
Willy Tarreau | 42cf39e | 2013-06-11 18:51:32 +0200 | [diff] [blame] | 8675 | } else if (!strcmp(args[0], "set-tos")) { |
| 8676 | #ifdef IP_TOS |
| 8677 | char *err; |
| 8678 | rule->action = HTTP_RES_ACT_SET_TOS; |
| 8679 | cur_arg = 1; |
| 8680 | |
| 8681 | if (!*args[cur_arg] || |
| 8682 | (*args[cur_arg + 1] && strcmp(args[cur_arg + 1], "if") != 0 && strcmp(args[cur_arg + 1], "unless") != 0)) { |
| 8683 | Alert("parsing [%s:%d]: 'http-response %s' expects exactly 1 argument (integer/hex value).\n", |
| 8684 | file, linenum, args[0]); |
| 8685 | goto out_err; |
| 8686 | } |
| 8687 | |
| 8688 | rule->arg.tos = strtol(args[cur_arg], &err, 0); |
| 8689 | if (err && *err != '\0') { |
| 8690 | Alert("parsing [%s:%d]: invalid character starting at '%s' in 'http-response %s' (integer/hex value expected).\n", |
| 8691 | file, linenum, err, args[0]); |
| 8692 | goto out_err; |
| 8693 | } |
| 8694 | cur_arg++; |
| 8695 | #else |
| 8696 | Alert("parsing [%s:%d]: 'http-response %s' is not supported on this platform (IP_TOS undefined).\n", file, linenum, args[0]); |
| 8697 | goto out_err; |
| 8698 | #endif |
Willy Tarreau | 51347ed | 2013-06-11 19:34:13 +0200 | [diff] [blame] | 8699 | } else if (!strcmp(args[0], "set-mark")) { |
| 8700 | #ifdef SO_MARK |
| 8701 | char *err; |
| 8702 | rule->action = HTTP_RES_ACT_SET_MARK; |
| 8703 | cur_arg = 1; |
| 8704 | |
| 8705 | if (!*args[cur_arg] || |
| 8706 | (*args[cur_arg + 1] && strcmp(args[cur_arg + 1], "if") != 0 && strcmp(args[cur_arg + 1], "unless") != 0)) { |
| 8707 | Alert("parsing [%s:%d]: 'http-response %s' expects exactly 1 argument (integer/hex value).\n", |
| 8708 | file, linenum, args[0]); |
| 8709 | goto out_err; |
| 8710 | } |
| 8711 | |
| 8712 | rule->arg.mark = strtoul(args[cur_arg], &err, 0); |
| 8713 | if (err && *err != '\0') { |
| 8714 | Alert("parsing [%s:%d]: invalid character starting at '%s' in 'http-response %s' (integer/hex value expected).\n", |
| 8715 | file, linenum, err, args[0]); |
| 8716 | goto out_err; |
| 8717 | } |
| 8718 | cur_arg++; |
| 8719 | global.last_checks |= LSTCHK_NETADM; |
| 8720 | #else |
| 8721 | Alert("parsing [%s:%d]: 'http-response %s' is not supported on this platform (SO_MARK undefined).\n", file, linenum, args[0]); |
| 8722 | goto out_err; |
| 8723 | #endif |
Willy Tarreau | 9a355ec | 2013-06-11 17:45:46 +0200 | [diff] [blame] | 8724 | } else if (!strcmp(args[0], "set-log-level")) { |
| 8725 | rule->action = HTTP_RES_ACT_SET_LOGL; |
| 8726 | cur_arg = 1; |
| 8727 | |
| 8728 | if (!*args[cur_arg] || |
| 8729 | (*args[cur_arg + 1] && strcmp(args[cur_arg + 1], "if") != 0 && strcmp(args[cur_arg + 1], "unless") != 0)) { |
| 8730 | bad_log_level: |
| 8731 | Alert("parsing [%s:%d]: 'http-response %s' expects exactly 1 argument (log level name or 'silent').\n", |
| 8732 | file, linenum, args[0]); |
| 8733 | goto out_err; |
| 8734 | } |
| 8735 | if (strcmp(args[cur_arg], "silent") == 0) |
| 8736 | rule->arg.loglevel = -1; |
| 8737 | else if ((rule->arg.loglevel = get_log_level(args[cur_arg] + 1)) == 0) |
| 8738 | goto bad_log_level; |
| 8739 | cur_arg++; |
Willy Tarreau | e365c0b | 2013-06-11 16:06:12 +0200 | [diff] [blame] | 8740 | } else if (strcmp(args[0], "add-header") == 0 || strcmp(args[0], "set-header") == 0) { |
| 8741 | rule->action = *args[0] == 'a' ? HTTP_RES_ACT_ADD_HDR : HTTP_RES_ACT_SET_HDR; |
| 8742 | cur_arg = 1; |
| 8743 | |
| 8744 | if (!*args[cur_arg] || !*args[cur_arg+1] || |
| 8745 | (*args[cur_arg+2] && strcmp(args[cur_arg+2], "if") != 0 && strcmp(args[cur_arg+2], "unless") != 0)) { |
| 8746 | Alert("parsing [%s:%d]: 'http-response %s' expects exactly 2 arguments.\n", |
| 8747 | file, linenum, args[0]); |
| 8748 | goto out_err; |
| 8749 | } |
| 8750 | |
| 8751 | rule->arg.hdr_add.name = strdup(args[cur_arg]); |
| 8752 | rule->arg.hdr_add.name_len = strlen(rule->arg.hdr_add.name); |
| 8753 | LIST_INIT(&rule->arg.hdr_add.fmt); |
| 8754 | |
Thierry FOURNIER | 1c0054f | 2013-11-20 15:09:52 +0100 | [diff] [blame] | 8755 | proxy->conf.args.ctx = ARGC_HRS; |
Thierry FOURNIER | d048d8b | 2014-03-13 16:46:18 +0100 | [diff] [blame] | 8756 | 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] | 8757 | (proxy->cap & PR_CAP_BE) ? SMP_VAL_BE_HRS_HDR : SMP_VAL_FE_HRS_HDR, |
| 8758 | file, linenum); |
Willy Tarreau | 59ad1a2 | 2014-01-29 14:39:58 +0100 | [diff] [blame] | 8759 | free(proxy->conf.lfs_file); |
| 8760 | proxy->conf.lfs_file = strdup(proxy->conf.args.file); |
| 8761 | proxy->conf.lfs_line = proxy->conf.args.line; |
Willy Tarreau | e365c0b | 2013-06-11 16:06:12 +0200 | [diff] [blame] | 8762 | cur_arg += 2; |
| 8763 | } else { |
Willy Tarreau | 51347ed | 2013-06-11 19:34:13 +0200 | [diff] [blame] | 8764 | Alert("parsing [%s:%d]: 'http-response' expects 'allow', 'deny', 'redirect', 'add-header', 'set-header', 'set-nice', 'set-tos', 'set-mark', 'set-log-level', but got '%s'%s.\n", |
Willy Tarreau | e365c0b | 2013-06-11 16:06:12 +0200 | [diff] [blame] | 8765 | file, linenum, args[0], *args[0] ? "" : " (missing argument)"); |
| 8766 | goto out_err; |
| 8767 | } |
| 8768 | |
| 8769 | if (strcmp(args[cur_arg], "if") == 0 || strcmp(args[cur_arg], "unless") == 0) { |
| 8770 | struct acl_cond *cond; |
| 8771 | char *errmsg = NULL; |
| 8772 | |
| 8773 | if ((cond = build_acl_cond(file, linenum, proxy, args+cur_arg, &errmsg)) == NULL) { |
| 8774 | Alert("parsing [%s:%d] : error detected while parsing an 'http-response %s' condition : %s.\n", |
| 8775 | file, linenum, args[0], errmsg); |
| 8776 | free(errmsg); |
| 8777 | goto out_err; |
| 8778 | } |
| 8779 | rule->cond = cond; |
| 8780 | } |
| 8781 | else if (*args[cur_arg]) { |
| 8782 | Alert("parsing [%s:%d]: 'http-response %s' expects" |
| 8783 | " either 'if' or 'unless' followed by a condition but found '%s'.\n", |
| 8784 | file, linenum, args[0], args[cur_arg]); |
| 8785 | goto out_err; |
| 8786 | } |
| 8787 | |
| 8788 | return rule; |
| 8789 | out_err: |
| 8790 | free(rule); |
| 8791 | return NULL; |
| 8792 | } |
| 8793 | |
Willy Tarreau | 4baae24 | 2012-12-27 12:00:31 +0100 | [diff] [blame] | 8794 | /* 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] | 8795 | * with <err> filled with the error message. If <use_fmt> is not null, builds a |
| 8796 | * dynamic log-format rule instead of a static string. |
Willy Tarreau | 4baae24 | 2012-12-27 12:00:31 +0100 | [diff] [blame] | 8797 | */ |
| 8798 | 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] | 8799 | const char **args, char **errmsg, int use_fmt) |
Willy Tarreau | 4baae24 | 2012-12-27 12:00:31 +0100 | [diff] [blame] | 8800 | { |
| 8801 | struct redirect_rule *rule; |
| 8802 | int cur_arg; |
| 8803 | int type = REDIRECT_TYPE_NONE; |
| 8804 | int code = 302; |
| 8805 | const char *destination = NULL; |
| 8806 | const char *cookie = NULL; |
| 8807 | int cookie_set = 0; |
| 8808 | unsigned int flags = REDIRECT_FLAG_NONE; |
| 8809 | struct acl_cond *cond = NULL; |
| 8810 | |
| 8811 | cur_arg = 0; |
| 8812 | while (*(args[cur_arg])) { |
| 8813 | if (strcmp(args[cur_arg], "location") == 0) { |
| 8814 | if (!*args[cur_arg + 1]) |
| 8815 | goto missing_arg; |
| 8816 | |
| 8817 | type = REDIRECT_TYPE_LOCATION; |
| 8818 | cur_arg++; |
| 8819 | destination = args[cur_arg]; |
| 8820 | } |
| 8821 | else if (strcmp(args[cur_arg], "prefix") == 0) { |
| 8822 | if (!*args[cur_arg + 1]) |
| 8823 | goto missing_arg; |
| 8824 | |
| 8825 | type = REDIRECT_TYPE_PREFIX; |
| 8826 | cur_arg++; |
| 8827 | destination = args[cur_arg]; |
| 8828 | } |
| 8829 | else if (strcmp(args[cur_arg], "scheme") == 0) { |
| 8830 | if (!*args[cur_arg + 1]) |
| 8831 | goto missing_arg; |
| 8832 | |
| 8833 | type = REDIRECT_TYPE_SCHEME; |
| 8834 | cur_arg++; |
| 8835 | destination = args[cur_arg]; |
| 8836 | } |
| 8837 | else if (strcmp(args[cur_arg], "set-cookie") == 0) { |
| 8838 | if (!*args[cur_arg + 1]) |
| 8839 | goto missing_arg; |
| 8840 | |
| 8841 | cur_arg++; |
| 8842 | cookie = args[cur_arg]; |
| 8843 | cookie_set = 1; |
| 8844 | } |
| 8845 | else if (strcmp(args[cur_arg], "clear-cookie") == 0) { |
| 8846 | if (!*args[cur_arg + 1]) |
| 8847 | goto missing_arg; |
| 8848 | |
| 8849 | cur_arg++; |
| 8850 | cookie = args[cur_arg]; |
| 8851 | cookie_set = 0; |
| 8852 | } |
| 8853 | else if (strcmp(args[cur_arg], "code") == 0) { |
| 8854 | if (!*args[cur_arg + 1]) |
| 8855 | goto missing_arg; |
| 8856 | |
| 8857 | cur_arg++; |
| 8858 | code = atol(args[cur_arg]); |
Yves Lafon | 3e8d1ae | 2013-03-11 11:06:05 -0400 | [diff] [blame] | 8859 | if (code < 301 || code > 308 || (code > 303 && code < 307)) { |
Willy Tarreau | 4baae24 | 2012-12-27 12:00:31 +0100 | [diff] [blame] | 8860 | memprintf(errmsg, |
Yves Lafon | 3e8d1ae | 2013-03-11 11:06:05 -0400 | [diff] [blame] | 8861 | "'%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] | 8862 | args[cur_arg - 1], args[cur_arg]); |
| 8863 | return NULL; |
| 8864 | } |
| 8865 | } |
| 8866 | else if (!strcmp(args[cur_arg],"drop-query")) { |
| 8867 | flags |= REDIRECT_FLAG_DROP_QS; |
| 8868 | } |
| 8869 | else if (!strcmp(args[cur_arg],"append-slash")) { |
| 8870 | flags |= REDIRECT_FLAG_APPEND_SLASH; |
| 8871 | } |
| 8872 | else if (strcmp(args[cur_arg], "if") == 0 || |
| 8873 | strcmp(args[cur_arg], "unless") == 0) { |
| 8874 | cond = build_acl_cond(file, linenum, curproxy, (const char **)args + cur_arg, errmsg); |
| 8875 | if (!cond) { |
| 8876 | memprintf(errmsg, "error in condition: %s", *errmsg); |
| 8877 | return NULL; |
| 8878 | } |
| 8879 | break; |
| 8880 | } |
| 8881 | else { |
| 8882 | memprintf(errmsg, |
| 8883 | "expects 'code', 'prefix', 'location', 'scheme', 'set-cookie', 'clear-cookie', 'drop-query' or 'append-slash' (was '%s')", |
| 8884 | args[cur_arg]); |
| 8885 | return NULL; |
| 8886 | } |
| 8887 | cur_arg++; |
| 8888 | } |
| 8889 | |
| 8890 | if (type == REDIRECT_TYPE_NONE) { |
| 8891 | memprintf(errmsg, "redirection type expected ('prefix', 'location', or 'scheme')"); |
| 8892 | return NULL; |
| 8893 | } |
| 8894 | |
| 8895 | rule = (struct redirect_rule *)calloc(1, sizeof(*rule)); |
| 8896 | rule->cond = cond; |
Willy Tarreau | 60e0838 | 2013-12-03 00:48:45 +0100 | [diff] [blame] | 8897 | LIST_INIT(&rule->rdr_fmt); |
Thierry FOURNIER | d18cd0f | 2013-11-29 12:15:45 +0100 | [diff] [blame] | 8898 | |
| 8899 | if (!use_fmt) { |
| 8900 | /* old-style static redirect rule */ |
| 8901 | rule->rdr_str = strdup(destination); |
| 8902 | rule->rdr_len = strlen(destination); |
| 8903 | } |
| 8904 | else { |
| 8905 | /* log-format based redirect rule */ |
Thierry FOURNIER | d18cd0f | 2013-11-29 12:15:45 +0100 | [diff] [blame] | 8906 | |
| 8907 | /* Parse destination. Note that in the REDIRECT_TYPE_PREFIX case, |
| 8908 | * if prefix == "/", we don't want to add anything, otherwise it |
| 8909 | * makes it hard for the user to configure a self-redirection. |
| 8910 | */ |
| 8911 | proxy->conf.args.ctx = ARGC_RDR; |
| 8912 | if (!(type == REDIRECT_TYPE_PREFIX && destination[0] == '/' && destination[1] == '\0')) { |
Thierry FOURNIER | d048d8b | 2014-03-13 16:46:18 +0100 | [diff] [blame] | 8913 | parse_logformat_string(destination, curproxy, &rule->rdr_fmt, LOG_OPT_HTTP, |
Thierry FOURNIER | eeaa951 | 2014-02-11 14:00:19 +0100 | [diff] [blame] | 8914 | (curproxy->cap & PR_CAP_FE) ? SMP_VAL_FE_HRQ_HDR : SMP_VAL_BE_HRQ_HDR, |
| 8915 | file, linenum); |
Willy Tarreau | 59ad1a2 | 2014-01-29 14:39:58 +0100 | [diff] [blame] | 8916 | free(curproxy->conf.lfs_file); |
| 8917 | curproxy->conf.lfs_file = strdup(curproxy->conf.args.file); |
| 8918 | curproxy->conf.lfs_line = curproxy->conf.args.line; |
Thierry FOURNIER | d18cd0f | 2013-11-29 12:15:45 +0100 | [diff] [blame] | 8919 | } |
| 8920 | } |
| 8921 | |
Willy Tarreau | 4baae24 | 2012-12-27 12:00:31 +0100 | [diff] [blame] | 8922 | if (cookie) { |
| 8923 | /* depending on cookie_set, either we want to set the cookie, or to clear it. |
| 8924 | * a clear consists in appending "; path=/; Max-Age=0;" at the end. |
| 8925 | */ |
| 8926 | rule->cookie_len = strlen(cookie); |
| 8927 | if (cookie_set) { |
| 8928 | rule->cookie_str = malloc(rule->cookie_len + 10); |
| 8929 | memcpy(rule->cookie_str, cookie, rule->cookie_len); |
| 8930 | memcpy(rule->cookie_str + rule->cookie_len, "; path=/;", 10); |
| 8931 | rule->cookie_len += 9; |
| 8932 | } else { |
| 8933 | rule->cookie_str = malloc(rule->cookie_len + 21); |
| 8934 | memcpy(rule->cookie_str, cookie, rule->cookie_len); |
| 8935 | memcpy(rule->cookie_str + rule->cookie_len, "; path=/; Max-Age=0;", 21); |
| 8936 | rule->cookie_len += 20; |
| 8937 | } |
| 8938 | } |
| 8939 | rule->type = type; |
| 8940 | rule->code = code; |
| 8941 | rule->flags = flags; |
| 8942 | LIST_INIT(&rule->list); |
| 8943 | return rule; |
| 8944 | |
| 8945 | missing_arg: |
| 8946 | memprintf(errmsg, "missing argument for '%s'", args[cur_arg]); |
| 8947 | return NULL; |
| 8948 | } |
| 8949 | |
Willy Tarreau | 8797c06 | 2007-05-07 00:55:35 +0200 | [diff] [blame] | 8950 | /************************************************************************/ |
| 8951 | /* The code below is dedicated to ACL parsing and matching */ |
| 8952 | /************************************************************************/ |
| 8953 | |
| 8954 | |
Willy Tarreau | 14174bc | 2012-04-16 14:34:04 +0200 | [diff] [blame] | 8955 | /* This function ensures that the prerequisites for an L7 fetch are ready, |
| 8956 | * which means that a request or response is ready. If some data is missing, |
| 8957 | * 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] | 8958 | * to extract data from L7. If <req_vol> is non-null during a request prefetch, |
| 8959 | * another test is made to ensure the required information is not gone. |
Willy Tarreau | 14174bc | 2012-04-16 14:34:04 +0200 | [diff] [blame] | 8960 | * |
| 8961 | * The function returns : |
Willy Tarreau | 506d050 | 2013-07-06 13:29:24 +0200 | [diff] [blame] | 8962 | * 0 with SMP_F_MAY_CHANGE in the sample flags if some data is missing to |
| 8963 | * decide whether or not an HTTP message is present ; |
| 8964 | * 0 if the requested data cannot be fetched or if it is certain that |
| 8965 | * we'll never have any HTTP message there ; |
Willy Tarreau | 14174bc | 2012-04-16 14:34:04 +0200 | [diff] [blame] | 8966 | * 1 if an HTTP message is ready |
| 8967 | */ |
| 8968 | static int |
Willy Tarreau | 506d050 | 2013-07-06 13:29:24 +0200 | [diff] [blame] | 8969 | smp_prefetch_http(struct proxy *px, struct session *s, void *l7, unsigned int opt, |
Willy Tarreau | 24e32d8 | 2012-04-23 23:55:44 +0200 | [diff] [blame] | 8970 | const struct arg *args, struct sample *smp, int req_vol) |
Willy Tarreau | 14174bc | 2012-04-16 14:34:04 +0200 | [diff] [blame] | 8971 | { |
| 8972 | struct http_txn *txn = l7; |
| 8973 | struct http_msg *msg = &txn->req; |
| 8974 | |
| 8975 | /* Note: hdr_idx.v cannot be NULL in this ACL because the ACL is tagged |
| 8976 | * as a layer7 ACL, which involves automatic allocation of hdr_idx. |
| 8977 | */ |
| 8978 | |
| 8979 | if (unlikely(!s || !txn)) |
| 8980 | return 0; |
| 8981 | |
| 8982 | /* Check for a dependency on a request */ |
Willy Tarreau | f853c46 | 2012-04-23 18:53:56 +0200 | [diff] [blame] | 8983 | smp->type = SMP_T_BOOL; |
Willy Tarreau | 14174bc | 2012-04-16 14:34:04 +0200 | [diff] [blame] | 8984 | |
Willy Tarreau | 32a6f2e | 2012-04-25 10:13:36 +0200 | [diff] [blame] | 8985 | if ((opt & SMP_OPT_DIR) == SMP_OPT_DIR_REQ) { |
Willy Tarreau | 14174bc | 2012-04-16 14:34:04 +0200 | [diff] [blame] | 8986 | if (unlikely(!s->req)) |
| 8987 | return 0; |
| 8988 | |
Willy Tarreau | aae75e3 | 2013-03-29 12:31:49 +0100 | [diff] [blame] | 8989 | /* If the buffer does not leave enough free space at the end, |
| 8990 | * we must first realign it. |
| 8991 | */ |
| 8992 | if (s->req->buf->p > s->req->buf->data && |
| 8993 | s->req->buf->i + s->req->buf->p > s->req->buf->data + s->req->buf->size - global.tune.maxrewrite) |
| 8994 | buffer_slow_realign(s->req->buf); |
| 8995 | |
Willy Tarreau | 14174bc | 2012-04-16 14:34:04 +0200 | [diff] [blame] | 8996 | if (unlikely(txn->req.msg_state < HTTP_MSG_BODY)) { |
Willy Tarreau | 472b1ee | 2013-10-14 22:41:30 +0200 | [diff] [blame] | 8997 | if (msg->msg_state == HTTP_MSG_ERROR) |
Willy Tarreau | 506d050 | 2013-07-06 13:29:24 +0200 | [diff] [blame] | 8998 | return 0; |
Willy Tarreau | 14174bc | 2012-04-16 14:34:04 +0200 | [diff] [blame] | 8999 | |
| 9000 | /* Try to decode HTTP request */ |
Willy Tarreau | 9b28e03 | 2012-10-12 23:49:43 +0200 | [diff] [blame] | 9001 | if (likely(msg->next < s->req->buf->i)) |
Willy Tarreau | 14174bc | 2012-04-16 14:34:04 +0200 | [diff] [blame] | 9002 | http_msg_analyzer(msg, &txn->hdr_idx); |
| 9003 | |
| 9004 | /* Still no valid request ? */ |
| 9005 | if (unlikely(msg->msg_state < HTTP_MSG_BODY)) { |
Willy Tarreau | 3bf1b2b | 2012-08-27 20:46:07 +0200 | [diff] [blame] | 9006 | if ((msg->msg_state == HTTP_MSG_ERROR) || |
Willy Tarreau | 9b28e03 | 2012-10-12 23:49:43 +0200 | [diff] [blame] | 9007 | buffer_full(s->req->buf, global.tune.maxrewrite)) { |
Willy Tarreau | 506d050 | 2013-07-06 13:29:24 +0200 | [diff] [blame] | 9008 | return 0; |
Willy Tarreau | 14174bc | 2012-04-16 14:34:04 +0200 | [diff] [blame] | 9009 | } |
| 9010 | /* wait for final state */ |
Willy Tarreau | 3740635 | 2012-04-23 16:16:37 +0200 | [diff] [blame] | 9011 | smp->flags |= SMP_F_MAY_CHANGE; |
Willy Tarreau | 14174bc | 2012-04-16 14:34:04 +0200 | [diff] [blame] | 9012 | return 0; |
| 9013 | } |
| 9014 | |
| 9015 | /* OK we just got a valid HTTP request. We have some minor |
| 9016 | * preparation to perform so that further checks can rely |
| 9017 | * on HTTP tests. |
| 9018 | */ |
Willy Tarreau | aae75e3 | 2013-03-29 12:31:49 +0100 | [diff] [blame] | 9019 | |
| 9020 | /* If the request was parsed but was too large, we must absolutely |
| 9021 | * return an error so that it is not processed. At the moment this |
| 9022 | * cannot happen, but if the parsers are to change in the future, |
| 9023 | * we want this check to be maintained. |
| 9024 | */ |
| 9025 | if (unlikely(s->req->buf->i + s->req->buf->p > |
| 9026 | s->req->buf->data + s->req->buf->size - global.tune.maxrewrite)) { |
| 9027 | msg->msg_state = HTTP_MSG_ERROR; |
Willy Tarreau | 506d050 | 2013-07-06 13:29:24 +0200 | [diff] [blame] | 9028 | smp->data.uint = 1; |
Willy Tarreau | aae75e3 | 2013-03-29 12:31:49 +0100 | [diff] [blame] | 9029 | return 1; |
| 9030 | } |
| 9031 | |
Willy Tarreau | 9b28e03 | 2012-10-12 23:49:43 +0200 | [diff] [blame] | 9032 | 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] | 9033 | if (txn->meth == HTTP_METH_GET || txn->meth == HTTP_METH_HEAD) |
| 9034 | s->flags |= SN_REDIRECTABLE; |
| 9035 | |
Willy Tarreau | 506d050 | 2013-07-06 13:29:24 +0200 | [diff] [blame] | 9036 | if (unlikely(msg->sl.rq.v_l == 0) && !http_upgrade_v09_to_v10(txn)) |
| 9037 | return 0; |
Willy Tarreau | 14174bc | 2012-04-16 14:34:04 +0200 | [diff] [blame] | 9038 | } |
| 9039 | |
Willy Tarreau | 506d050 | 2013-07-06 13:29:24 +0200 | [diff] [blame] | 9040 | if (req_vol && txn->rsp.msg_state != HTTP_MSG_RPBEFORE) { |
Willy Tarreau | 14174bc | 2012-04-16 14:34:04 +0200 | [diff] [blame] | 9041 | return 0; /* data might have moved and indexes changed */ |
Willy Tarreau | 506d050 | 2013-07-06 13:29:24 +0200 | [diff] [blame] | 9042 | } |
Willy Tarreau | 14174bc | 2012-04-16 14:34:04 +0200 | [diff] [blame] | 9043 | |
| 9044 | /* otherwise everything's ready for the request */ |
| 9045 | } |
Willy Tarreau | 24e32d8 | 2012-04-23 23:55:44 +0200 | [diff] [blame] | 9046 | else { |
| 9047 | /* Check for a dependency on a response */ |
Willy Tarreau | 506d050 | 2013-07-06 13:29:24 +0200 | [diff] [blame] | 9048 | if (txn->rsp.msg_state < HTTP_MSG_BODY) { |
| 9049 | smp->flags |= SMP_F_MAY_CHANGE; |
Willy Tarreau | 14174bc | 2012-04-16 14:34:04 +0200 | [diff] [blame] | 9050 | return 0; |
Willy Tarreau | 506d050 | 2013-07-06 13:29:24 +0200 | [diff] [blame] | 9051 | } |
Willy Tarreau | 14174bc | 2012-04-16 14:34:04 +0200 | [diff] [blame] | 9052 | } |
| 9053 | |
| 9054 | /* everything's OK */ |
Willy Tarreau | 506d050 | 2013-07-06 13:29:24 +0200 | [diff] [blame] | 9055 | smp->data.uint = 1; |
Willy Tarreau | 14174bc | 2012-04-16 14:34:04 +0200 | [diff] [blame] | 9056 | return 1; |
| 9057 | } |
Willy Tarreau | 8797c06 | 2007-05-07 00:55:35 +0200 | [diff] [blame] | 9058 | |
Willy Tarreau | c0239e0 | 2012-04-16 14:42:55 +0200 | [diff] [blame] | 9059 | #define CHECK_HTTP_MESSAGE_FIRST() \ |
Willy Tarreau | 506d050 | 2013-07-06 13:29:24 +0200 | [diff] [blame] | 9060 | do { int r = smp_prefetch_http(px, l4, l7, opt, args, smp, 1); if (r <= 0) return r; } while (0) |
Willy Tarreau | c0239e0 | 2012-04-16 14:42:55 +0200 | [diff] [blame] | 9061 | |
Willy Tarreau | 24e32d8 | 2012-04-23 23:55:44 +0200 | [diff] [blame] | 9062 | #define CHECK_HTTP_MESSAGE_FIRST_PERM() \ |
Willy Tarreau | 506d050 | 2013-07-06 13:29:24 +0200 | [diff] [blame] | 9063 | do { int r = smp_prefetch_http(px, l4, l7, opt, args, smp, 0); if (r <= 0) return r; } while (0) |
Willy Tarreau | 24e32d8 | 2012-04-23 23:55:44 +0200 | [diff] [blame] | 9064 | |
Willy Tarreau | 8797c06 | 2007-05-07 00:55:35 +0200 | [diff] [blame] | 9065 | |
| 9066 | /* 1. Check on METHOD |
| 9067 | * We use the pre-parsed method if it is known, and store its number as an |
| 9068 | * integer. If it is unknown, we use the pointer and the length. |
| 9069 | */ |
Thierry FOURNIER | edc15c3 | 2013-12-13 15:36:59 +0100 | [diff] [blame] | 9070 | static int pat_parse_meth(const char *text, struct pattern *pattern, char **err) |
Willy Tarreau | 8797c06 | 2007-05-07 00:55:35 +0200 | [diff] [blame] | 9071 | { |
| 9072 | int len, meth; |
Thierry FOURNIER | 0b2fe4a | 2013-12-06 20:33:50 +0100 | [diff] [blame] | 9073 | struct chunk *trash; |
Willy Tarreau | 8797c06 | 2007-05-07 00:55:35 +0200 | [diff] [blame] | 9074 | |
Thierry FOURNIER | 580c32c | 2014-01-24 10:58:12 +0100 | [diff] [blame] | 9075 | len = strlen(text); |
| 9076 | meth = find_http_meth(text, len); |
Willy Tarreau | 8797c06 | 2007-05-07 00:55:35 +0200 | [diff] [blame] | 9077 | |
| 9078 | pattern->val.i = meth; |
| 9079 | if (meth == HTTP_METH_OTHER) { |
Thierry FOURNIER | edc15c3 | 2013-12-13 15:36:59 +0100 | [diff] [blame] | 9080 | trash = get_trash_chunk(); |
| 9081 | if (trash->size < len) { |
| 9082 | memprintf(err, "no space avalaible in the buffer. expect %d, provides %d", |
| 9083 | len, trash->size); |
| 9084 | return 0; |
Thierry FOURNIER | 0b2fe4a | 2013-12-06 20:33:50 +0100 | [diff] [blame] | 9085 | } |
Thierry FOURNIER | edc15c3 | 2013-12-13 15:36:59 +0100 | [diff] [blame] | 9086 | pattern->ptr.str = trash->str; |
Willy Tarreau | 8797c06 | 2007-05-07 00:55:35 +0200 | [diff] [blame] | 9087 | pattern->len = len; |
| 9088 | } |
Thierry FOURNIER | d437314 | 2013-12-17 01:10:10 +0100 | [diff] [blame] | 9089 | else { |
| 9090 | pattern->ptr.str = NULL; |
| 9091 | pattern->len = 0; |
Thierry FOURNIER | d437314 | 2013-12-17 01:10:10 +0100 | [diff] [blame] | 9092 | } |
Willy Tarreau | 8797c06 | 2007-05-07 00:55:35 +0200 | [diff] [blame] | 9093 | return 1; |
| 9094 | } |
| 9095 | |
Willy Tarreau | 8e5e955 | 2011-12-16 15:38:49 +0100 | [diff] [blame] | 9096 | /* This function fetches the method of current HTTP request and stores |
| 9097 | * it in the global pattern struct as a chunk. There are two possibilities : |
| 9098 | * - if the method is known (not HTTP_METH_OTHER), its identifier is stored |
| 9099 | * in <len> and <ptr> is NULL ; |
| 9100 | * - if the method is unknown (HTTP_METH_OTHER), <ptr> points to the text and |
| 9101 | * <len> to its length. |
Thierry FOURNIER | a65b343 | 2013-11-28 18:22:00 +0100 | [diff] [blame] | 9102 | * This is intended to be used with pat_match_meth() only. |
Willy Tarreau | 8e5e955 | 2011-12-16 15:38:49 +0100 | [diff] [blame] | 9103 | */ |
Willy Tarreau | d41f8d8 | 2007-06-10 10:06:18 +0200 | [diff] [blame] | 9104 | static int |
Willy Tarreau | 409bcde | 2013-01-08 00:31:00 +0100 | [diff] [blame] | 9105 | smp_fetch_meth(struct proxy *px, struct session *l4, void *l7, unsigned int opt, |
Willy Tarreau | ef38c39 | 2013-07-22 16:29:32 +0200 | [diff] [blame] | 9106 | const struct arg *args, struct sample *smp, const char *kw) |
Willy Tarreau | 8797c06 | 2007-05-07 00:55:35 +0200 | [diff] [blame] | 9107 | { |
| 9108 | int meth; |
| 9109 | struct http_txn *txn = l7; |
| 9110 | |
Willy Tarreau | 24e32d8 | 2012-04-23 23:55:44 +0200 | [diff] [blame] | 9111 | CHECK_HTTP_MESSAGE_FIRST_PERM(); |
Willy Tarreau | c11416f | 2007-06-17 16:58:38 +0200 | [diff] [blame] | 9112 | |
Willy Tarreau | 8797c06 | 2007-05-07 00:55:35 +0200 | [diff] [blame] | 9113 | meth = txn->meth; |
Thierry FOURNIER | d437314 | 2013-12-17 01:10:10 +0100 | [diff] [blame] | 9114 | smp->type = SMP_T_METH; |
| 9115 | smp->data.meth.meth = meth; |
Willy Tarreau | 8797c06 | 2007-05-07 00:55:35 +0200 | [diff] [blame] | 9116 | if (meth == HTTP_METH_OTHER) { |
Willy Tarreau | c11416f | 2007-06-17 16:58:38 +0200 | [diff] [blame] | 9117 | if (txn->rsp.msg_state != HTTP_MSG_RPBEFORE) |
| 9118 | /* ensure the indexes are not affected */ |
| 9119 | return 0; |
Thierry FOURNIER | 7654c9f | 2013-12-17 00:20:33 +0100 | [diff] [blame] | 9120 | smp->flags |= SMP_F_CONST; |
Thierry FOURNIER | d437314 | 2013-12-17 01:10:10 +0100 | [diff] [blame] | 9121 | smp->data.meth.str.len = txn->req.sl.rq.m_l; |
| 9122 | smp->data.meth.str.str = txn->req.chn->buf->p; |
Willy Tarreau | 8797c06 | 2007-05-07 00:55:35 +0200 | [diff] [blame] | 9123 | } |
Thierry FOURNIER | 7654c9f | 2013-12-17 00:20:33 +0100 | [diff] [blame] | 9124 | smp->flags |= SMP_F_VOL_1ST; |
Willy Tarreau | 8797c06 | 2007-05-07 00:55:35 +0200 | [diff] [blame] | 9125 | return 1; |
| 9126 | } |
| 9127 | |
Willy Tarreau | 8e5e955 | 2011-12-16 15:38:49 +0100 | [diff] [blame] | 9128 | /* See above how the method is stored in the global pattern */ |
Thierry FOURNIER | 5338eea | 2013-12-16 14:22:13 +0100 | [diff] [blame] | 9129 | 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] | 9130 | { |
Willy Tarreau | c8d7c96 | 2007-06-17 08:20:33 +0200 | [diff] [blame] | 9131 | int icase; |
Thierry FOURNIER | 5338eea | 2013-12-16 14:22:13 +0100 | [diff] [blame] | 9132 | struct pattern_list *lst; |
| 9133 | struct pattern *pattern; |
Willy Tarreau | c8d7c96 | 2007-06-17 08:20:33 +0200 | [diff] [blame] | 9134 | |
Thierry FOURNIER | 5338eea | 2013-12-16 14:22:13 +0100 | [diff] [blame] | 9135 | list_for_each_entry(lst, &expr->patterns, list) { |
| 9136 | pattern = &lst->pat; |
Willy Tarreau | 8797c06 | 2007-05-07 00:55:35 +0200 | [diff] [blame] | 9137 | |
Thierry FOURNIER | 5338eea | 2013-12-16 14:22:13 +0100 | [diff] [blame] | 9138 | /* well-known method */ |
| 9139 | if (pattern->val.i != HTTP_METH_OTHER) { |
| 9140 | if (smp->data.meth.meth == pattern->val.i) |
| 9141 | return pattern; |
| 9142 | else |
| 9143 | continue; |
| 9144 | } |
Willy Tarreau | c8d7c96 | 2007-06-17 08:20:33 +0200 | [diff] [blame] | 9145 | |
Thierry FOURNIER | 5338eea | 2013-12-16 14:22:13 +0100 | [diff] [blame] | 9146 | /* Other method, we must compare the strings */ |
| 9147 | if (pattern->len != smp->data.meth.str.len) |
| 9148 | continue; |
| 9149 | |
| 9150 | icase = pattern->flags & PAT_F_IGNORE_CASE; |
| 9151 | if ((icase && strncasecmp(pattern->ptr.str, smp->data.meth.str.str, smp->data.meth.str.len) != 0) || |
| 9152 | (!icase && strncmp(pattern->ptr.str, smp->data.meth.str.str, smp->data.meth.str.len) != 0)) |
| 9153 | return pattern; |
| 9154 | } |
| 9155 | return NULL; |
Willy Tarreau | 8797c06 | 2007-05-07 00:55:35 +0200 | [diff] [blame] | 9156 | } |
| 9157 | |
Willy Tarreau | d41f8d8 | 2007-06-10 10:06:18 +0200 | [diff] [blame] | 9158 | static int |
Willy Tarreau | 409bcde | 2013-01-08 00:31:00 +0100 | [diff] [blame] | 9159 | smp_fetch_rqver(struct proxy *px, struct session *l4, void *l7, unsigned int opt, |
Willy Tarreau | ef38c39 | 2013-07-22 16:29:32 +0200 | [diff] [blame] | 9160 | const struct arg *args, struct sample *smp, const char *kw) |
Willy Tarreau | 8797c06 | 2007-05-07 00:55:35 +0200 | [diff] [blame] | 9161 | { |
| 9162 | struct http_txn *txn = l7; |
| 9163 | char *ptr; |
| 9164 | int len; |
| 9165 | |
Willy Tarreau | c0239e0 | 2012-04-16 14:42:55 +0200 | [diff] [blame] | 9166 | CHECK_HTTP_MESSAGE_FIRST(); |
Willy Tarreau | c11416f | 2007-06-17 16:58:38 +0200 | [diff] [blame] | 9167 | |
Willy Tarreau | 8797c06 | 2007-05-07 00:55:35 +0200 | [diff] [blame] | 9168 | len = txn->req.sl.rq.v_l; |
Willy Tarreau | 9b28e03 | 2012-10-12 23:49:43 +0200 | [diff] [blame] | 9169 | ptr = txn->req.chn->buf->p + txn->req.sl.rq.v; |
Willy Tarreau | 8797c06 | 2007-05-07 00:55:35 +0200 | [diff] [blame] | 9170 | |
| 9171 | while ((len-- > 0) && (*ptr++ != '/')); |
| 9172 | if (len <= 0) |
| 9173 | return 0; |
| 9174 | |
Thierry FOURNIER | 7654c9f | 2013-12-17 00:20:33 +0100 | [diff] [blame] | 9175 | smp->type = SMP_T_STR; |
Willy Tarreau | f853c46 | 2012-04-23 18:53:56 +0200 | [diff] [blame] | 9176 | smp->data.str.str = ptr; |
| 9177 | smp->data.str.len = len; |
Willy Tarreau | 8797c06 | 2007-05-07 00:55:35 +0200 | [diff] [blame] | 9178 | |
Thierry FOURNIER | 7654c9f | 2013-12-17 00:20:33 +0100 | [diff] [blame] | 9179 | smp->flags = SMP_F_VOL_1ST | SMP_F_CONST; |
Willy Tarreau | 8797c06 | 2007-05-07 00:55:35 +0200 | [diff] [blame] | 9180 | return 1; |
| 9181 | } |
| 9182 | |
Willy Tarreau | d41f8d8 | 2007-06-10 10:06:18 +0200 | [diff] [blame] | 9183 | static int |
Willy Tarreau | 409bcde | 2013-01-08 00:31:00 +0100 | [diff] [blame] | 9184 | smp_fetch_stver(struct proxy *px, struct session *l4, void *l7, unsigned int opt, |
Willy Tarreau | ef38c39 | 2013-07-22 16:29:32 +0200 | [diff] [blame] | 9185 | const struct arg *args, struct sample *smp, const char *kw) |
Willy Tarreau | 8797c06 | 2007-05-07 00:55:35 +0200 | [diff] [blame] | 9186 | { |
| 9187 | struct http_txn *txn = l7; |
| 9188 | char *ptr; |
| 9189 | int len; |
| 9190 | |
Willy Tarreau | c0239e0 | 2012-04-16 14:42:55 +0200 | [diff] [blame] | 9191 | CHECK_HTTP_MESSAGE_FIRST(); |
Willy Tarreau | c11416f | 2007-06-17 16:58:38 +0200 | [diff] [blame] | 9192 | |
Willy Tarreau | f26b252 | 2012-12-14 08:33:14 +0100 | [diff] [blame] | 9193 | if (txn->rsp.msg_state < HTTP_MSG_BODY) |
| 9194 | return 0; |
| 9195 | |
Willy Tarreau | 8797c06 | 2007-05-07 00:55:35 +0200 | [diff] [blame] | 9196 | len = txn->rsp.sl.st.v_l; |
Willy Tarreau | 9b28e03 | 2012-10-12 23:49:43 +0200 | [diff] [blame] | 9197 | ptr = txn->rsp.chn->buf->p; |
Willy Tarreau | 8797c06 | 2007-05-07 00:55:35 +0200 | [diff] [blame] | 9198 | |
| 9199 | while ((len-- > 0) && (*ptr++ != '/')); |
| 9200 | if (len <= 0) |
| 9201 | return 0; |
| 9202 | |
Thierry FOURNIER | 7654c9f | 2013-12-17 00:20:33 +0100 | [diff] [blame] | 9203 | smp->type = SMP_T_STR; |
Willy Tarreau | f853c46 | 2012-04-23 18:53:56 +0200 | [diff] [blame] | 9204 | smp->data.str.str = ptr; |
| 9205 | smp->data.str.len = len; |
Willy Tarreau | 8797c06 | 2007-05-07 00:55:35 +0200 | [diff] [blame] | 9206 | |
Thierry FOURNIER | 7654c9f | 2013-12-17 00:20:33 +0100 | [diff] [blame] | 9207 | smp->flags = SMP_F_VOL_1ST | SMP_F_CONST; |
Willy Tarreau | 8797c06 | 2007-05-07 00:55:35 +0200 | [diff] [blame] | 9208 | return 1; |
| 9209 | } |
| 9210 | |
| 9211 | /* 3. Check on Status Code. We manipulate integers here. */ |
Willy Tarreau | d41f8d8 | 2007-06-10 10:06:18 +0200 | [diff] [blame] | 9212 | static int |
Willy Tarreau | 409bcde | 2013-01-08 00:31:00 +0100 | [diff] [blame] | 9213 | smp_fetch_stcode(struct proxy *px, struct session *l4, void *l7, unsigned int opt, |
Willy Tarreau | ef38c39 | 2013-07-22 16:29:32 +0200 | [diff] [blame] | 9214 | const struct arg *args, struct sample *smp, const char *kw) |
Willy Tarreau | 8797c06 | 2007-05-07 00:55:35 +0200 | [diff] [blame] | 9215 | { |
| 9216 | struct http_txn *txn = l7; |
| 9217 | char *ptr; |
| 9218 | int len; |
| 9219 | |
Willy Tarreau | c0239e0 | 2012-04-16 14:42:55 +0200 | [diff] [blame] | 9220 | CHECK_HTTP_MESSAGE_FIRST(); |
Willy Tarreau | c11416f | 2007-06-17 16:58:38 +0200 | [diff] [blame] | 9221 | |
Willy Tarreau | f26b252 | 2012-12-14 08:33:14 +0100 | [diff] [blame] | 9222 | if (txn->rsp.msg_state < HTTP_MSG_BODY) |
| 9223 | return 0; |
| 9224 | |
Willy Tarreau | 8797c06 | 2007-05-07 00:55:35 +0200 | [diff] [blame] | 9225 | len = txn->rsp.sl.st.c_l; |
Willy Tarreau | 9b28e03 | 2012-10-12 23:49:43 +0200 | [diff] [blame] | 9226 | ptr = txn->rsp.chn->buf->p + txn->rsp.sl.st.c; |
Willy Tarreau | 8797c06 | 2007-05-07 00:55:35 +0200 | [diff] [blame] | 9227 | |
Willy Tarreau | f853c46 | 2012-04-23 18:53:56 +0200 | [diff] [blame] | 9228 | smp->type = SMP_T_UINT; |
| 9229 | smp->data.uint = __strl2ui(ptr, len); |
Willy Tarreau | 3740635 | 2012-04-23 16:16:37 +0200 | [diff] [blame] | 9230 | smp->flags = SMP_F_VOL_1ST; |
Willy Tarreau | 8797c06 | 2007-05-07 00:55:35 +0200 | [diff] [blame] | 9231 | return 1; |
| 9232 | } |
| 9233 | |
| 9234 | /* 4. Check on URL/URI. A pointer to the URI is stored. */ |
Willy Tarreau | d41f8d8 | 2007-06-10 10:06:18 +0200 | [diff] [blame] | 9235 | static int |
Willy Tarreau | 6812bcf | 2012-04-29 09:28:50 +0200 | [diff] [blame] | 9236 | smp_fetch_url(struct proxy *px, struct session *l4, void *l7, unsigned int opt, |
Willy Tarreau | ef38c39 | 2013-07-22 16:29:32 +0200 | [diff] [blame] | 9237 | const struct arg *args, struct sample *smp, const char *kw) |
Willy Tarreau | 8797c06 | 2007-05-07 00:55:35 +0200 | [diff] [blame] | 9238 | { |
| 9239 | struct http_txn *txn = l7; |
| 9240 | |
Willy Tarreau | c0239e0 | 2012-04-16 14:42:55 +0200 | [diff] [blame] | 9241 | CHECK_HTTP_MESSAGE_FIRST(); |
Willy Tarreau | c11416f | 2007-06-17 16:58:38 +0200 | [diff] [blame] | 9242 | |
Thierry FOURNIER | 7654c9f | 2013-12-17 00:20:33 +0100 | [diff] [blame] | 9243 | smp->type = SMP_T_STR; |
Willy Tarreau | f853c46 | 2012-04-23 18:53:56 +0200 | [diff] [blame] | 9244 | smp->data.str.len = txn->req.sl.rq.u_l; |
Willy Tarreau | 9b28e03 | 2012-10-12 23:49:43 +0200 | [diff] [blame] | 9245 | 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] | 9246 | smp->flags = SMP_F_VOL_1ST | SMP_F_CONST; |
Willy Tarreau | 8797c06 | 2007-05-07 00:55:35 +0200 | [diff] [blame] | 9247 | return 1; |
| 9248 | } |
| 9249 | |
Alexandre Cassen | 5eb1a90 | 2007-11-29 15:43:32 +0100 | [diff] [blame] | 9250 | static int |
Willy Tarreau | 6812bcf | 2012-04-29 09:28:50 +0200 | [diff] [blame] | 9251 | smp_fetch_url_ip(struct proxy *px, struct session *l4, void *l7, unsigned int opt, |
Willy Tarreau | ef38c39 | 2013-07-22 16:29:32 +0200 | [diff] [blame] | 9252 | const struct arg *args, struct sample *smp, const char *kw) |
Alexandre Cassen | 5eb1a90 | 2007-11-29 15:43:32 +0100 | [diff] [blame] | 9253 | { |
| 9254 | struct http_txn *txn = l7; |
Willy Tarreau | 4c804ec | 2013-09-30 14:37:14 +0200 | [diff] [blame] | 9255 | struct sockaddr_storage addr; |
Alexandre Cassen | 5eb1a90 | 2007-11-29 15:43:32 +0100 | [diff] [blame] | 9256 | |
Willy Tarreau | c0239e0 | 2012-04-16 14:42:55 +0200 | [diff] [blame] | 9257 | CHECK_HTTP_MESSAGE_FIRST(); |
Alexandre Cassen | 5eb1a90 | 2007-11-29 15:43:32 +0100 | [diff] [blame] | 9258 | |
Thierry FOURNIER | 9f95e40 | 2014-03-21 14:51:46 +0100 | [diff] [blame] | 9259 | 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] | 9260 | if (((struct sockaddr_in *)&addr)->sin_family != AF_INET) |
Willy Tarreau | f4362b3 | 2011-12-16 17:49:52 +0100 | [diff] [blame] | 9261 | return 0; |
Alexandre Cassen | 5eb1a90 | 2007-11-29 15:43:32 +0100 | [diff] [blame] | 9262 | |
Willy Tarreau | 4c804ec | 2013-09-30 14:37:14 +0200 | [diff] [blame] | 9263 | smp->type = SMP_T_IPV4; |
| 9264 | smp->data.ipv4 = ((struct sockaddr_in *)&addr)->sin_addr; |
Willy Tarreau | 3740635 | 2012-04-23 16:16:37 +0200 | [diff] [blame] | 9265 | smp->flags = 0; |
Alexandre Cassen | 5eb1a90 | 2007-11-29 15:43:32 +0100 | [diff] [blame] | 9266 | return 1; |
| 9267 | } |
| 9268 | |
| 9269 | static int |
Willy Tarreau | 6812bcf | 2012-04-29 09:28:50 +0200 | [diff] [blame] | 9270 | smp_fetch_url_port(struct proxy *px, struct session *l4, void *l7, unsigned int opt, |
Willy Tarreau | ef38c39 | 2013-07-22 16:29:32 +0200 | [diff] [blame] | 9271 | const struct arg *args, struct sample *smp, const char *kw) |
Alexandre Cassen | 5eb1a90 | 2007-11-29 15:43:32 +0100 | [diff] [blame] | 9272 | { |
| 9273 | struct http_txn *txn = l7; |
Willy Tarreau | 4c804ec | 2013-09-30 14:37:14 +0200 | [diff] [blame] | 9274 | struct sockaddr_storage addr; |
Alexandre Cassen | 5eb1a90 | 2007-11-29 15:43:32 +0100 | [diff] [blame] | 9275 | |
Willy Tarreau | c0239e0 | 2012-04-16 14:42:55 +0200 | [diff] [blame] | 9276 | CHECK_HTTP_MESSAGE_FIRST(); |
Alexandre Cassen | 5eb1a90 | 2007-11-29 15:43:32 +0100 | [diff] [blame] | 9277 | |
Thierry FOURNIER | 9f95e40 | 2014-03-21 14:51:46 +0100 | [diff] [blame] | 9278 | 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] | 9279 | if (((struct sockaddr_in *)&addr)->sin_family != AF_INET) |
| 9280 | return 0; |
Alexandre Cassen | 5eb1a90 | 2007-11-29 15:43:32 +0100 | [diff] [blame] | 9281 | |
Willy Tarreau | 4c804ec | 2013-09-30 14:37:14 +0200 | [diff] [blame] | 9282 | smp->type = SMP_T_UINT; |
| 9283 | smp->data.uint = ntohs(((struct sockaddr_in *)&addr)->sin_port); |
Willy Tarreau | 21e5b0e | 2012-04-23 19:25:44 +0200 | [diff] [blame] | 9284 | smp->flags = 0; |
Alexandre Cassen | 5eb1a90 | 2007-11-29 15:43:32 +0100 | [diff] [blame] | 9285 | return 1; |
| 9286 | } |
| 9287 | |
Willy Tarreau | 185b5c4 | 2012-04-26 15:11:51 +0200 | [diff] [blame] | 9288 | /* Fetch an HTTP header. A pointer to the beginning of the value is returned. |
| 9289 | * Accepts an optional argument of type string containing the header field name, |
| 9290 | * and an optional argument of type signed or unsigned integer to request an |
| 9291 | * 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] | 9292 | * headers are considered from the first one. It does not stop on commas and |
| 9293 | * returns full lines instead (useful for User-Agent or Date for example). |
| 9294 | */ |
| 9295 | static int |
| 9296 | smp_fetch_fhdr(struct proxy *px, struct session *l4, void *l7, unsigned int opt, |
Willy Tarreau | ef38c39 | 2013-07-22 16:29:32 +0200 | [diff] [blame] | 9297 | const struct arg *args, struct sample *smp, const char *kw) |
Willy Tarreau | 04ff9f1 | 2013-06-10 18:39:42 +0200 | [diff] [blame] | 9298 | { |
| 9299 | struct http_txn *txn = l7; |
| 9300 | struct hdr_idx *idx = &txn->hdr_idx; |
| 9301 | struct hdr_ctx *ctx = smp->ctx.a[0]; |
| 9302 | const struct http_msg *msg = ((opt & SMP_OPT_DIR) == SMP_OPT_DIR_REQ) ? &txn->req : &txn->rsp; |
| 9303 | int occ = 0; |
| 9304 | const char *name_str = NULL; |
| 9305 | int name_len = 0; |
| 9306 | |
| 9307 | if (!ctx) { |
| 9308 | /* first call */ |
| 9309 | ctx = &static_hdr_ctx; |
| 9310 | ctx->idx = 0; |
| 9311 | smp->ctx.a[0] = ctx; |
| 9312 | } |
| 9313 | |
| 9314 | if (args) { |
| 9315 | if (args[0].type != ARGT_STR) |
| 9316 | return 0; |
| 9317 | name_str = args[0].data.str.str; |
| 9318 | name_len = args[0].data.str.len; |
| 9319 | |
| 9320 | if (args[1].type == ARGT_UINT || args[1].type == ARGT_SINT) |
| 9321 | occ = args[1].data.uint; |
| 9322 | } |
| 9323 | |
| 9324 | CHECK_HTTP_MESSAGE_FIRST(); |
| 9325 | |
| 9326 | if (ctx && !(smp->flags & SMP_F_NOT_LAST)) |
| 9327 | /* search for header from the beginning */ |
| 9328 | ctx->idx = 0; |
| 9329 | |
| 9330 | if (!occ && !(opt & SMP_OPT_ITERATE)) |
| 9331 | /* no explicit occurrence and single fetch => last header by default */ |
| 9332 | occ = -1; |
| 9333 | |
| 9334 | if (!occ) |
| 9335 | /* prepare to report multiple occurrences for ACL fetches */ |
| 9336 | smp->flags |= SMP_F_NOT_LAST; |
| 9337 | |
Thierry FOURNIER | 7654c9f | 2013-12-17 00:20:33 +0100 | [diff] [blame] | 9338 | smp->type = SMP_T_STR; |
| 9339 | smp->flags |= SMP_F_VOL_HDR | SMP_F_CONST; |
Willy Tarreau | 04ff9f1 | 2013-06-10 18:39:42 +0200 | [diff] [blame] | 9340 | if (http_get_fhdr(msg, name_str, name_len, idx, occ, ctx, &smp->data.str.str, &smp->data.str.len)) |
| 9341 | return 1; |
| 9342 | |
| 9343 | smp->flags &= ~SMP_F_NOT_LAST; |
| 9344 | return 0; |
| 9345 | } |
| 9346 | |
| 9347 | /* 6. Check on HTTP header count. The number of occurrences is returned. |
| 9348 | * Accepts exactly 1 argument of type string. It does not stop on commas and |
| 9349 | * returns full lines instead (useful for User-Agent or Date for example). |
| 9350 | */ |
| 9351 | static int |
| 9352 | smp_fetch_fhdr_cnt(struct proxy *px, struct session *l4, void *l7, unsigned int opt, |
Willy Tarreau | ef38c39 | 2013-07-22 16:29:32 +0200 | [diff] [blame] | 9353 | const struct arg *args, struct sample *smp, const char *kw) |
Willy Tarreau | 04ff9f1 | 2013-06-10 18:39:42 +0200 | [diff] [blame] | 9354 | { |
| 9355 | struct http_txn *txn = l7; |
| 9356 | struct hdr_idx *idx = &txn->hdr_idx; |
| 9357 | struct hdr_ctx ctx; |
| 9358 | const struct http_msg *msg = ((opt & SMP_OPT_DIR) == SMP_OPT_DIR_REQ) ? &txn->req : &txn->rsp; |
| 9359 | int cnt; |
| 9360 | |
| 9361 | if (!args || args->type != ARGT_STR) |
| 9362 | return 0; |
| 9363 | |
| 9364 | CHECK_HTTP_MESSAGE_FIRST(); |
| 9365 | |
| 9366 | ctx.idx = 0; |
| 9367 | cnt = 0; |
| 9368 | while (http_find_full_header2(args->data.str.str, args->data.str.len, msg->chn->buf->p, idx, &ctx)) |
| 9369 | cnt++; |
| 9370 | |
| 9371 | smp->type = SMP_T_UINT; |
| 9372 | smp->data.uint = cnt; |
| 9373 | smp->flags = SMP_F_VOL_HDR; |
| 9374 | return 1; |
| 9375 | } |
| 9376 | |
| 9377 | /* Fetch an HTTP header. A pointer to the beginning of the value is returned. |
| 9378 | * Accepts an optional argument of type string containing the header field name, |
| 9379 | * and an optional argument of type signed or unsigned integer to request an |
| 9380 | * 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] | 9381 | * headers are considered from the first one. |
Willy Tarreau | c11416f | 2007-06-17 16:58:38 +0200 | [diff] [blame] | 9382 | */ |
Willy Tarreau | 33a7e69 | 2007-06-10 19:45:56 +0200 | [diff] [blame] | 9383 | static int |
Willy Tarreau | 185b5c4 | 2012-04-26 15:11:51 +0200 | [diff] [blame] | 9384 | smp_fetch_hdr(struct proxy *px, struct session *l4, void *l7, unsigned int opt, |
Willy Tarreau | ef38c39 | 2013-07-22 16:29:32 +0200 | [diff] [blame] | 9385 | const struct arg *args, struct sample *smp, const char *kw) |
Willy Tarreau | 33a7e69 | 2007-06-10 19:45:56 +0200 | [diff] [blame] | 9386 | { |
| 9387 | struct http_txn *txn = l7; |
| 9388 | struct hdr_idx *idx = &txn->hdr_idx; |
Willy Tarreau | a890d07 | 2013-04-02 12:01:06 +0200 | [diff] [blame] | 9389 | struct hdr_ctx *ctx = smp->ctx.a[0]; |
Willy Tarreau | 32a6f2e | 2012-04-25 10:13:36 +0200 | [diff] [blame] | 9390 | const struct http_msg *msg = ((opt & SMP_OPT_DIR) == SMP_OPT_DIR_REQ) ? &txn->req : &txn->rsp; |
Willy Tarreau | 185b5c4 | 2012-04-26 15:11:51 +0200 | [diff] [blame] | 9391 | int occ = 0; |
| 9392 | const char *name_str = NULL; |
| 9393 | int name_len = 0; |
Willy Tarreau | e333ec9 | 2012-04-16 16:26:40 +0200 | [diff] [blame] | 9394 | |
Willy Tarreau | a890d07 | 2013-04-02 12:01:06 +0200 | [diff] [blame] | 9395 | if (!ctx) { |
| 9396 | /* first call */ |
| 9397 | ctx = &static_hdr_ctx; |
| 9398 | ctx->idx = 0; |
Willy Tarreau | ffb6f08 | 2013-04-02 23:16:53 +0200 | [diff] [blame] | 9399 | smp->ctx.a[0] = ctx; |
Willy Tarreau | a890d07 | 2013-04-02 12:01:06 +0200 | [diff] [blame] | 9400 | } |
| 9401 | |
Willy Tarreau | 185b5c4 | 2012-04-26 15:11:51 +0200 | [diff] [blame] | 9402 | if (args) { |
| 9403 | if (args[0].type != ARGT_STR) |
| 9404 | return 0; |
| 9405 | name_str = args[0].data.str.str; |
| 9406 | name_len = args[0].data.str.len; |
| 9407 | |
| 9408 | if (args[1].type == ARGT_UINT || args[1].type == ARGT_SINT) |
| 9409 | occ = args[1].data.uint; |
| 9410 | } |
Willy Tarreau | 34db108 | 2012-04-19 17:16:54 +0200 | [diff] [blame] | 9411 | |
Willy Tarreau | e333ec9 | 2012-04-16 16:26:40 +0200 | [diff] [blame] | 9412 | CHECK_HTTP_MESSAGE_FIRST(); |
Willy Tarreau | 33a7e69 | 2007-06-10 19:45:56 +0200 | [diff] [blame] | 9413 | |
Willy Tarreau | 185b5c4 | 2012-04-26 15:11:51 +0200 | [diff] [blame] | 9414 | if (ctx && !(smp->flags & SMP_F_NOT_LAST)) |
Willy Tarreau | 33a7e69 | 2007-06-10 19:45:56 +0200 | [diff] [blame] | 9415 | /* search for header from the beginning */ |
| 9416 | ctx->idx = 0; |
| 9417 | |
Willy Tarreau | 185b5c4 | 2012-04-26 15:11:51 +0200 | [diff] [blame] | 9418 | if (!occ && !(opt & SMP_OPT_ITERATE)) |
| 9419 | /* no explicit occurrence and single fetch => last header by default */ |
| 9420 | occ = -1; |
| 9421 | |
| 9422 | if (!occ) |
| 9423 | /* prepare to report multiple occurrences for ACL fetches */ |
Willy Tarreau | 3740635 | 2012-04-23 16:16:37 +0200 | [diff] [blame] | 9424 | smp->flags |= SMP_F_NOT_LAST; |
Willy Tarreau | 664092c | 2011-12-16 19:11:42 +0100 | [diff] [blame] | 9425 | |
Thierry FOURNIER | 7654c9f | 2013-12-17 00:20:33 +0100 | [diff] [blame] | 9426 | smp->type = SMP_T_STR; |
| 9427 | smp->flags |= SMP_F_VOL_HDR | SMP_F_CONST; |
Willy Tarreau | 185b5c4 | 2012-04-26 15:11:51 +0200 | [diff] [blame] | 9428 | 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] | 9429 | return 1; |
Willy Tarreau | 33a7e69 | 2007-06-10 19:45:56 +0200 | [diff] [blame] | 9430 | |
Willy Tarreau | 3740635 | 2012-04-23 16:16:37 +0200 | [diff] [blame] | 9431 | smp->flags &= ~SMP_F_NOT_LAST; |
Willy Tarreau | 33a7e69 | 2007-06-10 19:45:56 +0200 | [diff] [blame] | 9432 | return 0; |
| 9433 | } |
| 9434 | |
Willy Tarreau | c11416f | 2007-06-17 16:58:38 +0200 | [diff] [blame] | 9435 | /* 6. Check on HTTP header count. The number of occurrences is returned. |
Willy Tarreau | 34db108 | 2012-04-19 17:16:54 +0200 | [diff] [blame] | 9436 | * Accepts exactly 1 argument of type string. |
Willy Tarreau | c11416f | 2007-06-17 16:58:38 +0200 | [diff] [blame] | 9437 | */ |
| 9438 | static int |
Willy Tarreau | 185b5c4 | 2012-04-26 15:11:51 +0200 | [diff] [blame] | 9439 | smp_fetch_hdr_cnt(struct proxy *px, struct session *l4, void *l7, unsigned int opt, |
Willy Tarreau | ef38c39 | 2013-07-22 16:29:32 +0200 | [diff] [blame] | 9440 | const struct arg *args, struct sample *smp, const char *kw) |
Willy Tarreau | 33a7e69 | 2007-06-10 19:45:56 +0200 | [diff] [blame] | 9441 | { |
| 9442 | struct http_txn *txn = l7; |
| 9443 | struct hdr_idx *idx = &txn->hdr_idx; |
| 9444 | struct hdr_ctx ctx; |
Willy Tarreau | 32a6f2e | 2012-04-25 10:13:36 +0200 | [diff] [blame] | 9445 | const struct http_msg *msg = ((opt & SMP_OPT_DIR) == SMP_OPT_DIR_REQ) ? &txn->req : &txn->rsp; |
Willy Tarreau | 33a7e69 | 2007-06-10 19:45:56 +0200 | [diff] [blame] | 9446 | int cnt; |
Willy Tarreau | 8797c06 | 2007-05-07 00:55:35 +0200 | [diff] [blame] | 9447 | |
Willy Tarreau | 24e32d8 | 2012-04-23 23:55:44 +0200 | [diff] [blame] | 9448 | if (!args || args->type != ARGT_STR) |
Willy Tarreau | 34db108 | 2012-04-19 17:16:54 +0200 | [diff] [blame] | 9449 | return 0; |
| 9450 | |
Willy Tarreau | e333ec9 | 2012-04-16 16:26:40 +0200 | [diff] [blame] | 9451 | CHECK_HTTP_MESSAGE_FIRST(); |
| 9452 | |
Willy Tarreau | 33a7e69 | 2007-06-10 19:45:56 +0200 | [diff] [blame] | 9453 | ctx.idx = 0; |
| 9454 | cnt = 0; |
Willy Tarreau | 9b28e03 | 2012-10-12 23:49:43 +0200 | [diff] [blame] | 9455 | while (http_find_header2(args->data.str.str, args->data.str.len, msg->chn->buf->p, idx, &ctx)) |
Willy Tarreau | 33a7e69 | 2007-06-10 19:45:56 +0200 | [diff] [blame] | 9456 | cnt++; |
| 9457 | |
Willy Tarreau | f853c46 | 2012-04-23 18:53:56 +0200 | [diff] [blame] | 9458 | smp->type = SMP_T_UINT; |
| 9459 | smp->data.uint = cnt; |
Willy Tarreau | 3740635 | 2012-04-23 16:16:37 +0200 | [diff] [blame] | 9460 | smp->flags = SMP_F_VOL_HDR; |
Willy Tarreau | 33a7e69 | 2007-06-10 19:45:56 +0200 | [diff] [blame] | 9461 | return 1; |
| 9462 | } |
| 9463 | |
Willy Tarreau | 185b5c4 | 2012-04-26 15:11:51 +0200 | [diff] [blame] | 9464 | /* Fetch an HTTP header's integer value. The integer value is returned. It |
| 9465 | * takes a mandatory argument of type string and an optional one of type int |
| 9466 | * to designate a specific occurrence. It returns an unsigned integer, which |
| 9467 | * may or may not be appropriate for everything. |
Willy Tarreau | 33a7e69 | 2007-06-10 19:45:56 +0200 | [diff] [blame] | 9468 | */ |
| 9469 | static int |
Willy Tarreau | 185b5c4 | 2012-04-26 15:11:51 +0200 | [diff] [blame] | 9470 | smp_fetch_hdr_val(struct proxy *px, struct session *l4, void *l7, unsigned int opt, |
Willy Tarreau | ef38c39 | 2013-07-22 16:29:32 +0200 | [diff] [blame] | 9471 | const struct arg *args, struct sample *smp, const char *kw) |
Willy Tarreau | 33a7e69 | 2007-06-10 19:45:56 +0200 | [diff] [blame] | 9472 | { |
Willy Tarreau | ef38c39 | 2013-07-22 16:29:32 +0200 | [diff] [blame] | 9473 | int ret = smp_fetch_hdr(px, l4, l7, opt, args, smp, kw); |
Willy Tarreau | e333ec9 | 2012-04-16 16:26:40 +0200 | [diff] [blame] | 9474 | |
Willy Tarreau | f853c46 | 2012-04-23 18:53:56 +0200 | [diff] [blame] | 9475 | if (ret > 0) { |
| 9476 | smp->type = SMP_T_UINT; |
| 9477 | smp->data.uint = strl2ic(smp->data.str.str, smp->data.str.len); |
| 9478 | } |
Willy Tarreau | 33a7e69 | 2007-06-10 19:45:56 +0200 | [diff] [blame] | 9479 | |
Willy Tarreau | d53e242 | 2012-04-16 17:21:11 +0200 | [diff] [blame] | 9480 | return ret; |
Willy Tarreau | 33a7e69 | 2007-06-10 19:45:56 +0200 | [diff] [blame] | 9481 | } |
| 9482 | |
Cyril Bonté | 69fa992 | 2012-10-25 00:01:06 +0200 | [diff] [blame] | 9483 | /* Fetch an HTTP header's IP value. takes a mandatory argument of type string |
| 9484 | * and an optional one of type int to designate a specific occurrence. |
| 9485 | * It returns an IPv4 or IPv6 address. |
Willy Tarreau | 106f979 | 2009-09-19 07:54:16 +0200 | [diff] [blame] | 9486 | */ |
| 9487 | static int |
Willy Tarreau | 185b5c4 | 2012-04-26 15:11:51 +0200 | [diff] [blame] | 9488 | smp_fetch_hdr_ip(struct proxy *px, struct session *l4, void *l7, unsigned int opt, |
Willy Tarreau | ef38c39 | 2013-07-22 16:29:32 +0200 | [diff] [blame] | 9489 | const struct arg *args, struct sample *smp, const char *kw) |
Willy Tarreau | 106f979 | 2009-09-19 07:54:16 +0200 | [diff] [blame] | 9490 | { |
Willy Tarreau | d53e242 | 2012-04-16 17:21:11 +0200 | [diff] [blame] | 9491 | int ret; |
Willy Tarreau | e333ec9 | 2012-04-16 16:26:40 +0200 | [diff] [blame] | 9492 | |
Willy Tarreau | ef38c39 | 2013-07-22 16:29:32 +0200 | [diff] [blame] | 9493 | while ((ret = smp_fetch_hdr(px, l4, l7, opt, args, smp, kw)) > 0) { |
Cyril Bonté | 69fa992 | 2012-10-25 00:01:06 +0200 | [diff] [blame] | 9494 | if (url2ipv4((char *)smp->data.str.str, &smp->data.ipv4)) { |
| 9495 | smp->type = SMP_T_IPV4; |
Willy Tarreau | d53e242 | 2012-04-16 17:21:11 +0200 | [diff] [blame] | 9496 | break; |
Cyril Bonté | 69fa992 | 2012-10-25 00:01:06 +0200 | [diff] [blame] | 9497 | } else { |
Willy Tarreau | 47ca545 | 2012-12-23 20:22:19 +0100 | [diff] [blame] | 9498 | struct chunk *temp = get_trash_chunk(); |
Cyril Bonté | 69fa992 | 2012-10-25 00:01:06 +0200 | [diff] [blame] | 9499 | if (smp->data.str.len < temp->size - 1) { |
| 9500 | memcpy(temp->str, smp->data.str.str, smp->data.str.len); |
| 9501 | temp->str[smp->data.str.len] = '\0'; |
| 9502 | if (inet_pton(AF_INET6, temp->str, &smp->data.ipv6)) { |
| 9503 | smp->type = SMP_T_IPV6; |
| 9504 | break; |
| 9505 | } |
| 9506 | } |
| 9507 | } |
| 9508 | |
Willy Tarreau | d53e242 | 2012-04-16 17:21:11 +0200 | [diff] [blame] | 9509 | /* if the header doesn't match an IP address, fetch next one */ |
Willy Tarreau | 185b5c4 | 2012-04-26 15:11:51 +0200 | [diff] [blame] | 9510 | if (!(smp->flags & SMP_F_NOT_LAST)) |
| 9511 | return 0; |
Willy Tarreau | 106f979 | 2009-09-19 07:54:16 +0200 | [diff] [blame] | 9512 | } |
Willy Tarreau | d53e242 | 2012-04-16 17:21:11 +0200 | [diff] [blame] | 9513 | return ret; |
Willy Tarreau | 106f979 | 2009-09-19 07:54:16 +0200 | [diff] [blame] | 9514 | } |
| 9515 | |
Willy Tarreau | 737b0c1 | 2007-06-10 21:28:46 +0200 | [diff] [blame] | 9516 | /* 8. Check on URI PATH. A pointer to the PATH is stored. The path starts at |
| 9517 | * the first '/' after the possible hostname, and ends before the possible '?'. |
| 9518 | */ |
| 9519 | static int |
Willy Tarreau | 6812bcf | 2012-04-29 09:28:50 +0200 | [diff] [blame] | 9520 | smp_fetch_path(struct proxy *px, struct session *l4, void *l7, unsigned int opt, |
Willy Tarreau | ef38c39 | 2013-07-22 16:29:32 +0200 | [diff] [blame] | 9521 | const struct arg *args, struct sample *smp, const char *kw) |
Willy Tarreau | 737b0c1 | 2007-06-10 21:28:46 +0200 | [diff] [blame] | 9522 | { |
| 9523 | struct http_txn *txn = l7; |
| 9524 | char *ptr, *end; |
Willy Tarreau | 33a7e69 | 2007-06-10 19:45:56 +0200 | [diff] [blame] | 9525 | |
Willy Tarreau | c0239e0 | 2012-04-16 14:42:55 +0200 | [diff] [blame] | 9526 | CHECK_HTTP_MESSAGE_FIRST(); |
Willy Tarreau | c11416f | 2007-06-17 16:58:38 +0200 | [diff] [blame] | 9527 | |
Willy Tarreau | 9b28e03 | 2012-10-12 23:49:43 +0200 | [diff] [blame] | 9528 | 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] | 9529 | ptr = http_get_path(txn); |
| 9530 | if (!ptr) |
Willy Tarreau | 737b0c1 | 2007-06-10 21:28:46 +0200 | [diff] [blame] | 9531 | return 0; |
| 9532 | |
| 9533 | /* OK, we got the '/' ! */ |
Thierry FOURNIER | 7654c9f | 2013-12-17 00:20:33 +0100 | [diff] [blame] | 9534 | smp->type = SMP_T_STR; |
Willy Tarreau | f853c46 | 2012-04-23 18:53:56 +0200 | [diff] [blame] | 9535 | smp->data.str.str = ptr; |
Willy Tarreau | 737b0c1 | 2007-06-10 21:28:46 +0200 | [diff] [blame] | 9536 | |
| 9537 | while (ptr < end && *ptr != '?') |
| 9538 | ptr++; |
| 9539 | |
Willy Tarreau | f853c46 | 2012-04-23 18:53:56 +0200 | [diff] [blame] | 9540 | smp->data.str.len = ptr - smp->data.str.str; |
Thierry FOURNIER | 7654c9f | 2013-12-17 00:20:33 +0100 | [diff] [blame] | 9541 | smp->flags = SMP_F_VOL_1ST | SMP_F_CONST; |
Willy Tarreau | 737b0c1 | 2007-06-10 21:28:46 +0200 | [diff] [blame] | 9542 | return 1; |
| 9543 | } |
| 9544 | |
Willy Tarreau | a7ad50c | 2012-04-29 15:39:40 +0200 | [diff] [blame] | 9545 | /* This produces a concatenation of the first occurrence of the Host header |
| 9546 | * followed by the path component if it begins with a slash ('/'). This means |
| 9547 | * that '*' will not be added, resulting in exactly the first Host entry. |
| 9548 | * If no Host header is found, then the path is returned as-is. The returned |
| 9549 | * 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] | 9550 | * The returned sample is of type string. |
Willy Tarreau | a7ad50c | 2012-04-29 15:39:40 +0200 | [diff] [blame] | 9551 | */ |
| 9552 | static int |
| 9553 | smp_fetch_base(struct proxy *px, struct session *l4, void *l7, unsigned int opt, |
Willy Tarreau | ef38c39 | 2013-07-22 16:29:32 +0200 | [diff] [blame] | 9554 | const struct arg *args, struct sample *smp, const char *kw) |
Willy Tarreau | a7ad50c | 2012-04-29 15:39:40 +0200 | [diff] [blame] | 9555 | { |
| 9556 | struct http_txn *txn = l7; |
| 9557 | char *ptr, *end, *beg; |
| 9558 | struct hdr_ctx ctx; |
| 9559 | |
| 9560 | CHECK_HTTP_MESSAGE_FIRST(); |
| 9561 | |
| 9562 | ctx.idx = 0; |
Willy Tarreau | 9b28e03 | 2012-10-12 23:49:43 +0200 | [diff] [blame] | 9563 | if (!http_find_header2("Host", 4, txn->req.chn->buf->p + txn->req.sol, &txn->hdr_idx, &ctx) || |
Willy Tarreau | a7ad50c | 2012-04-29 15:39:40 +0200 | [diff] [blame] | 9564 | !ctx.vlen) |
Willy Tarreau | ef38c39 | 2013-07-22 16:29:32 +0200 | [diff] [blame] | 9565 | return smp_fetch_path(px, l4, l7, opt, args, smp, kw); |
Willy Tarreau | a7ad50c | 2012-04-29 15:39:40 +0200 | [diff] [blame] | 9566 | |
| 9567 | /* OK we have the header value in ctx.line+ctx.val for ctx.vlen bytes */ |
Willy Tarreau | 19d14ef | 2012-10-29 16:51:55 +0100 | [diff] [blame] | 9568 | memcpy(trash.str, ctx.line + ctx.val, ctx.vlen); |
Willy Tarreau | a7ad50c | 2012-04-29 15:39:40 +0200 | [diff] [blame] | 9569 | smp->type = SMP_T_STR; |
Willy Tarreau | 19d14ef | 2012-10-29 16:51:55 +0100 | [diff] [blame] | 9570 | smp->data.str.str = trash.str; |
Willy Tarreau | a7ad50c | 2012-04-29 15:39:40 +0200 | [diff] [blame] | 9571 | smp->data.str.len = ctx.vlen; |
| 9572 | |
| 9573 | /* now retrieve the path */ |
Willy Tarreau | 9b28e03 | 2012-10-12 23:49:43 +0200 | [diff] [blame] | 9574 | end = txn->req.chn->buf->p + txn->req.sol + txn->req.sl.rq.u + txn->req.sl.rq.u_l; |
Willy Tarreau | a7ad50c | 2012-04-29 15:39:40 +0200 | [diff] [blame] | 9575 | beg = http_get_path(txn); |
| 9576 | if (!beg) |
| 9577 | beg = end; |
| 9578 | |
| 9579 | for (ptr = beg; ptr < end && *ptr != '?'; ptr++); |
| 9580 | |
| 9581 | if (beg < ptr && *beg == '/') { |
| 9582 | memcpy(smp->data.str.str + smp->data.str.len, beg, ptr - beg); |
| 9583 | smp->data.str.len += ptr - beg; |
| 9584 | } |
| 9585 | |
| 9586 | smp->flags = SMP_F_VOL_1ST; |
| 9587 | return 1; |
| 9588 | } |
| 9589 | |
Willy Tarreau | ab1f7b7 | 2012-12-09 13:38:54 +0100 | [diff] [blame] | 9590 | /* This produces a 32-bit hash of the concatenation of the first occurrence of |
| 9591 | * the Host header followed by the path component if it begins with a slash ('/'). |
| 9592 | * This means that '*' will not be added, resulting in exactly the first Host |
| 9593 | * 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] | 9594 | * is hashed using the path hash followed by a full avalanche hash and provides a |
| 9595 | * 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] | 9596 | * high-traffic sites without having to store whole paths. |
| 9597 | */ |
| 9598 | static int |
| 9599 | smp_fetch_base32(struct proxy *px, struct session *l4, void *l7, unsigned int opt, |
Willy Tarreau | ef38c39 | 2013-07-22 16:29:32 +0200 | [diff] [blame] | 9600 | const struct arg *args, struct sample *smp, const char *kw) |
Willy Tarreau | ab1f7b7 | 2012-12-09 13:38:54 +0100 | [diff] [blame] | 9601 | { |
| 9602 | struct http_txn *txn = l7; |
| 9603 | struct hdr_ctx ctx; |
| 9604 | unsigned int hash = 0; |
| 9605 | char *ptr, *beg, *end; |
| 9606 | int len; |
| 9607 | |
| 9608 | CHECK_HTTP_MESSAGE_FIRST(); |
| 9609 | |
| 9610 | ctx.idx = 0; |
| 9611 | if (http_find_header2("Host", 4, txn->req.chn->buf->p + txn->req.sol, &txn->hdr_idx, &ctx)) { |
| 9612 | /* OK we have the header value in ctx.line+ctx.val for ctx.vlen bytes */ |
| 9613 | ptr = ctx.line + ctx.val; |
| 9614 | len = ctx.vlen; |
| 9615 | while (len--) |
| 9616 | hash = *(ptr++) + (hash << 6) + (hash << 16) - hash; |
| 9617 | } |
| 9618 | |
| 9619 | /* now retrieve the path */ |
| 9620 | end = txn->req.chn->buf->p + txn->req.sol + txn->req.sl.rq.u + txn->req.sl.rq.u_l; |
| 9621 | beg = http_get_path(txn); |
| 9622 | if (!beg) |
| 9623 | beg = end; |
| 9624 | |
| 9625 | for (ptr = beg; ptr < end && *ptr != '?'; ptr++); |
| 9626 | |
| 9627 | if (beg < ptr && *beg == '/') { |
| 9628 | while (beg < ptr) |
| 9629 | hash = *(beg++) + (hash << 6) + (hash << 16) - hash; |
| 9630 | } |
| 9631 | hash = full_hash(hash); |
| 9632 | |
| 9633 | smp->type = SMP_T_UINT; |
| 9634 | smp->data.uint = hash; |
| 9635 | smp->flags = SMP_F_VOL_1ST; |
| 9636 | return 1; |
| 9637 | } |
| 9638 | |
Willy Tarreau | 4a55060 | 2012-12-09 14:53:32 +0100 | [diff] [blame] | 9639 | /* 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] | 9640 | * path as returned by smp_fetch_base32(). The idea is to have per-source and |
| 9641 | * per-path counters. The result is a binary block from 8 to 20 bytes depending |
| 9642 | * 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] | 9643 | * that in environments where IPv6 is insignificant, truncating the output to |
| 9644 | * 8 bytes would still work. |
| 9645 | */ |
| 9646 | static int |
| 9647 | smp_fetch_base32_src(struct proxy *px, struct session *l4, void *l7, unsigned int opt, |
Willy Tarreau | ef38c39 | 2013-07-22 16:29:32 +0200 | [diff] [blame] | 9648 | const struct arg *args, struct sample *smp, const char *kw) |
Willy Tarreau | 4a55060 | 2012-12-09 14:53:32 +0100 | [diff] [blame] | 9649 | { |
Willy Tarreau | 47ca545 | 2012-12-23 20:22:19 +0100 | [diff] [blame] | 9650 | struct chunk *temp; |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 9651 | struct connection *cli_conn = objt_conn(l4->si[0].end); |
| 9652 | |
| 9653 | if (!cli_conn) |
| 9654 | return 0; |
Willy Tarreau | 4a55060 | 2012-12-09 14:53:32 +0100 | [diff] [blame] | 9655 | |
Willy Tarreau | ef38c39 | 2013-07-22 16:29:32 +0200 | [diff] [blame] | 9656 | if (!smp_fetch_base32(px, l4, l7, opt, args, smp, kw)) |
Willy Tarreau | 4a55060 | 2012-12-09 14:53:32 +0100 | [diff] [blame] | 9657 | return 0; |
| 9658 | |
Willy Tarreau | 47ca545 | 2012-12-23 20:22:19 +0100 | [diff] [blame] | 9659 | temp = get_trash_chunk(); |
Willy Tarreau | 4a55060 | 2012-12-09 14:53:32 +0100 | [diff] [blame] | 9660 | memcpy(temp->str + temp->len, &smp->data.uint, sizeof(smp->data.uint)); |
| 9661 | temp->len += sizeof(smp->data.uint); |
| 9662 | |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 9663 | switch (cli_conn->addr.from.ss_family) { |
Willy Tarreau | 4a55060 | 2012-12-09 14:53:32 +0100 | [diff] [blame] | 9664 | case AF_INET: |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 9665 | 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] | 9666 | temp->len += 4; |
| 9667 | break; |
| 9668 | case AF_INET6: |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 9669 | 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] | 9670 | temp->len += 16; |
| 9671 | break; |
| 9672 | default: |
| 9673 | return 0; |
| 9674 | } |
| 9675 | |
| 9676 | smp->data.str = *temp; |
| 9677 | smp->type = SMP_T_BIN; |
| 9678 | return 1; |
| 9679 | } |
| 9680 | |
Willy Tarreau | 2492d5b | 2009-07-11 00:06:00 +0200 | [diff] [blame] | 9681 | static int |
Willy Tarreau | 409bcde | 2013-01-08 00:31:00 +0100 | [diff] [blame] | 9682 | smp_fetch_proto_http(struct proxy *px, struct session *l4, void *l7, unsigned int opt, |
Willy Tarreau | ef38c39 | 2013-07-22 16:29:32 +0200 | [diff] [blame] | 9683 | const struct arg *args, struct sample *smp, const char *kw) |
Willy Tarreau | 2492d5b | 2009-07-11 00:06:00 +0200 | [diff] [blame] | 9684 | { |
Willy Tarreau | 2492d5b | 2009-07-11 00:06:00 +0200 | [diff] [blame] | 9685 | /* Note: hdr_idx.v cannot be NULL in this ACL because the ACL is tagged |
| 9686 | * as a layer7 ACL, which involves automatic allocation of hdr_idx. |
| 9687 | */ |
Willy Tarreau | 2492d5b | 2009-07-11 00:06:00 +0200 | [diff] [blame] | 9688 | |
Willy Tarreau | 24e32d8 | 2012-04-23 23:55:44 +0200 | [diff] [blame] | 9689 | CHECK_HTTP_MESSAGE_FIRST_PERM(); |
Willy Tarreau | 2492d5b | 2009-07-11 00:06:00 +0200 | [diff] [blame] | 9690 | |
Willy Tarreau | f853c46 | 2012-04-23 18:53:56 +0200 | [diff] [blame] | 9691 | smp->type = SMP_T_BOOL; |
Willy Tarreau | 197e10a | 2012-04-23 19:18:42 +0200 | [diff] [blame] | 9692 | smp->data.uint = 1; |
Willy Tarreau | 2492d5b | 2009-07-11 00:06:00 +0200 | [diff] [blame] | 9693 | return 1; |
| 9694 | } |
| 9695 | |
Willy Tarreau | 7f18e52 | 2010-10-22 20:04:13 +0200 | [diff] [blame] | 9696 | /* return a valid test if the current request is the first one on the connection */ |
| 9697 | static int |
Willy Tarreau | 409bcde | 2013-01-08 00:31:00 +0100 | [diff] [blame] | 9698 | smp_fetch_http_first_req(struct proxy *px, struct session *s, void *l7, unsigned int opt, |
Willy Tarreau | ef38c39 | 2013-07-22 16:29:32 +0200 | [diff] [blame] | 9699 | const struct arg *args, struct sample *smp, const char *kw) |
Willy Tarreau | 7f18e52 | 2010-10-22 20:04:13 +0200 | [diff] [blame] | 9700 | { |
| 9701 | if (!s) |
| 9702 | return 0; |
| 9703 | |
Willy Tarreau | f853c46 | 2012-04-23 18:53:56 +0200 | [diff] [blame] | 9704 | smp->type = SMP_T_BOOL; |
Willy Tarreau | 197e10a | 2012-04-23 19:18:42 +0200 | [diff] [blame] | 9705 | smp->data.uint = !(s->txn.flags & TX_NOT_FIRST); |
Willy Tarreau | 7f18e52 | 2010-10-22 20:04:13 +0200 | [diff] [blame] | 9706 | return 1; |
| 9707 | } |
| 9708 | |
Willy Tarreau | 34db108 | 2012-04-19 17:16:54 +0200 | [diff] [blame] | 9709 | /* Accepts exactly 1 argument of type userlist */ |
Krzysztof Piotr Oledzki | f9423ae | 2010-01-29 19:26:18 +0100 | [diff] [blame] | 9710 | static int |
Willy Tarreau | 409bcde | 2013-01-08 00:31:00 +0100 | [diff] [blame] | 9711 | smp_fetch_http_auth(struct proxy *px, struct session *l4, void *l7, unsigned int opt, |
Willy Tarreau | ef38c39 | 2013-07-22 16:29:32 +0200 | [diff] [blame] | 9712 | const struct arg *args, struct sample *smp, const char *kw) |
Krzysztof Piotr Oledzki | f9423ae | 2010-01-29 19:26:18 +0100 | [diff] [blame] | 9713 | { |
| 9714 | |
Willy Tarreau | 24e32d8 | 2012-04-23 23:55:44 +0200 | [diff] [blame] | 9715 | if (!args || args->type != ARGT_USR) |
Willy Tarreau | 34db108 | 2012-04-19 17:16:54 +0200 | [diff] [blame] | 9716 | return 0; |
| 9717 | |
Willy Tarreau | c0239e0 | 2012-04-16 14:42:55 +0200 | [diff] [blame] | 9718 | CHECK_HTTP_MESSAGE_FIRST(); |
Krzysztof Piotr Oledzki | f9423ae | 2010-01-29 19:26:18 +0100 | [diff] [blame] | 9719 | |
Willy Tarreau | c0239e0 | 2012-04-16 14:42:55 +0200 | [diff] [blame] | 9720 | if (!get_http_auth(l4)) |
Krzysztof Piotr Oledzki | f9423ae | 2010-01-29 19:26:18 +0100 | [diff] [blame] | 9721 | return 0; |
| 9722 | |
Willy Tarreau | f853c46 | 2012-04-23 18:53:56 +0200 | [diff] [blame] | 9723 | smp->type = SMP_T_BOOL; |
Thierry FOURNIER | 9eec0a6 | 2014-01-22 18:38:02 +0100 | [diff] [blame] | 9724 | smp->data.uint = check_user(args->data.usr, l4->txn.auth.user, l4->txn.auth.pass); |
Krzysztof Piotr Oledzki | f9423ae | 2010-01-29 19:26:18 +0100 | [diff] [blame] | 9725 | return 1; |
| 9726 | } |
Willy Tarreau | 8797c06 | 2007-05-07 00:55:35 +0200 | [diff] [blame] | 9727 | |
Willy Tarreau | 4a3fd4c | 2012-05-10 23:18:26 +0200 | [diff] [blame] | 9728 | /* Accepts exactly 1 argument of type userlist */ |
| 9729 | static int |
Willy Tarreau | 409bcde | 2013-01-08 00:31:00 +0100 | [diff] [blame] | 9730 | smp_fetch_http_auth_grp(struct proxy *px, struct session *l4, void *l7, unsigned int opt, |
Willy Tarreau | ef38c39 | 2013-07-22 16:29:32 +0200 | [diff] [blame] | 9731 | const struct arg *args, struct sample *smp, const char *kw) |
Willy Tarreau | 4a3fd4c | 2012-05-10 23:18:26 +0200 | [diff] [blame] | 9732 | { |
| 9733 | |
| 9734 | if (!args || args->type != ARGT_USR) |
| 9735 | return 0; |
| 9736 | |
| 9737 | CHECK_HTTP_MESSAGE_FIRST(); |
| 9738 | |
| 9739 | if (!get_http_auth(l4)) |
| 9740 | return 0; |
| 9741 | |
Willy Tarreau | 4a3fd4c | 2012-05-10 23:18:26 +0200 | [diff] [blame] | 9742 | /* if the user does not belong to the userlist or has a wrong password, |
| 9743 | * report that it unconditionally does not match. Otherwise we return |
Thierry FOURNIER | 9eec0a6 | 2014-01-22 18:38:02 +0100 | [diff] [blame] | 9744 | * a string containing the username. |
Willy Tarreau | 4a3fd4c | 2012-05-10 23:18:26 +0200 | [diff] [blame] | 9745 | */ |
Thierry FOURNIER | 9eec0a6 | 2014-01-22 18:38:02 +0100 | [diff] [blame] | 9746 | if (!check_user(args->data.usr, l4->txn.auth.user, l4->txn.auth.pass)) |
| 9747 | return 0; |
| 9748 | |
| 9749 | /* pat_match_auth() will need the user list */ |
| 9750 | smp->ctx.a[0] = args->data.usr; |
| 9751 | |
Thierry FOURNIER | 7654c9f | 2013-12-17 00:20:33 +0100 | [diff] [blame] | 9752 | smp->type = SMP_T_STR; |
| 9753 | smp->flags = SMP_F_CONST; |
Thierry FOURNIER | 9eec0a6 | 2014-01-22 18:38:02 +0100 | [diff] [blame] | 9754 | smp->data.str.str = l4->txn.auth.user; |
| 9755 | smp->data.str.len = strlen(l4->txn.auth.user); |
Willy Tarreau | 4a3fd4c | 2012-05-10 23:18:26 +0200 | [diff] [blame] | 9756 | |
| 9757 | return 1; |
| 9758 | } |
| 9759 | |
Willy Tarreau | 04aa6a9 | 2012-04-06 18:57:55 +0200 | [diff] [blame] | 9760 | /* Try to find the next occurrence of a cookie name in a cookie header value. |
| 9761 | * The lookup begins at <hdr>. The pointer and size of the next occurrence of |
| 9762 | * the cookie value is returned into *value and *value_l, and the function |
| 9763 | * returns a pointer to the next pointer to search from if the value was found. |
| 9764 | * Otherwise if the cookie was not found, NULL is returned and neither value |
| 9765 | * nor value_l are touched. The input <hdr> string should first point to the |
| 9766 | * header's value, and the <hdr_end> pointer must point to the first character |
| 9767 | * not part of the value. <list> must be non-zero if value may represent a list |
| 9768 | * of values (cookie headers). This makes it faster to abort parsing when no |
| 9769 | * list is expected. |
| 9770 | */ |
| 9771 | static char * |
| 9772 | extract_cookie_value(char *hdr, const char *hdr_end, |
| 9773 | char *cookie_name, size_t cookie_name_l, int list, |
Willy Tarreau | 3fb818c | 2012-04-11 17:21:08 +0200 | [diff] [blame] | 9774 | char **value, int *value_l) |
Willy Tarreau | 04aa6a9 | 2012-04-06 18:57:55 +0200 | [diff] [blame] | 9775 | { |
| 9776 | char *equal, *att_end, *att_beg, *val_beg, *val_end; |
| 9777 | char *next; |
| 9778 | |
| 9779 | /* we search at least a cookie name followed by an equal, and more |
| 9780 | * generally something like this : |
| 9781 | * Cookie: NAME1 = VALUE 1 ; NAME2 = VALUE2 ; NAME3 = VALUE3\r\n |
| 9782 | */ |
| 9783 | for (att_beg = hdr; att_beg + cookie_name_l + 1 < hdr_end; att_beg = next + 1) { |
| 9784 | /* Iterate through all cookies on this line */ |
| 9785 | |
| 9786 | while (att_beg < hdr_end && http_is_spht[(unsigned char)*att_beg]) |
| 9787 | att_beg++; |
| 9788 | |
| 9789 | /* find att_end : this is the first character after the last non |
| 9790 | * space before the equal. It may be equal to hdr_end. |
| 9791 | */ |
| 9792 | equal = att_end = att_beg; |
| 9793 | |
| 9794 | while (equal < hdr_end) { |
| 9795 | if (*equal == '=' || *equal == ';' || (list && *equal == ',')) |
| 9796 | break; |
| 9797 | if (http_is_spht[(unsigned char)*equal++]) |
| 9798 | continue; |
| 9799 | att_end = equal; |
| 9800 | } |
| 9801 | |
| 9802 | /* here, <equal> points to '=', a delimitor or the end. <att_end> |
| 9803 | * is between <att_beg> and <equal>, both may be identical. |
| 9804 | */ |
| 9805 | |
| 9806 | /* look for end of cookie if there is an equal sign */ |
| 9807 | if (equal < hdr_end && *equal == '=') { |
| 9808 | /* look for the beginning of the value */ |
| 9809 | val_beg = equal + 1; |
| 9810 | while (val_beg < hdr_end && http_is_spht[(unsigned char)*val_beg]) |
| 9811 | val_beg++; |
| 9812 | |
| 9813 | /* find the end of the value, respecting quotes */ |
| 9814 | next = find_cookie_value_end(val_beg, hdr_end); |
| 9815 | |
| 9816 | /* make val_end point to the first white space or delimitor after the value */ |
| 9817 | val_end = next; |
| 9818 | while (val_end > val_beg && http_is_spht[(unsigned char)*(val_end - 1)]) |
| 9819 | val_end--; |
| 9820 | } else { |
| 9821 | val_beg = val_end = next = equal; |
| 9822 | } |
| 9823 | |
| 9824 | /* We have nothing to do with attributes beginning with '$'. However, |
| 9825 | * they will automatically be removed if a header before them is removed, |
| 9826 | * since they're supposed to be linked together. |
| 9827 | */ |
| 9828 | if (*att_beg == '$') |
| 9829 | continue; |
| 9830 | |
| 9831 | /* Ignore cookies with no equal sign */ |
| 9832 | if (equal == next) |
| 9833 | continue; |
| 9834 | |
| 9835 | /* Now we have the cookie name between att_beg and att_end, and |
| 9836 | * its value between val_beg and val_end. |
| 9837 | */ |
| 9838 | |
| 9839 | if (att_end - att_beg == cookie_name_l && |
| 9840 | memcmp(att_beg, cookie_name, cookie_name_l) == 0) { |
| 9841 | /* let's return this value and indicate where to go on from */ |
| 9842 | *value = val_beg; |
| 9843 | *value_l = val_end - val_beg; |
| 9844 | return next + 1; |
| 9845 | } |
| 9846 | |
| 9847 | /* Set-Cookie headers only have the name in the first attr=value part */ |
| 9848 | if (!list) |
| 9849 | break; |
| 9850 | } |
| 9851 | |
| 9852 | return NULL; |
| 9853 | } |
| 9854 | |
William Lallemand | a43ba4e | 2014-01-28 18:14:25 +0100 | [diff] [blame] | 9855 | /* Fetch a captured HTTP request header. The index is the position of |
| 9856 | * the "capture" option in the configuration file |
| 9857 | */ |
| 9858 | static int |
| 9859 | smp_fetch_capture_header_req(struct proxy *px, struct session *l4, void *l7, unsigned int opt, |
| 9860 | const struct arg *args, struct sample *smp, const char *kw) |
| 9861 | { |
| 9862 | struct proxy *fe = l4->fe; |
| 9863 | struct http_txn *txn = l7; |
| 9864 | int idx; |
| 9865 | |
| 9866 | if (!args || args->type != ARGT_UINT) |
| 9867 | return 0; |
| 9868 | |
| 9869 | idx = args->data.uint; |
| 9870 | |
| 9871 | if (idx > (fe->nb_req_cap - 1) || txn->req.cap == NULL || txn->req.cap[idx] == NULL) |
| 9872 | return 0; |
| 9873 | |
Thierry FOURNIER | 7654c9f | 2013-12-17 00:20:33 +0100 | [diff] [blame] | 9874 | smp->type = SMP_T_STR; |
| 9875 | smp->flags |= SMP_F_CONST; |
William Lallemand | a43ba4e | 2014-01-28 18:14:25 +0100 | [diff] [blame] | 9876 | smp->data.str.str = txn->req.cap[idx]; |
| 9877 | smp->data.str.len = strlen(txn->req.cap[idx]); |
| 9878 | |
| 9879 | return 1; |
| 9880 | } |
| 9881 | |
| 9882 | /* Fetch a captured HTTP response header. The index is the position of |
| 9883 | * the "capture" option in the configuration file |
| 9884 | */ |
| 9885 | static int |
| 9886 | smp_fetch_capture_header_res(struct proxy *px, struct session *l4, void *l7, unsigned int opt, |
| 9887 | const struct arg *args, struct sample *smp, const char *kw) |
| 9888 | { |
| 9889 | struct proxy *fe = l4->fe; |
| 9890 | struct http_txn *txn = l7; |
| 9891 | int idx; |
| 9892 | |
| 9893 | if (!args || args->type != ARGT_UINT) |
| 9894 | return 0; |
| 9895 | |
| 9896 | idx = args->data.uint; |
| 9897 | |
| 9898 | if (idx > (fe->nb_rsp_cap - 1) || txn->rsp.cap == NULL || txn->rsp.cap[idx] == NULL) |
| 9899 | return 0; |
| 9900 | |
Thierry FOURNIER | 7654c9f | 2013-12-17 00:20:33 +0100 | [diff] [blame] | 9901 | smp->type = SMP_T_STR; |
| 9902 | smp->flags |= SMP_F_CONST; |
William Lallemand | a43ba4e | 2014-01-28 18:14:25 +0100 | [diff] [blame] | 9903 | smp->data.str.str = txn->rsp.cap[idx]; |
| 9904 | smp->data.str.len = strlen(txn->rsp.cap[idx]); |
| 9905 | |
| 9906 | return 1; |
| 9907 | } |
| 9908 | |
William Lallemand | 65ad6e1 | 2014-01-31 15:08:02 +0100 | [diff] [blame] | 9909 | /* Extracts the METHOD in the HTTP request, the txn->uri should be filled before the call */ |
| 9910 | static int |
| 9911 | smp_fetch_capture_req_method(struct proxy *px, struct session *l4, void *l7, unsigned int opt, |
| 9912 | const struct arg *args, struct sample *smp, const char *kw) |
| 9913 | { |
| 9914 | struct chunk *temp; |
| 9915 | struct http_txn *txn = l7; |
William Lallemand | 96a7785 | 2014-02-05 00:30:02 +0100 | [diff] [blame] | 9916 | char *ptr; |
William Lallemand | 65ad6e1 | 2014-01-31 15:08:02 +0100 | [diff] [blame] | 9917 | |
| 9918 | if (!txn->uri) |
| 9919 | return 0; |
| 9920 | |
William Lallemand | 96a7785 | 2014-02-05 00:30:02 +0100 | [diff] [blame] | 9921 | ptr = txn->uri; |
William Lallemand | 65ad6e1 | 2014-01-31 15:08:02 +0100 | [diff] [blame] | 9922 | |
William Lallemand | 96a7785 | 2014-02-05 00:30:02 +0100 | [diff] [blame] | 9923 | while (*ptr != ' ' && *ptr != '\0') /* find first space */ |
| 9924 | ptr++; |
William Lallemand | 65ad6e1 | 2014-01-31 15:08:02 +0100 | [diff] [blame] | 9925 | |
William Lallemand | 96a7785 | 2014-02-05 00:30:02 +0100 | [diff] [blame] | 9926 | temp = get_trash_chunk(); |
| 9927 | temp->str = txn->uri; |
| 9928 | temp->len = ptr - txn->uri; |
William Lallemand | 65ad6e1 | 2014-01-31 15:08:02 +0100 | [diff] [blame] | 9929 | smp->data.str = *temp; |
Thierry FOURNIER | 7654c9f | 2013-12-17 00:20:33 +0100 | [diff] [blame] | 9930 | smp->type = SMP_T_STR; |
| 9931 | smp->flags = SMP_F_CONST; |
William Lallemand | 65ad6e1 | 2014-01-31 15:08:02 +0100 | [diff] [blame] | 9932 | |
| 9933 | return 1; |
| 9934 | |
| 9935 | } |
| 9936 | |
| 9937 | /* Extracts the path in the HTTP request, the txn->uri should be filled before the call */ |
| 9938 | static int |
| 9939 | smp_fetch_capture_req_uri(struct proxy *px, struct session *l4, void *l7, unsigned int opt, |
| 9940 | const struct arg *args, struct sample *smp, const char *kw) |
| 9941 | { |
| 9942 | struct chunk *temp; |
| 9943 | struct http_txn *txn = l7; |
| 9944 | char *ptr; |
William Lallemand | 65ad6e1 | 2014-01-31 15:08:02 +0100 | [diff] [blame] | 9945 | |
| 9946 | if (!txn->uri) |
| 9947 | return 0; |
William Lallemand | 96a7785 | 2014-02-05 00:30:02 +0100 | [diff] [blame] | 9948 | |
William Lallemand | 65ad6e1 | 2014-01-31 15:08:02 +0100 | [diff] [blame] | 9949 | ptr = txn->uri; |
| 9950 | |
| 9951 | while (*ptr != ' ' && *ptr != '\0') /* find first space */ |
| 9952 | ptr++; |
William Lallemand | 96a7785 | 2014-02-05 00:30:02 +0100 | [diff] [blame] | 9953 | |
William Lallemand | 65ad6e1 | 2014-01-31 15:08:02 +0100 | [diff] [blame] | 9954 | if (!*ptr) |
| 9955 | return 0; |
| 9956 | |
| 9957 | ptr++; /* skip the space */ |
| 9958 | |
| 9959 | temp = get_trash_chunk(); |
William Lallemand | 96a7785 | 2014-02-05 00:30:02 +0100 | [diff] [blame] | 9960 | ptr = temp->str = http_get_path_from_string(ptr); |
William Lallemand | 65ad6e1 | 2014-01-31 15:08:02 +0100 | [diff] [blame] | 9961 | if (!ptr) |
| 9962 | return 0; |
| 9963 | while (*ptr != ' ' && *ptr != '\0') /* find space after URI */ |
| 9964 | ptr++; |
William Lallemand | 65ad6e1 | 2014-01-31 15:08:02 +0100 | [diff] [blame] | 9965 | |
| 9966 | smp->data.str = *temp; |
William Lallemand | 96a7785 | 2014-02-05 00:30:02 +0100 | [diff] [blame] | 9967 | smp->data.str.len = ptr - temp->str; |
Thierry FOURNIER | 7654c9f | 2013-12-17 00:20:33 +0100 | [diff] [blame] | 9968 | smp->type = SMP_T_STR; |
| 9969 | smp->flags = SMP_F_CONST; |
William Lallemand | 65ad6e1 | 2014-01-31 15:08:02 +0100 | [diff] [blame] | 9970 | |
| 9971 | return 1; |
| 9972 | } |
| 9973 | |
| 9974 | |
Willy Tarreau | e333ec9 | 2012-04-16 16:26:40 +0200 | [diff] [blame] | 9975 | /* 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] | 9976 | * 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] | 9977 | * 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] | 9978 | * 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] | 9979 | * 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] | 9980 | * Accepts exactly 1 argument of type string. If the input options indicate |
| 9981 | * that no iterating is desired, then only last value is fetched if any. |
Willy Tarreau | b169eba | 2013-12-16 15:14:43 +0100 | [diff] [blame] | 9982 | * The returned sample is of type CSTR. |
Willy Tarreau | 04aa6a9 | 2012-04-06 18:57:55 +0200 | [diff] [blame] | 9983 | */ |
| 9984 | static int |
Willy Tarreau | 5153936 | 2012-05-08 12:46:28 +0200 | [diff] [blame] | 9985 | smp_fetch_cookie(struct proxy *px, struct session *l4, void *l7, unsigned int opt, |
Willy Tarreau | ef38c39 | 2013-07-22 16:29:32 +0200 | [diff] [blame] | 9986 | const struct arg *args, struct sample *smp, const char *kw) |
Willy Tarreau | 04aa6a9 | 2012-04-06 18:57:55 +0200 | [diff] [blame] | 9987 | { |
| 9988 | struct http_txn *txn = l7; |
| 9989 | struct hdr_idx *idx = &txn->hdr_idx; |
Willy Tarreau | a890d07 | 2013-04-02 12:01:06 +0200 | [diff] [blame] | 9990 | struct hdr_ctx *ctx = smp->ctx.a[2]; |
Willy Tarreau | e333ec9 | 2012-04-16 16:26:40 +0200 | [diff] [blame] | 9991 | const struct http_msg *msg; |
| 9992 | const char *hdr_name; |
| 9993 | int hdr_name_len; |
| 9994 | char *sol; |
Willy Tarreau | 28376d6 | 2012-04-26 21:26:10 +0200 | [diff] [blame] | 9995 | int occ = 0; |
| 9996 | int found = 0; |
Willy Tarreau | e333ec9 | 2012-04-16 16:26:40 +0200 | [diff] [blame] | 9997 | |
Willy Tarreau | 24e32d8 | 2012-04-23 23:55:44 +0200 | [diff] [blame] | 9998 | if (!args || args->type != ARGT_STR) |
Willy Tarreau | 34db108 | 2012-04-19 17:16:54 +0200 | [diff] [blame] | 9999 | return 0; |
| 10000 | |
Willy Tarreau | a890d07 | 2013-04-02 12:01:06 +0200 | [diff] [blame] | 10001 | if (!ctx) { |
| 10002 | /* first call */ |
| 10003 | ctx = &static_hdr_ctx; |
| 10004 | ctx->idx = 0; |
| 10005 | smp->ctx.a[2] = ctx; |
| 10006 | } |
| 10007 | |
Willy Tarreau | e333ec9 | 2012-04-16 16:26:40 +0200 | [diff] [blame] | 10008 | CHECK_HTTP_MESSAGE_FIRST(); |
Willy Tarreau | 04aa6a9 | 2012-04-06 18:57:55 +0200 | [diff] [blame] | 10009 | |
Willy Tarreau | 32a6f2e | 2012-04-25 10:13:36 +0200 | [diff] [blame] | 10010 | if ((opt & SMP_OPT_DIR) == SMP_OPT_DIR_REQ) { |
Willy Tarreau | e333ec9 | 2012-04-16 16:26:40 +0200 | [diff] [blame] | 10011 | msg = &txn->req; |
| 10012 | hdr_name = "Cookie"; |
| 10013 | hdr_name_len = 6; |
| 10014 | } else { |
| 10015 | msg = &txn->rsp; |
| 10016 | hdr_name = "Set-Cookie"; |
| 10017 | hdr_name_len = 10; |
| 10018 | } |
| 10019 | |
Willy Tarreau | 28376d6 | 2012-04-26 21:26:10 +0200 | [diff] [blame] | 10020 | if (!occ && !(opt & SMP_OPT_ITERATE)) |
| 10021 | /* no explicit occurrence and single fetch => last cookie by default */ |
| 10022 | occ = -1; |
| 10023 | |
| 10024 | /* OK so basically here, either we want only one value and it's the |
| 10025 | * last one, or we want to iterate over all of them and we fetch the |
| 10026 | * next one. |
| 10027 | */ |
| 10028 | |
Willy Tarreau | 9b28e03 | 2012-10-12 23:49:43 +0200 | [diff] [blame] | 10029 | sol = msg->chn->buf->p; |
Willy Tarreau | 3740635 | 2012-04-23 16:16:37 +0200 | [diff] [blame] | 10030 | if (!(smp->flags & SMP_F_NOT_LAST)) { |
Willy Tarreau | 04aa6a9 | 2012-04-06 18:57:55 +0200 | [diff] [blame] | 10031 | /* search for the header from the beginning, we must first initialize |
| 10032 | * the search parameters. |
| 10033 | */ |
Willy Tarreau | 3740635 | 2012-04-23 16:16:37 +0200 | [diff] [blame] | 10034 | smp->ctx.a[0] = NULL; |
Willy Tarreau | 04aa6a9 | 2012-04-06 18:57:55 +0200 | [diff] [blame] | 10035 | ctx->idx = 0; |
| 10036 | } |
| 10037 | |
Willy Tarreau | 28376d6 | 2012-04-26 21:26:10 +0200 | [diff] [blame] | 10038 | smp->flags |= SMP_F_VOL_HDR; |
| 10039 | |
Willy Tarreau | 04aa6a9 | 2012-04-06 18:57:55 +0200 | [diff] [blame] | 10040 | while (1) { |
Willy Tarreau | 3740635 | 2012-04-23 16:16:37 +0200 | [diff] [blame] | 10041 | /* Note: smp->ctx.a[0] == NULL every time we need to fetch a new header */ |
| 10042 | if (!smp->ctx.a[0]) { |
Willy Tarreau | 04aa6a9 | 2012-04-06 18:57:55 +0200 | [diff] [blame] | 10043 | if (!http_find_header2(hdr_name, hdr_name_len, sol, idx, ctx)) |
| 10044 | goto out; |
| 10045 | |
Willy Tarreau | 24e32d8 | 2012-04-23 23:55:44 +0200 | [diff] [blame] | 10046 | if (ctx->vlen < args->data.str.len + 1) |
Willy Tarreau | 04aa6a9 | 2012-04-06 18:57:55 +0200 | [diff] [blame] | 10047 | continue; |
| 10048 | |
Willy Tarreau | 3740635 | 2012-04-23 16:16:37 +0200 | [diff] [blame] | 10049 | smp->ctx.a[0] = ctx->line + ctx->val; |
| 10050 | smp->ctx.a[1] = smp->ctx.a[0] + ctx->vlen; |
Willy Tarreau | 04aa6a9 | 2012-04-06 18:57:55 +0200 | [diff] [blame] | 10051 | } |
| 10052 | |
Thierry FOURNIER | 7654c9f | 2013-12-17 00:20:33 +0100 | [diff] [blame] | 10053 | smp->type = SMP_T_STR; |
| 10054 | smp->flags |= SMP_F_CONST; |
Willy Tarreau | 3740635 | 2012-04-23 16:16:37 +0200 | [diff] [blame] | 10055 | 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] | 10056 | args->data.str.str, args->data.str.len, |
Willy Tarreau | 32a6f2e | 2012-04-25 10:13:36 +0200 | [diff] [blame] | 10057 | (opt & SMP_OPT_DIR) == SMP_OPT_DIR_REQ, |
Willy Tarreau | f853c46 | 2012-04-23 18:53:56 +0200 | [diff] [blame] | 10058 | &smp->data.str.str, |
| 10059 | &smp->data.str.len); |
Willy Tarreau | 3740635 | 2012-04-23 16:16:37 +0200 | [diff] [blame] | 10060 | if (smp->ctx.a[0]) { |
Willy Tarreau | 28376d6 | 2012-04-26 21:26:10 +0200 | [diff] [blame] | 10061 | found = 1; |
| 10062 | if (occ >= 0) { |
| 10063 | /* one value was returned into smp->data.str.{str,len} */ |
| 10064 | smp->flags |= SMP_F_NOT_LAST; |
| 10065 | return 1; |
| 10066 | } |
Willy Tarreau | 04aa6a9 | 2012-04-06 18:57:55 +0200 | [diff] [blame] | 10067 | } |
Willy Tarreau | 28376d6 | 2012-04-26 21:26:10 +0200 | [diff] [blame] | 10068 | /* if we're looking for last occurrence, let's loop */ |
Willy Tarreau | 04aa6a9 | 2012-04-06 18:57:55 +0200 | [diff] [blame] | 10069 | } |
Willy Tarreau | 28376d6 | 2012-04-26 21:26:10 +0200 | [diff] [blame] | 10070 | /* all cookie headers and values were scanned. If we're looking for the |
| 10071 | * last occurrence, we may return it now. |
| 10072 | */ |
Willy Tarreau | 04aa6a9 | 2012-04-06 18:57:55 +0200 | [diff] [blame] | 10073 | out: |
Willy Tarreau | 3740635 | 2012-04-23 16:16:37 +0200 | [diff] [blame] | 10074 | smp->flags &= ~SMP_F_NOT_LAST; |
Willy Tarreau | 28376d6 | 2012-04-26 21:26:10 +0200 | [diff] [blame] | 10075 | return found; |
Willy Tarreau | 04aa6a9 | 2012-04-06 18:57:55 +0200 | [diff] [blame] | 10076 | } |
| 10077 | |
Willy Tarreau | 04aa6a9 | 2012-04-06 18:57:55 +0200 | [diff] [blame] | 10078 | /* 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] | 10079 | * 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] | 10080 | * multiple cookies may be parsed on the same line. The returned sample is of |
| 10081 | * type UINT. Accepts exactly 1 argument of type string. |
Willy Tarreau | 04aa6a9 | 2012-04-06 18:57:55 +0200 | [diff] [blame] | 10082 | */ |
| 10083 | static int |
Willy Tarreau | 409bcde | 2013-01-08 00:31:00 +0100 | [diff] [blame] | 10084 | smp_fetch_cookie_cnt(struct proxy *px, struct session *l4, void *l7, unsigned int opt, |
Willy Tarreau | ef38c39 | 2013-07-22 16:29:32 +0200 | [diff] [blame] | 10085 | const struct arg *args, struct sample *smp, const char *kw) |
Willy Tarreau | 04aa6a9 | 2012-04-06 18:57:55 +0200 | [diff] [blame] | 10086 | { |
| 10087 | struct http_txn *txn = l7; |
| 10088 | struct hdr_idx *idx = &txn->hdr_idx; |
| 10089 | struct hdr_ctx ctx; |
Willy Tarreau | e333ec9 | 2012-04-16 16:26:40 +0200 | [diff] [blame] | 10090 | const struct http_msg *msg; |
| 10091 | const char *hdr_name; |
| 10092 | int hdr_name_len; |
Willy Tarreau | 04aa6a9 | 2012-04-06 18:57:55 +0200 | [diff] [blame] | 10093 | int cnt; |
| 10094 | char *val_beg, *val_end; |
Willy Tarreau | e333ec9 | 2012-04-16 16:26:40 +0200 | [diff] [blame] | 10095 | char *sol; |
Willy Tarreau | 04aa6a9 | 2012-04-06 18:57:55 +0200 | [diff] [blame] | 10096 | |
Willy Tarreau | 24e32d8 | 2012-04-23 23:55:44 +0200 | [diff] [blame] | 10097 | if (!args || args->type != ARGT_STR) |
Willy Tarreau | 34db108 | 2012-04-19 17:16:54 +0200 | [diff] [blame] | 10098 | return 0; |
| 10099 | |
Willy Tarreau | e333ec9 | 2012-04-16 16:26:40 +0200 | [diff] [blame] | 10100 | CHECK_HTTP_MESSAGE_FIRST(); |
| 10101 | |
Willy Tarreau | 32a6f2e | 2012-04-25 10:13:36 +0200 | [diff] [blame] | 10102 | if ((opt & SMP_OPT_DIR) == SMP_OPT_DIR_REQ) { |
Willy Tarreau | e333ec9 | 2012-04-16 16:26:40 +0200 | [diff] [blame] | 10103 | msg = &txn->req; |
| 10104 | hdr_name = "Cookie"; |
| 10105 | hdr_name_len = 6; |
| 10106 | } else { |
| 10107 | msg = &txn->rsp; |
| 10108 | hdr_name = "Set-Cookie"; |
| 10109 | hdr_name_len = 10; |
| 10110 | } |
| 10111 | |
Willy Tarreau | 9b28e03 | 2012-10-12 23:49:43 +0200 | [diff] [blame] | 10112 | sol = msg->chn->buf->p; |
Willy Tarreau | 46787ed | 2012-04-11 17:28:40 +0200 | [diff] [blame] | 10113 | val_end = val_beg = NULL; |
Willy Tarreau | 04aa6a9 | 2012-04-06 18:57:55 +0200 | [diff] [blame] | 10114 | ctx.idx = 0; |
| 10115 | cnt = 0; |
| 10116 | |
| 10117 | while (1) { |
| 10118 | /* Note: val_beg == NULL every time we need to fetch a new header */ |
| 10119 | if (!val_beg) { |
| 10120 | if (!http_find_header2(hdr_name, hdr_name_len, sol, idx, &ctx)) |
| 10121 | break; |
| 10122 | |
Willy Tarreau | 24e32d8 | 2012-04-23 23:55:44 +0200 | [diff] [blame] | 10123 | if (ctx.vlen < args->data.str.len + 1) |
Willy Tarreau | 04aa6a9 | 2012-04-06 18:57:55 +0200 | [diff] [blame] | 10124 | continue; |
| 10125 | |
| 10126 | val_beg = ctx.line + ctx.val; |
| 10127 | val_end = val_beg + ctx.vlen; |
| 10128 | } |
| 10129 | |
Thierry FOURNIER | 7654c9f | 2013-12-17 00:20:33 +0100 | [diff] [blame] | 10130 | smp->type = SMP_T_STR; |
| 10131 | smp->flags |= SMP_F_CONST; |
Willy Tarreau | 04aa6a9 | 2012-04-06 18:57:55 +0200 | [diff] [blame] | 10132 | while ((val_beg = extract_cookie_value(val_beg, val_end, |
Willy Tarreau | 24e32d8 | 2012-04-23 23:55:44 +0200 | [diff] [blame] | 10133 | args->data.str.str, args->data.str.len, |
Willy Tarreau | 32a6f2e | 2012-04-25 10:13:36 +0200 | [diff] [blame] | 10134 | (opt & SMP_OPT_DIR) == SMP_OPT_DIR_REQ, |
Willy Tarreau | f853c46 | 2012-04-23 18:53:56 +0200 | [diff] [blame] | 10135 | &smp->data.str.str, |
| 10136 | &smp->data.str.len))) { |
Willy Tarreau | 04aa6a9 | 2012-04-06 18:57:55 +0200 | [diff] [blame] | 10137 | cnt++; |
| 10138 | } |
| 10139 | } |
| 10140 | |
Willy Tarreau | b169eba | 2013-12-16 15:14:43 +0100 | [diff] [blame] | 10141 | smp->type = SMP_T_UINT; |
Willy Tarreau | f853c46 | 2012-04-23 18:53:56 +0200 | [diff] [blame] | 10142 | smp->data.uint = cnt; |
Willy Tarreau | 3740635 | 2012-04-23 16:16:37 +0200 | [diff] [blame] | 10143 | smp->flags |= SMP_F_VOL_HDR; |
Willy Tarreau | 04aa6a9 | 2012-04-06 18:57:55 +0200 | [diff] [blame] | 10144 | return 1; |
| 10145 | } |
| 10146 | |
Willy Tarreau | 5153936 | 2012-05-08 12:46:28 +0200 | [diff] [blame] | 10147 | /* Fetch an cookie's integer value. The integer value is returned. It |
| 10148 | * takes a mandatory argument of type string. It relies on smp_fetch_cookie(). |
| 10149 | */ |
| 10150 | static int |
| 10151 | smp_fetch_cookie_val(struct proxy *px, struct session *l4, void *l7, unsigned int opt, |
Willy Tarreau | ef38c39 | 2013-07-22 16:29:32 +0200 | [diff] [blame] | 10152 | const struct arg *args, struct sample *smp, const char *kw) |
Willy Tarreau | 5153936 | 2012-05-08 12:46:28 +0200 | [diff] [blame] | 10153 | { |
Willy Tarreau | ef38c39 | 2013-07-22 16:29:32 +0200 | [diff] [blame] | 10154 | int ret = smp_fetch_cookie(px, l4, l7, opt, args, smp, kw); |
Willy Tarreau | 5153936 | 2012-05-08 12:46:28 +0200 | [diff] [blame] | 10155 | |
| 10156 | if (ret > 0) { |
| 10157 | smp->type = SMP_T_UINT; |
| 10158 | smp->data.uint = strl2ic(smp->data.str.str, smp->data.str.len); |
| 10159 | } |
| 10160 | |
| 10161 | return ret; |
| 10162 | } |
| 10163 | |
Willy Tarreau | 8797c06 | 2007-05-07 00:55:35 +0200 | [diff] [blame] | 10164 | /************************************************************************/ |
Willy Tarreau | 1278578 | 2012-04-27 21:37:17 +0200 | [diff] [blame] | 10165 | /* The code below is dedicated to sample fetches */ |
Willy Tarreau | 4a56897 | 2010-05-12 08:08:50 +0200 | [diff] [blame] | 10166 | /************************************************************************/ |
| 10167 | |
David Cournapeau | 16023ee | 2010-12-23 20:55:41 +0900 | [diff] [blame] | 10168 | /* |
| 10169 | * Given a path string and its length, find the position of beginning of the |
| 10170 | * query string. Returns NULL if no query string is found in the path. |
| 10171 | * |
| 10172 | * Example: if path = "/foo/bar/fubar?yo=mama;ye=daddy", and n = 22: |
| 10173 | * |
| 10174 | * find_query_string(path, n) points to "yo=mama;ye=daddy" string. |
| 10175 | */ |
bedis | 4c75cca | 2012-10-05 08:38:24 +0200 | [diff] [blame] | 10176 | 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] | 10177 | { |
| 10178 | char *p; |
Emeric Brun | 485479d | 2010-09-23 18:02:19 +0200 | [diff] [blame] | 10179 | |
bedis | 4c75cca | 2012-10-05 08:38:24 +0200 | [diff] [blame] | 10180 | p = memchr(path, delim, path_l); |
David Cournapeau | 16023ee | 2010-12-23 20:55:41 +0900 | [diff] [blame] | 10181 | return p ? p + 1 : NULL; |
| 10182 | } |
| 10183 | |
bedis | 4c75cca | 2012-10-05 08:38:24 +0200 | [diff] [blame] | 10184 | static inline int is_param_delimiter(char c, char delim) |
David Cournapeau | 16023ee | 2010-12-23 20:55:41 +0900 | [diff] [blame] | 10185 | { |
bedis | 4c75cca | 2012-10-05 08:38:24 +0200 | [diff] [blame] | 10186 | return c == '&' || c == ';' || c == delim; |
David Cournapeau | 16023ee | 2010-12-23 20:55:41 +0900 | [diff] [blame] | 10187 | } |
| 10188 | |
| 10189 | /* |
| 10190 | * Given a url parameter, find the starting position of the first occurence, |
| 10191 | * or NULL if the parameter is not found. |
| 10192 | * |
| 10193 | * Example: if query_string is "yo=mama;ye=daddy" and url_param_name is "ye", |
| 10194 | * the function will return query_string+8. |
| 10195 | */ |
| 10196 | static char* |
| 10197 | find_url_param_pos(char* query_string, size_t query_string_l, |
bedis | 4c75cca | 2012-10-05 08:38:24 +0200 | [diff] [blame] | 10198 | char* url_param_name, size_t url_param_name_l, |
| 10199 | char delim) |
David Cournapeau | 16023ee | 2010-12-23 20:55:41 +0900 | [diff] [blame] | 10200 | { |
| 10201 | char *pos, *last; |
| 10202 | |
| 10203 | pos = query_string; |
| 10204 | last = query_string + query_string_l - url_param_name_l - 1; |
| 10205 | |
| 10206 | while (pos <= last) { |
| 10207 | if (pos[url_param_name_l] == '=') { |
| 10208 | if (memcmp(pos, url_param_name, url_param_name_l) == 0) |
| 10209 | return pos; |
| 10210 | pos += url_param_name_l + 1; |
| 10211 | } |
bedis | 4c75cca | 2012-10-05 08:38:24 +0200 | [diff] [blame] | 10212 | while (pos <= last && !is_param_delimiter(*pos, delim)) |
David Cournapeau | 16023ee | 2010-12-23 20:55:41 +0900 | [diff] [blame] | 10213 | pos++; |
| 10214 | pos++; |
| 10215 | } |
| 10216 | return NULL; |
| 10217 | } |
| 10218 | |
| 10219 | /* |
| 10220 | * Given a url parameter name, returns its value and size into *value and |
| 10221 | * *value_l respectively, and returns non-zero. If the parameter is not found, |
| 10222 | * zero is returned and value/value_l are not touched. |
| 10223 | */ |
| 10224 | static int |
| 10225 | find_url_param_value(char* path, size_t path_l, |
| 10226 | char* url_param_name, size_t url_param_name_l, |
bedis | 4c75cca | 2012-10-05 08:38:24 +0200 | [diff] [blame] | 10227 | char** value, int* value_l, char delim) |
David Cournapeau | 16023ee | 2010-12-23 20:55:41 +0900 | [diff] [blame] | 10228 | { |
| 10229 | char *query_string, *qs_end; |
| 10230 | char *arg_start; |
| 10231 | char *value_start, *value_end; |
| 10232 | |
bedis | 4c75cca | 2012-10-05 08:38:24 +0200 | [diff] [blame] | 10233 | query_string = find_param_list(path, path_l, delim); |
David Cournapeau | 16023ee | 2010-12-23 20:55:41 +0900 | [diff] [blame] | 10234 | if (!query_string) |
| 10235 | return 0; |
| 10236 | |
| 10237 | qs_end = path + path_l; |
| 10238 | arg_start = find_url_param_pos(query_string, qs_end - query_string, |
bedis | 4c75cca | 2012-10-05 08:38:24 +0200 | [diff] [blame] | 10239 | url_param_name, url_param_name_l, |
| 10240 | delim); |
David Cournapeau | 16023ee | 2010-12-23 20:55:41 +0900 | [diff] [blame] | 10241 | if (!arg_start) |
| 10242 | return 0; |
| 10243 | |
| 10244 | value_start = arg_start + url_param_name_l + 1; |
| 10245 | value_end = value_start; |
| 10246 | |
bedis | 4c75cca | 2012-10-05 08:38:24 +0200 | [diff] [blame] | 10247 | while ((value_end < qs_end) && !is_param_delimiter(*value_end, delim)) |
David Cournapeau | 16023ee | 2010-12-23 20:55:41 +0900 | [diff] [blame] | 10248 | value_end++; |
| 10249 | |
| 10250 | *value = value_start; |
| 10251 | *value_l = value_end - value_start; |
Willy Tarreau | 0013433 | 2011-01-04 14:57:34 +0100 | [diff] [blame] | 10252 | return value_end != value_start; |
David Cournapeau | 16023ee | 2010-12-23 20:55:41 +0900 | [diff] [blame] | 10253 | } |
| 10254 | |
| 10255 | static int |
Willy Tarreau | 25c1ebc | 2012-04-25 16:21:44 +0200 | [diff] [blame] | 10256 | smp_fetch_url_param(struct proxy *px, struct session *l4, void *l7, unsigned int opt, |
Willy Tarreau | ef38c39 | 2013-07-22 16:29:32 +0200 | [diff] [blame] | 10257 | const struct arg *args, struct sample *smp, const char *kw) |
David Cournapeau | 16023ee | 2010-12-23 20:55:41 +0900 | [diff] [blame] | 10258 | { |
bedis | 4c75cca | 2012-10-05 08:38:24 +0200 | [diff] [blame] | 10259 | char delim = '?'; |
David Cournapeau | 16023ee | 2010-12-23 20:55:41 +0900 | [diff] [blame] | 10260 | struct http_txn *txn = l7; |
| 10261 | struct http_msg *msg = &txn->req; |
Willy Tarreau | 25c1ebc | 2012-04-25 16:21:44 +0200 | [diff] [blame] | 10262 | |
bedis | 4c75cca | 2012-10-05 08:38:24 +0200 | [diff] [blame] | 10263 | if (!args || args[0].type != ARGT_STR || |
| 10264 | (args[1].type && args[1].type != ARGT_STR)) |
Willy Tarreau | 25c1ebc | 2012-04-25 16:21:44 +0200 | [diff] [blame] | 10265 | return 0; |
| 10266 | |
| 10267 | CHECK_HTTP_MESSAGE_FIRST(); |
David Cournapeau | 16023ee | 2010-12-23 20:55:41 +0900 | [diff] [blame] | 10268 | |
bedis | 4c75cca | 2012-10-05 08:38:24 +0200 | [diff] [blame] | 10269 | if (args[1].type) |
| 10270 | delim = *args[1].data.str.str; |
| 10271 | |
Willy Tarreau | 9b28e03 | 2012-10-12 23:49:43 +0200 | [diff] [blame] | 10272 | 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] | 10273 | args->data.str.str, args->data.str.len, |
| 10274 | &smp->data.str.str, &smp->data.str.len, |
| 10275 | delim)) |
David Cournapeau | 16023ee | 2010-12-23 20:55:41 +0900 | [diff] [blame] | 10276 | return 0; |
| 10277 | |
Thierry FOURNIER | 7654c9f | 2013-12-17 00:20:33 +0100 | [diff] [blame] | 10278 | smp->type = SMP_T_STR; |
| 10279 | smp->flags = SMP_F_VOL_1ST | SMP_F_CONST; |
David Cournapeau | 16023ee | 2010-12-23 20:55:41 +0900 | [diff] [blame] | 10280 | return 1; |
| 10281 | } |
| 10282 | |
Willy Tarreau | a9fddca | 2012-07-31 07:51:48 +0200 | [diff] [blame] | 10283 | /* Return the signed integer value for the specified url parameter (see url_param |
| 10284 | * above). |
| 10285 | */ |
| 10286 | static int |
| 10287 | smp_fetch_url_param_val(struct proxy *px, struct session *l4, void *l7, unsigned int opt, |
Willy Tarreau | ef38c39 | 2013-07-22 16:29:32 +0200 | [diff] [blame] | 10288 | const struct arg *args, struct sample *smp, const char *kw) |
Willy Tarreau | a9fddca | 2012-07-31 07:51:48 +0200 | [diff] [blame] | 10289 | { |
Willy Tarreau | ef38c39 | 2013-07-22 16:29:32 +0200 | [diff] [blame] | 10290 | int ret = smp_fetch_url_param(px, l4, l7, opt, args, smp, kw); |
Willy Tarreau | a9fddca | 2012-07-31 07:51:48 +0200 | [diff] [blame] | 10291 | |
| 10292 | if (ret > 0) { |
| 10293 | smp->type = SMP_T_UINT; |
| 10294 | smp->data.uint = strl2ic(smp->data.str.str, smp->data.str.len); |
| 10295 | } |
| 10296 | |
| 10297 | return ret; |
| 10298 | } |
| 10299 | |
Neil - HAProxy List | 39c63c5 | 2013-11-04 13:48:42 +0000 | [diff] [blame] | 10300 | /* This produces a 32-bit hash of the concatenation of the first occurrence of |
| 10301 | * the Host header followed by the path component if it begins with a slash ('/'). |
| 10302 | * This means that '*' will not be added, resulting in exactly the first Host |
| 10303 | * entry. If no Host header is found, then the path is used. The resulting value |
| 10304 | * is hashed using the url hash followed by a full avalanche hash and provides a |
| 10305 | * 32-bit integer value. This fetch is useful for tracking per-URL activity on |
| 10306 | * high-traffic sites without having to store whole paths. |
| 10307 | * this differs from the base32 functions in that it includes the url parameters |
| 10308 | * as well as the path |
| 10309 | */ |
| 10310 | static int |
| 10311 | smp_fetch_url32(struct proxy *px, struct session *l4, void *l7, unsigned int opt, |
Willy Tarreau | e155ec2 | 2013-11-18 18:33:22 +0100 | [diff] [blame] | 10312 | const struct arg *args, struct sample *smp, const char *kw) |
Neil - HAProxy List | 39c63c5 | 2013-11-04 13:48:42 +0000 | [diff] [blame] | 10313 | { |
| 10314 | struct http_txn *txn = l7; |
| 10315 | struct hdr_ctx ctx; |
| 10316 | unsigned int hash = 0; |
| 10317 | char *ptr, *beg, *end; |
| 10318 | int len; |
| 10319 | |
| 10320 | CHECK_HTTP_MESSAGE_FIRST(); |
| 10321 | |
| 10322 | ctx.idx = 0; |
| 10323 | if (http_find_header2("Host", 4, txn->req.chn->buf->p + txn->req.sol, &txn->hdr_idx, &ctx)) { |
| 10324 | /* OK we have the header value in ctx.line+ctx.val for ctx.vlen bytes */ |
| 10325 | ptr = ctx.line + ctx.val; |
| 10326 | len = ctx.vlen; |
| 10327 | while (len--) |
| 10328 | hash = *(ptr++) + (hash << 6) + (hash << 16) - hash; |
| 10329 | } |
| 10330 | |
| 10331 | /* now retrieve the path */ |
| 10332 | end = txn->req.chn->buf->p + txn->req.sol + txn->req.sl.rq.u + txn->req.sl.rq.u_l; |
| 10333 | beg = http_get_path(txn); |
| 10334 | if (!beg) |
| 10335 | beg = end; |
| 10336 | |
| 10337 | for (ptr = beg; ptr < end ; ptr++); |
| 10338 | |
| 10339 | if (beg < ptr && *beg == '/') { |
| 10340 | while (beg < ptr) |
| 10341 | hash = *(beg++) + (hash << 6) + (hash << 16) - hash; |
| 10342 | } |
| 10343 | hash = full_hash(hash); |
| 10344 | |
| 10345 | smp->type = SMP_T_UINT; |
| 10346 | smp->data.uint = hash; |
| 10347 | smp->flags = SMP_F_VOL_1ST; |
| 10348 | return 1; |
| 10349 | } |
| 10350 | |
| 10351 | /* This concatenates the source address with the 32-bit hash of the Host and |
| 10352 | * URL as returned by smp_fetch_base32(). The idea is to have per-source and |
| 10353 | * per-url counters. The result is a binary block from 8 to 20 bytes depending |
| 10354 | * on the source address length. The URL hash is stored before the address so |
| 10355 | * that in environments where IPv6 is insignificant, truncating the output to |
| 10356 | * 8 bytes would still work. |
| 10357 | */ |
| 10358 | static int |
| 10359 | smp_fetch_url32_src(struct proxy *px, struct session *l4, void *l7, unsigned int opt, |
Willy Tarreau | e155ec2 | 2013-11-18 18:33:22 +0100 | [diff] [blame] | 10360 | const struct arg *args, struct sample *smp, const char *kw) |
Neil - HAProxy List | 39c63c5 | 2013-11-04 13:48:42 +0000 | [diff] [blame] | 10361 | { |
| 10362 | struct chunk *temp; |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 10363 | struct connection *cli_conn = objt_conn(l4->si[0].end); |
Neil - HAProxy List | 39c63c5 | 2013-11-04 13:48:42 +0000 | [diff] [blame] | 10364 | |
Willy Tarreau | e155ec2 | 2013-11-18 18:33:22 +0100 | [diff] [blame] | 10365 | if (!smp_fetch_url32(px, l4, l7, opt, args, smp, kw)) |
Neil - HAProxy List | 39c63c5 | 2013-11-04 13:48:42 +0000 | [diff] [blame] | 10366 | return 0; |
| 10367 | |
| 10368 | temp = get_trash_chunk(); |
| 10369 | memcpy(temp->str + temp->len, &smp->data.uint, sizeof(smp->data.uint)); |
| 10370 | temp->len += sizeof(smp->data.uint); |
| 10371 | |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 10372 | switch (cli_conn->addr.from.ss_family) { |
Neil - HAProxy List | 39c63c5 | 2013-11-04 13:48:42 +0000 | [diff] [blame] | 10373 | case AF_INET: |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 10374 | 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] | 10375 | temp->len += 4; |
| 10376 | break; |
| 10377 | case AF_INET6: |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 10378 | 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] | 10379 | temp->len += 16; |
| 10380 | break; |
| 10381 | default: |
| 10382 | return 0; |
| 10383 | } |
| 10384 | |
| 10385 | smp->data.str = *temp; |
| 10386 | smp->type = SMP_T_BIN; |
| 10387 | return 1; |
| 10388 | } |
| 10389 | |
Willy Tarreau | 185b5c4 | 2012-04-26 15:11:51 +0200 | [diff] [blame] | 10390 | /* This function is used to validate the arguments passed to any "hdr" fetch |
| 10391 | * keyword. These keywords support an optional positive or negative occurrence |
| 10392 | * number. We must ensure that the number is greater than -MAX_HDR_HISTORY. It |
| 10393 | * is assumed that the types are already the correct ones. Returns 0 on error, |
| 10394 | * non-zero if OK. If <err> is not NULL, it will be filled with a pointer to an |
| 10395 | * error message in case of error, that the caller is responsible for freeing. |
| 10396 | * The initial location must either be freeable or NULL. |
| 10397 | */ |
| 10398 | static int val_hdr(struct arg *arg, char **err_msg) |
| 10399 | { |
| 10400 | 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] | 10401 | memprintf(err_msg, "header occurrence must be >= %d", -MAX_HDR_HISTORY); |
Willy Tarreau | 185b5c4 | 2012-04-26 15:11:51 +0200 | [diff] [blame] | 10402 | return 0; |
| 10403 | } |
| 10404 | return 1; |
| 10405 | } |
| 10406 | |
Willy Tarreau | 276fae9 | 2013-07-25 14:36:01 +0200 | [diff] [blame] | 10407 | /* takes an UINT value on input supposed to represent the time since EPOCH, |
| 10408 | * adds an optional offset found in args[0] and emits a string representing |
| 10409 | * the date in RFC-1123/5322 format. |
| 10410 | */ |
| 10411 | static int sample_conv_http_date(const struct arg *args, struct sample *smp) |
| 10412 | { |
| 10413 | const char day[7][4] = { "Mon", "Tue", "Wed", "Thu", "Fri", "Sat", "Sun" }; |
| 10414 | const char mon[12][4] = { "Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec" }; |
| 10415 | struct chunk *temp; |
| 10416 | struct tm *tm; |
| 10417 | time_t curr_date = smp->data.uint; |
| 10418 | |
| 10419 | /* add offset */ |
| 10420 | if (args && (args[0].type == ARGT_SINT || args[0].type == ARGT_UINT)) |
| 10421 | curr_date += args[0].data.sint; |
| 10422 | |
| 10423 | tm = gmtime(&curr_date); |
| 10424 | |
| 10425 | temp = get_trash_chunk(); |
| 10426 | temp->len = snprintf(temp->str, temp->size - temp->len, |
| 10427 | "%s, %02d %s %04d %02d:%02d:%02d GMT", |
| 10428 | day[tm->tm_wday], tm->tm_mday, mon[tm->tm_mon], 1900+tm->tm_year, |
| 10429 | tm->tm_hour, tm->tm_min, tm->tm_sec); |
| 10430 | |
| 10431 | smp->data.str = *temp; |
| 10432 | smp->type = SMP_T_STR; |
| 10433 | return 1; |
| 10434 | } |
| 10435 | |
Willy Tarreau | 4a56897 | 2010-05-12 08:08:50 +0200 | [diff] [blame] | 10436 | /************************************************************************/ |
Willy Tarreau | 25c1ebc | 2012-04-25 16:21:44 +0200 | [diff] [blame] | 10437 | /* All supported ACL keywords must be declared here. */ |
| 10438 | /************************************************************************/ |
| 10439 | |
| 10440 | /* Note: must not be declared <const> as its list will be overwritten. |
| 10441 | * Please take care of keeping this list alphabetically sorted. |
| 10442 | */ |
Willy Tarreau | dc13c11 | 2013-06-21 23:16:39 +0200 | [diff] [blame] | 10443 | static struct acl_kw_list acl_kws = {ILH, { |
Thierry FOURNIER | c5a4e98 | 2014-03-05 16:07:08 +0100 | [diff] [blame] | 10444 | { "base", "base", PAT_MATCH_STR }, |
| 10445 | { "base_beg", "base", PAT_MATCH_BEG }, |
| 10446 | { "base_dir", "base", PAT_MATCH_DIR }, |
| 10447 | { "base_dom", "base", PAT_MATCH_DOM }, |
| 10448 | { "base_end", "base", PAT_MATCH_END }, |
| 10449 | { "base_len", "base", PAT_MATCH_LEN }, |
| 10450 | { "base_reg", "base", PAT_MATCH_REG }, |
| 10451 | { "base_sub", "base", PAT_MATCH_SUB }, |
Willy Tarreau | a7ad50c | 2012-04-29 15:39:40 +0200 | [diff] [blame] | 10452 | |
Thierry FOURNIER | c5a4e98 | 2014-03-05 16:07:08 +0100 | [diff] [blame] | 10453 | { "cook", "req.cook", PAT_MATCH_STR }, |
| 10454 | { "cook_beg", "req.cook", PAT_MATCH_BEG }, |
| 10455 | { "cook_dir", "req.cook", PAT_MATCH_DIR }, |
| 10456 | { "cook_dom", "req.cook", PAT_MATCH_DOM }, |
| 10457 | { "cook_end", "req.cook", PAT_MATCH_END }, |
| 10458 | { "cook_len", "req.cook", PAT_MATCH_LEN }, |
| 10459 | { "cook_reg", "req.cook", PAT_MATCH_REG }, |
| 10460 | { "cook_sub", "req.cook", PAT_MATCH_SUB }, |
Willy Tarreau | 25c1ebc | 2012-04-25 16:21:44 +0200 | [diff] [blame] | 10461 | |
Thierry FOURNIER | c5a4e98 | 2014-03-05 16:07:08 +0100 | [diff] [blame] | 10462 | { "hdr", "req.hdr", PAT_MATCH_STR }, |
| 10463 | { "hdr_beg", "req.hdr", PAT_MATCH_BEG }, |
| 10464 | { "hdr_dir", "req.hdr", PAT_MATCH_DIR }, |
| 10465 | { "hdr_dom", "req.hdr", PAT_MATCH_DOM }, |
| 10466 | { "hdr_end", "req.hdr", PAT_MATCH_END }, |
| 10467 | { "hdr_len", "req.hdr", PAT_MATCH_LEN }, |
| 10468 | { "hdr_reg", "req.hdr", PAT_MATCH_REG }, |
| 10469 | { "hdr_sub", "req.hdr", PAT_MATCH_SUB }, |
Willy Tarreau | 25c1ebc | 2012-04-25 16:21:44 +0200 | [diff] [blame] | 10470 | |
Thierry FOURNIER | c5a4e98 | 2014-03-05 16:07:08 +0100 | [diff] [blame] | 10471 | /* these two declarations uses strings with list storage (in place |
| 10472 | * of tree storage). The basic match is PAT_MATCH_STR, but the indexation |
| 10473 | * and delete functions are relative to the list management. The parse |
| 10474 | * and match method are related to the corresponding fetch methods. This |
| 10475 | * is very particular ACL declaration mode. |
| 10476 | */ |
| 10477 | { "http_auth_group", NULL, PAT_MATCH_STR, NULL, pat_idx_list_str, pat_del_list_ptr, NULL, pat_match_auth }, |
| 10478 | { "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] | 10479 | |
Thierry FOURNIER | c5a4e98 | 2014-03-05 16:07:08 +0100 | [diff] [blame] | 10480 | { "path", "path", PAT_MATCH_STR }, |
| 10481 | { "path_beg", "path", PAT_MATCH_BEG }, |
| 10482 | { "path_dir", "path", PAT_MATCH_DIR }, |
| 10483 | { "path_dom", "path", PAT_MATCH_DOM }, |
| 10484 | { "path_end", "path", PAT_MATCH_END }, |
| 10485 | { "path_len", "path", PAT_MATCH_LEN }, |
| 10486 | { "path_reg", "path", PAT_MATCH_REG }, |
| 10487 | { "path_sub", "path", PAT_MATCH_SUB }, |
Willy Tarreau | 25c1ebc | 2012-04-25 16:21:44 +0200 | [diff] [blame] | 10488 | |
Thierry FOURNIER | c5a4e98 | 2014-03-05 16:07:08 +0100 | [diff] [blame] | 10489 | { "req_ver", "req.ver", PAT_MATCH_STR }, |
| 10490 | { "resp_ver", "res.ver", PAT_MATCH_STR }, |
Willy Tarreau | 25c1ebc | 2012-04-25 16:21:44 +0200 | [diff] [blame] | 10491 | |
Thierry FOURNIER | c5a4e98 | 2014-03-05 16:07:08 +0100 | [diff] [blame] | 10492 | { "scook", "res.cook", PAT_MATCH_STR }, |
| 10493 | { "scook_beg", "res.cook", PAT_MATCH_BEG }, |
| 10494 | { "scook_dir", "res.cook", PAT_MATCH_DIR }, |
| 10495 | { "scook_dom", "res.cook", PAT_MATCH_DOM }, |
| 10496 | { "scook_end", "res.cook", PAT_MATCH_END }, |
| 10497 | { "scook_len", "res.cook", PAT_MATCH_LEN }, |
| 10498 | { "scook_reg", "res.cook", PAT_MATCH_REG }, |
| 10499 | { "scook_sub", "res.cook", PAT_MATCH_SUB }, |
Willy Tarreau | 25c1ebc | 2012-04-25 16:21:44 +0200 | [diff] [blame] | 10500 | |
Thierry FOURNIER | c5a4e98 | 2014-03-05 16:07:08 +0100 | [diff] [blame] | 10501 | { "shdr", "res.hdr", PAT_MATCH_STR }, |
| 10502 | { "shdr_beg", "res.hdr", PAT_MATCH_BEG }, |
| 10503 | { "shdr_dir", "res.hdr", PAT_MATCH_DIR }, |
| 10504 | { "shdr_dom", "res.hdr", PAT_MATCH_DOM }, |
| 10505 | { "shdr_end", "res.hdr", PAT_MATCH_END }, |
| 10506 | { "shdr_len", "res.hdr", PAT_MATCH_LEN }, |
| 10507 | { "shdr_reg", "res.hdr", PAT_MATCH_REG }, |
| 10508 | { "shdr_sub", "res.hdr", PAT_MATCH_SUB }, |
Willy Tarreau | 25c1ebc | 2012-04-25 16:21:44 +0200 | [diff] [blame] | 10509 | |
Thierry FOURNIER | c5a4e98 | 2014-03-05 16:07:08 +0100 | [diff] [blame] | 10510 | { "url", "url", PAT_MATCH_STR }, |
| 10511 | { "url_beg", "url", PAT_MATCH_BEG }, |
| 10512 | { "url_dir", "url", PAT_MATCH_DIR }, |
| 10513 | { "url_dom", "url", PAT_MATCH_DOM }, |
| 10514 | { "url_end", "url", PAT_MATCH_END }, |
| 10515 | { "url_len", "url", PAT_MATCH_LEN }, |
| 10516 | { "url_reg", "url", PAT_MATCH_REG }, |
| 10517 | { "url_sub", "url", PAT_MATCH_SUB }, |
Willy Tarreau | 25c1ebc | 2012-04-25 16:21:44 +0200 | [diff] [blame] | 10518 | |
Thierry FOURNIER | c5a4e98 | 2014-03-05 16:07:08 +0100 | [diff] [blame] | 10519 | { "urlp", "urlp", PAT_MATCH_STR }, |
| 10520 | { "urlp_beg", "urlp", PAT_MATCH_BEG }, |
| 10521 | { "urlp_dir", "urlp", PAT_MATCH_DIR }, |
| 10522 | { "urlp_dom", "urlp", PAT_MATCH_DOM }, |
| 10523 | { "urlp_end", "urlp", PAT_MATCH_END }, |
| 10524 | { "urlp_len", "urlp", PAT_MATCH_LEN }, |
| 10525 | { "urlp_reg", "urlp", PAT_MATCH_REG }, |
| 10526 | { "urlp_sub", "urlp", PAT_MATCH_SUB }, |
Willy Tarreau | 25c1ebc | 2012-04-25 16:21:44 +0200 | [diff] [blame] | 10527 | |
Willy Tarreau | 8ed669b | 2013-01-11 15:49:37 +0100 | [diff] [blame] | 10528 | { /* END */ }, |
Willy Tarreau | 25c1ebc | 2012-04-25 16:21:44 +0200 | [diff] [blame] | 10529 | }}; |
| 10530 | |
| 10531 | /************************************************************************/ |
| 10532 | /* All supported pattern keywords must be declared here. */ |
Willy Tarreau | 4a56897 | 2010-05-12 08:08:50 +0200 | [diff] [blame] | 10533 | /************************************************************************/ |
| 10534 | /* Note: must not be declared <const> as its list will be overwritten */ |
Willy Tarreau | dc13c11 | 2013-06-21 23:16:39 +0200 | [diff] [blame] | 10535 | static struct sample_fetch_kw_list sample_fetch_keywords = {ILH, { |
Thierry FOURNIER | 7654c9f | 2013-12-17 00:20:33 +0100 | [diff] [blame] | 10536 | { "base", smp_fetch_base, 0, NULL, SMP_T_STR, SMP_USE_HRQHV }, |
Willy Tarreau | 409bcde | 2013-01-08 00:31:00 +0100 | [diff] [blame] | 10537 | { "base32", smp_fetch_base32, 0, NULL, SMP_T_UINT, SMP_USE_HRQHV }, |
| 10538 | { "base32+src", smp_fetch_base32_src, 0, NULL, SMP_T_BIN, SMP_USE_HRQHV }, |
| 10539 | |
Thierry FOURNIER | 7654c9f | 2013-12-17 00:20:33 +0100 | [diff] [blame] | 10540 | { "capture.req.uri", smp_fetch_capture_req_uri, 0, NULL, SMP_T_STR, SMP_USE_HRQHP }, |
| 10541 | { "capture.req.method", smp_fetch_capture_req_method, 0, NULL, SMP_T_STR, SMP_USE_HRQHP }, |
William Lallemand | 65ad6e1 | 2014-01-31 15:08:02 +0100 | [diff] [blame] | 10542 | |
William Lallemand | a43ba4e | 2014-01-28 18:14:25 +0100 | [diff] [blame] | 10543 | /* capture are allocated and are permanent in the session */ |
Thierry FOURNIER | 7654c9f | 2013-12-17 00:20:33 +0100 | [diff] [blame] | 10544 | { "capture.req.hdr", smp_fetch_capture_header_req, ARG1(1, UINT), NULL, SMP_T_STR, SMP_USE_HRQHP }, |
| 10545 | { "capture.res.hdr", smp_fetch_capture_header_res, ARG1(1, UINT), NULL, SMP_T_STR, SMP_USE_HRSHP }, |
William Lallemand | a43ba4e | 2014-01-28 18:14:25 +0100 | [diff] [blame] | 10546 | |
Willy Tarreau | 409bcde | 2013-01-08 00:31:00 +0100 | [diff] [blame] | 10547 | /* cookie is valid in both directions (eg: for "stick ...") but cook* |
| 10548 | * are only here to match the ACL's name, are request-only and are used |
| 10549 | * for ACL compatibility only. |
| 10550 | */ |
Thierry FOURNIER | 7654c9f | 2013-12-17 00:20:33 +0100 | [diff] [blame] | 10551 | { "cook", smp_fetch_cookie, ARG1(0,STR), NULL, SMP_T_STR, SMP_USE_HRQHV }, |
| 10552 | { "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] | 10553 | { "cook_cnt", smp_fetch_cookie_cnt, ARG1(0,STR), NULL, SMP_T_UINT, SMP_USE_HRQHV }, |
| 10554 | { "cook_val", smp_fetch_cookie_val, ARG1(0,STR), NULL, SMP_T_UINT, SMP_USE_HRQHV }, |
| 10555 | |
| 10556 | /* hdr is valid in both directions (eg: for "stick ...") but hdr_* are |
| 10557 | * only here to match the ACL's name, are request-only and are used for |
| 10558 | * ACL compatibility only. |
| 10559 | */ |
Thierry FOURNIER | 7654c9f | 2013-12-17 00:20:33 +0100 | [diff] [blame] | 10560 | { "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] | 10561 | { "hdr_cnt", smp_fetch_hdr_cnt, ARG1(0,STR), NULL, SMP_T_UINT, SMP_USE_HRQHV }, |
| 10562 | { "hdr_ip", smp_fetch_hdr_ip, ARG2(0,STR,SINT), val_hdr, SMP_T_IPV4, SMP_USE_HRQHV }, |
| 10563 | { "hdr_val", smp_fetch_hdr_val, ARG2(0,STR,SINT), val_hdr, SMP_T_UINT, SMP_USE_HRQHV }, |
| 10564 | |
Willy Tarreau | 0a0daec | 2013-04-02 22:44:58 +0200 | [diff] [blame] | 10565 | { "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] | 10566 | { "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] | 10567 | { "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] | 10568 | { "method", smp_fetch_meth, 0, NULL, SMP_T_METH, SMP_USE_HRQHP }, |
Thierry FOURNIER | 7654c9f | 2013-12-17 00:20:33 +0100 | [diff] [blame] | 10569 | { "path", smp_fetch_path, 0, NULL, SMP_T_STR, SMP_USE_HRQHV }, |
Willy Tarreau | 18ed256 | 2013-01-14 15:56:36 +0100 | [diff] [blame] | 10570 | |
| 10571 | /* HTTP protocol on the request path */ |
| 10572 | { "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] | 10573 | { "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] | 10574 | |
| 10575 | /* HTTP version on the request path */ |
Thierry FOURNIER | 7654c9f | 2013-12-17 00:20:33 +0100 | [diff] [blame] | 10576 | { "req.ver", smp_fetch_rqver, 0, NULL, SMP_T_STR, SMP_USE_HRQHV }, |
| 10577 | { "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] | 10578 | |
| 10579 | /* HTTP version on the response path */ |
Thierry FOURNIER | 7654c9f | 2013-12-17 00:20:33 +0100 | [diff] [blame] | 10580 | { "res.ver", smp_fetch_stver, 0, NULL, SMP_T_STR, SMP_USE_HRSHV }, |
| 10581 | { "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] | 10582 | |
Willy Tarreau | 18ed256 | 2013-01-14 15:56:36 +0100 | [diff] [blame] | 10583 | /* 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] | 10584 | { "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] | 10585 | { "req.cook_cnt", smp_fetch_cookie_cnt, ARG1(0,STR), NULL, SMP_T_UINT, SMP_USE_HRQHV }, |
| 10586 | { "req.cook_val", smp_fetch_cookie_val, ARG1(0,STR), NULL, SMP_T_UINT, SMP_USE_HRQHV }, |
| 10587 | |
Thierry FOURNIER | 7654c9f | 2013-12-17 00:20:33 +0100 | [diff] [blame] | 10588 | { "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] | 10589 | { "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] | 10590 | { "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] | 10591 | { "req.hdr_cnt", smp_fetch_hdr_cnt, ARG1(0,STR), NULL, SMP_T_UINT, SMP_USE_HRQHV }, |
| 10592 | { "req.hdr_ip", smp_fetch_hdr_ip, ARG2(0,STR,SINT), val_hdr, SMP_T_IPV4, SMP_USE_HRQHV }, |
| 10593 | { "req.hdr_val", smp_fetch_hdr_val, ARG2(0,STR,SINT), val_hdr, SMP_T_UINT, SMP_USE_HRQHV }, |
| 10594 | |
| 10595 | /* 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] | 10596 | { "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] | 10597 | { "res.cook_cnt", smp_fetch_cookie_cnt, ARG1(0,STR), NULL, SMP_T_UINT, SMP_USE_HRSHV }, |
| 10598 | { "res.cook_val", smp_fetch_cookie_val, ARG1(0,STR), NULL, SMP_T_UINT, SMP_USE_HRSHV }, |
| 10599 | |
Thierry FOURNIER | 7654c9f | 2013-12-17 00:20:33 +0100 | [diff] [blame] | 10600 | { "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] | 10601 | { "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] | 10602 | { "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] | 10603 | { "res.hdr_cnt", smp_fetch_hdr_cnt, ARG1(0,STR), NULL, SMP_T_UINT, SMP_USE_HRSHV }, |
| 10604 | { "res.hdr_ip", smp_fetch_hdr_ip, ARG2(0,STR,SINT), val_hdr, SMP_T_IPV4, SMP_USE_HRSHV }, |
| 10605 | { "res.hdr_val", smp_fetch_hdr_val, ARG2(0,STR,SINT), val_hdr, SMP_T_UINT, SMP_USE_HRSHV }, |
| 10606 | |
Willy Tarreau | 409bcde | 2013-01-08 00:31:00 +0100 | [diff] [blame] | 10607 | /* 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] | 10608 | { "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] | 10609 | { "scook_cnt", smp_fetch_cookie_cnt, ARG1(0,STR), NULL, SMP_T_UINT, SMP_USE_HRSHV }, |
| 10610 | { "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] | 10611 | { "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] | 10612 | |
| 10613 | /* 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] | 10614 | { "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] | 10615 | { "shdr_cnt", smp_fetch_hdr_cnt, ARG1(0,STR), NULL, SMP_T_UINT, SMP_USE_HRSHV }, |
| 10616 | { "shdr_ip", smp_fetch_hdr_ip, ARG2(0,STR,SINT), val_hdr, SMP_T_IPV4, SMP_USE_HRSHV }, |
| 10617 | { "shdr_val", smp_fetch_hdr_val, ARG2(0,STR,SINT), val_hdr, SMP_T_UINT, SMP_USE_HRSHV }, |
| 10618 | |
| 10619 | { "status", smp_fetch_stcode, 0, NULL, SMP_T_UINT, SMP_USE_HRSHP }, |
Thierry FOURNIER | 7654c9f | 2013-12-17 00:20:33 +0100 | [diff] [blame] | 10620 | { "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] | 10621 | { "url32", smp_fetch_url32, 0, NULL, SMP_T_UINT, SMP_USE_HRQHV }, |
| 10622 | { "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] | 10623 | { "url_ip", smp_fetch_url_ip, 0, NULL, SMP_T_IPV4, SMP_USE_HRQHV }, |
| 10624 | { "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] | 10625 | { "url_param", smp_fetch_url_param, ARG2(1,STR,STR), NULL, SMP_T_STR, SMP_USE_HRQHV }, |
| 10626 | { "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] | 10627 | { "urlp_val", smp_fetch_url_param_val, ARG2(1,STR,STR), NULL, SMP_T_UINT, SMP_USE_HRQHV }, |
| 10628 | { /* END */ }, |
Willy Tarreau | 4a56897 | 2010-05-12 08:08:50 +0200 | [diff] [blame] | 10629 | }}; |
| 10630 | |
Willy Tarreau | 8797c06 | 2007-05-07 00:55:35 +0200 | [diff] [blame] | 10631 | |
Willy Tarreau | 276fae9 | 2013-07-25 14:36:01 +0200 | [diff] [blame] | 10632 | /* Note: must not be declared <const> as its list will be overwritten */ |
| 10633 | static struct sample_conv_kw_list sample_conv_kws = {ILH, { |
| 10634 | { "http_date", sample_conv_http_date, ARG1(0,SINT), NULL, SMP_T_UINT, SMP_T_STR }, |
| 10635 | { NULL, NULL, 0, 0, 0 }, |
| 10636 | }}; |
| 10637 | |
Willy Tarreau | 8797c06 | 2007-05-07 00:55:35 +0200 | [diff] [blame] | 10638 | __attribute__((constructor)) |
| 10639 | static void __http_protocol_init(void) |
| 10640 | { |
| 10641 | acl_register_keywords(&acl_kws); |
Willy Tarreau | 1278578 | 2012-04-27 21:37:17 +0200 | [diff] [blame] | 10642 | sample_register_fetches(&sample_fetch_keywords); |
Willy Tarreau | 276fae9 | 2013-07-25 14:36:01 +0200 | [diff] [blame] | 10643 | sample_register_convs(&sample_conv_kws); |
Willy Tarreau | 8797c06 | 2007-05-07 00:55:35 +0200 | [diff] [blame] | 10644 | } |
| 10645 | |
| 10646 | |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 10647 | /* |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 10648 | * Local variables: |
| 10649 | * c-indent-level: 8 |
| 10650 | * c-basic-offset: 8 |
| 10651 | * End: |
| 10652 | */ |