twproxy.cpp 7.6 KB

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