Skip to content

Commit 5bc956d

Browse files
committedMay 27, 2024·
net/tools:miracle-proxy support tcp connect
1 parent 91c68a8 commit 5bc956d

File tree

2 files changed

+75
-0
lines changed

2 files changed

+75
-0
lines changed
 

‎net/tools/BUILD

+3
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,12 @@ cc_binary(
2222
"//net/proxy/shadowsocks:config",
2323
"//net/proxy/socks:config",
2424
"//net/proxy/system:config",
25+
"//net/proxy/system:stdio-stream",
26+
"//net/proxy/util:copy",
2527
"@org_boost_boost//:property_tree",
2628
"@org_iceboy_trunk//base:flags",
2729
"@org_iceboy_trunk//base:logging",
2830
"@org_iceboy_trunk//net:asio",
31+
"@org_iceboy_trunk//util:strings",
2932
],
3033
)

‎net/tools/miracle-proxy.cc

+72
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,76 @@
1+
#include <cstddef>
2+
#include <cstdint>
3+
#include <memory>
4+
#include <string>
5+
#include <string_view>
6+
#include <system_error>
7+
#include <utility>
18
#include <boost/property_tree/info_parser.hpp>
29
#include <boost/property_tree/ptree.hpp>
310

411
#include "base/flags.h"
512
#include "base/logging.h"
613
#include "net/asio.h"
714
#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"
818

919
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
1074

1175
int main(int argc, char *argv[]) {
1276
base::init_logging();
@@ -18,6 +82,14 @@ int main(int argc, char *argv[]) {
1882
boost::property_tree::read_info(flags::config, config);
1983
net::proxy::Proxy proxy(executor);
2084
net::proxy::Proxy::LoadConfigOptions options;
85+
if (!flags::tcp_connect_target.empty()) {
86+
options.create_handlers = false;
87+
}
2188
proxy.load_config(config, options);
89+
if (!flags::tcp_connect_target.empty()) {
90+
if (!net::proxy::tcp_connect(proxy)) {
91+
return 1;
92+
}
93+
}
2294
io_context.run();
2395
}

0 commit comments

Comments
 (0)