twproxy.cpp 7.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245
  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 <boost/json.hpp>
  16. // #include <boost/json/src.hpp>
  17. // <boost/json.hpp>
  18. #ifdef WORKING_JSON
  19. json::value parse_file(char const *filename) {
  20. file f(filename, "r");
  21. json::stream_parser p;
  22. json::error_code ec;
  23. do {
  24. char buf[4096];
  25. auto const nread = f.read(buf, sizeof(buf));
  26. p.write(buf, nread, ec);
  27. } while (!f.eof());
  28. if (ec)
  29. return nullptr;
  30. p.finish(ec);
  31. if (ec)
  32. return nullptr;
  33. return p.release();
  34. }
  35. #endif
  36. class session : public std::enable_shared_from_this<session> {
  37. public:
  38. session(boost::asio::ip::tcp::socket socket,
  39. boost::asio::io_service &io_service, std::string hostname,
  40. std::string port)
  41. : socket_(std::move(socket)), io_service_{io_service},
  42. resolver_{io_service}, host{hostname}, port{port} {}
  43. void start(void) {
  44. std::cout << "session" << std::endl;
  45. auto self(shared_from_this());
  46. // read_buffer.reserve(1024);
  47. // do_write("Welcome!\n");
  48. do_read();
  49. }
  50. ~session() { std::cout << "~session" << std::endl; }
  51. void parse_auth(void) {
  52. // how many nulls should I be seeing?
  53. // \0user\0pass\0terminal/SPEED\0
  54. // Maybe in the future I'll care about parsing this out. I don't right now.
  55. if (rlogin_auth.size() > 10)
  56. rlogin_name = rlogin_auth.c_str() + 1;
  57. else
  58. rlogin_name = "?";
  59. }
  60. void on_resolve(const boost::system::error_code error,
  61. const boost::asio::ip::tcp::resolver::results_type results) {
  62. //
  63. auto self(shared_from_this());
  64. if (!error) {
  65. for (boost::asio::ip::tcp::endpoint const &endpoint : results) {
  66. std::cout << "GOT: " << endpoint << "\n";
  67. }
  68. } else {
  69. std::cout << "Unable to resolve?" << std::endl;
  70. }
  71. }
  72. void do_read(void) {
  73. auto self(shared_from_this());
  74. boost::asio::async_read( // why can't I async_read_some here?
  75. socket_, boost::asio::buffer(read_buffer, sizeof(read_buffer) - 1),
  76. boost::asio::transfer_at_least(1),
  77. [this, self](boost::system::error_code ec, std::size_t length) {
  78. if (!ec) {
  79. read_buffer[length] = 0;
  80. if (rlogin_auth.empty()) {
  81. // first read should be rlogin information
  82. rlogin_auth.assign(read_buffer, length);
  83. // parse authentication information
  84. parse_auth();
  85. do_write(std::string(1, 0));
  86. do_write("Welcome, ");
  87. do_write(rlogin_name);
  88. do_write("\n\r");
  89. // Activate the connection to the server
  90. // this works!
  91. /*
  92. boost::system::error_code ec;
  93. boost::asio::ip::tcp::resolver::results_type results =
  94. self->resolver_.resolve("google.com", "80", ec);
  95. for (boost::asio::ip::tcp::endpoint const &endpoint : results) {
  96. std::cout << endpoint << "\n";
  97. }
  98. */
  99. // resolver_.async_resolve(host, port, on_resolve);
  100. // This works, but I can't std::bind to a callback?
  101. /*
  102. resolver_.async_resolve(
  103. host, port,
  104. [&](boost::system::error_code ec,
  105. boost::asio::ip::tcp::resolver::results_type
  106. results) { if (!ec) { for (const boost::asio::ip::tcp::endpoint
  107. &endpoint : results) { std::cout << endpoint << "\n";
  108. }
  109. } else {
  110. std::cerr << "Something went wrong";
  111. }
  112. });
  113. */
  114. /*
  115. resolver_.async_resolve(
  116. host, port,
  117. std::bind( &session::on_resolve, this, _1, _2)); */
  118. // This example shows using boost::bind, which WORKS.
  119. // https://stackoverflow.com/questions/6025471/bind-resolve-handler-to-resolver-async-resolve-using-boostasio
  120. resolver_.async_resolve(
  121. host, port,
  122. boost::bind(&session::on_resolve, this,
  123. boost::asio::placeholders::error,
  124. boost::asio::placeholders::iterator));
  125. } else if (length) {
  126. // std::cout << length << std::endl;
  127. std::cout << read_buffer << std::endl;
  128. std::string output = "Got [";
  129. output += read_buffer;
  130. output += "]\n";
  131. do_write(output);
  132. }
  133. do_read();
  134. } else {
  135. std::cout << "read_failed: connection closed" << std::endl;
  136. }
  137. });
  138. }
  139. void do_write(std::string message) {
  140. auto self(shared_from_this());
  141. boost::asio::async_write(
  142. socket_, boost::asio::buffer(message),
  143. [this, self](boost::system::error_code ec, std::size_t /*length*/) {
  144. if (!ec) {
  145. } else {
  146. std::cout << "write failed? closed?" << std::endl;
  147. }
  148. });
  149. }
  150. private:
  151. boost::asio::ip::tcp::socket socket_;
  152. boost::asio::io_service &io_service_;
  153. boost::asio::ip::tcp::resolver resolver_;
  154. // std::string read_buffer;
  155. char read_buffer[1024];
  156. std::string rlogin_auth;
  157. std::string rlogin_name;
  158. std::string host;
  159. std::string port;
  160. };
  161. class server {
  162. public:
  163. server(boost::asio::io_service &io_service,
  164. const boost::asio::ip::tcp::endpoint &endpoint, std::string host,
  165. std::string port)
  166. : io_service_{io_service}, acceptor_{io_service_, endpoint}, host_{host},
  167. port_{port} {
  168. do_accept();
  169. }
  170. private:
  171. void do_accept() {
  172. acceptor_.async_accept([this](boost::system::error_code ec,
  173. boost::asio::ip::tcp::socket socket) {
  174. if (!ec) {
  175. std::make_shared<session>(std::move(socket), io_service_, host_, port_)
  176. ->start();
  177. }
  178. do_accept();
  179. });
  180. }
  181. boost::asio::io_service &io_service_;
  182. boost::asio::ip::tcp::acceptor acceptor_;
  183. std::string host_;
  184. std::string port_;
  185. };
  186. int main(int argc, char *argv[]) {
  187. // boost::json::json_value config;
  188. if (argc != 2) {
  189. std::cerr << "Usage: twproxy <filename>" << std::endl;
  190. return EXIT_FAILURE;
  191. }
  192. try {
  193. // Parse the file as JSON
  194. // config = parse_file( argv[1] );
  195. } catch (std::exception const &e) {
  196. std::cerr << "Caught exception: " << e.what() << std::endl;
  197. return EXIT_FAILURE;
  198. }
  199. int port = 9999; // 2002;
  200. try {
  201. boost::asio::io_service io_service;
  202. boost::asio::ip::tcp::endpoint endpoint(boost::asio::ip::tcp::v4(),
  203. port); // std::atoi(argv[i]));
  204. // connect to the BBS
  205. server s(io_service, endpoint, "127.0.0.1", "2023");
  206. io_service.run();
  207. } catch (std::exception &e) {
  208. std::cerr << "Exception: " << e.what() << "\n";
  209. }
  210. return EXIT_SUCCESS;
  211. }