twproxy.cpp 9.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318
  1. //
  2. // client.cpp
  3. // ~~~~~~~~~~
  4. //
  5. // Copyright (c) 2003-2016 Christopher M. Kohlhoff (chris at kohlhoff dot com)
  6. //
  7. // Distributed under the Boost Software License, Version 1.0. (See accompanying
  8. // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
  9. //
  10. #include <boost/asio.hpp>
  11. #include <boost/asio/ip/basic_resolver.hpp>
  12. #include <boost/bind.hpp>
  13. #include <cstdlib>
  14. #include <iostream>
  15. #include "config.h"
  16. class session : public std::enable_shared_from_this<session> {
  17. public:
  18. session(boost::asio::ip::tcp::socket socket,
  19. boost::asio::io_service &io_service, std::string hostname,
  20. std::string port)
  21. : socket_(std::move(socket)), io_service_{io_service},
  22. resolver_{io_service}, server_{io_service}, host{hostname}, port{port} {
  23. }
  24. void start(void) {
  25. std::cout << "session" << std::endl;
  26. auto self(shared_from_this());
  27. // read_buffer.reserve(1024);
  28. // do_write("Welcome!\n");
  29. do_read();
  30. }
  31. ~session() { std::cout << "~session destructed" << std::endl; }
  32. void parse_auth(void) {
  33. // how many nulls should I be seeing?
  34. // \0user\0pass\0terminal/SPEED\0
  35. // Maybe in the future I'll care about parsing this out. I don't right now.
  36. // Ok, yes I do! If I don't have a proper rlogin value here, it isn't going
  37. // to work when I try to connect to the rlogin server.
  38. if (rlogin_auth.size() > 10)
  39. rlogin_name = rlogin_auth.c_str() + 1;
  40. else
  41. rlogin_name = "?";
  42. }
  43. void on_connect(const boost::system::error_code error) {
  44. // We've connected to the server! WOOT WOOT!
  45. if (!error) {
  46. std::cout << "Connected to server!" << std::endl;
  47. do_write("Connected...\n\r");
  48. connected = true;
  49. server_read();
  50. } else {
  51. // TODO:
  52. std::string output = "Failed to connect : ";
  53. output += host;
  54. output += " : ";
  55. output += port;
  56. output += "\n\r";
  57. do_write(output);
  58. std::cout << "Failed to connect to server." << std::endl;
  59. std::cout << "SHUTDOWN..." << std::endl;
  60. socket_.shutdown(boost::asio::ip::tcp::socket::shutdown_both);
  61. }
  62. }
  63. void server_read(void) {
  64. auto self(shared_from_this());
  65. boost::asio::async_read(
  66. server_, boost::asio::buffer(server_buffer, sizeof(server_buffer) - 1),
  67. boost::asio::transfer_at_least(1),
  68. [this, self](boost::system::error_code ec, std::size_t length) {
  69. if (!ec) {
  70. server_buffer[length] = 0;
  71. if (length) {
  72. // std::cout << length << std::endl;
  73. std::cout << "S: " << server_buffer << std::endl;
  74. do_write(server_buffer);
  75. }
  76. server_read();
  77. } else {
  78. std::cout << "S: read_failed: connection closed" << std::endl;
  79. socket_.shutdown(boost::asio::ip::tcp::socket::shutdown_both);
  80. // socket_.async_shutdown(boost::bind(&session::on_shutdown, this,
  81. // boost::asio::placeholders::error));
  82. }
  83. });
  84. }
  85. void on_resolve(const boost::system::error_code error,
  86. const boost::asio::ip::tcp::resolver::results_type results) {
  87. //
  88. auto self(shared_from_this());
  89. if (!error) {
  90. // Take the first endpoint.
  91. boost::asio::ip::tcp::endpoint const &endpoint = *results;
  92. server_.async_connect(endpoint,
  93. boost::bind(&session::on_connect, this,
  94. boost::asio::placeholders::error));
  95. } else {
  96. // TO DO:
  97. std::string output = "Unable to resolve: ";
  98. output += host;
  99. output += "\n\r";
  100. do_write(output);
  101. std::cout << "Unable to resolve?" << std::endl;
  102. std::cout << "SHUTDOWN ..." << std::endl;
  103. socket_.shutdown(boost::asio::ip::tcp::socket::shutdown_both);
  104. }
  105. }
  106. void do_read(void) {
  107. auto self(shared_from_this());
  108. boost::asio::async_read( // why can't I async_read_some here?
  109. socket_, boost::asio::buffer(read_buffer, sizeof(read_buffer) - 1),
  110. boost::asio::transfer_at_least(1),
  111. [this, self](boost::system::error_code ec, std::size_t length) {
  112. if (!ec) {
  113. read_buffer[length] = 0;
  114. if (rlogin_auth.empty()) {
  115. // first read should be rlogin information
  116. rlogin_auth.assign(read_buffer, length);
  117. // parse authentication information
  118. parse_auth();
  119. do_write(std::string(1, 0));
  120. do_write("Welcome, ");
  121. do_write(rlogin_name);
  122. do_write("\n\r");
  123. // Activate the connection to the server
  124. /* // this fails, and I'm not sure why. I've used code like this
  125. before. resolver_.async_resolve( host, port, std::bind(
  126. &session::on_resolve, this, _1, _2)); */
  127. // This example shows using boost::bind, which WORKS.
  128. // https://stackoverflow.com/questions/6025471/bind-resolve-handler-to-resolver-async-resolve-using-boostasio
  129. resolver_.async_resolve(
  130. host, port,
  131. boost::bind(&session::on_resolve, this,
  132. boost::asio::placeholders::error,
  133. boost::asio::placeholders::iterator));
  134. } else if (length) {
  135. // std::cout << length << std::endl;
  136. server_write(read_buffer);
  137. std::cout << "C: " << read_buffer << std::endl;
  138. // do_write(output);
  139. }
  140. do_read();
  141. } else {
  142. std::cout << "C: read_failed: connection closed" << std::endl;
  143. if (connected)
  144. server_.shutdown(boost::asio::ip::tcp::socket::shutdown_both);
  145. // server_.async_shutdown(boost::bind(&session::on_shutdown, this,
  146. // boost::asio::placeholders::error));
  147. }
  148. });
  149. }
  150. void do_write(std::string message) {
  151. auto self(shared_from_this());
  152. boost::asio::async_write(
  153. socket_, boost::asio::buffer(message),
  154. [this, self](boost::system::error_code ec, std::size_t /*length*/) {
  155. if (!ec) {
  156. } else {
  157. std::cout << "write failed? closed?" << std::endl;
  158. server_.shutdown(boost::asio::ip::tcp::socket::shutdown_both);
  159. // server_.async_shutdown(boost::bind(&session::on_shutdown, this,
  160. // boost::asio::placeholders::error));
  161. }
  162. });
  163. }
  164. void server_write(std::string message) {
  165. auto self(shared_from_this());
  166. boost::asio::async_write(
  167. server_, boost::asio::buffer(message),
  168. [this, self](boost::system::error_code ec, std::size_t /*length*/) {
  169. if (!ec) {
  170. } else {
  171. std::cout << "write failed? closed?" << std::endl;
  172. socket_.shutdown(boost::asio::ip::tcp::socket::shutdown_both);
  173. // socket_.async_shutdown(boost::bind(&session::on_shutdown, this,
  174. // boost::asio::placeholders::error));
  175. }
  176. });
  177. }
  178. void on_shutdown(boost::system::error_code ec) {
  179. std::cout << "shutdown." << std::endl;
  180. }
  181. private:
  182. boost::asio::ip::tcp::socket socket_;
  183. boost::asio::io_service &io_service_;
  184. boost::asio::ip::tcp::resolver resolver_;
  185. boost::asio::ip::tcp::socket server_;
  186. // std::string read_buffer;
  187. char read_buffer[1024];
  188. char server_buffer[1024];
  189. std::string rlogin_auth;
  190. std::string rlogin_name;
  191. std::string host;
  192. std::string port;
  193. bool connected = false;
  194. };
  195. /*
  196. maybe move the resolver part to the server, so I don't need io_service?
  197. I'm not sure what the socket connection part is going to need just yet,
  198. so I probably won't move that just yet. [NNY!]
  199. */
  200. class server {
  201. public:
  202. server(boost::asio::io_service &io_service,
  203. const boost::asio::ip::tcp::endpoint &endpoint, std::string host,
  204. std::string port)
  205. : io_service_{io_service}, acceptor_{io_service_, endpoint}, host_{host},
  206. port_{port} {
  207. do_accept();
  208. }
  209. private:
  210. void do_accept() {
  211. acceptor_.async_accept([this](boost::system::error_code ec,
  212. boost::asio::ip::tcp::socket socket) {
  213. if (!ec) {
  214. std::make_shared<session>(std::move(socket), io_service_, host_, port_)
  215. ->start();
  216. }
  217. do_accept();
  218. });
  219. }
  220. boost::asio::io_service &io_service_;
  221. boost::asio::ip::tcp::acceptor acceptor_;
  222. std::string host_;
  223. std::string port_;
  224. };
  225. int main(int argc, char *argv[]) {
  226. // boost::json::json_value config;
  227. if (argc != 2) {
  228. std::cerr << "Usage: twproxy <filename>" << std::endl;
  229. return EXIT_FAILURE;
  230. }
  231. std::map<std::string, std::string> config = yaml_parse(argv[1]);
  232. /*
  233. try {
  234. // Parse the file as JSON
  235. config = yaml_parse( argv[1] );
  236. } catch (std::exception const &e) {
  237. std::cerr << "Caught exception: " << e.what() << std::endl;
  238. return EXIT_FAILURE;
  239. }
  240. */
  241. bool config_ok = true;
  242. // for (const char *key : {"server", "host", "port"}) {
  243. for (auto key : {"server", "host", "port"}) {
  244. auto pos = config.find(key);
  245. if (pos == config.end()) {
  246. config_ok = false;
  247. std::cout << "Config file missing: " << key << std::endl;
  248. }
  249. }
  250. if (!config_ok)
  251. return 2;
  252. int port = std::stoi(config["server"]);
  253. // int port = 9999; // 2002;
  254. try {
  255. boost::asio::io_service io_service;
  256. boost::asio::ip::tcp::endpoint endpoint(boost::asio::ip::tcp::v4(),
  257. port); // std::atoi(argv[i]));
  258. // connect to the BBS
  259. server s(io_service, endpoint, config["host"], config["port"]);
  260. //"127.0.0.1", "2023");
  261. io_service.run();
  262. } catch (std::exception &e) {
  263. std::cerr << "Exception: " << e.what() << "\n";
  264. }
  265. return EXIT_SUCCESS;
  266. }