Willy Tarreau | 35b51c6 | 2018-09-10 15:38:55 +0200 | [diff] [blame] | 1 | /* |
| 2 | * include/common/http.h |
| 3 | * |
| 4 | * Version-agnostic and implementation-agnostic HTTP protocol definitions. |
| 5 | * |
| 6 | * Copyright (C) 2000-2018 Willy Tarreau - w@1wt.eu |
| 7 | * |
| 8 | * This library is free software; you can redistribute it and/or |
| 9 | * modify it under the terms of the GNU Lesser General Public |
| 10 | * License as published by the Free Software Foundation, version 2.1 |
| 11 | * exclusively. |
| 12 | * |
| 13 | * This library is distributed in the hope that it will be useful, |
| 14 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 15 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
| 16 | * Lesser General Public License for more details. |
| 17 | * |
| 18 | * You should have received a copy of the GNU Lesser General Public |
| 19 | * License along with this library; if not, write to the Free Software |
| 20 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA |
| 21 | */ |
| 22 | |
| 23 | #ifndef _COMMON_HTTP_H |
| 24 | #define _COMMON_HTTP_H |
| 25 | |
| 26 | #include <common/buf.h> |
| 27 | #include <common/ist.h> |
| 28 | |
| 29 | /* these macros are used mainly when parsing header fields */ |
| 30 | #define HTTP_FLG_CTL 0x01 |
| 31 | #define HTTP_FLG_SEP 0x02 |
| 32 | #define HTTP_FLG_LWS 0x04 |
| 33 | #define HTTP_FLG_SPHT 0x08 |
| 34 | #define HTTP_FLG_CRLF 0x10 |
| 35 | #define HTTP_FLG_TOK 0x20 |
| 36 | #define HTTP_FLG_VER 0x40 |
| 37 | #define HTTP_FLG_DIG 0x80 |
| 38 | |
| 39 | #define HTTP_IS_CTL(x) (http_char_classes[(uint8_t)(x)] & HTTP_FLG_CTL) |
| 40 | #define HTTP_IS_SEP(x) (http_char_classes[(uint8_t)(x)] & HTTP_FLG_SEP) |
| 41 | #define HTTP_IS_LWS(x) (http_char_classes[(uint8_t)(x)] & HTTP_FLG_LWS) |
| 42 | #define HTTP_IS_SPHT(x) (http_char_classes[(uint8_t)(x)] & HTTP_FLG_SPHT) |
| 43 | #define HTTP_IS_CRLF(x) (http_char_classes[(uint8_t)(x)] & HTTP_FLG_CRLF) |
| 44 | #define HTTP_IS_TOKEN(x) (http_char_classes[(uint8_t)(x)] & HTTP_FLG_TOK) |
| 45 | #define HTTP_IS_VER_TOKEN(x) (http_char_classes[(uint8_t)(x)] & HTTP_FLG_VER) |
| 46 | #define HTTP_IS_DIGIT(x) (http_char_classes[(uint8_t)(x)] & HTTP_FLG_DIG) |
| 47 | |
| 48 | /* Known HTTP methods */ |
| 49 | enum http_meth_t { |
| 50 | HTTP_METH_OPTIONS, |
| 51 | HTTP_METH_GET, |
| 52 | HTTP_METH_HEAD, |
| 53 | HTTP_METH_POST, |
| 54 | HTTP_METH_PUT, |
| 55 | HTTP_METH_DELETE, |
| 56 | HTTP_METH_TRACE, |
| 57 | HTTP_METH_CONNECT, |
| 58 | HTTP_METH_OTHER, /* Must be the last entry */ |
| 59 | } __attribute__((packed)); |
| 60 | |
| 61 | /* Known HTTP authentication schemes */ |
| 62 | enum ht_auth_m { |
| 63 | HTTP_AUTH_WRONG = -1, /* missing or unknown */ |
| 64 | HTTP_AUTH_UNKNOWN = 0, |
| 65 | HTTP_AUTH_BASIC, |
| 66 | HTTP_AUTH_DIGEST, |
| 67 | } __attribute__((packed)); |
| 68 | |
| 69 | /* All implemented HTTP status codes */ |
| 70 | enum { |
| 71 | HTTP_ERR_200 = 0, |
| 72 | HTTP_ERR_400, |
| 73 | HTTP_ERR_403, |
| 74 | HTTP_ERR_405, |
| 75 | HTTP_ERR_408, |
| 76 | HTTP_ERR_421, |
| 77 | HTTP_ERR_425, |
| 78 | HTTP_ERR_429, |
| 79 | HTTP_ERR_500, |
| 80 | HTTP_ERR_502, |
| 81 | HTTP_ERR_503, |
| 82 | HTTP_ERR_504, |
| 83 | HTTP_ERR_SIZE |
| 84 | }; |
| 85 | |
| 86 | /* Note: the strings below make use of chunks. Chunks may carry an allocated |
| 87 | * size in addition to the length. The size counts from the beginning (str) |
| 88 | * to the end. If the size is unknown, it MUST be zero, in which case the |
| 89 | * sample will automatically be duplicated when a change larger than <len> has |
| 90 | * to be performed. Thus it is safe to always set size to zero. |
| 91 | */ |
| 92 | struct http_meth { |
| 93 | enum http_meth_t meth; |
| 94 | struct buffer str; |
| 95 | }; |
| 96 | |
| 97 | struct http_auth_data { |
| 98 | enum ht_auth_m method; /* one of HTTP_AUTH_* */ |
| 99 | /* 7 bytes unused here */ |
| 100 | struct buffer method_data; /* points to the creditial part from 'Authorization:' header */ |
| 101 | char *user, *pass; /* extracted username & password */ |
| 102 | }; |
| 103 | |
| 104 | struct http_method_desc { |
| 105 | enum http_meth_t meth; |
| 106 | const struct ist text; |
| 107 | }; |
| 108 | |
| 109 | extern const int http_err_codes[HTTP_ERR_SIZE]; |
| 110 | extern struct buffer http_err_chunks[HTTP_ERR_SIZE]; |
| 111 | const struct ist http_known_methods[HTTP_METH_OTHER]; |
| 112 | extern const uint8_t http_char_classes[256]; |
Willy Tarreau | 04f1e2d | 2018-09-10 18:04:24 +0200 | [diff] [blame] | 113 | |
| 114 | const struct ist HTTP_100; |
| 115 | extern const char *HTTP_301; |
Willy Tarreau | 35b51c6 | 2018-09-10 15:38:55 +0200 | [diff] [blame] | 116 | extern const char *HTTP_302; |
| 117 | extern const char *HTTP_303; |
Willy Tarreau | 04f1e2d | 2018-09-10 18:04:24 +0200 | [diff] [blame] | 118 | extern const char *HTTP_307; |
| 119 | extern const char *HTTP_308; |
| 120 | extern const char *HTTP_401_fmt; |
| 121 | extern const char *HTTP_407_fmt; |
Willy Tarreau | 35b51c6 | 2018-09-10 15:38:55 +0200 | [diff] [blame] | 122 | |
Willy Tarreau | 04f1e2d | 2018-09-10 18:04:24 +0200 | [diff] [blame] | 123 | int init_http(char **err); |
Willy Tarreau | 35b51c6 | 2018-09-10 15:38:55 +0200 | [diff] [blame] | 124 | enum http_meth_t find_http_meth(const char *str, const int len); |
Willy Tarreau | 04f1e2d | 2018-09-10 18:04:24 +0200 | [diff] [blame] | 125 | const int http_get_status_idx(unsigned int status); |
| 126 | const char *http_get_reason(unsigned int status); |
Willy Tarreau | 6b952c8 | 2018-09-10 17:45:34 +0200 | [diff] [blame] | 127 | struct ist http_get_path(const struct ist uri); |
Willy Tarreau | ab813a4 | 2018-09-10 18:41:28 +0200 | [diff] [blame] | 128 | int http_header_match2(const char *hdr, const char *end, |
| 129 | const char *name, int len); |
| 130 | char *http_find_hdr_value_end(char *s, const char *e); |
| 131 | char *http_find_cookie_value_end(char *s, const char *e); |
| 132 | char *http_extract_cookie_value(char *hdr, const char *hdr_end, |
| 133 | char *cookie_name, size_t cookie_name_l, |
| 134 | int list, char **value, size_t *value_l); |
| 135 | int http_parse_qvalue(const char *qvalue, const char **end); |
| 136 | const char *http_find_url_param_pos(const char **chunks, |
| 137 | const char* url_param_name, |
| 138 | size_t url_param_name_l, char delim); |
| 139 | int http_find_next_url_param(const char **chunks, |
| 140 | const char* url_param_name, size_t url_param_name_l, |
| 141 | const char **vstart, const char **vend, char delim); |
| 142 | |
| 143 | /* |
| 144 | * Given a path string and its length, find the position of beginning of the |
| 145 | * query string. Returns NULL if no query string is found in the path. |
| 146 | * |
| 147 | * Example: if path = "/foo/bar/fubar?yo=mama;ye=daddy", and n = 22: |
| 148 | * |
| 149 | * find_query_string(path, n, '?') points to "yo=mama;ye=daddy" string. |
| 150 | */ |
| 151 | static inline char *http_find_param_list(char *path, size_t path_l, char delim) |
| 152 | { |
| 153 | char *p; |
| 154 | |
| 155 | p = memchr(path, delim, path_l); |
| 156 | return p ? p + 1 : NULL; |
| 157 | } |
| 158 | |
| 159 | static inline int http_is_param_delimiter(char c, char delim) |
| 160 | { |
| 161 | return c == '&' || c == ';' || c == delim; |
| 162 | } |
| 163 | |
Willy Tarreau | 35b51c6 | 2018-09-10 15:38:55 +0200 | [diff] [blame] | 164 | |
| 165 | #endif /* _COMMON_HTTP_H */ |
| 166 | |
| 167 | /* |
| 168 | * Local variables: |
| 169 | * c-indent-level: 8 |
| 170 | * c-basic-offset: 8 |
| 171 | * End: |
| 172 | */ |