2022-02-18 03:59:21 -05:00
|
|
|
|
2022-02-21 20:23:01 -05:00
|
|
|
#define CHBUF_SIZE (256*1024)
|
|
|
|
|
#define POLLVEC_SIZE (DrivenEngine::MAX_CHAN+1)
|
|
|
|
|
|
2022-01-11 13:59:13 -05:00
|
|
|
static MonoClock monoclock;
|
|
|
|
|
|
|
|
|
|
namespace util {
|
|
|
|
|
double profiling_clock() {
|
|
|
|
|
return monoclock.get();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2022-02-25 19:57:23 -05:00
|
|
|
static void if_error_print_and_exit(const std::string &str) {
|
2022-01-11 13:59:13 -05:00
|
|
|
if (!str.empty()) {
|
|
|
|
|
std::cerr << std::endl << "error: " << str << std::endl;
|
|
|
|
|
exit(1);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2022-02-25 19:57:23 -05:00
|
|
|
static std::string_view read_file(const char *fn, char *buf, int bufsize, std::string &err) {
|
2022-02-21 20:23:01 -05:00
|
|
|
FILE *f = fopen(fn, "r");
|
|
|
|
|
if (f == 0) {
|
2022-02-25 19:57:23 -05:00
|
|
|
err = std::string("cannot read file") + fn;
|
2022-02-21 20:23:01 -05:00
|
|
|
buf[0] = 0;
|
2022-02-24 13:50:43 -05:00
|
|
|
return std::string_view(buf, 0);
|
2022-02-21 20:23:01 -05:00
|
|
|
}
|
|
|
|
|
int nread = fread(buf, 1, bufsize, f);
|
|
|
|
|
if (nread < 0) {
|
2022-02-25 19:57:23 -05:00
|
|
|
err = std::string("cannot read file: ") + fn;
|
2022-02-21 20:23:01 -05:00
|
|
|
buf[0] = 0;
|
2022-02-24 13:50:43 -05:00
|
|
|
return std::string_view(buf, 0);
|
2022-02-21 20:23:01 -05:00
|
|
|
}
|
|
|
|
|
if (nread == bufsize) {
|
2022-02-25 19:57:23 -05:00
|
|
|
err = std::string("file too large: ") + fn;
|
2022-02-21 20:23:01 -05:00
|
|
|
buf[0] = 0;
|
2022-02-24 13:50:43 -05:00
|
|
|
return std::string_view(buf, 0);
|
2022-02-21 20:23:01 -05:00
|
|
|
}
|
|
|
|
|
err = "";
|
2022-02-24 13:50:43 -05:00
|
|
|
return std::string_view(buf, nread);
|
2022-02-21 20:23:01 -05:00
|
|
|
}
|
|
|
|
|
|
2022-03-12 14:56:33 -05:00
|
|
|
struct SSL_CTX_Deleter {
|
|
|
|
|
void operator()(SSL_CTX *ctx) {
|
|
|
|
|
SSL_CTX_free(ctx);
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
using UniqueSSLCTX = std::unique_ptr<SSL_CTX, SSL_CTX_Deleter>;
|
2022-02-21 20:23:01 -05:00
|
|
|
|
2022-03-12 14:56:33 -05:00
|
|
|
static UniqueSSLCTX new_ssl_context(bool server_cert, bool root_certs, std::string_view require_cert) {
|
2022-01-11 13:59:13 -05:00
|
|
|
SSL_CTX *ctx = SSL_CTX_new(TLS_method());
|
|
|
|
|
SSL_CTX_set_mode(ctx, SSL_MODE_ACCEPT_MOVING_WRITE_BUFFER);
|
|
|
|
|
SSL_CTX_set_mode(ctx, SSL_MODE_ENABLE_PARTIAL_WRITE);
|
|
|
|
|
SSL_CTX_set_verify(ctx, SSL_VERIFY_NONE, nullptr);
|
|
|
|
|
// server_cert is not implemented yet.
|
|
|
|
|
if (root_certs) {
|
|
|
|
|
SSL_CTX_set_default_verify_paths(ctx);
|
|
|
|
|
SSL_CTX_set_verify(ctx, SSL_VERIFY_PEER, NULL);
|
|
|
|
|
}
|
|
|
|
|
// require_cert is not implemented yet.
|
2022-03-12 14:56:33 -05:00
|
|
|
return UniqueSSLCTX(ctx);
|
2022-01-11 13:59:13 -05:00
|
|
|
}
|
|
|
|
|
|
2022-03-12 14:56:33 -05:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2022-02-25 19:57:23 -05:00
|
|
|
static std::string err_print_errors_str() {
|
2022-01-11 13:59:13 -05:00
|
|
|
BIO *bio = BIO_new(BIO_s_mem());
|
|
|
|
|
ERR_print_errors(bio);
|
|
|
|
|
char *buf;
|
|
|
|
|
size_t len = BIO_get_mem_data(bio, &buf);
|
2022-02-25 19:57:23 -05:00
|
|
|
std::string ret(buf, len);
|
2022-01-11 13:59:13 -05:00
|
|
|
BIO_free(bio);
|
|
|
|
|
return ret;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static int ssl_ctx_use_certificate_str(SSL_CTX *ctx, const char *str) {
|
|
|
|
|
BIO *bio = BIO_new(BIO_s_mem());
|
|
|
|
|
BIO_puts(bio, str);
|
|
|
|
|
X509 *certificate = PEM_read_bio_X509(bio, NULL, NULL, NULL);
|
|
|
|
|
BIO_free(bio);
|
|
|
|
|
int status = SSL_CTX_use_certificate(ctx, certificate);
|
|
|
|
|
X509_free(certificate);
|
|
|
|
|
return status;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static int ssl_ctx_use_privatekey_str(SSL_CTX *ctx, const char *str) {
|
|
|
|
|
BIO *bio = BIO_new(BIO_s_mem());
|
|
|
|
|
BIO_puts(bio, str);
|
|
|
|
|
EVP_PKEY *pkey = PEM_read_bio_PrivateKey(bio, NULL, NULL, NULL);
|
|
|
|
|
BIO_free(bio);
|
|
|
|
|
int status = SSL_CTX_use_PrivateKey(ctx, pkey);
|
|
|
|
|
EVP_PKEY_free(pkey);
|
|
|
|
|
return status;
|
|
|
|
|
}
|
|
|
|
|
|
2022-02-17 20:02:08 -05:00
|
|
|
|
2022-01-11 13:59:13 -05:00
|
|
|
class Driver {
|
|
|
|
|
public:
|
2022-02-17 20:02:08 -05:00
|
|
|
|
2022-01-11 13:59:13 -05:00
|
|
|
enum ChanState {
|
|
|
|
|
CHAN_INACTIVE,
|
|
|
|
|
CHAN_PLAINTEXT,
|
|
|
|
|
CHAN_SSL_CONNECTING,
|
|
|
|
|
CHAN_SSL_ACCEPTING,
|
|
|
|
|
CHAN_SSL_READWRITE,
|
|
|
|
|
};
|
|
|
|
|
struct ChanInfo {
|
|
|
|
|
int chid;
|
|
|
|
|
SOCKET socket;
|
|
|
|
|
SSL *ssl;
|
|
|
|
|
|
|
|
|
|
ChanState state;
|
|
|
|
|
int nbytes;
|
|
|
|
|
const char *bytes;
|
|
|
|
|
bool released;
|
|
|
|
|
bool just_released;
|
|
|
|
|
bool ready_now;
|
|
|
|
|
bool ready_on_pollin;
|
|
|
|
|
bool ready_on_pollout;
|
|
|
|
|
bool ready_on_outgoing;
|
|
|
|
|
int last_write_nbytes;
|
|
|
|
|
};
|
|
|
|
|
|
2022-02-25 19:57:23 -05:00
|
|
|
std::vector<ChanInfo> chans_;
|
|
|
|
|
std::map<int, SOCKET> listen_sockets_;
|
2022-01-11 13:59:13 -05:00
|
|
|
bool read_console_recently_;
|
2022-03-11 18:35:51 -05:00
|
|
|
std::unique_ptr<char[]> chbuf_;
|
|
|
|
|
std::unique_ptr<struct pollfd[]> pollvec_;
|
|
|
|
|
drv::ReplayRecorder recorder_;
|
2022-01-11 13:59:13 -05:00
|
|
|
|
2022-03-12 14:56:33 -05:00
|
|
|
UniqueSSLCTX ssl_ctx_with_root_certs_;
|
|
|
|
|
UniqueSSLCTX ssl_ctx_with_server_certs_;
|
|
|
|
|
UniqueSSLCTX ssl_ctx_with_no_certs_;
|
2022-01-11 13:59:13 -05:00
|
|
|
|
2022-02-17 20:02:08 -05:00
|
|
|
|
2022-01-11 13:59:13 -05:00
|
|
|
void handle_listen_ports() {
|
2022-03-11 18:35:51 -05:00
|
|
|
const auto &listenports = recorder_.drv_get_listen_ports();
|
2022-01-11 13:59:13 -05:00
|
|
|
for (int port : listenports) {
|
|
|
|
|
if (listen_sockets_.find(port) == listen_sockets_.end()) {
|
2022-02-25 19:57:23 -05:00
|
|
|
std::string err;
|
2022-01-11 13:59:13 -05:00
|
|
|
SOCKET sock = listen_on_port(port, err);
|
|
|
|
|
if_error_print_and_exit(err);
|
|
|
|
|
assert(sock != INVALID_SOCKET);
|
|
|
|
|
listen_sockets_[port] = sock;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void handle_lua_source() {
|
2022-03-11 18:35:51 -05:00
|
|
|
if (recorder_.drv_get_rescan_lua_source()) {
|
2022-02-25 19:57:23 -05:00
|
|
|
std::string err;
|
2022-03-11 18:35:51 -05:00
|
|
|
std::string_view ctrl = read_file("lua/control.lst", chbuf_.get(), CHBUF_SIZE, err);
|
2022-02-18 03:59:21 -05:00
|
|
|
if_error_print_and_exit(err);
|
2022-02-25 19:57:23 -05:00
|
|
|
std::vector<std::string> names = drv::parse_control_lst(ctrl);
|
2022-03-11 18:35:51 -05:00
|
|
|
recorder_.drv_clear_lua_source();
|
2022-02-25 19:57:23 -05:00
|
|
|
for (const std::string &str : names) {
|
|
|
|
|
std::string lfn = std::string("lua/") + str;
|
2022-03-11 18:35:51 -05:00
|
|
|
std::string_view data = read_file(lfn.c_str(), chbuf_.get(), CHBUF_SIZE, err);
|
2022-02-18 03:59:21 -05:00
|
|
|
if_error_print_and_exit(err);
|
2022-03-11 18:35:51 -05:00
|
|
|
recorder_.drv_add_lua_source(str, data);
|
2022-02-18 03:59:21 -05:00
|
|
|
}
|
2022-01-11 13:59:13 -05:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2022-02-24 13:50:43 -05:00
|
|
|
void close_channel(ChanInfo &chan, std::string_view err) {
|
2022-01-11 13:59:13 -05:00
|
|
|
// std::cerr << "Closing channel " << chan.chid << std::endl;
|
|
|
|
|
assert(chan.state != CHAN_INACTIVE);
|
|
|
|
|
// Close and release the SSL channel.
|
|
|
|
|
if (chan.ssl != nullptr) {
|
|
|
|
|
SSL_free(chan.ssl);
|
|
|
|
|
chan.ssl = nullptr;
|
|
|
|
|
}
|
|
|
|
|
// Close and release the socket.
|
|
|
|
|
assert(chan.socket != INVALID_SOCKET);
|
|
|
|
|
assert(socket_close(chan.socket) == 0);
|
|
|
|
|
chan.socket = INVALID_SOCKET;
|
|
|
|
|
// Close everything else.
|
2022-03-11 18:35:51 -05:00
|
|
|
recorder_.drv_notify_close(chan.chid, err);
|
2022-01-11 13:59:13 -05:00
|
|
|
chan.state = CHAN_INACTIVE;
|
|
|
|
|
chan.chid = -1;
|
|
|
|
|
chan.nbytes = 0;
|
|
|
|
|
chan.bytes = 0;
|
|
|
|
|
chan.released = false;
|
|
|
|
|
chan.just_released = false;
|
|
|
|
|
chan.ready_now = false;
|
|
|
|
|
chan.ready_on_pollin = false;
|
|
|
|
|
chan.ready_on_pollout = false;
|
|
|
|
|
chan.ready_on_outgoing = false;
|
|
|
|
|
chan.last_write_nbytes = 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void cleanup_channels() {
|
|
|
|
|
for (int i = 0; i < int(chans_.size()); ) {
|
|
|
|
|
if (chans_[i].state == CHAN_INACTIVE) {
|
|
|
|
|
chans_[i] = chans_.back();
|
|
|
|
|
chans_.pop_back();
|
|
|
|
|
} else {
|
|
|
|
|
i += 1;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void handle_console_output() {
|
|
|
|
|
while (true) {
|
2022-03-11 18:35:51 -05:00
|
|
|
std::string_view s = recorder_.drv_peek_outgoing(0);
|
2022-03-04 16:45:47 -05:00
|
|
|
if (s.size() == 0) break;
|
|
|
|
|
int nwrote = console_write(s.data(), s.size());
|
2022-01-12 15:53:49 -05:00
|
|
|
if (nwrote <= 0) break;
|
2022-03-11 18:35:51 -05:00
|
|
|
recorder_.drv_sent_outgoing(0, nwrote);
|
2022-01-11 13:59:13 -05:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void handle_console_input() {
|
|
|
|
|
char buffer[256];
|
|
|
|
|
read_console_recently_ = false;
|
|
|
|
|
while (true) {
|
|
|
|
|
int nread = console_read(buffer, 256);
|
2022-01-12 15:53:49 -05:00
|
|
|
if (nread <= 0) break;
|
2022-01-11 13:59:13 -05:00
|
|
|
read_console_recently_ = true;
|
2022-03-11 18:35:51 -05:00
|
|
|
recorder_.drv_recv_incoming(0, std::string_view(buffer, nread));
|
2022-01-11 13:59:13 -05:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void make_channel(SOCKET sock, int chid, SSL_CTX *ctx, ChanState state) {
|
|
|
|
|
ChanInfo newchan;
|
|
|
|
|
newchan.chid = chid;
|
|
|
|
|
newchan.socket = sock;
|
|
|
|
|
newchan.ssl = SSL_new(ctx);
|
|
|
|
|
newchan.state = state;
|
|
|
|
|
newchan.nbytes = 0;
|
|
|
|
|
newchan.bytes = 0;
|
|
|
|
|
newchan.released = false;
|
|
|
|
|
newchan.just_released = false;
|
|
|
|
|
newchan.ready_now = false;
|
|
|
|
|
newchan.ready_on_pollin = false;
|
|
|
|
|
newchan.ready_on_pollout = true;
|
|
|
|
|
newchan.ready_on_outgoing = false;
|
|
|
|
|
newchan.last_write_nbytes = 0;
|
|
|
|
|
SSL_set_fd(newchan.ssl, newchan.socket);
|
|
|
|
|
// SSL_set_msg_callback(newchan.ssl, SSL_trace);
|
|
|
|
|
// SSL_set_msg_callback_arg(newchan.ssl, BIO_new_fp(stderr,0));
|
|
|
|
|
chans_.push_back(newchan);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void handle_new_outgoing_sockets() {
|
2022-03-11 18:35:51 -05:00
|
|
|
const auto &chans = recorder_.drv_get_new_outgoing();
|
2022-01-11 13:59:13 -05:00
|
|
|
for (int chid : chans) {
|
2022-02-25 19:57:23 -05:00
|
|
|
std::string err;
|
2022-03-11 18:35:51 -05:00
|
|
|
SOCKET sock = open_connection(recorder_.drv_get_target(chid), err);
|
2022-01-11 13:59:13 -05:00
|
|
|
if (sock == INVALID_SOCKET) {
|
2022-03-11 18:35:51 -05:00
|
|
|
recorder_.drv_notify_close(chid, err);
|
2022-01-11 13:59:13 -05:00
|
|
|
} else {
|
|
|
|
|
//std::cerr << "Opening channel " << chid << std::endl;
|
2022-03-12 14:56:33 -05:00
|
|
|
make_channel(sock, chid, ssl_ctx_with_no_certs_.get(), CHAN_SSL_CONNECTING);
|
2022-01-11 13:59:13 -05:00
|
|
|
}
|
|
|
|
|
}
|
2022-02-17 20:02:08 -05:00
|
|
|
if (!chans.empty()) {
|
2022-03-11 18:35:51 -05:00
|
|
|
recorder_.drv_clear_new_outgoing();
|
2022-02-17 20:02:08 -05:00
|
|
|
}
|
2022-01-11 13:59:13 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void accept_connection(int port, SOCKET sock) {
|
2022-02-25 19:57:23 -05:00
|
|
|
std::string err;
|
2022-01-11 13:59:13 -05:00
|
|
|
SOCKET socket = accept_on_socket(sock, err);
|
|
|
|
|
if_error_print_and_exit(err);
|
|
|
|
|
if (socket != INVALID_SOCKET) {
|
2022-03-11 18:35:51 -05:00
|
|
|
int chid = recorder_.drv_notify_accept(port);
|
2022-01-11 13:59:13 -05:00
|
|
|
// std::cerr << "Accepted channel " << chid << std::endl;
|
2022-03-12 14:56:33 -05:00
|
|
|
make_channel(socket, chid, ssl_ctx_with_server_certs_.get(), CHAN_SSL_ACCEPTING);
|
2022-01-11 13:59:13 -05:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void advance_plaintext(ChanInfo &chan) {
|
2022-02-25 19:57:23 -05:00
|
|
|
std::string err;
|
2022-01-11 13:59:13 -05:00
|
|
|
|
|
|
|
|
// If the channel has no outgoing bytes and has been released,
|
|
|
|
|
// just close it.
|
|
|
|
|
if (chan.released) {
|
|
|
|
|
close_channel(chan, "");
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Try to write plaintext to the channel.
|
2022-03-11 18:35:51 -05:00
|
|
|
std::string_view s = recorder_.drv_peek_outgoing(chan.chid);
|
2022-03-04 16:45:47 -05:00
|
|
|
if (s.size() > 0) {
|
|
|
|
|
int sbytes = s.size();
|
2022-01-11 13:59:13 -05:00
|
|
|
if (sbytes > 65536) sbytes = 65536;
|
2022-03-04 16:45:47 -05:00
|
|
|
int wbytes = socket_send(chan.socket, s.data(), sbytes, err);
|
2022-01-11 13:59:13 -05:00
|
|
|
if (wbytes < 0) {
|
|
|
|
|
close_channel(chan, err);
|
|
|
|
|
} else {
|
2022-03-11 18:35:51 -05:00
|
|
|
recorder_.drv_sent_outgoing(chan.chid, wbytes);
|
2022-01-11 13:59:13 -05:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Try to read plaintext from the channel.
|
|
|
|
|
// Someday, find a way to avoid this copy.
|
2022-03-11 18:35:51 -05:00
|
|
|
int nrecv = socket_recv(chan.socket, chbuf_.get(), 65536, err);
|
2022-01-11 13:59:13 -05:00
|
|
|
if (nrecv < 0) {
|
|
|
|
|
close_channel(chan, err);
|
|
|
|
|
} else {
|
2022-03-11 18:35:51 -05:00
|
|
|
recorder_.drv_recv_incoming(chan.chid, std::string_view(chbuf_.get(), nrecv));
|
2022-01-11 13:59:13 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Update the ready-flags for next time.
|
|
|
|
|
chan.ready_on_outgoing = true;
|
|
|
|
|
chan.ready_on_pollin = true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void process_ssl_error(ChanInfo &chan, int retval) {
|
|
|
|
|
int error = SSL_get_error(chan.ssl, retval);
|
|
|
|
|
// std::cerr << "SSL error code = " << error << " ";
|
|
|
|
|
if (error == SSL_ERROR_WANT_READ) {
|
|
|
|
|
chan.ready_on_pollin = true;
|
|
|
|
|
} else if (error == SSL_ERROR_WANT_WRITE) {
|
|
|
|
|
chan.ready_on_pollout = true;
|
|
|
|
|
} else {
|
|
|
|
|
close_channel(chan, err_print_errors_str());
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void advance_ssl_connecting(ChanInfo &chan) {
|
|
|
|
|
// std::cerr << "In advance_ssl_connecting" << std::endl;
|
|
|
|
|
int retval = SSL_connect(chan.ssl);
|
|
|
|
|
if (retval == 1) {
|
|
|
|
|
// Connection successful.
|
|
|
|
|
chan.state = CHAN_SSL_READWRITE;
|
|
|
|
|
chan.ready_now = true;
|
|
|
|
|
} else {
|
|
|
|
|
// std::cerr << "ssl_connect_error";
|
|
|
|
|
process_ssl_error(chan, retval);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void advance_ssl_accepting(ChanInfo &chan) {
|
|
|
|
|
// std::cerr << "In advance_ssl_accepting" << std::endl;
|
|
|
|
|
int retval = SSL_accept(chan.ssl);
|
|
|
|
|
if (retval == 1) {
|
|
|
|
|
// Connection successful.
|
|
|
|
|
chan.state = CHAN_SSL_READWRITE;
|
|
|
|
|
chan.ready_now = true;
|
|
|
|
|
} else {
|
|
|
|
|
process_ssl_error(chan, retval);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void advance_ssl_readwrite(ChanInfo &chan) {
|
|
|
|
|
// std::cerr << "In advance_ssl_readwrite" << std::endl;
|
|
|
|
|
// Try to read data.
|
2022-03-11 18:35:51 -05:00
|
|
|
int read_result = SSL_read(chan.ssl, chbuf_.get(), 65536);
|
2022-01-11 13:59:13 -05:00
|
|
|
if (read_result > 0) {
|
2022-03-11 18:35:51 -05:00
|
|
|
recorder_.drv_recv_incoming(chan.chid, std::string_view(chbuf_.get(), read_result));
|
2022-01-11 13:59:13 -05:00
|
|
|
chan.ready_now = true;
|
|
|
|
|
} else {
|
|
|
|
|
process_ssl_error(chan, read_result);
|
|
|
|
|
if (chan.state == CHAN_INACTIVE) return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Try to write data.
|
|
|
|
|
int wbytes;
|
|
|
|
|
if (chan.last_write_nbytes > 0) {
|
|
|
|
|
wbytes = chan.last_write_nbytes;
|
|
|
|
|
assert(wbytes < chan.nbytes);
|
|
|
|
|
} else {
|
|
|
|
|
wbytes = chan.nbytes;
|
|
|
|
|
if (wbytes > 65536) wbytes = 65536;
|
|
|
|
|
}
|
|
|
|
|
if (wbytes > 0) {
|
|
|
|
|
int write_result = SSL_write(chan.ssl, chan.bytes, wbytes);
|
|
|
|
|
if (write_result > 0) {
|
2022-03-11 18:35:51 -05:00
|
|
|
recorder_.drv_sent_outgoing(chan.chid, write_result);
|
2022-01-11 13:59:13 -05:00
|
|
|
chan.last_write_nbytes = 0;
|
|
|
|
|
chan.ready_on_outgoing = true;
|
|
|
|
|
} else {
|
|
|
|
|
chan.last_write_nbytes = wbytes;
|
|
|
|
|
process_ssl_error(chan, write_result);
|
|
|
|
|
if (chan.state == CHAN_INACTIVE) return;
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
chan.ready_on_outgoing = true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// std::cerr << "rpi=" << chan.ready_on_pollin << ".rpo=" << chan.ready_on_pollout << ".rn=" << chan.ready_now << ".rog=" << chan.ready_on_outgoing << " ";
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void advance_channel(ChanInfo &chan) {
|
|
|
|
|
switch(chan.state) {
|
|
|
|
|
case CHAN_PLAINTEXT:
|
|
|
|
|
advance_plaintext(chan);
|
|
|
|
|
break;
|
|
|
|
|
case CHAN_SSL_CONNECTING:
|
|
|
|
|
advance_ssl_connecting(chan);
|
|
|
|
|
break;
|
|
|
|
|
case CHAN_SSL_ACCEPTING:
|
|
|
|
|
advance_ssl_accepting(chan);
|
|
|
|
|
break;
|
|
|
|
|
case CHAN_SSL_READWRITE:
|
|
|
|
|
advance_ssl_readwrite(chan);
|
|
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
assert(false);
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void handle_socket_input_output() {
|
2022-02-25 19:57:23 -05:00
|
|
|
std::string err;
|
2022-02-17 20:02:08 -05:00
|
|
|
int mstimeout = read_console_recently_ ? 100 : 1000;
|
2022-01-11 13:59:13 -05:00
|
|
|
|
|
|
|
|
// Peek output buffers and determine channel release flags.
|
|
|
|
|
for (ChanInfo &chan : chans_) {
|
2022-03-11 18:35:51 -05:00
|
|
|
std::string_view s = recorder_.drv_peek_outgoing(chan.chid);
|
2022-03-04 16:45:47 -05:00
|
|
|
chan.nbytes = s.size();
|
|
|
|
|
chan.bytes = s.data();
|
2022-01-11 13:59:13 -05:00
|
|
|
chan.just_released = false;
|
|
|
|
|
if ((chan.nbytes == 0)&&(!chan.released)) {
|
2022-03-11 18:35:51 -05:00
|
|
|
chan.released = recorder_.drv_get_channel_released(chan.chid);
|
2022-01-11 13:59:13 -05:00
|
|
|
chan.just_released = chan.released;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2022-01-12 15:53:49 -05:00
|
|
|
// Construct the struct pollfd vector.
|
2022-02-17 20:02:08 -05:00
|
|
|
int pollsize = 0;
|
2022-01-11 13:59:13 -05:00
|
|
|
for (const auto &p : listen_sockets_) {
|
2022-03-11 18:35:51 -05:00
|
|
|
struct pollfd &pfd = pollvec_[pollsize++];
|
2022-01-11 13:59:13 -05:00
|
|
|
pfd.fd = p.second;
|
|
|
|
|
pfd.events = POLLIN;
|
2022-01-12 17:23:02 -05:00
|
|
|
pfd.revents = 0;
|
2022-01-11 13:59:13 -05:00
|
|
|
}
|
|
|
|
|
for (const ChanInfo &chan : chans_) {
|
2022-03-11 18:35:51 -05:00
|
|
|
struct pollfd &pfd = pollvec_[pollsize++];
|
2022-01-11 13:59:13 -05:00
|
|
|
assert(chan.socket != INVALID_SOCKET);
|
|
|
|
|
pfd.fd = chan.socket;
|
2022-01-12 17:23:02 -05:00
|
|
|
pfd.events = 0;
|
|
|
|
|
pfd.revents = 0;
|
2022-01-11 13:59:13 -05:00
|
|
|
if (chan.ready_now) mstimeout = 0;
|
|
|
|
|
if (chan.just_released) mstimeout = 0;
|
|
|
|
|
if (chan.ready_on_pollin) pfd.events |= POLLIN;
|
|
|
|
|
if (chan.ready_on_pollout) pfd.events |= POLLOUT;
|
|
|
|
|
if (chan.ready_on_outgoing && (chan.nbytes > 0)) pfd.events |= POLLOUT;
|
|
|
|
|
// std::cerr << "evt=" << pfd.events << ".nb=" << chan.nbytes << " ";
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Do the poll.
|
2022-03-11 18:35:51 -05:00
|
|
|
socket_poll(pollvec_.get(), pollsize, mstimeout, err);
|
2022-01-12 15:53:49 -05:00
|
|
|
if_error_print_and_exit(err);
|
2022-01-11 13:59:13 -05:00
|
|
|
|
|
|
|
|
// Check listening sockets.
|
2022-02-17 20:02:08 -05:00
|
|
|
int index = 0;
|
2022-01-11 13:59:13 -05:00
|
|
|
for (auto &p : listen_sockets_) {
|
2022-03-11 18:35:51 -05:00
|
|
|
struct pollfd &pfd = pollvec_[index++];
|
2022-01-11 13:59:13 -05:00
|
|
|
if (pfd.revents & (POLLIN | POLLERR)) {
|
|
|
|
|
accept_connection(p.first, p.second);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Advance channels where possible.
|
|
|
|
|
for (ChanInfo &chan : chans_) {
|
2022-03-11 18:35:51 -05:00
|
|
|
struct pollfd &pfd = pollvec_[index++];
|
2022-01-11 13:59:13 -05:00
|
|
|
bool pollin = ((pfd.revents & POLLIN) != 0);
|
|
|
|
|
bool pollout = ((pfd.revents & POLLOUT) != 0);
|
2022-01-12 17:23:02 -05:00
|
|
|
bool pollerr = ((pfd.revents & (POLLERR | POLLHUP)) != 0);
|
2022-01-11 13:59:13 -05:00
|
|
|
if (chan.ready_now || pollerr || chan.just_released ||
|
|
|
|
|
(chan.ready_on_pollin && pollin) ||
|
|
|
|
|
(chan.ready_on_pollout && pollout) ||
|
|
|
|
|
(chan.ready_on_outgoing && (chan.nbytes > 0) && pollout)) {
|
|
|
|
|
chan.ready_now = false;
|
|
|
|
|
chan.ready_on_pollin = false;
|
|
|
|
|
chan.ready_on_pollout = false;
|
|
|
|
|
chan.ready_on_outgoing = false;
|
|
|
|
|
advance_channel(chan);
|
|
|
|
|
}
|
|
|
|
|
chan.nbytes = 0;
|
|
|
|
|
chan.bytes = 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Delete any newly-inactive channels
|
|
|
|
|
cleanup_channels();
|
|
|
|
|
}
|
|
|
|
|
|
2022-03-11 19:11:09 -05:00
|
|
|
int replay_logfile(const char *fn, bool verbose) {
|
2022-03-11 18:35:51 -05:00
|
|
|
drv::ReplayPlayer player;
|
|
|
|
|
player.open_logfile(fn);
|
2022-03-11 19:11:09 -05:00
|
|
|
if (verbose) {
|
|
|
|
|
player.enable_stdout();
|
|
|
|
|
}
|
2022-03-11 18:35:51 -05:00
|
|
|
while (true) {
|
2022-03-11 19:01:02 -05:00
|
|
|
drv::ReplayPlayer::Status st = player.step();
|
|
|
|
|
if (st != drv::ReplayPlayer::ST_REPLAYING) {
|
|
|
|
|
player.print_status(std::cerr);
|
|
|
|
|
return (st == drv::ReplayPlayer::ST_CLEAN_EXIT) ? 0 : 1;
|
2022-03-11 18:35:51 -05:00
|
|
|
}
|
2022-03-04 14:05:24 -05:00
|
|
|
}
|
2022-03-11 18:35:51 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int drive(int argc, char *argv[]) {
|
|
|
|
|
// Remove the program name from argv.
|
|
|
|
|
if (argc < 1) {
|
|
|
|
|
DrivenEngine::print_usage(std::cerr, "<unknown>");
|
2022-03-04 14:05:24 -05:00
|
|
|
exit(1);
|
|
|
|
|
}
|
2022-03-11 18:35:51 -05:00
|
|
|
std::string program = argv[0];
|
|
|
|
|
argc -= 1; argv += 1;
|
|
|
|
|
|
|
|
|
|
// If argv contains "replay <filename>", do a replay,
|
|
|
|
|
// and then skip everything else.
|
2022-03-11 19:11:09 -05:00
|
|
|
if (argc >= 1) {
|
|
|
|
|
std::string cmd(argv[0]);
|
|
|
|
|
if ((cmd == "replay") || (cmd == "vreplay")) {
|
|
|
|
|
if (argc != 2) {
|
|
|
|
|
std::cerr << "usage: " << program << " replay <filename>" << std::endl;
|
|
|
|
|
return 1;
|
|
|
|
|
}
|
|
|
|
|
return replay_logfile(argv[1], cmd == "vreplay");
|
2022-03-11 18:35:51 -05:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// If argv contains "record <filename>", start recording,
|
|
|
|
|
// and remove the "record <filename>" from argv.
|
2022-03-11 19:11:09 -05:00
|
|
|
if (argc >= 1) {
|
|
|
|
|
std::string cmd = argv[0];
|
|
|
|
|
if (cmd == "record") {
|
|
|
|
|
if (argc < 2) {
|
|
|
|
|
DrivenEngine::print_usage(std::cerr, program);
|
|
|
|
|
return 1;
|
|
|
|
|
}
|
|
|
|
|
bool ok = recorder_.open_logfile(argv[1]);
|
|
|
|
|
if (!ok) {
|
|
|
|
|
std::cerr << "Could not open logfile: " << argv[1] << std::endl;
|
|
|
|
|
return 1;
|
|
|
|
|
}
|
|
|
|
|
argc -= 2; argv += 2;
|
2022-03-11 18:35:51 -05:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Create the engine.
|
|
|
|
|
if (argc < 1) {
|
|
|
|
|
DrivenEngine::print_usage(std::cerr, program);
|
|
|
|
|
return 1;
|
|
|
|
|
}
|
|
|
|
|
bool engine_made = recorder_.create_engine(argv[0]);
|
|
|
|
|
if (!engine_made) {
|
|
|
|
|
DrivenEngine::print_usage(std::cerr, program);
|
|
|
|
|
return 1;
|
|
|
|
|
}
|
2022-03-04 14:05:24 -05:00
|
|
|
|
2022-01-11 13:59:13 -05:00
|
|
|
read_console_recently_ = false;
|
|
|
|
|
|
2022-03-11 18:35:51 -05:00
|
|
|
chbuf_.reset(new char[CHBUF_SIZE]);
|
|
|
|
|
pollvec_.reset(new struct pollfd[POLLVEC_SIZE]);
|
|
|
|
|
|
2022-01-11 13:59:13 -05:00
|
|
|
ssl_ctx_with_root_certs_ = new_ssl_context(false, true, "");
|
|
|
|
|
ssl_ctx_with_server_certs_ = new_ssl_context(true, false, "");
|
|
|
|
|
ssl_ctx_with_no_certs_ = new_ssl_context(false, false, "");
|
|
|
|
|
|
2022-03-12 14:56:33 -05:00
|
|
|
if (ssl_ctx_use_certificate_str(ssl_ctx_with_server_certs_.get(), dummycert::certificate) <= 0) {
|
2022-01-11 13:59:13 -05:00
|
|
|
ERR_print_errors_fp(stderr);
|
2022-03-11 18:35:51 -05:00
|
|
|
return 1;
|
2022-01-11 13:59:13 -05:00
|
|
|
}
|
|
|
|
|
|
2022-03-12 14:56:33 -05:00
|
|
|
if (ssl_ctx_use_privatekey_str(ssl_ctx_with_server_certs_.get(), dummycert::privatekey) <= 0 ) {
|
2022-01-11 13:59:13 -05:00
|
|
|
ERR_print_errors_fp(stderr);
|
2022-03-11 18:35:51 -05:00
|
|
|
return 1;
|
2022-01-11 13:59:13 -05:00
|
|
|
}
|
|
|
|
|
|
2022-02-18 03:59:21 -05:00
|
|
|
handle_lua_source();
|
2022-03-11 18:35:51 -05:00
|
|
|
recorder_.drv_invoke_event_init(argc, argv);
|
2022-01-11 13:59:13 -05:00
|
|
|
handle_listen_ports();
|
|
|
|
|
|
2022-03-11 18:35:51 -05:00
|
|
|
while (!recorder_.drv_get_stop_driver()) {
|
2022-01-11 13:59:13 -05:00
|
|
|
handle_lua_source();
|
|
|
|
|
handle_console_output();
|
|
|
|
|
handle_new_outgoing_sockets();
|
|
|
|
|
handle_socket_input_output();
|
|
|
|
|
handle_console_input();
|
|
|
|
|
handle_console_output();
|
2022-03-11 18:35:51 -05:00
|
|
|
recorder_.drv_invoke_event_update(monoclock.get());
|
2022-01-11 13:59:13 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
for (ChanInfo &chan : chans_) {
|
|
|
|
|
close_channel(chan, "");
|
|
|
|
|
}
|
2022-03-11 19:01:02 -05:00
|
|
|
|
2022-03-12 14:56:33 -05:00
|
|
|
DrivenEngine::set(nullptr);
|
2022-03-11 19:01:02 -05:00
|
|
|
recorder_.clean_exit();
|
2022-03-11 18:35:51 -05:00
|
|
|
return 0;
|
2022-01-11 13:59:13 -05:00
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|