Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1 | /* |
Willy Tarreau | b0c9bc4 | 2009-10-04 15:56:38 +0200 | [diff] [blame] | 2 | * include/proto/proto_http.h |
| 3 | * This file contains HTTP protocol definitions. |
| 4 | * |
Willy Tarreau | ff011f2 | 2011-01-06 17:51:27 +0100 | [diff] [blame] | 5 | * Copyright (C) 2000-2011 Willy Tarreau - w@1wt.eu |
Willy Tarreau | b0c9bc4 | 2009-10-04 15:56:38 +0200 | [diff] [blame] | 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 | */ |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 21 | |
| 22 | #ifndef _PROTO_PROTO_HTTP_H |
| 23 | #define _PROTO_PROTO_HTTP_H |
| 24 | |
Willy Tarreau | e3ba5f0 | 2006-06-29 18:54:54 +0200 | [diff] [blame] | 25 | #include <common/config.h> |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 26 | #include <types/proto_http.h> |
| 27 | #include <types/session.h> |
| 28 | #include <types/task.h> |
| 29 | |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 30 | /* |
| 31 | * some macros used for the request parsing. |
| 32 | * from RFC2616: |
| 33 | * CTL = <any US-ASCII control character (octets 0 - 31) and DEL (127)> |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 34 | * SEP = one of the 17 defined separators or SP or HT |
| 35 | * LWS = CR, LF, SP or HT |
| 36 | * SPHT = SP or HT. Use this macro and not a boolean expression for best speed. |
| 37 | * CRLF = CR or LF. Use this macro and not a boolean expression for best speed. |
| 38 | * token = any CHAR except CTL or SEP. Use this macro and not a boolean expression for best speed. |
Willy Tarreau | 4b89ad4 | 2007-03-04 18:13:58 +0100 | [diff] [blame] | 39 | * |
| 40 | * added for ease of use: |
| 41 | * ver_token = 'H', 'P', 'T', '/', '.', and digits. |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 42 | */ |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 43 | |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 44 | extern const char http_is_ctl[256]; |
| 45 | extern const char http_is_sep[256]; |
| 46 | extern const char http_is_lws[256]; |
| 47 | extern const char http_is_spht[256]; |
| 48 | extern const char http_is_crlf[256]; |
| 49 | extern const char http_is_token[256]; |
Willy Tarreau | 4b89ad4 | 2007-03-04 18:13:58 +0100 | [diff] [blame] | 50 | extern const char http_is_ver_token[256]; |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 51 | |
Willy Tarreau | 436d9ed | 2011-05-11 16:10:11 +0200 | [diff] [blame] | 52 | extern const int http_err_codes[HTTP_ERR_SIZE]; |
| 53 | extern struct chunk http_err_chunks[HTTP_ERR_SIZE]; |
| 54 | extern const char *HTTP_302; |
| 55 | extern const char *HTTP_303; |
| 56 | |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 57 | #define HTTP_IS_CTL(x) (http_is_ctl[(unsigned char)(x)]) |
| 58 | #define HTTP_IS_SEP(x) (http_is_sep[(unsigned char)(x)]) |
| 59 | #define HTTP_IS_LWS(x) (http_is_lws[(unsigned char)(x)]) |
| 60 | #define HTTP_IS_SPHT(x) (http_is_spht[(unsigned char)(x)]) |
| 61 | #define HTTP_IS_CRLF(x) (http_is_crlf[(unsigned char)(x)]) |
| 62 | #define HTTP_IS_TOKEN(x) (http_is_token[(unsigned char)(x)]) |
Willy Tarreau | 4b89ad4 | 2007-03-04 18:13:58 +0100 | [diff] [blame] | 63 | #define HTTP_IS_VER_TOKEN(x) (http_is_ver_token[(unsigned char)(x)]) |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 64 | |
| 65 | int event_accept(int fd); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 66 | int process_cli(struct session *t); |
Willy Tarreau | fa7e102 | 2008-10-19 07:30:41 +0200 | [diff] [blame] | 67 | int process_srv_data(struct session *t); |
| 68 | int process_srv_conn(struct session *t); |
Willy Tarreau | 3a81629 | 2009-07-07 10:55:49 +0200 | [diff] [blame] | 69 | int http_wait_for_request(struct session *s, struct buffer *req, int an_bit); |
Willy Tarreau | 1d0dfb1 | 2009-07-07 15:10:31 +0200 | [diff] [blame] | 70 | int http_process_req_common(struct session *s, struct buffer *req, int an_bit, struct proxy *px); |
Willy Tarreau | 3a81629 | 2009-07-07 10:55:49 +0200 | [diff] [blame] | 71 | int http_process_request(struct session *t, struct buffer *req, int an_bit); |
| 72 | int http_process_tarpit(struct session *s, struct buffer *req, int an_bit); |
| 73 | int http_process_request_body(struct session *s, struct buffer *req, int an_bit); |
Willy Tarreau | 45c0d98 | 2012-03-09 12:11:57 +0100 | [diff] [blame] | 74 | int http_send_name_header(struct http_txn *txn, struct proxy* be, const char* svr_name); |
Willy Tarreau | b37c27e | 2009-10-18 22:53:08 +0200 | [diff] [blame] | 75 | int http_wait_for_response(struct session *s, struct buffer *rep, int an_bit); |
| 76 | int http_process_res_common(struct session *t, struct buffer *rep, int an_bit, struct proxy *px); |
Willy Tarreau | d98cf93 | 2009-12-27 22:54:55 +0100 | [diff] [blame] | 77 | int http_request_forward_body(struct session *s, struct buffer *req, int an_bit); |
| 78 | int http_response_forward_body(struct session *s, struct buffer *res, int an_bit); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 79 | |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 80 | void debug_hdr(const char *dir, struct session *t, const char *start, const char *end); |
Willy Tarreau | 8d5d7f2 | 2007-01-21 19:16:41 +0100 | [diff] [blame] | 81 | void get_srv_from_appsession(struct session *t, const char *begin, int len); |
| 82 | int apply_filter_to_req_headers(struct session *t, struct buffer *req, struct hdr_exp *exp); |
| 83 | int apply_filter_to_req_line(struct session *t, struct buffer *req, struct hdr_exp *exp); |
Willy Tarreau | 6c123b1 | 2010-01-28 20:22:06 +0100 | [diff] [blame] | 84 | int apply_filters_to_request(struct session *s, struct buffer *req, struct proxy *px); |
Willy Tarreau | fdb563c | 2010-01-31 15:43:27 +0100 | [diff] [blame] | 85 | int apply_filters_to_response(struct session *t, struct buffer *rtr, struct proxy *px); |
Cyril Bonté | b21570a | 2009-11-29 20:04:48 +0100 | [diff] [blame] | 86 | void manage_client_side_appsession(struct session *t, const char *buf, int len); |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 87 | void manage_client_side_cookies(struct session *t, struct buffer *req); |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 88 | void manage_server_side_cookies(struct session *t, struct buffer *rtr); |
| 89 | void check_response_for_cacheability(struct session *t, struct buffer *rtr); |
Willy Tarreau | 295a837 | 2011-03-10 11:25:07 +0100 | [diff] [blame] | 90 | int stats_check_uri(struct stream_interface *si, struct http_txn *txn, struct proxy *backend); |
Willy Tarreau | 8058743 | 2006-12-24 17:47:20 +0100 | [diff] [blame] | 91 | void init_proto_http(); |
matt.farnsworth@nokia.com | 1c2ab96 | 2008-04-14 20:47:37 +0200 | [diff] [blame] | 92 | int http_find_header2(const char *name, int len, |
Willy Tarreau | 68085d8 | 2010-01-18 14:54:04 +0100 | [diff] [blame] | 93 | char *sol, struct hdr_idx *idx, |
matt.farnsworth@nokia.com | 1c2ab96 | 2008-04-14 20:47:37 +0200 | [diff] [blame] | 94 | struct hdr_ctx *ctx); |
Willy Tarreau | 55a8d0e | 2008-11-30 18:47:21 +0100 | [diff] [blame] | 95 | void http_sess_log(struct session *s); |
| 96 | void perform_http_redirect(struct session *s, struct stream_interface *si); |
Willy Tarreau | 0cac36f | 2008-11-30 20:44:17 +0100 | [diff] [blame] | 97 | void http_return_srv_error(struct session *s, struct stream_interface *si); |
Willy Tarreau | 4076a15 | 2009-04-02 15:18:36 +0200 | [diff] [blame] | 98 | void http_capture_bad_message(struct error_snapshot *es, struct session *s, |
Willy Tarreau | 8a0cef2 | 2012-03-09 13:39:23 +0100 | [diff] [blame] | 99 | struct http_msg *msg, |
Willy Tarreau | 078272e | 2010-12-12 12:46:33 +0100 | [diff] [blame] | 100 | int state, struct proxy *other_end); |
Willy Tarreau | 294c473 | 2011-12-16 21:35:50 +0100 | [diff] [blame] | 101 | unsigned int http_get_hdr(struct http_msg *msg, const char *hname, int hlen, |
| 102 | struct hdr_idx *idx, int occ, |
| 103 | struct hdr_ctx *ctx, char **vptr, int *vlen); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 104 | |
Willy Tarreau | 0937bc4 | 2009-12-22 15:03:09 +0100 | [diff] [blame] | 105 | void http_init_txn(struct session *s); |
| 106 | void http_end_txn(struct session *s); |
| 107 | void http_reset_txn(struct session *s); |
| 108 | |
Willy Tarreau | ff011f2 | 2011-01-06 17:51:27 +0100 | [diff] [blame] | 109 | struct http_req_rule *parse_http_req_cond(const char **args, const char *file, int linenum, struct proxy *proxy); |
| 110 | void free_http_req_rules(struct list *r); |
Willy Tarreau | 436d9ed | 2011-05-11 16:10:11 +0200 | [diff] [blame] | 111 | struct chunk *error_message(struct session *s, int msgnum); |
Willy Tarreau | ff011f2 | 2011-01-06 17:51:27 +0100 | [diff] [blame] | 112 | |
Willy Tarreau | fa355d4 | 2009-11-29 18:12:29 +0100 | [diff] [blame] | 113 | /* to be used when contents change in an HTTP message */ |
| 114 | #define http_msg_move_end(msg, bytes) do { \ |
| 115 | unsigned int _bytes = (bytes); \ |
Willy Tarreau | a458b67 | 2012-03-05 11:17:50 +0100 | [diff] [blame] | 116 | (msg)->next += (_bytes); \ |
Willy Tarreau | fa355d4 | 2009-11-29 18:12:29 +0100 | [diff] [blame] | 117 | (msg)->sov += (_bytes); \ |
| 118 | (msg)->eoh += (_bytes); \ |
| 119 | } while (0) |
| 120 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 121 | #endif /* _PROTO_PROTO_HTTP_H */ |
| 122 | |
| 123 | /* |
| 124 | * Local variables: |
| 125 | * c-indent-level: 8 |
| 126 | * c-basic-offset: 8 |
| 127 | * End: |
| 128 | */ |