blob: 3e7701cf215312cb6fbc3e36431fcfa1d09bc09c [file] [log] [blame]
Willy Tarreaubaaee002006-06-26 02:48:02 +02001/*
Willy Tarreaub0c9bc42009-10-04 15:56:38 +02002 * include/proto/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 Tarreaub0c9bc42009-10-04 15:56:38 +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 _PROTO_PROTO_HTTP_H
23#define _PROTO_PROTO_HTTP_H
24
Willy Tarreaue3ba5f02006-06-29 18:54:54 +020025#include <common/config.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020026#include <types/proto_http.h>
Willy Tarreau87b09662015-04-03 00:22:06 +020027#include <types/stream.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020028#include <types/task.h>
Willy Tarreau3ee83442018-06-15 16:42:02 +020029#include <proto/channel.h>
Willy Tarreau0da5b3b2017-09-21 09:30:46 +020030#include <proto/h1.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020031
Christopher Faulet1d5b85a2018-10-03 14:25:40 +020032#define IS_HTX_STRM(strm) (strm_fe(strm)->options2 & PR_O2_USE_HTX)
33#define IS_HTX_SMP(smp) ((smp)->strm && IS_HTX_STRM((smp)->strm))
Willy Tarreau58f10d72006-12-04 02:26:12 +010034
Willy Tarreau79e57332018-10-02 16:01:16 +020035extern struct pool_head *pool_head_uniqueid;
36
Willy Tarreau87b09662015-04-03 00:22:06 +020037int process_cli(struct stream *s);
38int process_srv_data(struct stream *s);
39int process_srv_conn(struct stream *s);
40int http_wait_for_request(struct stream *s, struct channel *req, int an_bit);
41int http_process_req_common(struct stream *s, struct channel *req, int an_bit, struct proxy *px);
42int http_process_request(struct stream *s, struct channel *req, int an_bit);
43int http_process_tarpit(struct stream *s, struct channel *req, int an_bit);
44int http_wait_for_request_body(struct stream *s, struct channel *req, int an_bit);
Christopher Faulet27a3dc82018-10-23 15:34:07 +020045int http_send_name_header(struct stream *s, struct proxy* be, const char* svr_name);
Willy Tarreau87b09662015-04-03 00:22:06 +020046int http_wait_for_response(struct stream *s, struct channel *rep, int an_bit);
47int http_process_res_common(struct stream *s, struct channel *rep, int an_bit, struct proxy *px);
48int http_request_forward_body(struct stream *s, struct channel *req, int an_bit);
49int http_response_forward_body(struct stream *s, struct channel *res, int an_bit);
Willy Tarreau79e57332018-10-02 16:01:16 +020050int http_upgrade_v09_to_v10(struct http_txn *txn);
Thierry FOURNIER8d16de02015-09-25 11:06:37 +020051void http_msg_analyzer(struct http_msg *msg, struct hdr_idx *idx);
Thierry FOURNIERfd50f0b2015-09-25 18:53:18 +020052void http_txn_reset_req(struct http_txn *txn);
53void http_txn_reset_res(struct http_txn *txn);
Willy Tarreaubaaee002006-06-26 02:48:02 +020054
Christopher Fauletf2824e62018-10-01 12:12:37 +020055/* Export HTX analyzers and helpers */
Christopher Faulet0f226952018-10-22 09:29:56 +020056// FIXME: Rename all these functions http_* once legacy code will be removed
Christopher Faulet72333522018-10-24 11:25:02 +020057struct htx;
Christopher Faulet0f226952018-10-22 09:29:56 +020058
Christopher Faulete0768eb2018-10-03 16:38:02 +020059int htx_wait_for_request(struct stream *s, struct channel *req, int an_bit);
60int htx_process_req_common(struct stream *s, struct channel *req, int an_bit, struct proxy *px);
61int htx_process_request(struct stream *s, struct channel *req, int an_bit);
62int htx_process_tarpit(struct stream *s, struct channel *req, int an_bit);
63int htx_wait_for_request_body(struct stream *s, struct channel *req, int an_bit);
Christopher Faulete0768eb2018-10-03 16:38:02 +020064int htx_wait_for_response(struct stream *s, struct channel *rep, int an_bit);
65int htx_process_res_common(struct stream *s, struct channel *rep, int an_bit, struct proxy *px);
66int htx_request_forward_body(struct stream *s, struct channel *req, int an_bit);
67int htx_response_forward_body(struct stream *s, struct channel *res, int an_bit);
Christopher Faulet0f226952018-10-22 09:29:56 +020068void htx_adjust_conn_mode(struct stream *s, struct http_txn *txn);
Christopher Fauletf2824e62018-10-01 12:12:37 +020069int htx_apply_redirect_rule(struct redirect_rule *rule, struct stream *s, struct http_txn *txn);
Christopher Faulet72333522018-10-24 11:25:02 +020070int htx_transform_header_str(struct stream* s, struct channel *chn, struct htx *htx,
71 struct ist name, const char *str, struct my_regex *re, int action);
Christopher Faulet8d8ac192018-10-24 11:27:39 +020072int htx_req_replace_stline(int action, const char *replace, int len,
73 struct proxy *px, struct stream *s);
74void htx_res_set_status(unsigned int status, const char *reason, struct stream *s);
Christopher Faulet25a02f62018-10-24 12:00:25 +020075void htx_check_request_for_cacheability(struct stream *s, struct channel *req);
76void htx_check_response_for_cacheability(struct stream *s, struct channel *res);
Christopher Faulet64159df2018-10-24 21:15:35 +020077int htx_send_name_header(struct stream *s, struct proxy *be, const char *srv_name);
Christopher Fauletfefc73d2018-10-24 21:18:04 +020078void htx_perform_server_redirect(struct stream *s, struct stream_interface *si);
Christopher Faulet0f226952018-10-22 09:29:56 +020079void htx_server_error(struct stream *s, struct stream_interface *si, int err, int finst, const struct buffer *msg);
80void htx_reply_and_close(struct stream *s, short status, struct buffer *msg);
Christopher Fauleta7b677c2018-11-29 16:48:49 +010081struct buffer *htx_error_message(struct stream *s);
Christopher Faulete0768eb2018-10-03 16:38:02 +020082
Willy Tarreau87b09662015-04-03 00:22:06 +020083void debug_hdr(const char *dir, struct stream *s, const char *start, const char *end);
Willy Tarreau87b09662015-04-03 00:22:06 +020084int apply_filter_to_req_headers(struct stream *s, struct channel *req, struct hdr_exp *exp);
85int apply_filter_to_req_line(struct stream *s, struct channel *req, struct hdr_exp *exp);
86int apply_filters_to_request(struct stream *s, struct channel *req, struct proxy *px);
87int apply_filters_to_response(struct stream *s, struct channel *rtr, struct proxy *px);
Willy Tarreau87b09662015-04-03 00:22:06 +020088void manage_client_side_cookies(struct stream *s, struct channel *req);
89void manage_server_side_cookies(struct stream *s, struct channel *rtr);
Willy Tarreau0ad8e0d2017-12-22 15:03:36 +010090void check_request_for_cacheability(struct stream *s, struct channel *chn);
Willy Tarreau87b09662015-04-03 00:22:06 +020091void check_response_for_cacheability(struct stream *s, struct channel *rtr);
Willy Tarreau295a8372011-03-10 11:25:07 +010092int stats_check_uri(struct stream_interface *si, struct http_txn *txn, struct proxy *backend);
Willy Tarreau04ff9f12013-06-10 18:39:42 +020093int http_find_full_header2(const char *name, int len,
94 char *sol, struct hdr_idx *idx,
95 struct hdr_ctx *ctx);
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +020096int http_find_header2(const char *name, int len,
Willy Tarreau68085d82010-01-18 14:54:04 +010097 char *sol, struct hdr_idx *idx,
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +020098 struct hdr_ctx *ctx);
David Carlier4686f792015-09-25 14:10:50 +010099int http_find_next_header(char *sol, struct hdr_idx *idx,
100 struct hdr_ctx *ctx);
Thierry FOURNIERde6617b2013-10-15 11:43:19 +0200101int http_remove_header2(struct http_msg *msg, struct hdr_idx *idx, struct hdr_ctx *ctx);
102int http_header_add_tail2(struct http_msg *msg, struct hdr_idx *hdr_idx, const char *text, int len);
Willy Tarreau987e3fb2015-04-04 01:09:08 +0200103int http_replace_req_line(int action, const char *replace, int len, struct proxy *px, struct stream *s);
Robin H. Johnson52f5db22017-01-01 13:10:52 -0800104void http_set_status(unsigned int status, const char *reason, struct stream *s);
Willy Tarreau87b09662015-04-03 00:22:06 +0200105int http_transform_header_str(struct stream* s, struct http_msg *msg, const char* name,
Thierry FOURNIER5531f872015-03-16 11:15:50 +0100106 unsigned int name_len, const char *str, struct my_regex *re,
107 int action);
Christopher Faulet10079f52018-10-03 15:17:28 +0200108int http_handle_stats(struct stream *s, struct channel *req);
109enum rule_result http_req_get_intercept_rule(struct proxy *px, struct list *rules,
110 struct stream *s, int *deny_status);
111enum rule_result http_res_get_intercept_rule(struct proxy *px, struct list *rules,
112 struct stream *s);
113int http_apply_redirect_rule(struct redirect_rule *rule, struct stream *s, struct http_txn *txn);
Willy Tarreau87b09662015-04-03 00:22:06 +0200114void http_perform_server_redirect(struct stream *s, struct stream_interface *si);
115void http_return_srv_error(struct stream *s, struct stream_interface *si);
Christopher Faulet10079f52018-10-03 15:17:28 +0200116void http_capture_headers(char *som, struct hdr_idx *idx,
117 char **cap, struct cap_hdr *cap_hdr);
Willy Tarreaufd9419d2018-09-07 18:01:03 +0200118void http_capture_bad_message(struct proxy *proxy, struct stream *s,
Willy Tarreau8a0cef22012-03-09 13:39:23 +0100119 struct http_msg *msg,
Willy Tarreau0da5b3b2017-09-21 09:30:46 +0200120 enum h1_state state, struct proxy *other_end);
Willy Tarreau185b5c42012-04-26 15:11:51 +0200121unsigned int http_get_hdr(const struct http_msg *msg, const char *hname, int hlen,
Willy Tarreau294c4732011-12-16 21:35:50 +0100122 struct hdr_idx *idx, int occ,
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200123 struct hdr_ctx *ctx, char **vptr, size_t *vlen);
Willy Tarreau79e57332018-10-02 16:01:16 +0200124unsigned int http_get_fhdr(const struct http_msg *msg, const char *hname, int hlen,
125 struct hdr_idx *idx, int occ,
126 struct hdr_ctx *ctx, char **vptr, size_t *vlen);
Willy Tarreau6b952c82018-09-10 17:45:34 +0200127char *http_txn_get_path(const struct http_txn *txn);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200128
Willy Tarreaueee5b512015-04-03 23:46:31 +0200129struct http_txn *http_alloc_txn(struct stream *s);
Willy Tarreau87b09662015-04-03 00:22:06 +0200130void http_init_txn(struct stream *s);
131void http_end_txn(struct stream *s);
132void http_reset_txn(struct stream *s);
Christopher Fauletd7c91962015-04-30 11:48:27 +0200133void http_end_txn_clean_session(struct stream *s);
Christopher Faulet10079f52018-10-03 15:17:28 +0200134void http_resync_states(struct stream *s);
135void http_parse_connection_header(struct http_txn *txn, struct http_msg *msg, int to_del);
136void http_change_connection_header(struct http_txn *txn, struct http_msg *msg, int wanted);
Willy Tarreau87b09662015-04-03 00:22:06 +0200137void http_adjust_conn_mode(struct stream *s, struct http_txn *txn, struct http_msg *msg);
Willy Tarreau0937bc42009-12-22 15:03:09 +0100138
Christopher Faulet10079f52018-10-03 15:17:28 +0200139int http_msg_forward_body(struct stream *s, struct http_msg *msg);
140int http_msg_forward_chunked_body(struct stream *s, struct http_msg *msg);
141
Willy Tarreau83061a82018-07-13 11:56:34 +0200142void http_reply_and_close(struct stream *s, short status, struct buffer *msg);
143struct buffer *http_error_message(struct stream *s);
William Lallemand73025dd2014-04-24 14:38:37 +0200144
Willy Tarreaufa355d42009-11-29 18:12:29 +0100145/* to be used when contents change in an HTTP message */
146#define http_msg_move_end(msg, bytes) do { \
147 unsigned int _bytes = (bytes); \
Willy Tarreaua458b672012-03-05 11:17:50 +0100148 (msg)->next += (_bytes); \
Willy Tarreaufa355d42009-11-29 18:12:29 +0100149 (msg)->sov += (_bytes); \
150 (msg)->eoh += (_bytes); \
151 } while (0)
152
Willy Tarreau2d8e4852014-04-17 20:08:17 +0200153
Willy Tarreau211cdec2014-04-17 20:18:08 +0200154/* Return the amount of bytes that need to be rewound before buf->p to access
155 * the current message's headers. The purpose is to be able to easily fetch
156 * the message's beginning before headers are forwarded, as well as after.
Willy Tarreau1234f4a2014-04-17 21:14:47 +0200157 * The principle is that msg->eoh and msg->eol are immutable while msg->sov
158 * equals the sum of the two before forwarding and is zero after forwarding,
159 * so the difference cancels the rewinding.
Willy Tarreau211cdec2014-04-17 20:18:08 +0200160 */
161static inline int http_hdr_rewind(const struct http_msg *msg)
162{
Willy Tarreau1234f4a2014-04-17 21:14:47 +0200163 return msg->eoh + msg->eol - msg->sov;
Willy Tarreau211cdec2014-04-17 20:18:08 +0200164}
165
Willy Tarreauda6eed62014-04-17 20:24:24 +0200166/* Return the amount of bytes that need to be rewound before buf->p to access
167 * the current message's URI. The purpose is to be able to easily fetch
168 * the message's beginning before headers are forwarded, as well as after.
169 */
170static inline int http_uri_rewind(const struct http_msg *msg)
171{
172 return http_hdr_rewind(msg) - msg->sl.rq.u;
173}
174
Willy Tarreau0d090502014-04-17 20:31:44 +0200175/* Return the amount of bytes that need to be rewound before buf->p to access
176 * the current message's BODY. The purpose is to be able to easily fetch
177 * the message's beginning before headers are forwarded, as well as after.
178 */
179static inline int http_body_rewind(const struct http_msg *msg)
180{
181 return http_hdr_rewind(msg) - msg->eoh - msg->eol;
182}
183
184/* Return the amount of bytes that need to be rewound before buf->p to access
185 * the current message's DATA. The difference with the function above is that
186 * if a chunk is present and has already been parsed, its size is skipped so
187 * that the byte pointed to is the first byte of actual data. The function is
188 * safe for use in state HTTP_MSG_DATA regardless of whether the headers were
189 * already forwarded or not.
190 */
191static inline int http_data_rewind(const struct http_msg *msg)
192{
193 return http_body_rewind(msg) - msg->sol;
194}
195
Willy Tarreau2d8e4852014-04-17 20:08:17 +0200196/* Return the maximum amount of bytes that may be read after the beginning of
197 * the message body, according to the advertised length. The function is safe
198 * for use between HTTP_MSG_BODY and HTTP_MSG_DATA regardless of whether the
199 * headers were already forwarded or not.
200 */
201static inline int http_body_bytes(const struct http_msg *msg)
202{
203 int len;
204
Willy Tarreau3ee83442018-06-15 16:42:02 +0200205 len = ci_data(msg->chn) - msg->sov - msg->sol;
Willy Tarreau2d8e4852014-04-17 20:08:17 +0200206 if (len > msg->body_len)
207 len = msg->body_len;
208 return len;
209}
210
Willy Tarreaubaaee002006-06-26 02:48:02 +0200211#endif /* _PROTO_PROTO_HTTP_H */
212
213/*
214 * Local variables:
215 * c-indent-level: 8
216 * c-basic-offset: 8
217 * End:
218 */