123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930 |
- #include "or.h"
- #include "tree.h"
- extern or_options_t options;
- static int connection_ap_handshake_process_socks(connection_t *conn);
- static int connection_ap_handshake_attach_circuit(connection_t *conn);
- static void connection_ap_handshake_send_begin(connection_t *ap_conn, circuit_t *circ);
- static int connection_ap_handshake_socks_reply(connection_t *conn, char *reply,
- int replylen, char success);
- static int connection_exit_begin_conn(cell_t *cell, circuit_t *circ);
- static void connection_edge_consider_sending_sendme(connection_t *conn);
- static uint32_t client_dns_lookup_entry(const char *address);
- static void client_dns_set_entry(const char *address, uint32_t val);
- int connection_edge_process_inbuf(connection_t *conn) {
- assert(conn);
- assert(conn->type == CONN_TYPE_AP || conn->type == CONN_TYPE_EXIT);
- if(conn->inbuf_reached_eof) {
- #ifdef HALF_OPEN
-
- conn->done_receiving = 1;
- shutdown(conn->s, 0);
- if (conn->done_sending) {
- connection_edge_end(conn, END_STREAM_REASON_DONE, conn->cpath_layer);
- } else {
- connection_edge_send_command(conn, circuit_get_by_conn(conn), RELAY_COMMAND_END,
- NULL, 0, conn->cpath_layer);
- }
- return 0;
- #else
-
- log_fn(LOG_INFO,"conn (fd %d) reached eof. Closing.", conn->s);
- connection_edge_end(conn, END_STREAM_REASON_DONE, conn->cpath_layer);
- return -1;
- #endif
- }
- switch(conn->state) {
- case AP_CONN_STATE_SOCKS_WAIT:
- if(connection_ap_handshake_process_socks(conn) < 0) {
- connection_edge_end(conn, END_STREAM_REASON_MISC, conn->cpath_layer);
- return -1;
- }
- return 0;
- case AP_CONN_STATE_OPEN:
- case EXIT_CONN_STATE_OPEN:
- if(connection_edge_package_raw_inbuf(conn) < 0) {
- connection_edge_end(conn, END_STREAM_REASON_MISC, conn->cpath_layer);
- return -1;
- }
- return 0;
- case EXIT_CONN_STATE_CONNECTING:
- log_fn(LOG_INFO,"text from server while in 'connecting' state at exit. Leaving it on buffer.");
- return 0;
- }
- return 0;
- }
- char *connection_edge_end_reason(char *payload, unsigned char length) {
- if(length < 1) {
- log_fn(LOG_WARN,"End cell arrived with length 0. Should be at least 1.");
- return "MALFORMED";
- }
- if(*payload < END_STREAM_REASON_MISC || *payload > END_STREAM_REASON_DONE) {
- log_fn(LOG_WARN,"Reason for ending (%d) not recognized.",*payload);
- return "MALFORMED";
- }
- switch(*payload) {
- case END_STREAM_REASON_MISC: return "misc error";
- case END_STREAM_REASON_RESOLVEFAILED: return "resolve failed";
- case END_STREAM_REASON_CONNECTFAILED: return "connect failed";
- case END_STREAM_REASON_EXITPOLICY: return "exit policy failed";
- case END_STREAM_REASON_DESTROY: return "destroyed";
- case END_STREAM_REASON_DONE: return "closed normally";
- }
- assert(0);
- return "";
- }
- void connection_edge_end(connection_t *conn, char reason, crypt_path_t *cpath_layer) {
- char payload[5];
- int payload_len=1;
- circuit_t *circ;
- if(conn->has_sent_end) {
- log_fn(LOG_WARN,"It appears I've already sent the end. Are you calling me twice?");
- return;
- }
- payload[0] = reason;
- if(reason == END_STREAM_REASON_EXITPOLICY) {
- *(uint32_t *)(payload+1) = htonl(conn->addr);
- payload_len += 4;
- }
- circ = circuit_get_by_conn(conn);
- if(circ) {
- log_fn(LOG_DEBUG,"Marking conn (fd %d) and sending end.",conn->s);
- connection_edge_send_command(conn, circ, RELAY_COMMAND_END,
- payload, payload_len, cpath_layer);
- }
- conn->marked_for_close = 1;
- conn->has_sent_end = 1;
- }
- int connection_edge_send_command(connection_t *fromconn, circuit_t *circ, int relay_command,
- void *payload, int payload_len, crypt_path_t *cpath_layer) {
- cell_t cell;
- int cell_direction;
- int is_control_cell=0;
- if(!circ) {
- log_fn(LOG_WARN,"no circ. Closing.");
- return 0;
- }
- if(!fromconn || relay_command == RELAY_COMMAND_BEGIN)
- is_control_cell = 1;
- memset(&cell, 0, sizeof(cell_t));
- if(fromconn && fromconn->type == CONN_TYPE_AP) {
- cell.circ_id = circ->n_circ_id;
- cell_direction = CELL_DIRECTION_OUT;
- } else {
-
- cell.circ_id = circ->p_circ_id;
- cell_direction = CELL_DIRECTION_IN;
- }
- cell.command = CELL_RELAY;
- SET_CELL_RELAY_COMMAND(cell, relay_command);
- if(is_control_cell)
- SET_CELL_STREAM_ID(cell, ZERO_STREAM);
- else
- SET_CELL_STREAM_ID(cell, fromconn->stream_id);
- cell.length = RELAY_HEADER_SIZE + payload_len;
- if(payload_len) {
- memcpy(cell.payload+RELAY_HEADER_SIZE,payload,payload_len);
- }
- log_fn(LOG_DEBUG,"delivering %d cell %s.", relay_command,
- cell_direction == CELL_DIRECTION_OUT ? "forward" : "backward");
- if(circuit_deliver_relay_cell(&cell, circ, cell_direction, cpath_layer) < 0) {
- log_fn(LOG_WARN,"circuit_deliver_relay_cell failed. Closing.");
- circuit_close(circ);
- return -1;
- }
- return 0;
- }
- int connection_edge_process_relay_cell(cell_t *cell, circuit_t *circ, connection_t *conn,
- int edge_type, crypt_path_t *layer_hint) {
- int relay_command;
- static int num_seen=0;
- uint32_t addr;
- assert(cell && circ);
- relay_command = CELL_RELAY_COMMAND(*cell);
- num_seen++;
- log_fn(LOG_DEBUG,"Now seen %d relay cells here.", num_seen);
-
- if(conn && conn->state != AP_CONN_STATE_OPEN && conn->state != EXIT_CONN_STATE_OPEN) {
- if(conn->type == CONN_TYPE_EXIT && relay_command == RELAY_COMMAND_END) {
- log_fn(LOG_INFO,"Exit got end (%s) before we're connected. Marking for close.",
- connection_edge_end_reason(cell->payload+RELAY_HEADER_SIZE, cell->length));
- if(conn->state == EXIT_CONN_STATE_RESOLVING) {
- log_fn(LOG_INFO,"...and informing resolver we don't want the answer anymore.");
- dns_cancel_pending_resolve(conn->address, conn);
- }
- conn->marked_for_close = 1;
- conn->has_sent_end = 1;
- return 0;
- } else {
- log_fn(LOG_WARN,"Got an unexpected relay cell, not in 'open' state. Closing.");
- connection_edge_end(conn, END_STREAM_REASON_MISC, conn->cpath_layer);
- return -1;
- }
- }
- switch(relay_command) {
- case RELAY_COMMAND_BEGIN:
- if(edge_type == EDGE_AP) {
- log_fn(LOG_WARN,"relay begin request unsupported at AP. Dropping.");
- return 0;
- }
- if(conn) {
- log_fn(LOG_WARN,"begin cell for known stream. Dropping.");
- return 0;
- }
- connection_exit_begin_conn(cell, circ);
- return 0;
- case RELAY_COMMAND_DATA:
- ++stats_n_data_cells_received;
- if((edge_type == EDGE_AP && --layer_hint->deliver_window < 0) ||
- (edge_type == EDGE_EXIT && --circ->deliver_window < 0)) {
- log_fn(LOG_WARN,"(relay data) circ deliver_window below 0. Killing.");
- connection_edge_end(conn, END_STREAM_REASON_MISC, conn->cpath_layer);
- return -1;
- }
- log_fn(LOG_DEBUG,"circ deliver_window now %d.", edge_type == EDGE_AP ? layer_hint->deliver_window : circ->deliver_window);
- if(circuit_consider_sending_sendme(circ, edge_type, layer_hint) < 0) {
- log_fn(LOG_WARN,"circuit_consider_sending_sendme() failed.");
- conn->has_sent_end = 1;
- return -1;
- }
- if(!conn) {
- log_fn(LOG_INFO,"relay cell dropped, unknown stream %d.",*(int*)conn->stream_id);
- return 0;
- }
- if(--conn->deliver_window < 0) {
- log_fn(LOG_WARN,"(relay data) conn deliver_window below 0. Killing.");
- return -1;
- }
- stats_n_data_bytes_received += (cell->length - RELAY_HEADER_SIZE);
- connection_write_to_buf(cell->payload + RELAY_HEADER_SIZE,
- cell->length - RELAY_HEADER_SIZE, conn);
- connection_edge_consider_sending_sendme(conn);
- return 0;
- case RELAY_COMMAND_END:
- if(!conn) {
- log_fn(LOG_INFO,"end cell (%s) dropped, unknown stream %d.",
- connection_edge_end_reason(cell->payload+RELAY_HEADER_SIZE, cell->length),
- *(int*)conn->stream_id);
- return 0;
- }
- if(cell->length-RELAY_HEADER_SIZE >= 5 &&
- *(cell->payload+RELAY_HEADER_SIZE) == END_STREAM_REASON_EXITPOLICY) {
-
- addr = ntohl(*cell->payload+RELAY_HEADER_SIZE+1);
- client_dns_set_entry(conn->socks_request->address, addr);
- conn->state = AP_CONN_STATE_CIRCUIT_WAIT;
- if(connection_ap_handshake_attach_circuit(conn) < 0)
- circuit_launch_new(1);
- return 0;
- }
- log_fn(LOG_INFO,"end cell (%s) for stream %d. Removing stream.",
- connection_edge_end_reason(cell->payload+RELAY_HEADER_SIZE, cell->length),
- *(int*)conn->stream_id);
- #ifdef HALF_OPEN
- conn->done_sending = 1;
- shutdown(conn->s, 1);
- if (conn->done_receiving) {
- conn->marked_for_close = 1;
- conn->has_sent_end = 1;
- }
- #else
- conn->marked_for_close = 1;
- conn->has_sent_end = 1;
- #endif
- return 0;
- case RELAY_COMMAND_EXTEND:
- if(conn) {
- log_fn(LOG_WARN,"'extend' for non-zero stream. Dropping.");
- return 0;
- }
- return circuit_extend(cell, circ);
- case RELAY_COMMAND_EXTENDED:
- if(edge_type == EDGE_EXIT) {
- log_fn(LOG_WARN,"'extended' unsupported at exit. Dropping.");
- return 0;
- }
- log_fn(LOG_DEBUG,"Got an extended cell! Yay.");
- if(circuit_finish_handshake(circ, cell->payload+RELAY_HEADER_SIZE) < 0) {
- log_fn(LOG_WARN,"circuit_finish_handshake failed.");
- return -1;
- }
- if (circuit_send_next_onion_skin(circ)<0) {
- log_fn(LOG_WARN,"circuit_send_next_onion_skin() failed.");
- return -1;
- }
- return 0;
- case RELAY_COMMAND_TRUNCATE:
- if(edge_type == EDGE_AP) {
- log_fn(LOG_WARN,"'truncate' unsupported at AP. Dropping.");
- return 0;
- }
- if(circ->n_conn) {
- connection_send_destroy(circ->n_circ_id, circ->n_conn);
- circ->n_conn = NULL;
- }
- log_fn(LOG_DEBUG, "Processed 'truncate', replying.");
- connection_edge_send_command(NULL, circ, RELAY_COMMAND_TRUNCATED,
- NULL, 0, NULL);
- return 0;
- case RELAY_COMMAND_TRUNCATED:
- if(edge_type == EDGE_EXIT) {
- log_fn(LOG_WARN,"'truncated' unsupported at exit. Dropping.");
- return 0;
- }
- circuit_truncated(circ, layer_hint);
- return 0;
- case RELAY_COMMAND_CONNECTED:
- if(edge_type == EDGE_EXIT) {
- log_fn(LOG_WARN,"'connected' unsupported at exit. Dropping.");
- return 0;
- }
- if(!conn) {
- log_fn(LOG_INFO,"connected cell dropped, unknown stream %d.",*(int*)conn->stream_id);
- return 0;
- }
- log_fn(LOG_INFO,"Connected! Notifying application.");
- if (cell->length-RELAY_HEADER_SIZE == 4) {
- addr = htonl(*(uint32_t*)(cell->payload + RELAY_HEADER_SIZE));
- client_dns_set_entry(conn->socks_request->address, addr);
- }
- if(connection_ap_handshake_socks_reply(conn, NULL, 0, 1) < 0) {
- log_fn(LOG_INFO,"Writing to socks-speaking application failed. Closing.");
- connection_edge_end(conn, END_STREAM_REASON_MISC, conn->cpath_layer);
- }
- return 0;
- case RELAY_COMMAND_SENDME:
- if(!conn) {
- if(edge_type == EDGE_AP) {
- assert(layer_hint);
- layer_hint->package_window += CIRCWINDOW_INCREMENT;
- log_fn(LOG_DEBUG,"circ-level sendme at AP, packagewindow %d.", layer_hint->package_window);
- circuit_resume_edge_reading(circ, EDGE_AP, layer_hint);
- } else {
- assert(!layer_hint);
- circ->package_window += CIRCWINDOW_INCREMENT;
- log_fn(LOG_DEBUG,"circ-level sendme at exit, packagewindow %d.", circ->package_window);
- circuit_resume_edge_reading(circ, EDGE_EXIT, layer_hint);
- }
- return 0;
- }
- conn->package_window += STREAMWINDOW_INCREMENT;
- log_fn(LOG_DEBUG,"stream-level sendme, packagewindow now %d.", conn->package_window);
- connection_start_reading(conn);
- connection_edge_package_raw_inbuf(conn);
- return 0;
- default:
- log_fn(LOG_WARN,"unknown relay command %d.",relay_command);
- return -1;
- }
- assert(0);
- return -1;
- }
- int connection_edge_finished_flushing(connection_t *conn) {
- int e, len=sizeof(e);
- assert(conn);
- assert(conn->type == CONN_TYPE_AP || conn->type == CONN_TYPE_EXIT);
- switch(conn->state) {
- case EXIT_CONN_STATE_CONNECTING:
- if (getsockopt(conn->s, SOL_SOCKET, SO_ERROR, (void*)&e, &len) < 0) {
- if(!ERRNO_CONN_EINPROGRESS(errno)) {
-
- log_fn(LOG_DEBUG,"in-progress exit connect failed. Removing.");
- return -1;
- } else {
- log_fn(LOG_DEBUG,"in-progress exit connect still waiting.");
- return 0;
- }
- }
-
- log_fn(LOG_INFO,"Exit connection to %s:%u established.",
- conn->address,conn->port);
- conn->state = EXIT_CONN_STATE_OPEN;
- connection_watch_events(conn, POLLIN);
- if(connection_wants_to_flush(conn))
- connection_start_writing(conn);
-
- if(connection_edge_send_command(conn, circuit_get_by_conn(conn),
- RELAY_COMMAND_CONNECTED, NULL, 0, conn->cpath_layer) < 0)
- return 0;
- return connection_process_inbuf(conn);
- case AP_CONN_STATE_OPEN:
- case EXIT_CONN_STATE_OPEN:
- connection_stop_writing(conn);
- connection_edge_consider_sending_sendme(conn);
- return 0;
- case AP_CONN_STATE_SOCKS_WAIT:
- connection_stop_writing(conn);
- return 0;
- default:
- log_fn(LOG_WARN,"BUG: called in unexpected state: %d", conn->state);
- return -1;
- }
- return 0;
- }
- uint64_t stats_n_data_cells_packaged = 0;
- uint64_t stats_n_data_bytes_packaged = 0;
- uint64_t stats_n_data_cells_received = 0;
- uint64_t stats_n_data_bytes_received = 0;
- int connection_edge_package_raw_inbuf(connection_t *conn) {
- int amount_to_process, length;
- char payload[CELL_PAYLOAD_SIZE];
- circuit_t *circ;
-
- assert(conn);
- assert(!connection_speaks_cells(conn));
-
- repeat_connection_edge_package_raw_inbuf:
-
- circ = circuit_get_by_conn(conn);
- if(!circ) {
- log_fn(LOG_INFO,"conn has no circuits! Closing.");
- return -1;
- }
-
- if(circuit_consider_stop_edge_reading(circ, conn->type, conn->cpath_layer))
- return 0;
-
- if(conn->package_window <= 0) {
- log_fn(LOG_WARN,"called with package_window %d. Tell Roger.", conn->package_window);
- connection_stop_reading(conn);
- return 0;
- }
-
- amount_to_process = buf_datalen(conn->inbuf);
-
- if(!amount_to_process)
- return 0;
-
- if(amount_to_process > CELL_PAYLOAD_SIZE - RELAY_HEADER_SIZE) {
- length = CELL_PAYLOAD_SIZE - RELAY_HEADER_SIZE;
- } else {
- length = amount_to_process;
- }
- stats_n_data_bytes_packaged += length;
- stats_n_data_cells_packaged += 1;
-
- connection_fetch_from_buf(payload, length, conn);
- log_fn(LOG_DEBUG,"(%d) Packaging %d bytes (%d waiting).",conn->s,length,
- (int)buf_datalen(conn->inbuf));
-
- if(connection_edge_send_command(conn, circ, RELAY_COMMAND_DATA,
- payload, length, conn->cpath_layer) < 0)
- return 0;
- if(conn->type == CONN_TYPE_EXIT) {
- assert(circ->package_window > 0);
- circ->package_window--;
- } else {
- assert(conn->type == CONN_TYPE_AP);
- assert(conn->cpath_layer->package_window > 0);
- conn->cpath_layer->package_window--;
- }
-
- if(--conn->package_window <= 0) {
- connection_stop_reading(conn);
- log_fn(LOG_DEBUG,"conn->package_window reached 0.");
- circuit_consider_stop_edge_reading(circ, conn->type, conn->cpath_layer);
- return 0;
- }
- log_fn(LOG_DEBUG,"conn->package_window is now %d",conn->package_window);
-
-
- goto repeat_connection_edge_package_raw_inbuf;
- }
- void connection_ap_attach_pending(void)
- {
- connection_t **carray;
- int n, i;
- get_connection_array(&carray, &n);
- for (i = 0; i < n; ++i) {
- if (carray[i]->type != CONN_TYPE_AP ||
- carray[i]->type != AP_CONN_STATE_CIRCUIT_WAIT)
- continue;
- if (connection_ap_handshake_attach_circuit(carray[i])<0) {
- if(!circuit_get_newest(carray[i], 0)) {
-
- circuit_launch_new(1);
- }
- }
- }
- }
- static void connection_edge_consider_sending_sendme(connection_t *conn) {
- circuit_t *circ;
-
- if(connection_outbuf_too_full(conn))
- return;
-
- circ = circuit_get_by_conn(conn);
- if(!circ) {
-
- log_fn(LOG_INFO,"No circuit associated with conn. Skipping.");
- return;
- }
-
- while(conn->deliver_window < STREAMWINDOW_START - STREAMWINDOW_INCREMENT) {
- log_fn(LOG_DEBUG,"Outbuf %d, Queueing stream sendme.", conn->outbuf_flushlen);
- conn->deliver_window += STREAMWINDOW_INCREMENT;
- if(connection_edge_send_command(conn, circ, RELAY_COMMAND_SENDME,
- NULL, 0, conn->cpath_layer) < 0) {
- log_fn(LOG_WARN,"connection_edge_send_command failed. Returning.");
- return;
- }
- }
- }
- static int connection_ap_handshake_process_socks(connection_t *conn) {
- socks_request_t *socks;
- int sockshere;
- assert(conn);
- assert(conn->type == CONN_TYPE_AP);
- assert(conn->state == AP_CONN_STATE_SOCKS_WAIT);
- assert(conn->socks_request);
- socks = conn->socks_request;
- log_fn(LOG_DEBUG,"entered.");
- sockshere = fetch_from_buf_socks(conn->inbuf, socks);
- if(sockshere == -1 || sockshere == 0) {
- if(socks->replylen) {
- log_fn(LOG_DEBUG,"reply is already set for us. Using it.");
- connection_ap_handshake_socks_reply(conn, socks->reply, socks->replylen, 0);
- } else if(sockshere == -1) {
- log_fn(LOG_WARN,"Fetching socks handshake failed. Closing.");
- connection_ap_handshake_socks_reply(conn, NULL, 0, 0);
- } else {
- log_fn(LOG_DEBUG,"socks handshake not all here yet.");
- }
- return sockshere;
- }
- conn->state = AP_CONN_STATE_CIRCUIT_WAIT;
- if(connection_ap_handshake_attach_circuit(conn) < 0)
- circuit_launch_new(1);
- return 0;
- }
- static int connection_ap_handshake_attach_circuit(connection_t *conn) {
- circuit_t *circ;
- assert(conn);
- assert(conn->type == CONN_TYPE_AP);
- assert(conn->state == AP_CONN_STATE_CIRCUIT_WAIT);
- assert(conn->socks_request);
-
- circ = circuit_get_newest(conn, 1);
- if(!circ) {
- log_fn(LOG_INFO,"No safe circuit ready for edge connection; delaying.");
- connection_stop_reading(conn);
- return -1;
- }
- connection_start_reading(conn);
- if(!circ->timestamp_dirty)
- circ->timestamp_dirty = time(NULL);
-
- log_fn(LOG_DEBUG,"attaching new conn to circ. n_circ_id %d.", circ->n_circ_id);
- conn->next_stream = circ->p_streams;
- circ->p_streams = conn;
- assert(circ->cpath && circ->cpath->prev);
- assert(circ->cpath->prev->state == CPATH_STATE_OPEN);
- conn->cpath_layer = circ->cpath->prev;
- connection_ap_handshake_send_begin(conn, circ);
- return 0;
- }
- static void connection_ap_handshake_send_begin(connection_t *ap_conn, circuit_t *circ)
- {
- char payload[CELL_PAYLOAD_SIZE];
- int payload_len;
- struct in_addr in;
- const char *string_addr;
- assert(ap_conn->type == CONN_TYPE_AP);
- assert(ap_conn->state == AP_CONN_STATE_CIRCUIT_WAIT);
- assert(ap_conn->socks_request);
- crypto_pseudo_rand(STREAM_ID_SIZE, ap_conn->stream_id);
-
- in.s_addr = htonl(client_dns_lookup_entry(ap_conn->socks_request->address));
- string_addr = in.s_addr ? inet_ntoa(in) : NULL;
- memcpy(payload, ap_conn->stream_id, STREAM_ID_SIZE);
- payload_len = STREAM_ID_SIZE + 1 +
- snprintf(payload+STREAM_ID_SIZE,CELL_PAYLOAD_SIZE-RELAY_HEADER_SIZE-STREAM_ID_SIZE,
- "%s:%d",
- string_addr ? string_addr : ap_conn->socks_request->address,
- ap_conn->socks_request->port);
- log_fn(LOG_DEBUG,"Sending relay cell to begin stream %d.",*(int *)ap_conn->stream_id);
- if(connection_edge_send_command(ap_conn, circ, RELAY_COMMAND_BEGIN,
- payload, payload_len, ap_conn->cpath_layer) < 0)
- return;
- ap_conn->package_window = STREAMWINDOW_START;
- ap_conn->deliver_window = STREAMWINDOW_START;
- ap_conn->state = AP_CONN_STATE_OPEN;
-
- log_fn(LOG_INFO,"Address/port sent, ap socket %d, n_circ_id %d",ap_conn->s,circ->n_circ_id);
- return;
- }
- static int connection_ap_handshake_socks_reply(connection_t *conn, char *reply,
- int replylen, char success) {
- char buf[256];
- if(replylen) {
- connection_write_to_buf(reply, replylen, conn);
- return flush_buf(conn->s, conn->outbuf, &conn->outbuf_flushlen);
- }
- assert(conn->socks_request);
- if(conn->socks_request->socks_version == 4) {
- memset(buf,0,SOCKS4_NETWORK_LEN);
- #define SOCKS4_GRANTED 90
- #define SOCKS4_REJECT 91
- buf[1] = (success ? SOCKS4_GRANTED : SOCKS4_REJECT);
-
- connection_write_to_buf(buf, SOCKS4_NETWORK_LEN, conn);
- return flush_buf(conn->s, conn->outbuf, &conn->outbuf_flushlen);
- }
- if(conn->socks_request->socks_version == 5) {
- buf[0] = 5;
- #define SOCKS5_SUCCESS 0
- #define SOCKS5_GENERIC_ERROR 1
- buf[1] = success ? SOCKS5_SUCCESS : SOCKS5_GENERIC_ERROR;
- buf[2] = 0;
- buf[3] = 1;
- memset(buf+4,0,6);
- connection_write_to_buf(buf,10,conn);
- return flush_buf(conn->s, conn->outbuf, &conn->outbuf_flushlen);
- }
- return 0;
- }
- static int connection_exit_begin_conn(cell_t *cell, circuit_t *circ) {
- connection_t *n_stream;
- char *colon;
-
- if(!memchr(cell->payload+RELAY_HEADER_SIZE+STREAM_ID_SIZE,0,
- cell->length-RELAY_HEADER_SIZE-STREAM_ID_SIZE)) {
- log_fn(LOG_WARN,"relay begin cell has no \\0. Dropping.");
- return 0;
- }
- colon = strchr(cell->payload+RELAY_HEADER_SIZE+STREAM_ID_SIZE, ':');
- if(!colon) {
- log_fn(LOG_WARN,"relay begin cell has no colon. Dropping.");
- return 0;
- }
- *colon = 0;
- if(!atoi(colon+1)) {
- log_fn(LOG_WARN,"relay begin cell has invalid port. Dropping.");
- return 0;
- }
- log_fn(LOG_DEBUG,"Creating new exit connection.");
- n_stream = connection_new(CONN_TYPE_EXIT);
- memcpy(n_stream->stream_id, cell->payload + RELAY_HEADER_SIZE, STREAM_ID_SIZE);
- n_stream->address = tor_strdup(cell->payload + RELAY_HEADER_SIZE + STREAM_ID_SIZE);
- n_stream->port = atoi(colon+1);
- n_stream->state = EXIT_CONN_STATE_RESOLVING;
-
- n_stream->package_window = STREAMWINDOW_START;
- n_stream->deliver_window = STREAMWINDOW_START;
- if(connection_add(n_stream) < 0) {
- log_fn(LOG_WARN,"connection_add failed. Dropping.");
- connection_free(n_stream);
- return 0;
- }
-
- n_stream->next_stream = circ->n_streams;
- circ->n_streams = n_stream;
-
- switch(dns_resolve(n_stream)) {
- case 1:
- connection_exit_connect(n_stream);
- return 0;
- case -1:
- log_fn(LOG_WARN,"Resolve failed (%s).", n_stream->address);
- connection_edge_end(n_stream, END_STREAM_REASON_RESOLVEFAILED, NULL);
-
- }
- return 0;
- }
- void connection_exit_connect(connection_t *conn) {
- unsigned char connected_payload[4];
- if(router_compare_to_exit_policy(conn) < 0) {
- log_fn(LOG_INFO,"%s:%d failed exit policy. Closing.", conn->address, conn->port);
- connection_edge_end(conn, END_STREAM_REASON_EXITPOLICY, NULL);
- return;
- }
- switch(connection_connect(conn, conn->address, conn->addr, conn->port)) {
- case -1:
- connection_edge_end(conn, END_STREAM_REASON_CONNECTFAILED, NULL);
- return;
- case 0:
- connection_set_poll_socket(conn);
- conn->state = EXIT_CONN_STATE_CONNECTING;
- connection_watch_events(conn, POLLOUT | POLLIN | POLLERR);
-
- return;
-
- }
- connection_set_poll_socket(conn);
- conn->state = EXIT_CONN_STATE_OPEN;
- if(connection_wants_to_flush(conn)) {
- log_fn(LOG_WARN,"tell roger: newly connected conn had data waiting!");
- }
- connection_watch_events(conn, POLLIN);
-
- *((uint32_t*) connected_payload) = htonl(conn->addr);
- connection_edge_send_command(conn, circuit_get_by_conn(conn), RELAY_COMMAND_CONNECTED,
- connected_payload, 4, conn->cpath_layer);
- }
- int connection_ap_can_use_exit(connection_t *conn, routerinfo_t *exit)
- {
- uint32_t addr;
- assert(conn);
- assert(conn->type == CONN_TYPE_AP);
- assert(conn->socks_request);
- addr = client_dns_lookup_entry(conn->socks_request->address);
- return router_supports_exit_address(addr, conn->port, exit);
- }
- #define MAX_DNS_ENTRY_AGE 30*60
- struct client_dns_entry {
- SPLAY_ENTRY(client_dns_entry) node;
- char *address;
- uint32_t addr;
- time_t expires;
- };
- static int client_dns_size = 0;
- static SPLAY_HEAD(client_dns_tree, client_dns_entry) client_dns_root;
- static int compare_client_dns_entries(struct client_dns_entry *a,
- struct client_dns_entry *b)
- {
- return strcasecmp(a->address, b->address);
- }
- static void client_dns_entry_free(struct client_dns_entry *ent)
- {
- tor_free(ent->address);
- tor_free(ent);
- }
- SPLAY_PROTOTYPE(client_dns_tree, client_dns_entry, node, compare_client_dns_entries);
- SPLAY_GENERATE(client_dns_tree, client_dns_entry, node, compare_client_dns_entries);
- void client_dns_init(void) {
- SPLAY_INIT(&client_dns_root);
- client_dns_size = 0;
- }
- static uint32_t client_dns_lookup_entry(const char *address)
- {
- struct client_dns_entry *ent;
- struct client_dns_entry search;
- struct in_addr in;
- time_t now;
- assert(address);
- if (inet_aton(address, &in)) {
- log_fn(LOG_DEBUG, "Using static address %s (%08X)", address,
- ntohl(in.s_addr));
- return ntohl(in.s_addr);
- }
- search.address = (char*)address;
- ent = SPLAY_FIND(client_dns_tree, &client_dns_root, &search);
- if (!ent) {
- log_fn(LOG_DEBUG, "No entry found for address %s", address);
- return 0;
- } else {
- now = time(NULL);
- if (ent->expires < now) {
- log_fn(LOG_DEBUG, "Expired entry found for address %s", address);
- SPLAY_REMOVE(client_dns_tree, &client_dns_root, ent);
- client_dns_entry_free(ent);
- --client_dns_size;
- return 0;
- }
- in.s_addr = htonl(ent->addr);
- log_fn(LOG_DEBUG, "Found cached entry for address %s: %s", address,
- inet_ntoa(in));
- return ent->addr;
- }
- }
- static void client_dns_set_entry(const char *address, uint32_t val)
- {
- struct client_dns_entry *ent;
- struct client_dns_entry search;
- struct in_addr in;
- time_t now;
- assert(address);
- assert(val);
- if (inet_aton(address, &in)) {
- if (ntohl(in.s_addr) == val)
- return;
- in.s_addr = htonl(val);
- log_fn(LOG_WARN,
- "Trying to store incompatible cached value %s for static address %s",
- inet_ntoa(in), address);
- return;
- }
- search.address = (char*) address;
- now = time(NULL);
- ent = SPLAY_FIND(client_dns_tree, &client_dns_root, &search);
- if (ent) {
- log_fn(LOG_DEBUG, "Updating entry for address %s", address);
- ent->addr = val;
- ent->expires = now+MAX_DNS_ENTRY_AGE;
- } else {
- in.s_addr = htonl(val);
- log_fn(LOG_DEBUG, "Caching result for address %s: %s", address,
- inet_ntoa(in));
- ent = tor_malloc(sizeof(struct client_dns_entry));
- ent->address = tor_strdup(address);
- ent->addr = val;
- ent->expires = now+MAX_DNS_ENTRY_AGE;
- SPLAY_INSERT(client_dns_tree, &client_dns_root, ent);
- ++client_dns_size;
- }
- }
- void client_dns_clean(void)
- {
- struct client_dns_entry **expired_entries;
- int n_expired_entries = 0;
- struct client_dns_entry *ent;
- time_t now;
- int i;
- if(!client_dns_size)
- return;
- expired_entries = tor_malloc(client_dns_size *
- sizeof(struct client_dns_entry *));
- now = time(NULL);
- SPLAY_FOREACH(ent, client_dns_tree, &client_dns_root) {
- if (ent->expires < now) {
- expired_entries[n_expired_entries++] = ent;
- }
- }
- for (i = 0; i < n_expired_entries; ++i) {
- SPLAY_REMOVE(client_dns_tree, &client_dns_root, expired_entries[i]);
- client_dns_entry_free(expired_entries[i]);
- }
- tor_free(expired_entries);
- }
|