Christopher Faulet | fc9cfe4 | 2019-07-16 14:54:53 +0200 | [diff] [blame] | 1 | /* |
| 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 | |
| 31 | extern struct pool_head *pool_head_uniqueid; |
| 32 | |
| 33 | int http_wait_for_request(struct stream *s, struct channel *req, int an_bit); |
| 34 | int http_process_req_common(struct stream *s, struct channel *req, int an_bit, struct proxy *px); |
| 35 | int http_process_request(struct stream *s, struct channel *req, int an_bit); |
| 36 | int http_process_tarpit(struct stream *s, struct channel *req, int an_bit); |
| 37 | int http_wait_for_request_body(struct stream *s, struct channel *req, int an_bit); |
| 38 | int http_wait_for_response(struct stream *s, struct channel *rep, int an_bit); |
| 39 | int http_process_res_common(struct stream *s, struct channel *rep, int an_bit, struct proxy *px); |
| 40 | int http_request_forward_body(struct stream *s, struct channel *req, int an_bit); |
| 41 | int http_response_forward_body(struct stream *s, struct channel *res, int an_bit); |
| 42 | int http_apply_redirect_rule(struct redirect_rule *rule, struct stream *s, struct http_txn *txn); |
| 43 | int 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); |
| 45 | int http_req_replace_stline(int action, const char *replace, int len, |
| 46 | struct proxy *px, struct stream *s); |
| 47 | void http_res_set_status(unsigned int status, const char *reason, struct stream *s); |
| 48 | void http_check_request_for_cacheability(struct stream *s, struct channel *req); |
| 49 | void http_check_response_for_cacheability(struct stream *s, struct channel *res); |
Christopher Faulet | fc9cfe4 | 2019-07-16 14:54:53 +0200 | [diff] [blame] | 50 | void http_perform_server_redirect(struct stream *s, struct stream_interface *si); |
| 51 | void http_server_error(struct stream *s, struct stream_interface *si, int err, int finst, const struct buffer *msg); |
| 52 | void http_reply_and_close(struct stream *s, short status, struct buffer *msg); |
| 53 | void http_return_srv_error(struct stream *s, struct stream_interface *si); |
| 54 | struct buffer *http_error_message(struct stream *s); |
| 55 | |
| 56 | struct http_txn *http_alloc_txn(struct stream *s); |
| 57 | void http_init_txn(struct stream *s); |
| 58 | void http_end_txn(struct stream *s); |
| 59 | void http_reset_txn(struct stream *s); |
| 60 | |
| 61 | /* for debugging, reports the HTTP/1 message state name (legacy version) */ |
| 62 | static inline const char *h1_msg_state_str(enum h1_state msg_state) |
| 63 | { |
| 64 | switch (msg_state) { |
| 65 | case HTTP_MSG_RQBEFORE: return "MSG_RQBEFORE"; |
| 66 | case HTTP_MSG_RPBEFORE: return "MSG_RPBEFORE"; |
| 67 | case HTTP_MSG_ERROR: return "MSG_ERROR"; |
| 68 | case HTTP_MSG_BODY: return "MSG_BODY"; |
| 69 | case HTTP_MSG_DATA: return "MSG_DATA"; |
| 70 | case HTTP_MSG_ENDING: return "MSG_ENDING"; |
| 71 | case HTTP_MSG_DONE: return "MSG_DONE"; |
| 72 | case HTTP_MSG_CLOSING: return "MSG_CLOSING"; |
| 73 | case HTTP_MSG_CLOSED: return "MSG_CLOSED"; |
| 74 | case HTTP_MSG_TUNNEL: return "MSG_TUNNEL"; |
| 75 | default: return "MSG_??????"; |
| 76 | } |
| 77 | } |
| 78 | |
| 79 | #endif /* _PROTO_PROTO_HTTP_H */ |
| 80 | |
| 81 | /* |
| 82 | * Local variables: |
| 83 | * c-indent-level: 8 |
| 84 | * c-basic-offset: 8 |
| 85 | * End: |
| 86 | */ |