2013-12-10 17:03:22 +04:00
|
|
|
#ifndef HTTP_SERVER_H__
|
|
|
|
#define HTTP_SERVER_H__
|
|
|
|
|
|
|
|
#include <sstream>
|
|
|
|
#include <thread>
|
2014-11-23 19:33:58 +03:00
|
|
|
#include <memory>
|
2013-12-10 17:03:22 +04:00
|
|
|
#include <boost/asio.hpp>
|
|
|
|
#include <boost/array.hpp>
|
2014-10-21 22:28:56 +04:00
|
|
|
#include "LeaseSet.h"
|
2014-03-27 23:42:23 +04:00
|
|
|
#include "Streaming.h"
|
2013-12-10 17:03:22 +04:00
|
|
|
|
|
|
|
namespace i2p
|
|
|
|
{
|
|
|
|
namespace util
|
|
|
|
{
|
2014-09-16 18:28:45 +04:00
|
|
|
const size_t HTTP_CONNECTION_BUFFER_SIZE = 8192;
|
2014-10-21 22:28:56 +04:00
|
|
|
const int HTTP_DESTINATION_REQUEST_TIMEOUT = 10; // in seconds
|
2015-04-04 22:44:29 +03:00
|
|
|
class HTTPConnection: public std::enable_shared_from_this<HTTPConnection>
|
2013-12-10 17:03:22 +04:00
|
|
|
{
|
2014-03-30 02:16:23 +04:00
|
|
|
protected:
|
2014-07-16 20:41:40 +04:00
|
|
|
|
2014-03-30 02:16:23 +04:00
|
|
|
struct header
|
|
|
|
{
|
|
|
|
std::string name;
|
|
|
|
std::string value;
|
|
|
|
};
|
2014-07-16 20:41:40 +04:00
|
|
|
|
2014-03-30 02:16:23 +04:00
|
|
|
struct request
|
|
|
|
{
|
|
|
|
std::string method;
|
|
|
|
std::string uri;
|
|
|
|
std::string host;
|
2014-10-23 05:36:11 +04:00
|
|
|
int port;
|
2014-03-30 02:16:23 +04:00
|
|
|
int http_version_major;
|
|
|
|
int http_version_minor;
|
|
|
|
std::vector<header> headers;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct reply
|
|
|
|
{
|
|
|
|
std::vector<header> headers;
|
2015-11-22 18:58:57 +03:00
|
|
|
std::string status_string, content;
|
2014-04-18 01:53:48 +04:00
|
|
|
std::vector<boost::asio::const_buffer> to_buffers (int status);
|
2014-03-30 02:16:23 +04:00
|
|
|
};
|
2014-07-16 20:41:40 +04:00
|
|
|
|
2013-12-10 17:03:22 +04:00
|
|
|
public:
|
|
|
|
|
2015-11-23 01:01:37 +03:00
|
|
|
HTTPConnection (std::shared_ptr<boost::asio::ip::tcp::socket> socket):
|
2014-10-21 22:28:56 +04:00
|
|
|
m_Socket (socket), m_Timer (socket->get_io_service ()),
|
2015-04-04 22:44:29 +03:00
|
|
|
m_Stream (nullptr), m_BufferLen (0) {};
|
|
|
|
void Receive ();
|
|
|
|
|
2013-12-10 17:03:22 +04:00
|
|
|
private:
|
|
|
|
|
|
|
|
void Terminate ();
|
2014-07-16 20:41:40 +04:00
|
|
|
void HandleReceive (const boost::system::error_code& ecode, std::size_t bytes_transferred);
|
2014-03-27 23:42:23 +04:00
|
|
|
void AsyncStreamReceive ();
|
2014-07-16 20:41:40 +04:00
|
|
|
void HandleStreamReceive (const boost::system::error_code& ecode, std::size_t bytes_transferred);
|
2014-03-27 23:42:23 +04:00
|
|
|
void HandleWriteReply(const boost::system::error_code& ecode);
|
|
|
|
void HandleWrite (const boost::system::error_code& ecode);
|
2014-04-18 01:53:48 +04:00
|
|
|
void SendReply (const std::string& content, int status = 200);
|
2013-12-10 17:03:22 +04:00
|
|
|
|
2014-09-29 00:12:25 +04:00
|
|
|
void HandleRequest (const std::string& address);
|
|
|
|
void HandleCommand (const std::string& command, std::stringstream& s);
|
2016-03-11 13:30:50 +03:00
|
|
|
void ShowJumpServices (const std::string& address, std::stringstream& s);
|
2014-09-29 00:12:25 +04:00
|
|
|
void ShowTransports (std::stringstream& s);
|
|
|
|
void ShowTunnels (std::stringstream& s);
|
|
|
|
void ShowTransitTunnels (std::stringstream& s);
|
2014-09-29 03:15:04 +04:00
|
|
|
void ShowLocalDestinations (std::stringstream& s);
|
2014-09-30 06:18:32 +04:00
|
|
|
void ShowLocalDestination (const std::string& b32, std::stringstream& s);
|
2015-02-21 06:47:36 +03:00
|
|
|
void ShowSAMSessions (std::stringstream& s);
|
|
|
|
void ShowSAMSession (const std::string& id, std::stringstream& s);
|
2016-01-14 04:21:53 +03:00
|
|
|
void ShowI2PTunnels (std::stringstream& s);
|
2014-09-30 21:34:29 +04:00
|
|
|
void StartAcceptingTunnels (std::stringstream& s);
|
|
|
|
void StopAcceptingTunnels (std::stringstream& s);
|
2015-11-03 17:15:49 +03:00
|
|
|
void RunPeerTest (std::stringstream& s);
|
2013-12-10 17:03:22 +04:00
|
|
|
void FillContent (std::stringstream& s);
|
2014-01-15 04:56:34 +04:00
|
|
|
std::string ExtractAddress ();
|
2014-09-30 06:18:32 +04:00
|
|
|
void ExtractParams (const std::string& str, std::map<std::string, std::string>& params);
|
|
|
|
|
2014-08-05 00:30:37 +04:00
|
|
|
|
2014-03-30 02:16:23 +04:00
|
|
|
protected:
|
2014-07-16 20:41:40 +04:00
|
|
|
|
2015-11-23 01:01:37 +03:00
|
|
|
std::shared_ptr<boost::asio::ip::tcp::socket> m_Socket;
|
2014-10-21 22:28:56 +04:00
|
|
|
boost::asio::deadline_timer m_Timer;
|
2014-11-23 19:33:58 +03:00
|
|
|
std::shared_ptr<i2p::stream::Stream> m_Stream;
|
2014-09-16 18:28:45 +04:00
|
|
|
char m_Buffer[HTTP_CONNECTION_BUFFER_SIZE + 1], m_StreamBuffer[HTTP_CONNECTION_BUFFER_SIZE + 1];
|
2014-09-16 04:32:01 +04:00
|
|
|
size_t m_BufferLen;
|
2013-12-10 17:03:22 +04:00
|
|
|
request m_Request;
|
|
|
|
reply m_Reply;
|
2014-03-30 02:16:23 +04:00
|
|
|
|
|
|
|
protected:
|
2014-09-16 04:32:01 +04:00
|
|
|
|
2014-03-30 02:16:23 +04:00
|
|
|
virtual void RunRequest ();
|
2014-09-16 04:32:01 +04:00
|
|
|
void HandleDestinationRequest(const std::string& address, const std::string& uri);
|
2014-10-23 05:36:11 +04:00
|
|
|
void SendToAddress (const std::string& address, int port, const char * buf, size_t len);
|
|
|
|
void HandleDestinationRequestTimeout (const boost::system::error_code& ecode,
|
|
|
|
i2p::data::IdentHash destination, int port, const char * buf, size_t len);
|
2015-01-27 19:27:58 +03:00
|
|
|
void SendToDestination (std::shared_ptr<const i2p::data::LeaseSet> remote, int port, const char * buf, size_t len);
|
2014-03-30 16:40:53 +04:00
|
|
|
|
2014-08-11 20:10:41 +04:00
|
|
|
public:
|
2014-03-30 16:40:53 +04:00
|
|
|
|
|
|
|
static const std::string itoopieImage;
|
2014-09-03 19:24:49 +04:00
|
|
|
static const std::string itoopieFavicon;
|
2014-07-16 20:41:40 +04:00
|
|
|
};
|
2013-12-10 17:03:22 +04:00
|
|
|
|
|
|
|
class HTTPServer
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
|
2015-11-30 17:44:32 +03:00
|
|
|
HTTPServer (const std::string& address, int port);
|
2014-03-30 02:16:23 +04:00
|
|
|
virtual ~HTTPServer ();
|
2013-12-10 17:03:22 +04:00
|
|
|
|
|
|
|
void Start ();
|
|
|
|
void Stop ();
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
2014-07-16 20:41:40 +04:00
|
|
|
void Run ();
|
2013-12-10 17:03:22 +04:00
|
|
|
void Accept ();
|
2015-11-23 01:01:37 +03:00
|
|
|
void HandleAccept(const boost::system::error_code& ecode,
|
|
|
|
std::shared_ptr<boost::asio::ip::tcp::socket> newSocket);
|
2014-08-05 00:30:37 +04:00
|
|
|
|
2013-12-10 17:03:22 +04:00
|
|
|
private:
|
|
|
|
|
2015-11-23 01:01:37 +03:00
|
|
|
std::unique_ptr<std::thread> m_Thread;
|
2013-12-10 17:03:22 +04:00
|
|
|
boost::asio::io_service m_Service;
|
|
|
|
boost::asio::io_service::work m_Work;
|
|
|
|
boost::asio::ip::tcp::acceptor m_Acceptor;
|
2014-03-30 02:16:23 +04:00
|
|
|
|
|
|
|
protected:
|
2015-11-23 01:01:37 +03:00
|
|
|
virtual void CreateConnection(std::shared_ptr<boost::asio::ip::tcp::socket> newSocket);
|
2014-07-16 20:41:40 +04:00
|
|
|
};
|
2013-12-10 17:03:22 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|