session.cpp 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334
  1. #include <boost/bind.hpp>
  2. #include <iostream>
  3. #include <boost/log/attributes/named_scope.hpp>
  4. #include <boost/log/core.hpp>
  5. #include <boost/log/trivial.hpp>
  6. #include "session.h"
  7. #include <string>
  8. bool replace(std::string &str, const std::string &from, const std::string &to) {
  9. size_t start_pos = str.find(from);
  10. if (start_pos == std::string::npos)
  11. return false;
  12. do {
  13. str.replace(start_pos, from.length(), to);
  14. } while ((start_pos = str.find(from)) != std::string::npos);
  15. return true;
  16. }
  17. bool replace(std::string &str, const char *from, const char *to) {
  18. size_t start_pos = str.find(from);
  19. if (start_pos == std::string::npos)
  20. return false;
  21. do {
  22. str.replace(start_pos, strlen(from), to);
  23. } while ((start_pos = str.find(from)) != std::string::npos);
  24. return true;
  25. }
  26. std::string clean_string(const std::string &source) {
  27. std::string clean = source;
  28. replace(clean, "\n", "\\n");
  29. replace(clean, "\r", "\\r");
  30. replace(clean, "\x1b", "^");
  31. return clean;
  32. }
  33. session::session(boost::asio::ip::tcp::socket socket,
  34. boost::asio::io_service &io_service, std::string hostname,
  35. std::string port)
  36. : socket_(std::move(socket)),
  37. io_service_{io_service}, resolver_{io_service}, server_{io_service},
  38. timer_{io_service}, host{hostname}, port{port} {
  39. server_sent = 0;
  40. // BOOST_LOG_NAMED_SCOPE("session");
  41. }
  42. void session::start(void) {
  43. BOOST_LOG_NAMED_SCOPE("session");
  44. BOOST_LOG_TRIVIAL(info) << "session";
  45. auto self(shared_from_this());
  46. // read_buffer.reserve(1024);
  47. // do_write("Welcome!\n");
  48. do_read();
  49. }
  50. session::~session() {
  51. BOOST_LOG_NAMED_SCOPE("session");
  52. BOOST_LOG_TRIVIAL(info) << "~session destructed";
  53. }
  54. void session::parse_auth(void) {
  55. // how many nulls should I be seeing?
  56. // \0user\0pass\0terminal/SPEED\0
  57. // Maybe in the future I'll care about parsing this out. I don't right now.
  58. // Ok, yes I do! If I don't have a proper rlogin value here, it isn't going
  59. // to work when I try to connect to the rlogin server.
  60. if (rlogin_auth.size() > 10)
  61. rlogin_name = rlogin_auth.c_str() + 1;
  62. else
  63. rlogin_name = "?";
  64. }
  65. void session::on_connect(const boost::system::error_code error) {
  66. // We've connected to the server! WOOT WOOT!
  67. BOOST_LOG_NAMED_SCOPE("session");
  68. if (!error) {
  69. BOOST_LOG_TRIVIAL(info) << "Connected to " << host;
  70. to_client("Connected...\n\r");
  71. connected = true;
  72. if (rlogin_auth[0] != 0) {
  73. // Ok, the rlogin information was junk --
  74. to_client("Let me make up some fake rlogin data for you...\n\r");
  75. char temp[] = "\0test\0test\0terminal/9600\0";
  76. std::string tmp(temp, sizeof(temp));
  77. to_server(tmp);
  78. } else {
  79. to_server(rlogin_auth);
  80. }
  81. server_read();
  82. } else {
  83. // TODO:
  84. std::string output = "Failed to connect : ";
  85. output += host;
  86. output += " : ";
  87. output += port;
  88. output += "\n\r";
  89. to_client(output);
  90. BOOST_LOG_TRIVIAL(error) << "Failed to connec to " << host << ":" << port;
  91. std::cout << "SHUTDOWN..." << std::endl;
  92. socket_.shutdown(boost::asio::ip::tcp::socket::shutdown_both);
  93. }
  94. }
  95. void session::dispatch_line(std::string line) {
  96. // Does this have \n\r still on it? I don't want them.
  97. BOOST_LOG_NAMED_SCOPE("session");
  98. BOOST_LOG_TRIVIAL(info) << "SL: " << clean_string(line);
  99. // std::cout << "SL: " << line << std::endl;
  100. // is echo on? if so:
  101. }
  102. void session::process_lines(void) {
  103. // break server_prompt into lines and send/process one by one.
  104. size_t pos;
  105. // while ((pos = server_prompt.find("\n\r", 0, 2)) != std::string::npos) {
  106. // while ((pos = server_prompt.find("\r\n", 0, 2)) != std::string::npos) {
  107. while ((pos = server_prompt.find('\n', 0)) != std::string::npos) {
  108. // line
  109. std::string line = server_prompt.substr(0, pos + 1);
  110. server_prompt = server_prompt.substr(pos + 1);
  111. // Remove \n for dispatching
  112. std::string part = line.substr(0, pos);
  113. if (server_sent != 0) {
  114. line = line.substr(server_sent);
  115. server_sent = 0;
  116. };
  117. // display on?
  118. to_client(line);
  119. replace(part, "\r", "");
  120. dispatch_line(part);
  121. }
  122. // display on?
  123. if (server_sent != 0) {
  124. // send partial
  125. std::string part = server_prompt.substr(server_sent);
  126. to_client(part);
  127. server_sent = server_prompt.size();
  128. } else {
  129. // send all
  130. if (!server_prompt.empty()) {
  131. to_client(server_prompt);
  132. server_sent = server_prompt.size();
  133. }
  134. }
  135. // server_sent is the # of chars we've already sent of this.
  136. }
  137. void session::server_read(void) {
  138. auto self(shared_from_this());
  139. boost::asio::async_read(
  140. server_, boost::asio::buffer(server_buffer, sizeof(server_buffer) - 1),
  141. boost::asio::transfer_at_least(1),
  142. [this, self](boost::system::error_code ec, std::size_t length) {
  143. if (!ec) {
  144. server_buffer[length] = 0;
  145. server_prompt.append(server_buffer, length);
  146. process_lines();
  147. /*
  148. if (length) {
  149. // std::cout << length << std::endl;
  150. std::cout << "S: " << server_buffer << std::endl;
  151. do_write(server_buffer);
  152. }
  153. */
  154. server_read();
  155. } else {
  156. std::cout << "S: read_failed: connection closed" << std::endl;
  157. socket_.shutdown(boost::asio::ip::tcp::socket::shutdown_both);
  158. // socket_.async_shutdown(boost::bind(&session::on_shutdown, this,
  159. // boost::asio::placeholders::error));
  160. }
  161. });
  162. }
  163. void session::on_resolve(
  164. const boost::system::error_code error,
  165. const boost::asio::ip::tcp::resolver::results_type results) {
  166. //
  167. auto self(shared_from_this());
  168. if (!error) {
  169. // Take the first endpoint.
  170. boost::asio::ip::tcp::endpoint const &endpoint = *results;
  171. server_.async_connect(endpoint,
  172. boost::bind(&session::on_connect, this,
  173. boost::asio::placeholders::error));
  174. } else {
  175. // TO DO:
  176. BOOST_LOG_NAMED_SCOPE("session");
  177. BOOST_LOG_TRIVIAL(error) << "Unable to resolve: " << host;
  178. std::string output = "Unable to resolve: ";
  179. output += host;
  180. output += "\n\r";
  181. to_client(output);
  182. std::cout << "SHUTDOWN ..." << std::endl;
  183. socket_.shutdown(boost::asio::ip::tcp::socket::shutdown_both);
  184. }
  185. }
  186. void session::do_read(void) {
  187. auto self(shared_from_this());
  188. boost::asio::async_read( // why can't I async_read_some here?
  189. socket_, boost::asio::buffer(read_buffer, sizeof(read_buffer) - 1),
  190. boost::asio::transfer_at_least(1),
  191. [this, self](boost::system::error_code ec, std::size_t length) {
  192. if (!ec) {
  193. read_buffer[length] = 0;
  194. if (rlogin_auth.empty()) {
  195. // first read should be rlogin information
  196. rlogin_auth.assign(read_buffer, length);
  197. // parse authentication information
  198. parse_auth();
  199. to_client(std::string(1, 0));
  200. to_client("Welcome, ");
  201. to_client(rlogin_name);
  202. to_client("\n\r");
  203. // Activate the connection to the server
  204. /* // this fails, and I'm not sure why. I've used code like this
  205. before. resolver_.async_resolve( host, port, std::bind(
  206. &session::on_resolve, this, _1, _2)); */
  207. // This example shows using boost::bind, which WORKS.
  208. // https://stackoverflow.com/questions/6025471/bind-resolve-handler-to-resolver-async-resolve-using-boostasio
  209. resolver_.async_resolve(
  210. host, port,
  211. boost::bind(&session::on_resolve, this,
  212. boost::asio::placeholders::error,
  213. boost::asio::placeholders::iterator));
  214. } else if (length) {
  215. // std::cout << length << std::endl;
  216. // Proxy Active?
  217. BOOST_LOG_NAMED_SCOPE("session");
  218. to_server(read_buffer);
  219. BOOST_LOG_TRIVIAL(info) << "C: " << read_buffer;
  220. // do_write(output);
  221. }
  222. do_read();
  223. } else {
  224. std::cout << "C: read_failed: connection closed" << std::endl;
  225. if (connected)
  226. server_.shutdown(boost::asio::ip::tcp::socket::shutdown_both);
  227. // server_.async_shutdown(boost::bind(&session::on_shutdown, this,
  228. // boost::asio::placeholders::error));
  229. }
  230. });
  231. }
  232. void session::to_client(std::string message) {
  233. auto self(shared_from_this());
  234. boost::asio::async_write(
  235. socket_, boost::asio::buffer(message),
  236. [this, self](boost::system::error_code ec, std::size_t /*length*/) {
  237. if (!ec) {
  238. } else {
  239. std::cout << "write failed? closed?" << std::endl;
  240. server_.shutdown(boost::asio::ip::tcp::socket::shutdown_both);
  241. // server_.async_shutdown(boost::bind(&session::on_shutdown, this,
  242. // boost::asio::placeholders::error));
  243. }
  244. });
  245. }
  246. void session::to_server(std::string message) {
  247. auto self(shared_from_this());
  248. boost::asio::async_write(
  249. server_, boost::asio::buffer(message),
  250. [this, self](boost::system::error_code ec, std::size_t /*length*/) {
  251. if (!ec) {
  252. } else {
  253. std::cout << "write failed? closed?" << std::endl;
  254. socket_.shutdown(boost::asio::ip::tcp::socket::shutdown_both);
  255. // socket_.async_shutdown(boost::bind(&session::on_shutdown, this,
  256. // boost::asio::placeholders::error));
  257. }
  258. });
  259. }
  260. void session::on_shutdown(boost::system::error_code ec) {
  261. std::cout << "shutdown." << std::endl;
  262. }
  263. server::server(boost::asio::io_service &io_service,
  264. const boost::asio::ip::tcp::endpoint &endpoint, std::string host,
  265. std::string port)
  266. : io_service_{io_service}, acceptor_{io_service_, endpoint}, host_{host},
  267. port_{port} {
  268. do_accept();
  269. }
  270. /**
  271. * setup async connect accept
  272. *
  273. * This creates a session for each connection. Using make_shared allows the
  274. * session to automatically clean up when it is no longer active/has anything
  275. * running in the reactor.
  276. */
  277. void server::do_accept(void) {
  278. acceptor_.async_accept([this](boost::system::error_code ec,
  279. boost::asio::ip::tcp::socket socket) {
  280. if (!ec) {
  281. std::make_shared<session>(std::move(socket), io_service_, host_, port_)
  282. ->start();
  283. }
  284. do_accept();
  285. });
  286. }