Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1 | /* |
| 2 | include/proto/proto_http.h |
| 3 | This file contains HTTP protocol definitions. |
| 4 | |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 5 | Copyright (C) 2000-2007 Willy Tarreau - w@1wt.eu |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +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 | */ |
| 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 | |
| 52 | #define HTTP_IS_CTL(x) (http_is_ctl[(unsigned char)(x)]) |
| 53 | #define HTTP_IS_SEP(x) (http_is_sep[(unsigned char)(x)]) |
| 54 | #define HTTP_IS_LWS(x) (http_is_lws[(unsigned char)(x)]) |
| 55 | #define HTTP_IS_SPHT(x) (http_is_spht[(unsigned char)(x)]) |
| 56 | #define HTTP_IS_CRLF(x) (http_is_crlf[(unsigned char)(x)]) |
| 57 | #define HTTP_IS_TOKEN(x) (http_is_token[(unsigned char)(x)]) |
Willy Tarreau | 4b89ad4 | 2007-03-04 18:13:58 +0100 | [diff] [blame] | 58 | #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] | 59 | |
| 60 | int event_accept(int fd); |
| 61 | int process_session(struct task *t); |
| 62 | int process_cli(struct session *t); |
| 63 | int process_srv(struct session *t); |
| 64 | |
Willy Tarreau | 0f77253 | 2006-12-23 20:51:41 +0100 | [diff] [blame] | 65 | void client_retnclose(struct session *s, const struct chunk *msg); |
| 66 | void client_return(struct session *s, const struct chunk *msg); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 67 | void srv_close_with_err(struct session *t, int err, int finst, |
Willy Tarreau | 0f77253 | 2006-12-23 20:51:41 +0100 | [diff] [blame] | 68 | int status, const struct chunk *msg); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 69 | |
| 70 | int produce_content(struct session *s); |
Willy Tarreau | c0dde7a | 2007-01-01 21:38:07 +0100 | [diff] [blame] | 71 | int produce_content_stats(struct session *s); |
| 72 | int produce_content_stats_proxy(struct session *s, struct proxy *px); |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 73 | 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] | 74 | void get_srv_from_appsession(struct session *t, const char *begin, int len); |
| 75 | int apply_filter_to_req_headers(struct session *t, struct buffer *req, struct hdr_exp *exp); |
| 76 | int apply_filter_to_req_line(struct session *t, struct buffer *req, struct hdr_exp *exp); |
| 77 | int apply_filters_to_request(struct session *t, struct buffer *req, struct hdr_exp *exp); |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 78 | int apply_filters_to_response(struct session *t, struct buffer *rtr, struct hdr_exp *exp); |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 79 | void manage_client_side_cookies(struct session *t, struct buffer *req); |
Willy Tarreau | a15645d | 2007-03-18 16:22:39 +0100 | [diff] [blame] | 80 | void manage_server_side_cookies(struct session *t, struct buffer *rtr); |
| 81 | void check_response_for_cacheability(struct session *t, struct buffer *rtr); |
Willy Tarreau | b251390 | 2006-12-17 14:52:38 +0100 | [diff] [blame] | 82 | int stats_check_uri_auth(struct session *t, struct proxy *backend); |
Willy Tarreau | 8058743 | 2006-12-24 17:47:20 +0100 | [diff] [blame] | 83 | void init_proto_http(); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 84 | |
| 85 | #endif /* _PROTO_PROTO_HTTP_H */ |
| 86 | |
| 87 | /* |
| 88 | * Local variables: |
| 89 | * c-indent-level: 8 |
| 90 | * c-basic-offset: 8 |
| 91 | * End: |
| 92 | */ |