1
+ #include < cstddef>
2
+ #include < cstdint>
3
+ #include < memory>
4
+ #include < string>
5
+ #include < string_view>
6
+ #include < system_error>
7
+ #include < utility>
1
8
#include < boost/property_tree/info_parser.hpp>
2
9
#include < boost/property_tree/ptree.hpp>
3
10
4
11
#include " base/flags.h"
5
12
#include " base/logging.h"
6
13
#include " net/asio.h"
7
14
#include " net/proxy/proxy.h"
15
+ #include " net/proxy/system/stdio-stream.h"
16
+ #include " net/proxy/util/copy.h"
17
+ #include " util/strings.h"
8
18
9
19
DEFINE_FLAG (std::string, config, " " , " Config file path." );
20
+ DEFINE_FLAG (std::string, tcp_connect_target, " " ,
21
+ " If specified, connects to the specified target instead of "
22
+ " creating the handlers." );
23
+ DEFINE_FLAG (std::string, tcp_connect_with, " " ,
24
+ " Connector used for TCP connect." );
25
+
26
+ namespace net {
27
+ namespace proxy {
28
+ namespace {
29
+
30
+ bool tcp_connect (Proxy &proxy) {
31
+ // TODO(iceboy): Create a class for host:port targets.
32
+ std::string_view target = flags::tcp_connect_target;
33
+ size_t pos = target.rfind (' :' );
34
+ if (pos == target.npos ) {
35
+ LOG (fatal) << " invalid target" ;
36
+ return false ;
37
+ }
38
+ auto host = target.substr (0 , pos);
39
+ auto port_str = target.substr (pos + 1 );
40
+ uint16_t port = util::consume_uint16 (port_str);
41
+ if (!port_str.empty ()) {
42
+ LOG (fatal) << " invalid port" ;
43
+ return false ;
44
+ }
45
+
46
+ auto *connector = proxy.get_connector (flags::tcp_connect_with);
47
+ if (!connector) {
48
+ LOG (fatal) << " invalid connector" ;
49
+ return false ;
50
+ }
51
+ connector->connect_tcp_host (
52
+ host, port, {},
53
+ [&proxy](std::error_code ec, std::unique_ptr<Stream> remote_stream) {
54
+ if (ec) {
55
+ LOG (error) << " connect_tcp_host failed: " << ec;
56
+ return ;
57
+ }
58
+ auto stdio_stream = std::make_unique<system ::StdioStream>(
59
+ proxy.executor ());
60
+ copy_bidir (
61
+ std::move (remote_stream),
62
+ std::move (stdio_stream),
63
+ [](std::error_code) {
64
+ // TODO(iceboy): Shutdown instead of exit.
65
+ exit (0 );
66
+ });
67
+ });
68
+ return true ;
69
+ }
70
+
71
+ } // namespace
72
+ } // namespace proxy
73
+ } // namespace net
10
74
11
75
int main (int argc, char *argv[]) {
12
76
base::init_logging ();
@@ -18,6 +82,14 @@ int main(int argc, char *argv[]) {
18
82
boost::property_tree::read_info (flags::config, config);
19
83
net::proxy::Proxy proxy (executor);
20
84
net::proxy::Proxy::LoadConfigOptions options;
85
+ if (!flags::tcp_connect_target.empty ()) {
86
+ options.create_handlers = false ;
87
+ }
21
88
proxy.load_config (config, options);
89
+ if (!flags::tcp_connect_target.empty ()) {
90
+ if (!net::proxy::tcp_connect (proxy)) {
91
+ return 1 ;
92
+ }
93
+ }
22
94
io_context.run ();
23
95
}
0 commit comments