Monero
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 
42 namespace epee
43 {
44 namespace net_utils
45 {
46  namespace http
47  {
48 
49 
50  /************************************************************************/
51  /* */
52  /************************************************************************/
54  {
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 
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);
123  bool handle_query_measure();
124  bool set_ready_state();
128 
129  //major function
130  inline bool handle_request_and_send_response(const http::http_request_info& query_info);
131 
132 
134 
144  size_t m_newlines;
145  size_t m_bytes_read;
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),
181  m_config(config),
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 
229 #include "http_protocol_handler.inl"
230 
231 #endif //_HTTP_SERVER_H_
config_type & m_config
Definition: http_protocol_handler.h:142
virtual bool thread_deinit()
Definition: http_protocol_handler.h:85
bool m_want_close
Definition: http_protocol_handler.h:143
boost::optional< http_response_info > get_response(const http_request_info &request)
Definition: http_auth.h:78
std::string m_folder
Definition: http_protocol_handler.h:55
http::http_request_info m_query_info
Definition: http_protocol_handler.h:140
Definition: http_protocol_handler.h:66
virtual bool thread_deinit()
Definition: http_protocol_handler.h:209
config_type & m_config
Definition: http_protocol_handler.h:222
size_t m_max_content_length
Definition: http_protocol_handler.h:58
bool handle_invoke_query_line()
Definition: http_protocol_handler.inl:365
std::function< void(size_t, uint8_t *)> rng
Definition: http_protocol_handler.h:166
std::string get_not_found_response_body(const std::string &URI)
Definition: http_protocol_handler.inl:729
::std::string string
Definition: gtest-port.h:1097
std::string m_root_path
Definition: http_protocol_handler.h:135
machine_state
Definition: http_protocol_handler.h:97
size_t m_len_summary
Definition: http_protocol_handler.h:141
virtual ~simple_http_connection_handler()
Definition: http_protocol_handler.h:73
bool handle_request(const http_request_info &query_info, http_response_info &response)
Definition: http_protocol_handler.h:184
body_transfer_type
Definition: http_protocol_handler.h:105
Definition: cryptonote_config.h:216
bool handle_buff_in(std::string &buf)
Definition: http_protocol_handler.inl:243
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
Definition: abstract_http_client.h:59
std::string m_mime_tipe
Definition: http_base.h:168
t_connection_context & m_conn_context
Definition: http_protocol_handler.h:148
std::string get_file_mime_tipe(const std::string &path)
Definition: http_protocol_handler.inl:703
machine_state m_state
Definition: http_protocol_handler.h:137
bool get_len_from_content_lenght(const std::string &str, size_t &len)
Definition: http_protocol_handler.inl:567
bool set_ready_state()
Definition: http_protocol_handler.inl:217
boost::optional< login > m_user
Definition: http_protocol_handler.h:57
bool slash_to_back_slash(std::string &str)
Definition: http_protocol_handler.inl:746
Definition: syncobj.h:81
std::string::size_type match_end_of_header(const std::string &buf)
Definition: http_protocol_handler.inl:405
bool handle_query_measure()
Definition: http_protocol_handler.inl:486
Definition: http_protocol_handler.h:163
virtual bool init_server_thread()
Definition: http_protocol_handler.h:158
Definition: http_protocol_handler.h:152
critical_section m_lock
Definition: http_protocol_handler.h:59
bool release_protocol()
Definition: http_protocol_handler.h:75
bool handle_retriving_query_body()
Definition: http_protocol_handler.inl:466
size_t m_newlines
Definition: http_protocol_handler.h:144
virtual bool thread_init()
Definition: http_protocol_handler.h:204
size_t m_len_remain
Definition: http_protocol_handler.h:141
simple_http_connection_handler(i_service_endpoint *psnd_hndlr, config_type &config, t_connection_context &conn_context)
Definition: http_protocol_handler.inl:200
Definition: http_base.h:83
std::string m_response_comment
Definition: http_base.h:165
http_server_auth m_auth
Definition: http_protocol_handler.h:223
i_http_server_handler< t_connection_context > * m_phandler
Definition: http_protocol_handler.h:165
http_server_config config_type
Definition: http_protocol_handler.h:70
int m_response_code
Definition: http_base.h:164
bool handle_request_and_send_response(const http::http_request_info &query_info)
Definition: http_protocol_handler.inl:581
const char * buf
Definition: slow_memmem.cpp:73
Definition: http_protocol_handler.h:174
virtual bool handle_recv(const void *ptr, size_t cb)
Definition: http_protocol_handler.inl:230
bool after_init_connection()
Definition: http_protocol_handler.h:89
const char *const str
Definition: portlistingparse.c:23
TODO: (mj-xmr) This will be reduced in an another PR.
Definition: byte_slice.h:39
http_custom_handler(i_service_endpoint *psnd_hndlr, config_type &config, t_connection_context &conn_context)
Definition: http_protocol_handler.h:179
void handle_qued_callback()
Definition: http_protocol_handler.h:213
Definition: net_utils_base.h:439
const T & move(const T &t)
Definition: gtest-port.h:1317
body_transfer_type m_body_transfer_type
Definition: http_protocol_handler.h:138
virtual ~i_http_server_handler()
Definition: http_protocol_handler.h:154
i_service_endpoint * m_psnd_hndlr
Definition: http_protocol_handler.h:147
virtual bool thread_init()
Definition: http_protocol_handler.h:80
virtual bool handle_request(const http::http_request_info &query_info, http_response_info &response)
Definition: http_protocol_handler.inl:615
std::vector< std::string > m_access_control_origins
Definition: http_protocol_handler.h:56
std::string m_body
Definition: http_base.h:167
Definition: http_protocol_handler.h:53
bool after_init_connection()
Definition: http_protocol_handler.h:215
virtual bool deinit_server_thread()
Definition: http_protocol_handler.h:159
Implements RFC 2617 digest auth. Digests from RFC 7616 can be added.
Definition: http_auth.h:60
Definition: http_base.h:131
bool m_is_stop_handling
Definition: http_protocol_handler.h:139
bool analize_cached_request_header_and_invoke_state(size_t pos)
Definition: http_protocol_handler.inl:419
virtual bool handle_http_request(const http_request_info &query_info, http_response_info &response, t_connection_context &m_conn_context)=0
custum_handler_config< t_connection_context > config_type
Definition: http_protocol_handler.h:177
std::string get_response_header(const http_response_info &response)
Definition: http_protocol_handler.inl:645
size_t m_bytes_read
Definition: http_protocol_handler.h:145
std::string m_cache
Definition: http_protocol_handler.h:136
t_connection_context connection_context
Definition: http_protocol_handler.h:69