1 /*
2  * Copyright (c) 2014, Peter Thorson. All rights reserved.
3  *
4  * Redistribution and use in source and binary forms, with or without
5  * modification, are permitted provided that the following conditions are met:
6  *     * Redistributions of source code must retain the above copyright
7  *       notice, this list of conditions and the following disclaimer.
8  *     * Redistributions in binary form must reproduce the above copyright
9  *       notice, this list of conditions and the following disclaimer in the
10  *       documentation and/or other materials provided with the distribution.
11  *     * Neither the name of the WebSocket++ Project nor the
12  *       names of its contributors may be used to endorse or promote products
13  *       derived from this software without specific prior written permission.
14  *
15  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
16  * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
17  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
18  * ARE DISCLAIMED. IN NO EVENT SHALL PETER THORSON BE LIABLE FOR ANY
19  * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
20  * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
21  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
22  * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
23  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
24  * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
25  *
26  */
27 
28 #ifndef HTTP_PARSER_IMPL_HPP
29 #define HTTP_PARSER_IMPL_HPP
30 
31 #include <algorithm>
32 #include <cstdlib>
33 #include <istream>
34 #include <sstream>
35 #include <string>
36 
37 namespace websocketpp {
38 namespace http {
39 namespace parser {
40 
set_version(std::string const & version)41 inline void parser::set_version(std::string const & version) {
42     m_version = version;
43 }
44 
get_header(std::string const & key) const45 inline std::string const & parser::get_header(std::string const & key) const {
46     header_list::const_iterator h = m_headers.find(key);
47 
48     if (h == m_headers.end()) {
49         return empty_header;
50     } else {
51         return h->second;
52     }
53 }
54 
get_header_as_plist(std::string const & key,parameter_list & out) const55 inline bool parser::get_header_as_plist(std::string const & key,
56     parameter_list & out) const
57 {
58     header_list::const_iterator it = m_headers.find(key);
59 
60     if (it == m_headers.end() || it->second.size() == 0) {
61         return false;
62     }
63 
64     return this->parse_parameter_list(it->second,out);
65 }
66 
append_header(std::string const & key,std::string const & val)67 inline void parser::append_header(std::string const & key, std::string const &
68     val)
69 {
70     if (std::find_if(key.begin(),key.end(),is_not_token_char) != key.end()) {
71         throw exception("Invalid header name",status_code::bad_request);
72     }
73 
74     if (this->get_header(key) == "") {
75         m_headers[key] = val;
76     } else {
77         m_headers[key] += ", " + val;
78     }
79 }
80 
replace_header(std::string const & key,std::string const & val)81 inline void parser::replace_header(std::string const & key, std::string const &
82     val)
83 {
84     m_headers[key] = val;
85 }
86 
remove_header(std::string const & key)87 inline void parser::remove_header(std::string const & key) {
88     m_headers.erase(key);
89 }
90 
set_body(std::string const & value)91 inline void parser::set_body(std::string const & value) {
92     if (value.size() == 0) {
93         remove_header("Content-Length");
94         m_body = "";
95         return;
96     }
97 
98     // TODO: should this method respect the max size? If so how should errors
99     // be indicated?
100 
101     std::stringstream len;
102     len << value.size();
103     replace_header("Content-Length", len.str());
104     m_body = value;
105 }
106 
parse_parameter_list(std::string const & in,parameter_list & out) const107 inline bool parser::parse_parameter_list(std::string const & in,
108     parameter_list & out) const
109 {
110     if (in.size() == 0) {
111         return false;
112     }
113 
114     std::string::const_iterator it;
115     it = extract_parameters(in.begin(),in.end(),out);
116     return (it == in.begin());
117 }
118 
prepare_body()119 inline bool parser::prepare_body() {
120     if (get_header("Content-Length") != "") {
121         std::string const & cl_header = get_header("Content-Length");
122         char * end;
123 
124         // TODO: not 100% sure what the compatibility of this method is. Also,
125         // I believe this will only work up to 32bit sizes. Is there a need for
126         // > 4GiB HTTP payloads?
127         m_body_bytes_needed = std::strtoul(cl_header.c_str(),&end,10);
128 
129         if (m_body_bytes_needed > m_body_bytes_max) {
130             throw exception("HTTP message body too large",
131                 status_code::request_entity_too_large);
132         }
133 
134         m_body_encoding = body_encoding::plain;
135         return true;
136     } else {
137         return false;
138     }
139 }
140 
process_body(char const * buf,size_t len)141 inline size_t parser::process_body(char const * buf, size_t len) {
142     if (m_body_encoding == body_encoding::plain) {
143         size_t processed = (std::min)(m_body_bytes_needed,len);
144         m_body.append(buf,processed);
145         m_body_bytes_needed -= processed;
146         return processed;
147     } else if (m_body_encoding == body_encoding::chunked) {
148         // TODO:
149         throw exception("Unexpected body encoding",
150             status_code::internal_server_error);
151     } else {
152         throw exception("Unexpected body encoding",
153             status_code::internal_server_error);
154     }
155 }
156 
process_header(std::string::iterator begin,std::string::iterator end)157 inline void parser::process_header(std::string::iterator begin,
158     std::string::iterator end)
159 {
160     std::string::iterator cursor = std::search(
161         begin,
162         end,
163         header_separator,
164         header_separator + sizeof(header_separator) - 1
165     );
166 
167     if (cursor == end) {
168         throw exception("Invalid header line",status_code::bad_request);
169     }
170 
171     append_header(strip_lws(std::string(begin,cursor)),
172                   strip_lws(std::string(cursor+sizeof(header_separator)-1,end)));
173 }
174 
raw_headers() const175 inline std::string parser::raw_headers() const {
176     std::stringstream raw;
177 
178     header_list::const_iterator it;
179     for (it = m_headers.begin(); it != m_headers.end(); it++) {
180         raw << it->first << ": " << it->second << "\r\n";
181     }
182 
183     return raw.str();
184 }
185 
186 
187 
188 } // namespace parser
189 } // namespace http
190 } // namespace websocketpp
191 
192 #endif // HTTP_PARSER_IMPL_HPP
193