Monero
Loading...
Searching...
No Matches
http_protocol_handler.h
Go to the documentation of this file.
1// Copyright (c) 2006-2013, Andrey N. Sabelnikov, www.sabelnikov.net
2// 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 Andrey N. Sabelnikov 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" AND
16// ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
17// WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
18// DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER 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
29
30#ifndef _HTTP_SERVER_H_
31#define _HTTP_SERVER_H_
32
33#include <boost/optional/optional.hpp>
34#include <string>
35#include "net_utils_base.h"
36#include "http_auth.h"
37#include "http_base.h"
38
39#undef MONERO_DEFAULT_LOG_CATEGORY
40#define MONERO_DEFAULT_LOG_CATEGORY "net.http"
41
42namespace epee
43{
44namespace net_utils
45{
46 namespace http
47 {
48
49
50 /************************************************************************/
51 /* */
52 /************************************************************************/
54 {
55 std::string m_folder;
56 std::vector<std::string> m_access_control_origins;
57 boost::optional<login> m_user;
58 size_t m_max_content_length{std::numeric_limits<size_t>::max()};
60 };
61
62 /************************************************************************/
63 /* */
64 /************************************************************************/
65 template<class t_connection_context = net_utils::connection_context_base>
67 {
68 public:
69 typedef t_connection_context connection_context;//t_connection_context net_utils::connection_context_base connection_context;
71
72 simple_http_connection_handler(i_service_endpoint* psnd_hndlr, config_type& config, t_connection_context& conn_context);
74
76 {
77 return true;
78 }
79
80 virtual bool thread_init()
81 {
82 return true;
83 }
84
85 virtual bool thread_deinit()
86 {
87 return true;
88 }
90 {
91 return true;
92 }
93 virtual bool handle_recv(const void* ptr, size_t cb);
94 virtual bool handle_request(const http::http_request_info& query_info, http_response_info& response);
95
96 private:
103 };
104
107 http_body_transfer_measure,//mean "Content-Length" valid
112 };
113
114 bool handle_buff_in(std::string& buf);
115
117
119 bool parse_cached_header(http_header_info& body_info, const std::string& m_cache_to_process, size_t pos);
120 std::string::size_type match_end_of_header(const std::string& buf);
121 bool get_len_from_content_lenght(const std::string& str, size_t& len);
124 bool set_ready_state();
125 bool slash_to_back_slash(std::string& str);
126 std::string get_file_mime_tipe(const std::string& path);
127 std::string get_response_header(const http_response_info& response);
128
129 //major function
130 inline bool handle_request_and_send_response(const http::http_request_info& query_info);
131
132
133 std::string get_not_found_response_body(const std::string& URI);
134
135 std::string m_root_path;
136 std::string m_cache;
146 protected:
148 t_connection_context& m_conn_context;
149 };
150
151 template<class t_connection_context>
153 {
155 virtual bool handle_http_request(const http_request_info& query_info,
156 http_response_info& response,
157 t_connection_context& m_conn_context) = 0;
158 virtual bool init_server_thread(){return true;}
159 virtual bool deinit_server_thread(){return true;}
160 };
161
162 template<class t_connection_context>
164 {
166 std::function<void(size_t, uint8_t*)> rng;
167 };
168
169 /************************************************************************/
170 /* */
171 /************************************************************************/
172
173 template<class t_connection_context = net_utils::connection_context_base>
174 class http_custom_handler: public simple_http_connection_handler<t_connection_context>
175 {
176 public:
178
179 http_custom_handler(i_service_endpoint* psnd_hndlr, config_type& config, t_connection_context& conn_context)
180 : simple_http_connection_handler<t_connection_context>(psnd_hndlr, config, conn_context),
183 {}
184 inline bool handle_request(const http_request_info& query_info, http_response_info& response)
185 {
186 CHECK_AND_ASSERT_MES(m_config.m_phandler, false, "m_config.m_phandler is NULL!!!!");
187
188 const auto auth_response = m_auth.get_response(query_info);
189 if (auth_response)
190 {
191 response = std::move(*auth_response);
192 return true;
193 }
194
195 //fill with default values
196 response.m_mime_tipe = "text/plain";
197 response.m_response_code = 200;
198 response.m_response_comment = "OK";
199 response.m_body.clear();
200
201 return m_config.m_phandler->handle_http_request(query_info, response, this->m_conn_context);
202 }
203
204 virtual bool thread_init()
205 {
206 return m_config.m_phandler->init_server_thread();
207 }
208
209 virtual bool thread_deinit()
210 {
211 return m_config.m_phandler->deinit_server_thread();
212 }
214 {}
216 {
217 return true;
218 }
219
220 private:
221 //simple_http_connection_handler::config_type m_stub_config;
222 config_type& m_config;
224 };
225 }
226}
227}
228
230
231#endif //_HTTP_SERVER_H_
Definition: syncobj.h:82
Definition: http_protocol_handler.h:175
bool after_init_connection()
Definition: http_protocol_handler.h:215
void handle_qued_callback()
Definition: http_protocol_handler.h:213
virtual bool thread_deinit()
Definition: http_protocol_handler.h:209
http_custom_handler(i_service_endpoint *psnd_hndlr, config_type &config, t_connection_context &conn_context)
Definition: http_protocol_handler.h:179
bool handle_request(const http_request_info &query_info, http_response_info &response)
Definition: http_protocol_handler.h:184
custum_handler_config< t_connection_context > config_type
Definition: http_protocol_handler.h:177
config_type & m_config
Definition: http_protocol_handler.h:222
http_server_auth m_auth
Definition: http_protocol_handler.h:223
virtual bool thread_init()
Definition: http_protocol_handler.h:204
Implements RFC 2617 digest auth. Digests from RFC 7616 can be added.
Definition: http_auth.h:61
boost::optional< http_response_info > get_response(const http_request_info &request)
Definition: http_auth.h:78
Definition: http_protocol_handler.h:67
size_t m_bytes_read
Definition: http_protocol_handler.h:145
virtual ~simple_http_connection_handler()
Definition: http_protocol_handler.h:73
bool release_protocol()
Definition: http_protocol_handler.h:75
config_type & m_config
Definition: http_protocol_handler.h:142
virtual bool thread_deinit()
Definition: http_protocol_handler.h:85
bool get_len_from_content_lenght(const std::string &str, size_t &len)
Definition: http_protocol_handler.inl:567
bool parse_cached_header(http_header_info &body_info, const std::string &m_cache_to_process, size_t pos)
Definition: http_protocol_handler.inl:512
body_transfer_type
Definition: http_protocol_handler.h:105
@ http_body_transfer_measure
Definition: http_protocol_handler.h:107
@ http_body_transfer_undefined
Definition: http_protocol_handler.h:111
@ http_body_transfer_connection_close
Definition: http_protocol_handler.h:109
@ http_body_transfer_multipart
Definition: http_protocol_handler.h:110
@ http_body_transfer_chunked_instead_measure
Definition: http_protocol_handler.h:108
@ http_body_transfer_chunked
Definition: http_protocol_handler.h:106
i_service_endpoint * m_psnd_hndlr
Definition: http_protocol_handler.h:147
bool after_init_connection()
Definition: http_protocol_handler.h:89
std::string m_cache
Definition: http_protocol_handler.h:136
bool handle_retriving_query_body()
Definition: http_protocol_handler.inl:466
bool slash_to_back_slash(std::string &str)
Definition: http_protocol_handler.inl:746
machine_state
Definition: http_protocol_handler.h:97
@ http_state_retriving_body
Definition: http_protocol_handler.h:100
@ http_state_connection_close
Definition: http_protocol_handler.h:101
@ http_state_error
Definition: http_protocol_handler.h:102
@ http_state_retriving_header
Definition: http_protocol_handler.h:99
@ http_state_retriving_comand_line
Definition: http_protocol_handler.h:98
size_t m_newlines
Definition: http_protocol_handler.h:144
http::http_request_info m_query_info
Definition: http_protocol_handler.h:140
machine_state m_state
Definition: http_protocol_handler.h:137
std::string m_root_path
Definition: http_protocol_handler.h:135
std::string get_file_mime_tipe(const std::string &path)
Definition: http_protocol_handler.inl:703
bool handle_invoke_query_line()
Definition: http_protocol_handler.inl:365
bool handle_buff_in(std::string &buf)
Definition: http_protocol_handler.inl:243
bool handle_query_measure()
Definition: http_protocol_handler.inl:486
body_transfer_type m_body_transfer_type
Definition: http_protocol_handler.h:138
bool set_ready_state()
Definition: http_protocol_handler.inl:217
bool handle_request_and_send_response(const http::http_request_info &query_info)
Definition: http_protocol_handler.inl:581
size_t m_len_remain
Definition: http_protocol_handler.h:141
t_connection_context & m_conn_context
Definition: http_protocol_handler.h:148
bool analize_cached_request_header_and_invoke_state(size_t pos)
Definition: http_protocol_handler.inl:419
std::string get_response_header(const http_response_info &response)
Definition: http_protocol_handler.inl:645
std::string::size_type match_end_of_header(const std::string &buf)
Definition: http_protocol_handler.inl:405
virtual bool handle_request(const http::http_request_info &query_info, http_response_info &response)
Definition: http_protocol_handler.inl:615
bool m_is_stop_handling
Definition: http_protocol_handler.h:139
virtual bool handle_recv(const void *ptr, size_t cb)
Definition: http_protocol_handler.inl:230
virtual bool thread_init()
Definition: http_protocol_handler.h:80
http_server_config config_type
Definition: http_protocol_handler.h:70
bool m_want_close
Definition: http_protocol_handler.h:143
std::string get_not_found_response_body(const std::string &URI)
Definition: http_protocol_handler.inl:729
size_t m_len_summary
Definition: http_protocol_handler.h:141
t_connection_context connection_context
Definition: http_protocol_handler.h:69
Definition: cryptonote_config.h:211
Definition: abstract_http_client.h:60
TODO: (mj-xmr) This will be reduced in an another PR.
Definition: byte_slice.h:40
const char *const str
Definition: portlistingparse.c:23
const char * buf
Definition: slow_memmem.cpp:73
unsigned char uint8_t
Definition: stdint.h:124
Definition: http_protocol_handler.h:164
i_http_server_handler< t_connection_context > * m_phandler
Definition: http_protocol_handler.h:165
std::function< void(size_t, uint8_t *)> rng
Definition: http_protocol_handler.h:166
Definition: http_base.h:84
Definition: http_base.h:132
std::string m_response_comment
Definition: http_base.h:165
std::string m_mime_tipe
Definition: http_base.h:168
int m_response_code
Definition: http_base.h:164
std::string m_body
Definition: http_base.h:167
Definition: http_protocol_handler.h:54
std::vector< std::string > m_access_control_origins
Definition: http_protocol_handler.h:56
critical_section m_lock
Definition: http_protocol_handler.h:59
size_t m_max_content_length
Definition: http_protocol_handler.h:58
boost::optional< login > m_user
Definition: http_protocol_handler.h:57
std::string m_folder
Definition: http_protocol_handler.h:55
Definition: http_protocol_handler.h:153
virtual bool init_server_thread()
Definition: http_protocol_handler.h:158
virtual bool deinit_server_thread()
Definition: http_protocol_handler.h:159
virtual ~i_http_server_handler()
Definition: http_protocol_handler.h:154
virtual bool handle_http_request(const http_request_info &query_info, http_response_info &response, t_connection_context &m_conn_context)=0
Definition: net_utils_base.h:440