blob: 66895f479f39de0fd2e38ed53fb1e1aadb3c8cfc [file] [log] [blame]
Christopher Fauletfc9cfe42019-07-16 14:54:53 +02001/*
2 * include/proto/http_ana.h
3 * This file contains HTTP protocol definitions.
4 *
5 * Copyright (C) 2000-2011 Willy Tarreau - w@1wt.eu
6 *
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 */
21
22#ifndef _PROTO_PROTO_HTTP_H
23#define _PROTO_PROTO_HTTP_H
24
25#include <common/config.h>
26#include <common/htx.h>
27#include <types/channel.h>
28#include <types/http_ana.h>
29#include <types/stream.h>
30
31extern struct pool_head *pool_head_uniqueid;
32
33int http_wait_for_request(struct stream *s, struct channel *req, int an_bit);
34int http_process_req_common(struct stream *s, struct channel *req, int an_bit, struct proxy *px);
35int http_process_request(struct stream *s, struct channel *req, int an_bit);
36int http_process_tarpit(struct stream *s, struct channel *req, int an_bit);
37int http_wait_for_request_body(struct stream *s, struct channel *req, int an_bit);
38int http_wait_for_response(struct stream *s, struct channel *rep, int an_bit);
39int http_process_res_common(struct stream *s, struct channel *rep, int an_bit, struct proxy *px);
40int http_request_forward_body(struct stream *s, struct channel *req, int an_bit);
41int http_response_forward_body(struct stream *s, struct channel *res, int an_bit);
42int http_apply_redirect_rule(struct redirect_rule *rule, struct stream *s, struct http_txn *txn);
43int http_transform_header_str(struct stream* s, struct channel *chn, struct htx *htx,
44 struct ist name, const char *str, struct my_regex *re, int action);
45int http_req_replace_stline(int action, const char *replace, int len,
46 struct proxy *px, struct stream *s);
47void http_res_set_status(unsigned int status, const char *reason, struct stream *s);
48void http_check_request_for_cacheability(struct stream *s, struct channel *req);
49void http_check_response_for_cacheability(struct stream *s, struct channel *res);
50int http_send_name_header(struct stream *s, struct proxy *be, const char *srv_name);
51void http_perform_server_redirect(struct stream *s, struct stream_interface *si);
52void http_server_error(struct stream *s, struct stream_interface *si, int err, int finst, const struct buffer *msg);
53void http_reply_and_close(struct stream *s, short status, struct buffer *msg);
54void http_return_srv_error(struct stream *s, struct stream_interface *si);
55struct buffer *http_error_message(struct stream *s);
56
57struct http_txn *http_alloc_txn(struct stream *s);
58void http_init_txn(struct stream *s);
59void http_end_txn(struct stream *s);
60void http_reset_txn(struct stream *s);
61
62/* for debugging, reports the HTTP/1 message state name (legacy version) */
63static inline const char *h1_msg_state_str(enum h1_state msg_state)
64{
65 switch (msg_state) {
66 case HTTP_MSG_RQBEFORE: return "MSG_RQBEFORE";
67 case HTTP_MSG_RPBEFORE: return "MSG_RPBEFORE";
68 case HTTP_MSG_ERROR: return "MSG_ERROR";
69 case HTTP_MSG_BODY: return "MSG_BODY";
70 case HTTP_MSG_DATA: return "MSG_DATA";
71 case HTTP_MSG_ENDING: return "MSG_ENDING";
72 case HTTP_MSG_DONE: return "MSG_DONE";
73 case HTTP_MSG_CLOSING: return "MSG_CLOSING";
74 case HTTP_MSG_CLOSED: return "MSG_CLOSED";
75 case HTTP_MSG_TUNNEL: return "MSG_TUNNEL";
76 default: return "MSG_??????";
77 }
78}
79
80#endif /* _PROTO_PROTO_HTTP_H */
81
82/*
83 * Local variables:
84 * c-indent-level: 8
85 * c-basic-offset: 8
86 * End:
87 */