session.h 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219
  1. #ifndef SESSION_H
  2. #define SESSION_H
  3. #include <boost/asio.hpp>
  4. #include <boost/asio/ip/basic_resolver.hpp>
  5. #include <map>
  6. #include <string>
  7. #include "session_common.h"
  8. #include "dispatchers.h"
  9. #define MAX_BUFFER 256
  10. /*
  11. The Session:
  12. */
  13. class Session : public std::enable_shared_from_this<Session> {
  14. public:
  15. Session(boost::asio::ip::tcp::socket socket,
  16. boost::asio::io_service &io_service, std::string hostname,
  17. std::string port);
  18. ~Session();
  19. void start(void);
  20. const std::string &get_prompt(void);
  21. void set_prompt(const std::string &prompt);
  22. void to_client(const std::string &message);
  23. void to_server(const std::string &message);
  24. DispatchSettings save_settings(void);
  25. void restore_settings(const DispatchSettings &ss);
  26. // what uses these? how do you use these?
  27. StringFunc emit_server_line;
  28. StringFunc emit_server_prompt;
  29. StringFunc emit_client_input;
  30. bool show_client = true;
  31. bool talk_direct = true;
  32. void post(notifyFunc nf);
  33. private:
  34. void on_server_line(const std::string &line);
  35. void on_server_prompt(const std::string &prompt);
  36. void parse_auth(void);
  37. void on_connect(const boost::system::error_code error);
  38. void server_read(void);
  39. void on_resolve(const boost::system::error_code error,
  40. const boost::asio::ip::tcp::resolver::results_type results);
  41. void client_read(void);
  42. void client_input(const std::string &input);
  43. void on_shutdown(boost::system::error_code ec);
  44. void split_lines(std::string line);
  45. void process_lines(std::string &received);
  46. private:
  47. void set_prompt_timer(void);
  48. void reset_prompt_timer(void);
  49. void on_prompt_timeout(const boost::system::error_code error);
  50. void stayin_alive(const boost::system::error_code error);
  51. void start_keepin_alive(void);
  52. int time_ms;
  53. int keepalive_secs;
  54. MainDispatch main;
  55. void proxy_activate(void);
  56. void proxy_deactivate(void);
  57. // std::stack<Dispatch *> director;
  58. bool active = false;
  59. /**
  60. * The client's socket
  61. */
  62. boost::asio::ip::tcp::socket socket_;
  63. boost::asio::io_service &io_service_;
  64. boost::asio::ip::tcp::resolver resolver_;
  65. /**
  66. * The server's socket
  67. */
  68. boost::asio::ip::tcp::socket server_;
  69. /**
  70. * The time that we'll use to fire off the "prompt" event.
  71. *
  72. * The idea being that we'd receive chars, processing lines.
  73. * And if we have something in server_prompt start the timer.
  74. * If we receive more, process lines, if !server_prompt.empty()
  75. * reset the timer.
  76. *
  77. * If the timer fires (and isn't aborted), fire off the prompt.
  78. *
  79. * I'm not so sure about this -- because this adds delay to the
  80. * proxy. [It might be better to just fire off "some" text, and
  81. * have it ignored, rather then adding a delay.] Or, this might
  82. * not matter at all, I'm thinking milliseconds here!
  83. */
  84. boost::asio::high_resolution_timer prompt_timer_;
  85. /**
  86. * Keep connection alive, don't timeout.
  87. *
  88. * This gets set by to_server config[keepalive], and sends a
  89. * space ' ' if we haven't sent anything to the server in that
  90. * many seconds.
  91. */
  92. boost::asio::high_resolution_timer keep_alive_;
  93. /**
  94. * What characters have been received from the server,
  95. * that weren't \n terminated?
  96. *
  97. * This needs to be reset/cleared if there's a \r (carriage return).
  98. */
  99. std::string server_prompt;
  100. /**
  101. * FAIL-WHALE: This was supposed to hold the number of characters
  102. * already sent to the user at this point in time, but I'm having
  103. * a hard time tracking those.
  104. *
  105. */
  106. // int server_sent;
  107. /**
  108. * The client read buffer.
  109. *
  110. * This is too big, we don't get that many characters from the client.
  111. *
  112. */
  113. char read_buffer[MAX_BUFFER + 1];
  114. /**
  115. * The server read buffer.
  116. * This is MAX_BUFFER + 1 (to store the \0 to terminate the string)
  117. */
  118. char server_buffer[MAX_BUFFER + 1];
  119. /**
  120. * The rlogin information received from the client.
  121. *
  122. * We check this, and if it isn't valid, we spoof some rlogin
  123. * connection.
  124. */
  125. std::string rlogin_auth;
  126. /**
  127. * The username passed in via rlogin. We need this so we know what
  128. * name we need to store the data under.
  129. */
  130. std::string rlogin_name;
  131. std::string host;
  132. std::string port;
  133. char game = 0;
  134. /**
  135. * Are we connected to the server?
  136. *
  137. * Don't shutdown the server socket if we aren't connected.
  138. */
  139. bool connected = false;
  140. };
  141. /*
  142. maybe move the resolver part to the server, so I don't need io_service?
  143. I'm not sure what the socket connection part is going to need just yet,
  144. so I probably won't move that just yet. [NNY!]
  145. */
  146. class Server {
  147. public:
  148. Server(boost::asio::io_service &io_service,
  149. const boost::asio::ip::tcp::endpoint &endpoint, std::string host,
  150. std::string port);
  151. ~Server();
  152. private:
  153. void do_accept(void);
  154. boost::asio::io_service &io_service_;
  155. boost::asio::ip::tcp::acceptor acceptor_;
  156. /**
  157. * The host to connect to (from config)
  158. */
  159. std::string host_;
  160. /**
  161. * The port to connect to (from config)
  162. *
  163. */
  164. std::string port_;
  165. bool only_one;
  166. };
  167. #ifdef NEVERMORE
  168. // The simple way to get the boost logging to log file and line number
  169. // information. [Let the BUGZ_LOG macro do it!]
  170. #include <iomanip>
  171. #include <string.h>
  172. const char *trim_path(const char *filepath);
  173. #define BUGZ_LOG(severity) \
  174. BOOST_LOG_TRIVIAL(severity) \
  175. << "(" << std::setw(15) << trim_path(__FILE__) << ":" << std::setw(4) \
  176. << std::left << __LINE__ << ") "
  177. #endif
  178. #endif