/* * nghttp2 - HTTP/2 C Library * * Copyright (c) 2013 Tatsuhiro Tsujikawa * * Permission is hereby granted, free of charge, to any person obtaining * a copy of this software and associated documentation files (the * "Software"), to deal in the Software without restriction, including * without limitation the rights to use, copy, modify, merge, publish, * distribute, sublicense, and/or sell copies of the Software, and to * permit persons to whom the Software is furnished to do so, subject to * the following conditions: * * The above copyright notice and this permission notice shall be * included in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE * LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION * OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ #ifndef HTTP2_H #define HTTP2_H #include "nghttp2_config.h" #include #include #include #include #include #include "http-parser/http_parser.h" namespace nghttp2 { struct Header { Header(std::string name, std::string value, bool no_index = false) : name(std::move(name)), value(std::move(value)), no_index(no_index) {} Header() : no_index(false) {} bool operator==(const Header &other) const { return name == other.name && value == other.value; } bool operator<(const Header &rhs) const { return name < rhs.name || (name == rhs.name && value < rhs.value); } std::string name; std::string value; bool no_index; }; typedef std::vector
Headers; namespace http2 { std::string get_status_string(unsigned int status_code); void capitalize(std::string &s, size_t offset); // Returns true if |value| is LWS bool lws(const char *value); // Copies the |field| component value from |u| and |url| to the // |dest|. If |u| does not have |field|, then this function does // nothing. void copy_url_component(std::string &dest, const http_parser_url *u, int field, const char *url); Headers::value_type to_header(const uint8_t *name, size_t namelen, const uint8_t *value, size_t valuelen, bool no_index); // Add name/value pairs to |nva|. If |no_index| is true, this // name/value pair won't be indexed when it is forwarded to the next // hop. This function strips white spaces around |value|. void add_header(Headers &nva, const uint8_t *name, size_t namelen, const uint8_t *value, size_t valuelen, bool no_index); // Returns pointer to the entry in |nva| which has name |name|. If // more than one entries which have the name |name|, last occurrence // in |nva| is returned. If no such entry exist, returns nullptr. const Headers::value_type *get_header(const Headers &nva, const char *name); // Returns nv->second if nv is not nullptr. Otherwise, returns "". std::string value_to_str(const Headers::value_type *nv); // Returns true if the value of |nv| is not empty. bool non_empty_value(const Headers::value_type *nv); // Creates nghttp2_nv using |name| and |value| and returns it. The // returned value only references the data pointer to name.c_str() and // value.c_str(). If |no_index| is true, nghttp2_nv flags member has // NGHTTP2_NV_FLAG_NO_INDEX flag set. nghttp2_nv make_nv(const std::string &name, const std::string &value, bool no_index = false); // Create nghttp2_nv from string literal |name| and |value|. template nghttp2_nv make_nv_ll(const char (&name)[N], const char (&value)[M]) { return {(uint8_t *)name, (uint8_t *)value, N - 1, M - 1, NGHTTP2_NV_FLAG_NONE}; } // Create nghttp2_nv from string literal |name| and c-string |value|. template nghttp2_nv make_nv_lc(const char (&name)[N], const char *value) { return {(uint8_t *)name, (uint8_t *)value, N - 1, strlen(value), NGHTTP2_NV_FLAG_NONE}; } // Create nghttp2_nv from string literal |name| and std::string // |value|. template nghttp2_nv make_nv_ls(const char (&name)[N], const std::string &value) { return {(uint8_t *)name, (uint8_t *)value.c_str(), N - 1, value.size(), NGHTTP2_NV_FLAG_NONE}; } // Appends headers in |headers| to |nv|. Certain headers, including // disallowed headers in HTTP/2 spec and headers which require // special handling (i.e. via), are not copied. void copy_headers_to_nva(std::vector &nva, const Headers &headers); // Appends HTTP/1.1 style header lines to |hdrs| from headers in // |headers|. Certain headers, which requires special handling // (i.e. via and cookie), are not appended. void build_http1_headers_from_headers(std::string &hdrs, const Headers &headers); // Return positive window_size_increment if WINDOW_UPDATE should be // sent for the stream |stream_id|. If |stream_id| == 0, this function // determines the necessity of the WINDOW_UPDATE for a connection. // // If the function determines WINDOW_UPDATE is not necessary at the // moment, it returns -1. int32_t determine_window_update_transmission(nghttp2_session *session, int32_t stream_id); // Dumps name/value pairs in |nv| to |out|. The |nv| must be // terminated by nullptr. void dump_nv(FILE *out, const char **nv); // Dumps name/value pairs in |nva| to |out|. void dump_nv(FILE *out, const nghttp2_nv *nva, size_t nvlen); // Dumps name/value pairs in |nva| to |out|. void dump_nv(FILE *out, const Headers &nva); // Rewrites redirection URI which usually appears in location header // field. The |uri| is the URI in the location header field. The |u| // stores the result of parsed |uri|. The |request_host| is the host // or :authority header field value in the request. The // |upstream_scheme| is either "https" or "http" in the upstream // interface. // // This function returns the new rewritten URI on success. If the // location URI is not subject to the rewrite, this function returns // emtpy string. std::string rewrite_location_uri(const std::string &uri, const http_parser_url &u, const std::string &request_host, const std::string &upstream_scheme, uint16_t upstream_port); // Checks the header name/value pair using nghttp2_check_header_name() // and nghttp2_check_header_value(). If both function returns nonzero, // this function returns nonzero. int check_nv(const uint8_t *name, size_t namelen, const uint8_t *value, size_t valuelen); // Returns parsed HTTP status code. Returns -1 on failure. int parse_http_status_code(const std::string &src); // Header fields to be indexed, except HD_MAXIDX which is convenient // member to get maximum value. enum { HD__AUTHORITY, HD__HOST, HD__METHOD, HD__PATH, HD__SCHEME, HD__STATUS, HD_ALT_SVC, HD_CONNECTION, HD_CONTENT_LENGTH, HD_COOKIE, HD_EXPECT, HD_HOST, HD_HTTP2_SETTINGS, HD_IF_MODIFIED_SINCE, HD_KEEP_ALIVE, HD_LOCATION, HD_PROXY_CONNECTION, HD_SERVER, HD_TE, HD_TRAILER, HD_TRANSFER_ENCODING, HD_UPGRADE, HD_VIA, HD_X_FORWARDED_FOR, HD_X_FORWARDED_PROTO, HD_MAXIDX, }; // Looks up header token for header name |name| of length |namelen|. // Only headers we are interested in are tokenized. If header name // cannot be tokenized, returns -1. int lookup_token(const uint8_t *name, size_t namelen); int lookup_token(const std::string &name); // Initializes |hdidx|, header index. The |hdidx| must point to the // array containing at least HD_MAXIDX elements. void init_hdidx(int *hdidx); // Indexes header |token| using index |idx|. void index_header(int *hdidx, int token, size_t idx); // Iterates |headers| and for each element, call index_header. void index_headers(int *hdidx, const Headers &headers); // Returns true if HTTP/2 request pseudo header |token| is not indexed // yet and not -1. bool check_http2_request_pseudo_header(const int *hdidx, int token); // Returns true if HTTP/2 response pseudo header |token| is not // indexed yet and not -1. bool check_http2_response_pseudo_header(const int *hdidx, int token); // Returns true if header field denoted by |token| is allowed for // HTTP/2. bool http2_header_allowed(int token); // Returns true that |hdidx| contains mandatory HTTP/2 request // headers. bool http2_mandatory_request_headers_presence(const int *hdidx); // Returns header denoted by |token| using index |hdidx|. const Headers::value_type *get_header(const int *hdidx, int token, const Headers &nva); } // namespace http2 } // namespace nghttp2 #endif // HTTP2_H