blob: a73a0a3d792cac8d346ea066e4faf8868e8b8f36 [file] [log] [blame]
Willy Tarreaubaaee002006-06-26 02:48:02 +02001/*
Willy Tarreau3667d5d2009-10-18 19:50:43 +02002 * include/types/proto_http.h
3 * This file contains HTTP protocol definitions.
4 *
Willy Tarreauff011f22011-01-06 17:51:27 +01005 * Copyright (C) 2000-2011 Willy Tarreau - w@1wt.eu
Willy Tarreau3667d5d2009-10-18 19:50:43 +02006 *
7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation, version 2.1
10 * exclusively.
11 *
12 * This library is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details.
16 *
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with this library; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20 */
Willy Tarreaubaaee002006-06-26 02:48:02 +020021
22#ifndef _TYPES_PROTO_HTTP_H
23#define _TYPES_PROTO_HTTP_H
24
Willy Tarreau35b51c62018-09-10 15:38:55 +020025#include <common/buf.h>
Willy Tarreaue3ba5f02006-06-29 18:54:54 +020026#include <common/config.h>
Willy Tarreau35b51c62018-09-10 15:38:55 +020027#include <common/http.h>
Thierry FOURNIERa054d412013-10-16 16:19:38 +020028#include <common/mini-clist.h>
Thierry FOURNIERf4e61292014-06-19 13:37:01 +020029#include <common/regex.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020030
Willy Tarreaudb4893d2017-09-21 08:40:02 +020031#include <types/channel.h>
Christopher Fauletd7c91962015-04-30 11:48:27 +020032#include <types/filters.h>
Willy Tarreau35b51c62018-09-10 15:38:55 +020033//#include <types/sample.h>
Willy Tarreau3bac9ff2007-03-18 17:31:28 +010034
Willy Tarreaufcffa692010-01-10 14:21:19 +010035/* These are the flags that are found in txn->flags */
Willy Tarreau3d300592007-03-18 18:34:41 +010036
37/* action flags */
38#define TX_CLDENY 0x00000001 /* a client header matches a deny regex */
39#define TX_CLALLOW 0x00000002 /* a client header matches an allow regex */
40#define TX_SVDENY 0x00000004 /* a server header matches a deny regex */
41#define TX_SVALLOW 0x00000008 /* a server header matches an allow regex */
Willy Tarreau87b09662015-04-03 00:22:06 +020042#define TX_CLTARPIT 0x00000010 /* the transaction is tarpitted (anti-dos) */
Willy Tarreaub608feb2010-01-02 22:47:18 +010043
Willy Tarreau92954fd2010-10-06 19:38:55 +020044/* transaction flags dedicated to cookies : bits values 0x20 to 0x80 (0-7 shift 5) */
Willy Tarreau87b09662015-04-03 00:22:06 +020045#define TX_CK_NONE 0x00000000 /* this transaction had no cookie */
46#define TX_CK_INVALID 0x00000020 /* this transaction had a cookie which matches no server */
47#define TX_CK_DOWN 0x00000040 /* this transaction had cookie matching a down server */
48#define TX_CK_VALID 0x00000060 /* this transaction had cookie matching a valid server */
49#define TX_CK_EXPIRED 0x00000080 /* this transaction had an expired cookie (idle for too long) */
50#define TX_CK_OLD 0x000000A0 /* this transaction had too old a cookie (offered too long ago) */
51#define TX_CK_UNUSED 0x000000C0 /* this transaction had a cookie but it was not used (eg: use-server was preferred) */
52#define TX_CK_MASK 0x000000E0 /* mask to get this transaction's cookie flags */
Willy Tarreau92954fd2010-10-06 19:38:55 +020053#define TX_CK_SHIFT 5 /* bit shift */
Willy Tarreau3d300592007-03-18 18:34:41 +010054
Willy Tarreauf1348312010-10-07 15:54:11 +020055/* response cookie information, bits values 0x100 to 0x700 (0-7 shift 8) */
56#define TX_SCK_NONE 0x00000000 /* no cookie found in the response */
57#define TX_SCK_FOUND 0x00000100 /* a persistence cookie was found and forwarded */
58#define TX_SCK_DELETED 0x00000200 /* an existing persistence cookie was deleted */
59#define TX_SCK_INSERTED 0x00000300 /* a persistence cookie was inserted */
60#define TX_SCK_REPLACED 0x00000400 /* a persistence cookie was present and rewritten */
61#define TX_SCK_UPDATED 0x00000500 /* an expirable persistence cookie was updated */
Willy Tarreau3d300592007-03-18 18:34:41 +010062#define TX_SCK_MASK 0x00000700 /* mask to get the set-cookie field */
Willy Tarreau3d300592007-03-18 18:34:41 +010063#define TX_SCK_SHIFT 8 /* bit shift */
Willy Tarreauf1348312010-10-07 15:54:11 +020064
65#define TX_SCK_PRESENT 0x00000800 /* a cookie was found in the server's response */
Willy Tarreau3d300592007-03-18 18:34:41 +010066
67/* cacheability management, bits values 0x1000 to 0x3000 (0-3 shift 12) */
68#define TX_CACHEABLE 0x00001000 /* at least part of the response is cacheable */
69#define TX_CACHE_COOK 0x00002000 /* a cookie in the response is cacheable */
Willy Tarreau0ad8e0d2017-12-22 15:03:36 +010070#define TX_CACHE_IGNORE 0x00004000 /* do not retrieve object from cache */
Willy Tarreau3d300592007-03-18 18:34:41 +010071#define TX_CACHE_SHIFT 12 /* bit shift */
72
Christopher Fauletc41547b2019-07-16 14:32:23 +020073/* Unused: 0x00008000, 0x00010000, 0x00020000, 0x00080000 */
Christopher Faulete6006242017-03-10 11:52:44 +010074
Christopher Fauletc41547b2019-07-16 14:32:23 +020075#define TX_CON_WANT_TUN 0x00100000 /* Will be a tunnel (CONNECT or 101-Switching-Protocol) */
Christopher Faulete6006242017-03-10 11:52:44 +010076
Christopher Fauletc41547b2019-07-16 14:32:23 +020077/* unused: 0x00200000, 0x00400000, 0x00800000, 0x01000000, 0x02000000 */
Christopher Faulete6006242017-03-10 11:52:44 +010078
Willy Tarreaufcffa692010-01-10 14:21:19 +010079#define TX_WAIT_NEXT_RQ 0x04000000 /* waiting for the second request to start, use keep-alive timeout */
Willy Tarreau5b154472009-12-21 20:11:07 +010080
Christopher Fauletc41547b2019-07-16 14:32:23 +020081/* unused: 0x08000000, 0x10000000, 0x20000000 */
82
Willy Tarreau88d349d2010-01-25 12:15:43 +010083#define TX_USE_PX_CONN 0x40000000 /* Use "Proxy-Connection" instead of "Connection" */
Willy Tarreaubbf0b372010-01-18 16:54:40 +010084
Willy Tarreau92954fd2010-10-06 19:38:55 +020085/* used only for keep-alive purposes, to indicate we're on a second transaction */
86#define TX_NOT_FIRST 0x80000000 /* the transaction is not the first one */
87/* no more room for transaction flags ! */
Willy Tarreaubbf0b372010-01-18 16:54:40 +010088
Willy Tarreau8d5d7f22007-01-21 19:16:41 +010089/* The HTTP parser is more complex than it looks like, because we have to
90 * support multi-line headers and any number of spaces between the colon and
91 * the value.
92 *
93 * All those examples must work :
94
95 Hdr1:val1\r\n
96 Hdr1: val1\r\n
97 Hdr1:\t val1\r\n
98 Hdr1: \r\n
99 val1\r\n
100 Hdr1:\r\n
101 val1\n
102 \tval2\r\n
103 val3\n
104
105 *
106 */
107
Willy Tarreaua36fc4d2012-02-17 17:39:37 +0100108/*
109 * HTTP message status flags (msg->flags)
110 */
Willy Tarreaua36fc4d2012-02-17 17:39:37 +0100111#define HTTP_MSGF_CNT_LEN 0x00000001 /* content-length was found in the message */
112#define HTTP_MSGF_TE_CHNK 0x00000002 /* transfer-encoding: chunked was found */
113
114/* if this flags is not set in either direction, we may be forced to complete a
115 * connection as a half-way tunnel (eg if no content-length appears in a 1.1
116 * response, but the request is correctly sized)
117 */
118#define HTTP_MSGF_XFER_LEN 0x00000004 /* message xfer size can be determined */
119#define HTTP_MSGF_VER_11 0x00000008 /* the message is HTTP/1.1 or above */
120
Christopher Fauletcc76d5b2019-07-17 11:21:36 +0200121/* unused: 0x00000010 */
122
Christopher Fauletd7c91962015-04-30 11:48:27 +0200123#define HTTP_MSGF_COMPRESSING 0x00000020 /* data compression is in progress */
Willy Tarreaua36fc4d2012-02-17 17:39:37 +0100124
Christopher Fauletb2db4fa2018-11-27 16:51:09 +0100125#define HTTP_MSGF_BODYLESS 0x00000040 /* The message has no body (content-length = 0) */
126
Willy Tarreaua36fc4d2012-02-17 17:39:37 +0100127
Willy Tarreau79da4692008-11-19 20:03:04 +0100128/* Redirect flags */
129enum {
130 REDIRECT_FLAG_NONE = 0,
131 REDIRECT_FLAG_DROP_QS = 1, /* drop query string */
Willy Tarreau81e3b4f2010-01-10 00:42:19 +0100132 REDIRECT_FLAG_APPEND_SLASH = 2, /* append a slash if missing at the end */
Willy Tarreau79da4692008-11-19 20:03:04 +0100133};
Willy Tarreaub463dfb2008-06-07 23:08:56 +0200134
135/* Redirect types (location, prefix, extended ) */
136enum {
137 REDIRECT_TYPE_NONE = 0, /* no redirection */
138 REDIRECT_TYPE_LOCATION, /* location redirect */
139 REDIRECT_TYPE_PREFIX, /* prefix redirect */
Willy Tarreau2e1dca82012-09-12 08:43:15 +0200140 REDIRECT_TYPE_SCHEME, /* scheme redirect (eg: switch from http to https) */
Willy Tarreaub463dfb2008-06-07 23:08:56 +0200141};
142
Cyril Bonté47fdd8e2010-04-25 00:00:51 +0200143/* Perist types (force-persist, ignore-persist) */
144enum {
145 PERSIST_TYPE_NONE = 0, /* no persistence */
146 PERSIST_TYPE_FORCE, /* force-persist */
147 PERSIST_TYPE_IGNORE, /* ignore-persist */
148};
149
Willy Tarreau0b748332014-04-29 00:13:29 +0200150/* final results for http-request rules */
151enum rule_result {
152 HTTP_RULE_RES_CONT = 0, /* nothing special, continue rules evaluation */
Thierry FOURNIERbc4c1ac2015-02-25 13:36:14 +0100153 HTTP_RULE_RES_YIELD, /* call me later because some data is missing. */
Willy Tarreau0b748332014-04-29 00:13:29 +0200154 HTTP_RULE_RES_STOP, /* stopped processing on an accept */
155 HTTP_RULE_RES_DENY, /* deny (or tarpit if TX_CLTARPIT) */
156 HTTP_RULE_RES_ABRT, /* abort request, msg already sent (eg: auth) */
157 HTTP_RULE_RES_DONE, /* processing done, stop processing (eg: redirect) */
158 HTTP_RULE_RES_BADREQ, /* bad request */
159};
160
Willy Tarreau326e27e2018-12-11 11:04:56 +0100161/* Legacy version of the HTTP/1 message state, used by the channels, should
162 * ultimately be removed.
163 */
164enum h1_state {
165 HTTP_MSG_RQBEFORE = 0, // request: leading LF, before start line
Christopher Faulet711ed6a2019-07-16 14:16:10 +0200166 HTTP_MSG_RPBEFORE = 1, // response: leading LF, before start line
Willy Tarreau326e27e2018-12-11 11:04:56 +0100167
168 /* error state : must be before HTTP_MSG_BODY so that (>=BODY) always indicates
169 * that data are being processed.
170 */
Christopher Faulet711ed6a2019-07-16 14:16:10 +0200171 HTTP_MSG_ERROR = 2, // an error occurred
Willy Tarreau326e27e2018-12-11 11:04:56 +0100172 /* Body processing.
173 * The state HTTP_MSG_BODY is a delimiter to know if we're waiting for headers
174 * or body. All the sub-states below also indicate we're processing the body,
175 * with some additional information.
176 */
Christopher Faulet711ed6a2019-07-16 14:16:10 +0200177 HTTP_MSG_BODY = 3, // parsing body at end of headers
178 HTTP_MSG_DATA = 4, // skipping data chunk / content-length data
Willy Tarreau326e27e2018-12-11 11:04:56 +0100179 /* we enter this state when we've received the end of the current message */
Christopher Faulet711ed6a2019-07-16 14:16:10 +0200180 HTTP_MSG_ENDING = 5, // message end received, wait that the filters end too
181 HTTP_MSG_DONE = 6, // message end received, waiting for resync or close
182 HTTP_MSG_CLOSING = 7, // shutdown_w done, not all bytes sent yet
183 HTTP_MSG_CLOSED = 8, // shutdown_w done, all bytes sent
184 HTTP_MSG_TUNNEL = 9, // tunneled data after DONE
Willy Tarreau326e27e2018-12-11 11:04:56 +0100185} __attribute__((packed));
186
187
Christopher Faulet711ed6a2019-07-16 14:16:10 +0200188/* This is the state of an HTTP seen from the analyzers point of view. It can be
189 * either a request message or a response message.
Willy Tarreau3bac9ff2007-03-18 17:31:28 +0100190 */
191struct http_msg {
Willy Tarreau0da5b3b2017-09-21 09:30:46 +0200192 enum h1_state msg_state; /* where we are in the current message parsing */
193 enum h1_state err_state; /* the state where the parsing error was detected, only is MSG_ERROR */
Willy Tarreau3770f232013-12-07 00:01:53 +0100194 unsigned char flags; /* flags describing the message (HTTP version, ...) */
Willy Tarreau10e61cb2017-01-04 14:51:22 +0100195 /* 5 bytes unused here */
Willy Tarreau394db372012-10-12 22:40:39 +0200196 struct channel *chn; /* pointer to the channel transporting the message */
Willy Tarreau3bac9ff2007-03-18 17:31:28 +0100197};
198
199/* This is an HTTP transaction. It contains both a request message and a
200 * response message (which can be empty).
201 */
202struct http_txn {
Willy Tarreau520bbb22010-01-10 11:31:22 +0100203 struct http_msg rsp; /* HTTP response message */
Willy Tarreauc8987b32013-12-06 23:43:17 +0100204 struct http_msg req; /* HTTP request message */
205 unsigned int flags; /* transaction flags */
206 enum http_meth_t meth; /* HTTP method */
207 /* 1 unused byte here */
208 short status; /* HTTP status from the server, negative if from proxy */
Willy Tarreau3bac9ff2007-03-18 17:31:28 +0100209
William Lallemandf528fff2017-11-23 19:43:17 +0100210 char cache_hash[20]; /* Store the cache hash */
Willy Tarreau520bbb22010-01-10 11:31:22 +0100211 char *uri; /* first line if log needed, NULL otherwise */
212 char *cli_cookie; /* cookie presented by the client, in capture mode */
213 char *srv_cookie; /* cookie presented by the server, in capture mode */
Willy Tarreauf64d1412010-10-07 20:06:11 +0200214 int cookie_first_date; /* if non-zero, first date the expirable cookie was set/seen */
215 int cookie_last_date; /* if non-zero, last date the expirable cookie was set/seen */
Willy Tarreau520bbb22010-01-10 11:31:22 +0100216
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +0100217 struct http_auth_data auth; /* HTTP auth data */
Willy Tarreau3bac9ff2007-03-18 17:31:28 +0100218};
219
Willy Tarreaubafbe012017-11-24 17:34:44 +0100220extern struct pool_head *pool_head_http_txn;
Willy Tarreaueee5b512015-04-03 23:46:31 +0200221
Willy Tarreaubaaee002006-06-26 02:48:02 +0200222#endif /* _TYPES_PROTO_HTTP_H */
223
224/*
225 * Local variables:
226 * c-indent-level: 8
227 * c-basic-offset: 8
228 * End:
229 */