#include "or.h" /********* START VARIABLES **********/ /* valid command-line options */ static char *args = "hf:e:n:l:"; int loglevel = LOG_DEBUG; /* valid config file options */ config_opt_t options[] = { {"RouterFile", CONFIG_TYPE_STRING, {0}, 0}, {"PrivateKeyFile", CONFIG_TYPE_STRING, {0}, 0}, {"EntryPort", CONFIG_TYPE_INT, {0}, 0}, {"NetworkPort", CONFIG_TYPE_INT, {0}, 0}, {"MaxConn", CONFIG_TYPE_INT, {0}, 0}, {"MaxConnTimeout", CONFIG_TYPE_INT, {0}, 0}, {"TrafficShaping", CONFIG_TYPE_INT, {0}, 0}, {0} }; enum opts { RouterFile=0, PrivateKeyFile, EntryPort, NetworkPort, MaxConn, MaxConnTimeout, TrafficShaping }; connection_t *connection_array[MAXCONNECTIONS] = { NULL }; struct pollfd poll_array[MAXCONNECTIONS] = { [0 ... MAXCONNECTIONS-1] = { -1, 0, 0 } }; int nfds=0; /* number of connections currently active */ /* default logging threshold */ extern int loglevel; /* private key */ RSA *prkey = NULL; /* router array */ routerinfo_t **router_array = NULL; int rarray_len = 0; /********* END VARIABLES ************/ int connection_add(connection_t *conn) { if(nfds >= MAXCONNECTIONS-2) { /* 2, for some breathing room. should count the fenceposts. */ /* FIXME should use the 'max connections' option */ log(LOG_DEBUG,"connection_add(): failing because nfds is too high."); return -1; } conn->poll_index = nfds; connection_set_poll_socket(conn); connection_array[nfds] = conn; /* zero these out here, because otherwise we'll inherit values from the previously freed one */ poll_array[nfds].events = 0; poll_array[nfds].revents = 0; nfds++; log(LOG_DEBUG,"connection_add(): new conn type %d, socket %d, nfds %d.",conn->type, conn->s, nfds); return 0; } void connection_set_poll_socket(connection_t *conn) { poll_array[conn->poll_index].fd = conn->s; } int connection_remove(connection_t *conn) { int current_index; assert(conn); assert(nfds>0); circuit_about_to_close_connection(conn); /* flush and send destroys for all circuits on this conn */ current_index = conn->poll_index; if(current_index == nfds-1) { /* this is the end */ // connection_free(conn); nfds--; log(LOG_DEBUG,"connection_remove(): nfds now %d.",nfds); return 0; } /* we replace this one with the one at the end, then free it */ nfds--; poll_array[current_index].fd = poll_array[nfds].fd; poll_array[current_index].events = poll_array[nfds].events; poll_array[current_index].revents = poll_array[nfds].revents; connection_array[current_index] = connection_array[nfds]; connection_array[current_index]->poll_index = current_index; log(LOG_DEBUG,"connection_remove(): nfds now %d.",nfds); return 0; } connection_t *connection_get_by_addr_port(uint32_t addr, uint16_t port) { int i; connection_t *conn; for(i=0;iaddr == addr && conn->port == port) return conn; } return NULL; } connection_t *connection_get_by_type(int type) { int i; connection_t *conn; for(i=0;itype == type) return conn; } return NULL; } routerinfo_t *router_get_by_addr_port(uint32_t addr, uint16_t port) { int i; routerinfo_t *router; if (!router_array) return NULL; for(i=0;iaddr == addr) && (router->port == port)) return router; } return NULL; } void connection_watch_events(connection_t *conn, short events) { assert(conn && conn->poll_index < nfds); poll_array[conn->poll_index].events = events; } void check_conn_read(int i) { int retval; connection_t *conn; if(poll_array[i].revents & POLLIN) { /* something to read */ conn = connection_array[i]; assert(conn); log(LOG_DEBUG,"check_conn_read(): socket %d has something to read.",conn->s); if (conn->type == CONN_TYPE_OP_LISTENER) { retval = connection_op_handle_listener_read(conn); } else if (conn->type == CONN_TYPE_OR_LISTENER) { retval = connection_or_handle_listener_read(conn); } else { /* else it's an OP, OR, or app */ retval = connection_read_to_buf(conn); if (retval >= 0) { /* all still well */ retval = connection_process_inbuf(conn); log(LOG_DEBUG,"check_conn_read(): connection_process_inbuf returned %d.",retval); } } if(retval < 0) { /* this connection is broken. remove it */ log(LOG_DEBUG,"check_conn_read(): Connection broken, removing."); connection_remove(conn); connection_free(conn); if(is); if(conn->type == CONN_TYPE_OP_LISTENER || conn->type == CONN_TYPE_OR_LISTENER) { log(LOG_DEBUG,"check_conn_write(): Got a listener socket. Can't happen!"); retval = -1; } else { /* else it's an OP, OR, or app */ retval = connection_flush_buf(conn); /* conns in CONNECTING state will fall through... */ if(retval == 0) { /* it's done flushing */ retval = connection_finished_flushing(conn); /* ...and get handled here. */ } } if(retval < 0) { /* this connection is broken. remove it. */ log(LOG_DEBUG,"check_conn_write(): Connection broken, removing."); connection_remove(conn); connection_free(conn); if(imarked_for_close) { log(LOG_DEBUG,"check_conn_marked(): Cleaning up connection."); connection_flush_buf(conn); /* flush it first */ connection_remove(conn); connection_free(conn); if(is); connection_remove(conn); connection_free(conn); if(i 1)) { log(LOG_ERR,"Invalid value for the TrafficShaping option."); exit(1); } #endif ERR_load_crypto_strings(); retval = do_main_loop(); ERR_free_strings(); return retval; }