session.h 4.8 KB

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