|
|
@ -3,6 +3,13 @@ |
|
|
|
#include <boost/lexical_cast.hpp> |
|
|
|
#include <boost/lexical_cast.hpp> |
|
|
|
#include <string> |
|
|
|
#include <string> |
|
|
|
#include <atomic> |
|
|
|
#include <atomic> |
|
|
|
|
|
|
|
#include <memory> |
|
|
|
|
|
|
|
#include <set> |
|
|
|
|
|
|
|
#include <boost/asio.hpp> |
|
|
|
|
|
|
|
#include <mutex> |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#include "I2PService.h" |
|
|
|
|
|
|
|
#include "Destination.h" |
|
|
|
#include "HTTPProxy.h" |
|
|
|
#include "HTTPProxy.h" |
|
|
|
#include "util.h" |
|
|
|
#include "util.h" |
|
|
|
#include "Identity.h" |
|
|
|
#include "Identity.h" |
|
|
@ -14,12 +21,19 @@ |
|
|
|
#include "Config.h" |
|
|
|
#include "Config.h" |
|
|
|
#include "HTTP.h" |
|
|
|
#include "HTTP.h" |
|
|
|
|
|
|
|
|
|
|
|
namespace i2p |
|
|
|
namespace i2p { |
|
|
|
{ |
|
|
|
namespace proxy { |
|
|
|
namespace proxy |
|
|
|
bool str_rmatch(std::string & str, const char *suffix) { |
|
|
|
{ |
|
|
|
auto pos = str.rfind (suffix); |
|
|
|
|
|
|
|
if (pos == std::string::npos) |
|
|
|
|
|
|
|
return false; /* not found */ |
|
|
|
|
|
|
|
if (str.length() == (pos + std::strlen(suffix))) |
|
|
|
|
|
|
|
return true; /* match */ |
|
|
|
|
|
|
|
return false; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
static const size_t http_buffer_size = 8192; |
|
|
|
static const size_t http_buffer_size = 8192; |
|
|
|
class HTTPProxyHandler: public i2p::client::I2PServiceHandler, public std::enable_shared_from_this<HTTPProxyHandler> |
|
|
|
class HTTPReqHandler: public i2p::client::I2PServiceHandler, public std::enable_shared_from_this<HTTPReqHandler> |
|
|
|
{ |
|
|
|
{ |
|
|
|
private: |
|
|
|
private: |
|
|
|
enum state |
|
|
|
enum state |
|
|
@ -36,10 +50,9 @@ namespace proxy |
|
|
|
void HandleSockRecv(const boost::system::error_code & ecode, std::size_t bytes_transfered); |
|
|
|
void HandleSockRecv(const boost::system::error_code & ecode, std::size_t bytes_transfered); |
|
|
|
void Terminate(); |
|
|
|
void Terminate(); |
|
|
|
void AsyncSockRead(); |
|
|
|
void AsyncSockRead(); |
|
|
|
void HTTPRequestFailed(/*std::string message*/); |
|
|
|
void HTTPRequestFailed(const char *message); |
|
|
|
void RedirectToJumpService(); |
|
|
|
void RedirectToJumpService(std::string & host); |
|
|
|
void ExtractRequest(); |
|
|
|
void ExtractRequest(); |
|
|
|
bool IsI2PAddress(); |
|
|
|
|
|
|
|
bool ValidateHTTPRequest(); |
|
|
|
bool ValidateHTTPRequest(); |
|
|
|
void HandleJumpServices(); |
|
|
|
void HandleJumpServices(); |
|
|
|
bool CreateHTTPRequest(uint8_t *http_buff, std::size_t len); |
|
|
|
bool CreateHTTPRequest(uint8_t *http_buff, std::size_t len); |
|
|
@ -59,26 +72,26 @@ namespace proxy |
|
|
|
|
|
|
|
|
|
|
|
public: |
|
|
|
public: |
|
|
|
|
|
|
|
|
|
|
|
HTTPProxyHandler(HTTPProxyServer * parent, std::shared_ptr<boost::asio::ip::tcp::socket> sock) : |
|
|
|
HTTPReqHandler(HTTPProxy * parent, std::shared_ptr<boost::asio::ip::tcp::socket> sock) : |
|
|
|
I2PServiceHandler(parent), m_sock(sock) |
|
|
|
I2PServiceHandler(parent), m_sock(sock) |
|
|
|
{ EnterState(GET_METHOD); } |
|
|
|
{ EnterState(GET_METHOD); } |
|
|
|
~HTTPProxyHandler() { Terminate(); } |
|
|
|
~HTTPReqHandler() { Terminate(); } |
|
|
|
void Handle () { AsyncSockRead(); } |
|
|
|
void Handle () { AsyncSockRead(); } |
|
|
|
}; |
|
|
|
}; |
|
|
|
|
|
|
|
|
|
|
|
void HTTPProxyHandler::AsyncSockRead() |
|
|
|
void HTTPReqHandler::AsyncSockRead() |
|
|
|
{ |
|
|
|
{ |
|
|
|
LogPrint(eLogDebug, "HTTPProxy: async sock read"); |
|
|
|
LogPrint(eLogDebug, "HTTPProxy: async sock read"); |
|
|
|
if(m_sock) { |
|
|
|
if (!m_sock) { |
|
|
|
m_sock->async_receive(boost::asio::buffer(m_http_buff, http_buffer_size), |
|
|
|
|
|
|
|
std::bind(&HTTPProxyHandler::HandleSockRecv, shared_from_this(), |
|
|
|
|
|
|
|
std::placeholders::_1, std::placeholders::_2)); |
|
|
|
|
|
|
|
} else { |
|
|
|
|
|
|
|
LogPrint(eLogError, "HTTPProxy: no socket for read"); |
|
|
|
LogPrint(eLogError, "HTTPProxy: no socket for read"); |
|
|
|
|
|
|
|
return; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
m_sock->async_receive(boost::asio::buffer(m_http_buff, http_buffer_size), |
|
|
|
|
|
|
|
std::bind(&HTTPReqHandler::HandleSockRecv, shared_from_this(), |
|
|
|
|
|
|
|
std::placeholders::_1, std::placeholders::_2)); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
void HTTPProxyHandler::Terminate() { |
|
|
|
void HTTPReqHandler::Terminate() { |
|
|
|
if (Kill()) return; |
|
|
|
if (Kill()) return; |
|
|
|
if (m_sock) |
|
|
|
if (m_sock) |
|
|
|
{ |
|
|
|
{ |
|
|
@ -91,30 +104,45 @@ namespace proxy |
|
|
|
|
|
|
|
|
|
|
|
/* All hope is lost beyond this point */ |
|
|
|
/* All hope is lost beyond this point */ |
|
|
|
//TODO: handle this apropriately
|
|
|
|
//TODO: handle this apropriately
|
|
|
|
void HTTPProxyHandler::HTTPRequestFailed(/*HTTPProxyHandler::errTypes error*/) |
|
|
|
void HTTPReqHandler::HTTPRequestFailed(const char *message) |
|
|
|
{ |
|
|
|
{ |
|
|
|
static std::string response = "HTTP/1.0 500 Internal Server Error\r\nContent-type: text/html\r\nContent-length: 0\r\n\r\n"; |
|
|
|
i2p::http::HTTPRes res; |
|
|
|
boost::asio::async_write(*m_sock, boost::asio::buffer(response,response.size()), |
|
|
|
res.code = 500; |
|
|
|
std::bind(&HTTPProxyHandler::SentHTTPFailed, shared_from_this(), std::placeholders::_1)); |
|
|
|
res.add_header("Content-Type", "text/plain"); |
|
|
|
|
|
|
|
res.add_header("Connection", "close"); |
|
|
|
|
|
|
|
res.body = message; |
|
|
|
|
|
|
|
res.body += "\r\n"; |
|
|
|
|
|
|
|
std::string response = res.to_string(); |
|
|
|
|
|
|
|
boost::asio::async_write(*m_sock, boost::asio::buffer(response), |
|
|
|
|
|
|
|
std::bind(&HTTPReqHandler::SentHTTPFailed, shared_from_this(), std::placeholders::_1)); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
void HTTPProxyHandler::RedirectToJumpService(/*HTTPProxyHandler::errTypes error*/) |
|
|
|
void HTTPReqHandler::RedirectToJumpService(std::string & host) |
|
|
|
{ |
|
|
|
{ |
|
|
|
std::stringstream response; |
|
|
|
i2p::http::HTTPRes res; |
|
|
|
std::string httpAddr; i2p::config::GetOption("http.address", httpAddr); |
|
|
|
i2p::http::URL url; |
|
|
|
uint16_t httpPort; i2p::config::GetOption("http.port", httpPort); |
|
|
|
|
|
|
|
|
|
|
|
/* TODO: don't redirect to webconsole, it's not always work, handle jumpservices here */ |
|
|
|
|
|
|
|
i2p::config::GetOption("http.address", url.host); |
|
|
|
|
|
|
|
i2p::config::GetOption("http.port", url.port); |
|
|
|
|
|
|
|
url.path = "/"; |
|
|
|
|
|
|
|
url.query = "page=jumpservices&address="; |
|
|
|
|
|
|
|
url.query += host; |
|
|
|
|
|
|
|
|
|
|
|
response << "HTTP/1.1 302 Found\r\nLocation: http://" << httpAddr << ":" << httpPort << "/?page=jumpservices&address=" << m_address << "\r\n\r\n"; |
|
|
|
res.code = 302; /* redirect */ |
|
|
|
boost::asio::async_write(*m_sock, boost::asio::buffer(response.str (),response.str ().length ()), |
|
|
|
res.add_header("Location", url.to_string().c_str()); |
|
|
|
std::bind(&HTTPProxyHandler::SentHTTPFailed, shared_from_this(), std::placeholders::_1)); |
|
|
|
|
|
|
|
|
|
|
|
std::string response = res.to_string(); |
|
|
|
|
|
|
|
boost::asio::async_write(*m_sock, boost::asio::buffer(response), |
|
|
|
|
|
|
|
std::bind(&HTTPReqHandler::SentHTTPFailed, shared_from_this(), std::placeholders::_1)); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
void HTTPProxyHandler::EnterState(HTTPProxyHandler::state nstate) |
|
|
|
void HTTPReqHandler::EnterState(HTTPReqHandler::state nstate) |
|
|
|
{ |
|
|
|
{ |
|
|
|
m_state = nstate; |
|
|
|
m_state = nstate; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
void HTTPProxyHandler::ExtractRequest() |
|
|
|
void HTTPReqHandler::ExtractRequest() |
|
|
|
{ |
|
|
|
{ |
|
|
|
LogPrint(eLogDebug, "HTTPProxy: request: ", m_method, " ", m_url); |
|
|
|
LogPrint(eLogDebug, "HTTPProxy: request: ", m_method, " ", m_url); |
|
|
|
i2p::http::URL url; |
|
|
|
i2p::http::URL url; |
|
|
@ -127,18 +155,18 @@ namespace proxy |
|
|
|
LogPrint(eLogDebug, "HTTPProxy: server: ", m_address, ", port: ", m_port, ", path: ", m_path); |
|
|
|
LogPrint(eLogDebug, "HTTPProxy: server: ", m_address, ", port: ", m_port, ", path: ", m_path); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
bool HTTPProxyHandler::ValidateHTTPRequest() |
|
|
|
bool HTTPReqHandler::ValidateHTTPRequest() |
|
|
|
{ |
|
|
|
{ |
|
|
|
if ( m_version != "HTTP/1.0" && m_version != "HTTP/1.1" ) |
|
|
|
if ( m_version != "HTTP/1.0" && m_version != "HTTP/1.1" ) |
|
|
|
{ |
|
|
|
{ |
|
|
|
LogPrint(eLogError, "HTTPProxy: unsupported version: ", m_version); |
|
|
|
LogPrint(eLogError, "HTTPProxy: unsupported version: ", m_version); |
|
|
|
HTTPRequestFailed(); //TODO: send right stuff
|
|
|
|
HTTPRequestFailed("unsupported HTTP version"); |
|
|
|
return false; |
|
|
|
return false; |
|
|
|
} |
|
|
|
} |
|
|
|
return true; |
|
|
|
return true; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
void HTTPProxyHandler::HandleJumpServices() |
|
|
|
void HTTPReqHandler::HandleJumpServices() |
|
|
|
{ |
|
|
|
{ |
|
|
|
static const char * helpermark1 = "?i2paddresshelper="; |
|
|
|
static const char * helpermark1 = "?i2paddresshelper="; |
|
|
|
static const char * helpermark2 = "&i2paddresshelper="; |
|
|
|
static const char * helpermark2 = "&i2paddresshelper="; |
|
|
@ -170,32 +198,21 @@ namespace proxy |
|
|
|
m_path.erase(addressHelperPos); |
|
|
|
m_path.erase(addressHelperPos); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
bool HTTPProxyHandler::IsI2PAddress() |
|
|
|
bool HTTPReqHandler::CreateHTTPRequest(uint8_t *http_buff, std::size_t len) |
|
|
|
{ |
|
|
|
|
|
|
|
auto pos = m_address.rfind (".i2p"); |
|
|
|
|
|
|
|
if (pos != std::string::npos && (pos+4) == m_address.length ()) |
|
|
|
|
|
|
|
{ |
|
|
|
|
|
|
|
return true; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
return false; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
bool HTTPProxyHandler::CreateHTTPRequest(uint8_t *http_buff, std::size_t len) |
|
|
|
|
|
|
|
{ |
|
|
|
{ |
|
|
|
ExtractRequest(); //TODO: parse earlier
|
|
|
|
ExtractRequest(); //TODO: parse earlier
|
|
|
|
if (!ValidateHTTPRequest()) return false; |
|
|
|
if (!ValidateHTTPRequest()) return false; |
|
|
|
HandleJumpServices(); |
|
|
|
HandleJumpServices(); |
|
|
|
|
|
|
|
|
|
|
|
i2p::data::IdentHash identHash; |
|
|
|
i2p::data::IdentHash identHash; |
|
|
|
if (IsI2PAddress ()) |
|
|
|
if (str_rmatch(m_address, ".i2p")) |
|
|
|
{ |
|
|
|
{ |
|
|
|
if (!i2p::client::context.GetAddressBook ().GetIdentHash (m_address, identHash)){ |
|
|
|
if (!i2p::client::context.GetAddressBook ().GetIdentHash (m_address, identHash)){ |
|
|
|
RedirectToJumpService(); |
|
|
|
RedirectToJumpService(m_address); |
|
|
|
return false; |
|
|
|
return false; |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
m_request = m_method; |
|
|
|
m_request = m_method; |
|
|
|
m_request.push_back(' '); |
|
|
|
m_request.push_back(' '); |
|
|
|
m_request += m_path; |
|
|
|
m_request += m_path; |
|
|
@ -235,7 +252,7 @@ namespace proxy |
|
|
|
return true; |
|
|
|
return true; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
bool HTTPProxyHandler::HandleData(uint8_t *http_buff, std::size_t len) |
|
|
|
bool HTTPReqHandler::HandleData(uint8_t *http_buff, std::size_t len) |
|
|
|
{ |
|
|
|
{ |
|
|
|
while (len > 0) |
|
|
|
while (len > 0) |
|
|
|
{ |
|
|
|
{ |
|
|
@ -269,13 +286,13 @@ namespace proxy |
|
|
|
case '\n': EnterState(DONE); break; |
|
|
|
case '\n': EnterState(DONE); break; |
|
|
|
default: |
|
|
|
default: |
|
|
|
LogPrint(eLogError, "HTTPProxy: rejected invalid request ending with: ", ((int)*http_buff)); |
|
|
|
LogPrint(eLogError, "HTTPProxy: rejected invalid request ending with: ", ((int)*http_buff)); |
|
|
|
HTTPRequestFailed(); //TODO: add correct code
|
|
|
|
HTTPRequestFailed("rejected invalid request"); |
|
|
|
return false; |
|
|
|
return false; |
|
|
|
} |
|
|
|
} |
|
|
|
break; |
|
|
|
break; |
|
|
|
default: |
|
|
|
default: |
|
|
|
LogPrint(eLogError, "HTTPProxy: invalid state: ", m_state); |
|
|
|
LogPrint(eLogError, "HTTPProxy: invalid state: ", m_state); |
|
|
|
HTTPRequestFailed(); //TODO: add correct code 500
|
|
|
|
HTTPRequestFailed("invalid parser state"); |
|
|
|
return false; |
|
|
|
return false; |
|
|
|
} |
|
|
|
} |
|
|
|
http_buff++; |
|
|
|
http_buff++; |
|
|
@ -286,7 +303,7 @@ namespace proxy |
|
|
|
return true; |
|
|
|
return true; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
void HTTPProxyHandler::HandleSockRecv(const boost::system::error_code & ecode, std::size_t len) |
|
|
|
void HTTPReqHandler::HandleSockRecv(const boost::system::error_code & ecode, std::size_t len) |
|
|
|
{ |
|
|
|
{ |
|
|
|
LogPrint(eLogDebug, "HTTPProxy: sock recv: ", len, " bytes"); |
|
|
|
LogPrint(eLogDebug, "HTTPProxy: sock recv: ", len, " bytes"); |
|
|
|
if(ecode) |
|
|
|
if(ecode) |
|
|
@ -301,49 +318,45 @@ namespace proxy |
|
|
|
if (m_state == DONE) |
|
|
|
if (m_state == DONE) |
|
|
|
{ |
|
|
|
{ |
|
|
|
LogPrint(eLogDebug, "HTTPProxy: requested: ", m_url); |
|
|
|
LogPrint(eLogDebug, "HTTPProxy: requested: ", m_url); |
|
|
|
GetOwner()->CreateStream (std::bind (&HTTPProxyHandler::HandleStreamRequestComplete, |
|
|
|
GetOwner()->CreateStream (std::bind (&HTTPReqHandler::HandleStreamRequestComplete, |
|
|
|
shared_from_this(), std::placeholders::_1), m_address, m_port); |
|
|
|
shared_from_this(), std::placeholders::_1), m_address, m_port); |
|
|
|
} |
|
|
|
} |
|
|
|
else |
|
|
|
else |
|
|
|
AsyncSockRead(); |
|
|
|
AsyncSockRead(); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
void HTTPProxyHandler::SentHTTPFailed(const boost::system::error_code & ecode) |
|
|
|
void HTTPReqHandler::SentHTTPFailed(const boost::system::error_code & ecode) |
|
|
|
{ |
|
|
|
{ |
|
|
|
if (ecode) |
|
|
|
if (ecode) |
|
|
|
LogPrint (eLogError, "HTTPProxy: Closing socket after sending failure because: ", ecode.message ()); |
|
|
|
LogPrint (eLogError, "HTTPProxy: Closing socket after sending failure because: ", ecode.message ()); |
|
|
|
Terminate(); |
|
|
|
Terminate(); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
void HTTPProxyHandler::HandleStreamRequestComplete (std::shared_ptr<i2p::stream::Stream> stream) |
|
|
|
void HTTPReqHandler::HandleStreamRequestComplete (std::shared_ptr<i2p::stream::Stream> stream) |
|
|
|
{ |
|
|
|
{ |
|
|
|
if (stream) |
|
|
|
if (!stream) { |
|
|
|
{ |
|
|
|
LogPrint (eLogError, "HTTPProxy: error when creating the stream, check the previous warnings for more info"); |
|
|
|
if (Kill()) return; |
|
|
|
HTTPRequestFailed("error when creating the stream, check logs"); |
|
|
|
LogPrint (eLogInfo, "HTTPProxy: New I2PTunnel connection"); |
|
|
|
return; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
if (Kill()) |
|
|
|
|
|
|
|
return; |
|
|
|
|
|
|
|
LogPrint (eLogDebug, "HTTPProxy: New I2PTunnel connection"); |
|
|
|
auto connection = std::make_shared<i2p::client::I2PTunnelConnection>(GetOwner(), m_sock, stream); |
|
|
|
auto connection = std::make_shared<i2p::client::I2PTunnelConnection>(GetOwner(), m_sock, stream); |
|
|
|
GetOwner()->AddHandler (connection); |
|
|
|
GetOwner()->AddHandler (connection); |
|
|
|
connection->I2PConnect (reinterpret_cast<const uint8_t*>(m_request.data()), m_request.size()); |
|
|
|
connection->I2PConnect (reinterpret_cast<const uint8_t*>(m_request.data()), m_request.size()); |
|
|
|
Done (shared_from_this()); |
|
|
|
Done (shared_from_this()); |
|
|
|
} |
|
|
|
} |
|
|
|
else |
|
|
|
|
|
|
|
{ |
|
|
|
|
|
|
|
LogPrint (eLogError, "HTTPProxy: error when creating the stream, check the previous warnings for more info"); |
|
|
|
|
|
|
|
HTTPRequestFailed(); // TODO: Send correct error message host unreachable
|
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
HTTPProxyServer::HTTPProxyServer(const std::string& address, int port, std::shared_ptr<i2p::client::ClientDestination> localDestination): |
|
|
|
HTTPProxy::HTTPProxy(const std::string& address, int port, std::shared_ptr<i2p::client::ClientDestination> localDestination): |
|
|
|
TCPIPAcceptor(address, port, localDestination ? localDestination : i2p::client::context.GetSharedLocalDestination ()) |
|
|
|
TCPIPAcceptor(address, port, localDestination ? localDestination : i2p::client::context.GetSharedLocalDestination ()) |
|
|
|
{ |
|
|
|
{ |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
std::shared_ptr<i2p::client::I2PServiceHandler> HTTPProxyServer::CreateHandler(std::shared_ptr<boost::asio::ip::tcp::socket> socket) |
|
|
|
std::shared_ptr<i2p::client::I2PServiceHandler> HTTPProxy::CreateHandler(std::shared_ptr<boost::asio::ip::tcp::socket> socket) |
|
|
|
{ |
|
|
|
{ |
|
|
|
return std::make_shared<HTTPProxyHandler> (this, socket); |
|
|
|
return std::make_shared<HTTPReqHandler> (this, socket); |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
} // http
|
|
|
|
|
|
|
|
} // i2p
|
|
|
|