Files
firegex-traffic-viewer/backend/proxy/proxy.cpp

503 lines
15 KiB
C++
Raw Normal View History

2022-06-26 19:36:23 +02:00
/*
Copyright (c) 2007 Arash Partow (http://www.partow.net)
URL: http://www.partow.net/programming/tcpproxy/index.html
Modified and adapted by Pwnzer0tt1
*/
2022-06-11 21:57:50 +02:00
#include <cstdlib>
#include <cstddef>
#include <iostream>
#include <string>
#include <regex>
2022-06-26 00:56:03 +02:00
#include <mutex>
2022-06-25 20:25:19 +02:00
#include <boost/thread.hpp>
2022-06-11 21:57:50 +02:00
#include <boost/shared_ptr.hpp>
#include <boost/enable_shared_from_this.hpp>
2022-06-26 02:12:57 +02:00
#include <boost/bind/bind.hpp>
2022-06-11 21:57:50 +02:00
#include <boost/asio.hpp>
#include <boost/thread/mutex.hpp>
2022-06-18 20:32:27 +02:00
using namespace std;
2022-06-18 20:29:52 +02:00
2022-06-26 12:15:17 +02:00
bool unhexlify(string const &hex, string &newString) {
try{
int len = hex.length();
for(int i=0; i< len; i+=2)
{
std::string byte = hex.substr(i,2);
char chr = (char) (int)strtol(byte.c_str(), NULL, 16);
newString.push_back(chr);
}
return true;
}
catch (...){
return false;
}
2022-06-11 21:57:50 +02:00
}
2022-06-26 16:52:14 +02:00
typedef vector<pair<string,regex>> regex_rule_vector;
2022-06-26 01:54:02 +02:00
struct regex_rules{
2022-06-26 16:52:14 +02:00
regex_rule_vector regex_s_c_w, regex_c_s_w, regex_s_c_b, regex_c_s_b;
regex_rule_vector* getByCode(char code){
switch(code){
case 'C': // Client to server Blacklist
return &regex_c_s_b; break;
case 'c': // Client to server Whitelist
return &regex_c_s_w; break;
case 'S': // Server to client Blacklist
return &regex_s_c_b; break;
case 's': // Server to client Whitelist
return &regex_s_c_w; break;
}
throw invalid_argument( "Expected 'C' 'c' 'S' or 's'" );
}
void add(const char* arg){
//Integrity checks
size_t arg_len = strlen(arg);
if (arg_len < 2 || arg_len%2 != 0) return;
if (arg[0] != '0' && arg[0] != '1') return;
if (arg[1] != 'C' && arg[1] != 'c' && arg[1] != 'S' && arg[1] != 's') return;
string hex(arg+2), expr;
if (!unhexlify(hex, expr)) return;
try{
//Push regex
if (arg[0] == '1'){
regex regex(expr);
#ifdef DEBUG
2022-06-28 00:36:26 +02:00
cerr << "Added case sensitive regex " << expr << endl;
2022-06-26 16:52:14 +02:00
#endif
getByCode(arg[1])->push_back(make_pair(string(arg), regex));
} else {
regex regex(expr,regex_constants::icase);
#ifdef DEBUG
2022-06-28 00:36:26 +02:00
cerr << "Added case insensitive regex " << expr << endl;
2022-06-26 16:52:14 +02:00
#endif
getByCode(arg[1])->push_back(make_pair(string(arg), regex));
}
} catch(...){
cerr << "Regex " << arg << " was not compiled successfully" << endl;
}
}
2022-06-26 01:54:02 +02:00
};
shared_ptr<regex_rules> regex_config;
2022-06-11 21:57:50 +02:00
2022-06-26 02:12:57 +02:00
mutex update_mutex;
2022-06-26 12:15:17 +02:00
#ifdef MULTI_THREAD
mutex stdout_mutex;
#endif
2022-06-11 21:57:50 +02:00
2022-06-26 01:54:02 +02:00
bool filter_data(unsigned char* data, const size_t& bytes_transferred, vector<pair<string,regex>> const &blacklist, vector<pair<string,regex>> const &whitelist){
2022-06-26 00:56:03 +02:00
#ifdef DEBUG_PACKET
2022-06-26 02:12:57 +02:00
cerr << "---------------- Packet ----------------" << endl;
2022-06-11 21:57:50 +02:00
for(int i=0;i<bytes_transferred;i++){
2022-06-26 02:12:57 +02:00
cerr << data[i];
2022-06-11 21:57:50 +02:00
}
2022-06-26 02:12:57 +02:00
cerr << "\n" << "---------------- End Packet ----------------" << endl;
2022-06-11 21:57:50 +02:00
#endif
2022-06-26 01:54:02 +02:00
for (pair<string,regex> ele:blacklist){
try{
2022-06-26 01:54:02 +02:00
if(regex_search(reinterpret_cast<const char*>(data), reinterpret_cast<const char*>(data)+bytes_transferred, ele.second)){
2022-06-26 12:15:17 +02:00
#ifdef MULTI_THREAD
std::unique_lock<std::mutex> lck(stdout_mutex);
#endif
cout << "BLOCKED " << ele.first << endl;
return false;
}
} catch(...){
cerr << "Error while matching regex: " << ele.first << endl;
2022-06-11 21:57:50 +02:00
}
}
2022-06-26 01:54:02 +02:00
for (pair<string,regex> ele:whitelist){
try{
2022-06-26 01:54:02 +02:00
if(!regex_search(reinterpret_cast<const char*>(data),reinterpret_cast<const char*>(data)+bytes_transferred, ele.second)){
2022-06-26 12:15:17 +02:00
#ifdef MULTI_THREAD
std::unique_lock<std::mutex> lck(stdout_mutex);
#endif
cout << "BLOCKED " << ele.first << endl;
return false;
}
} catch(...){
cerr << "Error while matching regex: " << ele.first << endl;
}
2022-06-11 21:57:50 +02:00
}
#ifdef DEBUG
2022-06-26 02:12:57 +02:00
cerr << "Packet Accepted!" << endl;
2022-06-11 21:57:50 +02:00
#endif
return true;
}
namespace tcp_proxy
{
namespace ip = boost::asio::ip;
class bridge : public boost::enable_shared_from_this<bridge>
{
public:
2022-06-18 20:32:27 +02:00
typedef ip::tcp::socket socket_type;
typedef boost::shared_ptr<bridge> ptr_type;
bridge(boost::asio::io_context& ios)
2022-06-11 21:57:50 +02:00
: downstream_socket_(ios),
upstream_socket_ (ios),
thread_safety(ios)
2022-06-11 21:57:50 +02:00
{}
socket_type& downstream_socket()
{
2022-06-18 20:32:27 +02:00
// Client socket
2022-06-11 21:57:50 +02:00
return downstream_socket_;
}
socket_type& upstream_socket()
{
2022-06-18 20:32:27 +02:00
// Remote server socket
2022-06-11 21:57:50 +02:00
return upstream_socket_;
}
2022-06-22 01:31:46 +02:00
void start(const string& upstream_host, unsigned short upstream_port)
2022-06-11 21:57:50 +02:00
{
// Attempt connection to remote server (upstream side)
upstream_socket_.async_connect(
ip::tcp::endpoint(
boost::asio::ip::address::from_string(upstream_host),
upstream_port),
boost::asio::bind_executor(thread_safety,
boost::bind(
&bridge::handle_upstream_connect,
2022-06-11 21:57:50 +02:00
shared_from_this(),
boost::asio::placeholders::error)));
2022-06-11 21:57:50 +02:00
}
void handle_upstream_connect(const boost::system::error_code& error)
{
if (!error)
{
// Setup async read from remote server (upstream)
2022-06-11 21:57:50 +02:00
upstream_socket_.async_read_some(
boost::asio::buffer(upstream_data_,max_data_length),
boost::asio::bind_executor(thread_safety,
boost::bind(&bridge::handle_upstream_read,
shared_from_this(),
boost::asio::placeholders::error,
boost::asio::placeholders::bytes_transferred)));
2022-06-11 21:57:50 +02:00
// Setup async read from client (downstream)
downstream_socket_.async_read_some(
boost::asio::buffer(downstream_data_,max_data_length),
boost::asio::bind_executor(thread_safety,
boost::bind(&bridge::handle_downstream_read,
shared_from_this(),
boost::asio::placeholders::error,
boost::asio::placeholders::bytes_transferred)));
2022-06-11 21:57:50 +02:00
}
else
close();
}
2022-06-18 20:32:27 +02:00
private:
2022-06-11 21:57:50 +02:00
/*
Section A: Remote Server --> Proxy --> Client
Process data recieved from remote sever then send to client.
*/
// Read from remote server complete, now send data to client
void handle_upstream_read(const boost::system::error_code& error,
const size_t& bytes_transferred) // Da Server a Client
{
if (!error)
{
2022-06-26 01:54:02 +02:00
shared_ptr<regex_rules> regex_old_config = regex_config;
if (filter_data(upstream_data_, bytes_transferred, regex_old_config->regex_s_c_b, regex_old_config->regex_s_c_w)){
2022-06-11 21:57:50 +02:00
async_write(downstream_socket_,
boost::asio::buffer(upstream_data_,bytes_transferred),
boost::asio::bind_executor(thread_safety,
boost::bind(&bridge::handle_downstream_write,
2022-06-11 21:57:50 +02:00
shared_from_this(),
boost::asio::placeholders::error)));
2022-06-11 21:57:50 +02:00
}else{
close();
}
}
else
close();
}
// Write to client complete, Async read from remote server
void handle_downstream_write(const boost::system::error_code& error)
{
if (!error)
{
2022-06-26 12:15:17 +02:00
2022-06-11 21:57:50 +02:00
upstream_socket_.async_read_some(
boost::asio::buffer(upstream_data_,max_data_length),
boost::asio::bind_executor(thread_safety,
boost::bind(&bridge::handle_upstream_read,
shared_from_this(),
boost::asio::placeholders::error,
boost::asio::placeholders::bytes_transferred)));
2022-06-11 21:57:50 +02:00
}
else
close();
}
// *** End Of Section A ***
/*
Section B: Client --> Proxy --> Remove Server
Process data recieved from client then write to remove server.
*/
// Read from client complete, now send data to remote server
void handle_downstream_read(const boost::system::error_code& error,
const size_t& bytes_transferred) // Da Client a Server
{
if (!error)
{
2022-06-26 01:54:02 +02:00
shared_ptr<regex_rules> regex_old_config = regex_config;
if (filter_data(downstream_data_, bytes_transferred, regex_old_config->regex_c_s_b, regex_old_config->regex_c_s_w)){
2022-06-11 21:57:50 +02:00
async_write(upstream_socket_,
boost::asio::buffer(downstream_data_,bytes_transferred),
boost::asio::bind_executor(thread_safety,
boost::bind(&bridge::handle_upstream_write,
2022-06-11 21:57:50 +02:00
shared_from_this(),
boost::asio::placeholders::error)));
2022-06-11 21:57:50 +02:00
}else{
close();
}
}
else
close();
}
// Write to remote server complete, Async read from client
void handle_upstream_write(const boost::system::error_code& error)
{
if (!error)
{
downstream_socket_.async_read_some(
boost::asio::buffer(downstream_data_,max_data_length),
boost::asio::bind_executor(thread_safety,
boost::bind(&bridge::handle_downstream_read,
shared_from_this(),
boost::asio::placeholders::error,
boost::asio::placeholders::bytes_transferred)));
2022-06-11 21:57:50 +02:00
}
else
close();
}
// *** End Of Section B ***
void close()
{
boost::mutex::scoped_lock lock(mutex_);
if (downstream_socket_.is_open())
{
downstream_socket_.close();
}
if (upstream_socket_.is_open())
{
upstream_socket_.close();
}
}
socket_type downstream_socket_;
socket_type upstream_socket_;
enum { max_data_length = 8192 }; //8KB
unsigned char downstream_data_[max_data_length];
unsigned char upstream_data_ [max_data_length];
boost::asio::io_context::strand thread_safety;
2022-06-18 20:32:27 +02:00
boost::mutex mutex_;
2022-06-11 21:57:50 +02:00
public:
2022-06-18 20:32:27 +02:00
class acceptor
2022-06-18 20:29:52 +02:00
{
2022-06-18 20:32:27 +02:00
public:
acceptor(boost::asio::io_context& io_context,
2022-06-22 01:31:46 +02:00
const string& local_host, unsigned short local_port,
const string& upstream_host, unsigned short upstream_port)
: io_context_(io_context),
2022-06-18 20:32:27 +02:00
localhost_address(boost::asio::ip::address_v4::from_string(local_host)),
acceptor_(io_context_,ip::tcp::endpoint(localhost_address,local_port)),
2022-06-18 20:32:27 +02:00
upstream_port_(upstream_port),
upstream_host_(upstream_host)
{}
bool accept_connections()
2022-06-18 20:29:52 +02:00
{
2022-06-18 20:32:27 +02:00
try
{
session_ = boost::shared_ptr<bridge>(new bridge(io_context_));
2022-06-11 21:57:50 +02:00
2022-06-18 20:32:27 +02:00
acceptor_.async_accept(session_->downstream_socket(),
boost::asio::bind_executor(session_->thread_safety,
2022-06-18 20:32:27 +02:00
boost::bind(&acceptor::handle_accept,
this,
boost::asio::placeholders::error)));
2022-06-18 20:32:27 +02:00
}
2022-06-22 01:31:46 +02:00
catch(exception& e)
2022-06-18 20:32:27 +02:00
{
2022-06-22 01:31:46 +02:00
cerr << "acceptor exception: " << e.what() << endl;
2022-06-18 20:32:27 +02:00
return false;
}
2022-06-18 20:29:52 +02:00
2022-06-18 20:32:27 +02:00
return true;
}
2022-06-18 20:29:52 +02:00
2022-06-18 20:32:27 +02:00
private:
2022-06-11 21:57:50 +02:00
2022-06-18 20:32:27 +02:00
void handle_accept(const boost::system::error_code& error)
2022-06-11 21:57:50 +02:00
{
2022-06-18 20:32:27 +02:00
if (!error)
{
session_->start(upstream_host_,upstream_port_);
2022-06-11 21:57:50 +02:00
2022-06-18 20:32:27 +02:00
if (!accept_connections())
{
2022-06-22 01:31:46 +02:00
cerr << "Failure during call to accept." << endl;
2022-06-18 20:32:27 +02:00
}
}
else
2022-06-11 21:57:50 +02:00
{
2022-06-22 01:31:46 +02:00
cerr << "Error: " << error.message() << endl;
2022-06-11 21:57:50 +02:00
}
}
boost::asio::io_context& io_context_;
2022-06-18 20:32:27 +02:00
ip::address_v4 localhost_address;
ip::tcp::acceptor acceptor_;
ptr_type session_;
unsigned short upstream_port_;
2022-06-22 01:31:46 +02:00
string upstream_host_;
2022-06-18 20:32:27 +02:00
};
2022-06-18 14:48:09 +02:00
2022-06-18 20:32:27 +02:00
};
}
void update_config (boost::asio::streambuf &input_buffer){
2022-06-26 02:12:57 +02:00
#ifdef DEBUG
cerr << "Updating configuration" << endl;
2022-06-26 02:12:57 +02:00
#endif
std::istream config_stream(&input_buffer);
std::unique_lock<std::mutex> lck(update_mutex);
regex_rules *regex_new_config = new regex_rules();
string data;
while(!config_stream.eof()){
config_stream >> data;
regex_new_config->add(data.c_str());
}
regex_config.reset(regex_new_config);
2022-06-18 20:32:27 +02:00
}
class async_updater
{
public:
async_updater(boost::asio::io_context& io_context) : input_(io_context, ::dup(STDIN_FILENO)), thread_safety(io_context)
{
boost::asio::async_read_until(input_, input_buffer_, '\n',
boost::asio::bind_executor(thread_safety,
boost::bind(&async_updater::on_update, this,
boost::asio::placeholders::error,
boost::asio::placeholders::bytes_transferred)));
}
void on_update(const boost::system::error_code& error, std::size_t length)
{
if (!error)
{
update_config(input_buffer_);
boost::asio::async_read_until(input_, input_buffer_, '\n',
boost::asio::bind_executor(thread_safety,
boost::bind(&async_updater::on_update, this,
boost::asio::placeholders::error,
boost::asio::placeholders::bytes_transferred)));
}
else
{
close();
}
}
void close()
{
input_.close();
}
private:
boost::asio::posix::stream_descriptor input_;
boost::asio::io_context::strand thread_safety;
boost::asio::streambuf input_buffer_;
};
2022-06-18 20:32:27 +02:00
int main(int argc, char* argv[])
{
2022-06-28 00:36:26 +02:00
if (argc < 5)
2022-06-18 20:32:27 +02:00
{
2022-06-28 00:36:26 +02:00
cerr << "usage: tcpproxy_server <local host ip> <local port> <forward host ip> <forward port>" << endl;
2022-06-18 20:32:27 +02:00
return 1;
}
const unsigned short local_port = static_cast<unsigned short>(::atoi(argv[2]));
const unsigned short forward_port = static_cast<unsigned short>(::atoi(argv[4]));
2022-06-22 01:31:46 +02:00
const string local_host = argv[1];
const string forward_host = argv[3];
2022-06-18 23:48:10 +02:00
boost::asio::io_context ios;
2022-06-18 20:32:27 +02:00
boost::asio::streambuf buf;
boost::asio::posix::stream_descriptor cin_in(ios, ::dup(STDIN_FILENO));
boost::asio::read_until(cin_in, buf,'\n');
update_config(buf);
async_updater updater(ios);
2022-06-28 00:36:26 +02:00
#ifdef DEBUG
cerr << "Starting Proxy" << endl;
#endif
2022-06-11 21:57:50 +02:00
try
{
2022-06-18 20:32:27 +02:00
tcp_proxy::bridge::acceptor acceptor(ios,
local_host, local_port,
forward_host, forward_port);
2022-06-11 21:57:50 +02:00
acceptor.accept_connections();
2022-06-26 12:15:17 +02:00
#ifdef MULTI_THREAD
2022-06-25 20:25:19 +02:00
boost::thread_group tg;
2022-06-26 13:29:54 +02:00
#ifdef THREAD_NUM
for (unsigned i = 0; i < THREAD_NUM; ++i)
#else
2022-06-25 20:25:19 +02:00
for (unsigned i = 0; i < thread::hardware_concurrency(); ++i)
2022-06-26 13:29:54 +02:00
#endif
tg.create_thread(boost::bind(&boost::asio::io_context::run, &ios));
2022-06-25 20:25:19 +02:00
tg.join_all();
2022-06-26 12:15:17 +02:00
#else
ios.run();
#endif
2022-06-11 21:57:50 +02:00
}
2022-06-22 01:31:46 +02:00
catch(exception& e)
2022-06-11 21:57:50 +02:00
{
2022-06-22 01:31:46 +02:00
cerr << "Error: " << e.what() << endl;
2022-06-18 20:32:27 +02:00
return 1;
2022-06-11 21:57:50 +02:00
}
2022-06-28 00:36:26 +02:00
#ifdef DEBUG
cerr << "Proxy stopped!" << endl;
#endif
2022-06-11 21:57:50 +02:00
2022-06-18 20:32:27 +02:00
return 0;
}