1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108 |
- #include "or.h"
- extern or_options_t options;
- static void circuit_free_cpath_node(crypt_path_t *victim);
- static circ_id_t get_unique_circ_id_by_conn(connection_t *conn, int circ_id_type);
- unsigned long stats_n_relay_cells_relayed = 0;
- unsigned long stats_n_relay_cells_delivered = 0;
- static circuit_t *global_circuitlist=NULL;
- char *circuit_state_to_string[] = {
- "doing handshakes",
- "processing the onion",
- "connecting to firsthop",
- "open"
- };
- void circuit_add(circuit_t *circ) {
- if(!global_circuitlist) {
- global_circuitlist = circ;
- circ->next = NULL;
- } else {
- circ->next = global_circuitlist;
- global_circuitlist = circ;
- }
- }
- void circuit_remove(circuit_t *circ) {
- circuit_t *tmpcirc;
- assert(circ && global_circuitlist);
- if(global_circuitlist == circ) {
- global_circuitlist = global_circuitlist->next;
- return;
- }
- for(tmpcirc = global_circuitlist;tmpcirc->next;tmpcirc = tmpcirc->next) {
- if(tmpcirc->next == circ) {
- tmpcirc->next = circ->next;
- return;
- }
- }
- }
- circuit_t *circuit_new(circ_id_t p_circ_id, connection_t *p_conn) {
- circuit_t *circ;
- circ = tor_malloc_zero(sizeof(circuit_t));
- circ->timestamp_created = time(NULL);
- circ->p_circ_id = p_circ_id;
- circ->p_conn = p_conn;
- circ->state = CIRCUIT_STATE_ONIONSKIN_PENDING;
-
- circ->p_circ_id = p_circ_id;
-
- circ->package_window = CIRCWINDOW_START;
- circ->deliver_window = CIRCWINDOW_START;
- circuit_add(circ);
- return circ;
- }
- void circuit_free(circuit_t *circ) {
- assert(circ);
- if (circ->n_crypto)
- crypto_free_cipher_env(circ->n_crypto);
- if (circ->p_crypto)
- crypto_free_cipher_env(circ->p_crypto);
- if(circ->build_state)
- tor_free(circ->build_state->chosen_exit);
- tor_free(circ->build_state);
- circuit_free_cpath(circ->cpath);
- free(circ);
- }
- void circuit_free_cpath(crypt_path_t *cpath) {
- crypt_path_t *victim, *head=cpath;
- if(!cpath)
- return;
-
- while(cpath->next && cpath->next != head) {
- victim = cpath;
- cpath = victim->next;
- circuit_free_cpath_node(victim);
- }
- circuit_free_cpath_node(cpath);
- }
- static void circuit_free_cpath_node(crypt_path_t *victim) {
- if(victim->f_crypto)
- crypto_free_cipher_env(victim->f_crypto);
- if(victim->b_crypto)
- crypto_free_cipher_env(victim->b_crypto);
- if(victim->handshake_state)
- crypto_dh_free(victim->handshake_state);
- free(victim);
- }
- static circ_id_t get_unique_circ_id_by_conn(connection_t *conn, int circ_id_type) {
- circ_id_t test_circ_id;
- uint16_t high_bit;
- assert(conn && conn->type == CONN_TYPE_OR);
- high_bit = (circ_id_type == CIRC_ID_TYPE_HIGHER) ? 1<<15 : 0;
- do {
-
-
- test_circ_id = conn->next_circ_id++;
- if (test_circ_id == 0 || test_circ_id >= 1<<15) {
- test_circ_id = 1;
- conn->next_circ_id = 2;
- }
- test_circ_id |= high_bit;
- } while(circuit_get_by_circ_id_conn(test_circ_id, conn));
- return test_circ_id;
- }
- circuit_t *circuit_enumerate_by_naddr_nport(circuit_t *circ, uint32_t naddr, uint16_t nport) {
- if(!circ)
- circ = global_circuitlist;
- else
- circ = circ->next;
- for( ; circ; circ = circ->next) {
- if(circ->n_addr == naddr && circ->n_port == nport)
- return circ;
- }
- return NULL;
- }
- circuit_t *circuit_get_by_circ_id_conn(circ_id_t circ_id, connection_t *conn) {
- circuit_t *circ;
- connection_t *tmpconn;
- for(circ=global_circuitlist;circ;circ = circ->next) {
- if(circ->p_circ_id == circ_id) {
- if(circ->p_conn == conn)
- return circ;
- for(tmpconn = circ->p_streams; tmpconn; tmpconn = tmpconn->next_stream) {
- if(tmpconn == conn)
- return circ;
- }
- }
- if(circ->n_circ_id == circ_id) {
- if(circ->n_conn == conn)
- return circ;
- for(tmpconn = circ->n_streams; tmpconn; tmpconn = tmpconn->next_stream) {
- if(tmpconn == conn)
- return circ;
- }
- }
- }
- return NULL;
- }
- circuit_t *circuit_get_by_conn(connection_t *conn) {
- circuit_t *circ;
- connection_t *tmpconn;
- for(circ=global_circuitlist;circ;circ = circ->next) {
- if(circ->p_conn == conn)
- return circ;
- if(circ->n_conn == conn)
- return circ;
- for(tmpconn = circ->p_streams; tmpconn; tmpconn=tmpconn->next_stream)
- if(tmpconn == conn)
- return circ;
- for(tmpconn = circ->n_streams; tmpconn; tmpconn=tmpconn->next_stream)
- if(tmpconn == conn)
- return circ;
- }
- return NULL;
- }
- circuit_t *circuit_get_newest(connection_t *conn, int must_be_open) {
- circuit_t *circ, *newest=NULL, *leastdirty=NULL;
- routerinfo_t *exitrouter;
- for(circ=global_circuitlist;circ;circ = circ->next) {
- if(!circ->cpath)
- continue;
- if(must_be_open && (circ->state != CIRCUIT_STATE_OPEN || !circ->n_conn))
- continue;
- if(conn) {
- if(circ->state == CIRCUIT_STATE_OPEN && circ->n_conn)
- exitrouter = router_get_by_addr_port(circ->cpath->prev->addr, circ->cpath->prev->port);
- else
- exitrouter = router_get_by_nickname(circ->build_state->chosen_exit);
- if(!exitrouter || connection_ap_can_use_exit(conn, exitrouter) < 0) {
-
- continue;
- }
- }
- if(!newest || newest->timestamp_created < circ->timestamp_created) {
- assert(circ->n_circ_id);
- newest = circ;
- }
- if(conn && circ->timestamp_dirty &&
- (!leastdirty || leastdirty->timestamp_dirty < circ->timestamp_dirty)) {
- assert(circ->n_circ_id);
- leastdirty = circ;
- }
- }
- if(leastdirty &&
- leastdirty->timestamp_dirty+options.NewCircuitPeriod > time(NULL)) {
- log_fn(LOG_DEBUG,"Choosing in-use circuit %s:%d:%d.",
- leastdirty->n_conn->address, leastdirty->n_port, leastdirty->n_circ_id);
- return leastdirty;
- }
- if(newest) {
- log_fn(LOG_DEBUG,"Choosing circuit %s:%d:%d.",
- newest->n_conn->address, newest->n_port, newest->n_circ_id);
- return newest;
- }
- return NULL;
- }
- #define MIN_SECONDS_BEFORE_EXPIRING_CIRC 2
- void circuit_expire_building(void) {
- circuit_t *circ;
- int now = time(NULL);
- for(circ=global_circuitlist;circ;circ = circ->next) {
- if(circ->cpath &&
- circ->state != CIRCUIT_STATE_OPEN &&
- circ->timestamp_created + MIN_SECONDS_BEFORE_EXPIRING_CIRC+1 < now) {
- if(circ->n_conn)
- log_fn(LOG_INFO,"Abandoning circ %s:%d:%d (state %d:%s)",
- circ->n_conn->address, circ->n_port, circ->n_circ_id,
- circ->state, circuit_state_to_string[circ->state]);
- else
- log_fn(LOG_INFO,"Abandoning circ %d (state %d:%s)", circ->n_circ_id,
- circ->state, circuit_state_to_string[circ->state]);
- circuit_close(circ);
- }
- }
- }
- int circuit_count_building(void) {
- circuit_t *circ;
- int num=0;
- for(circ=global_circuitlist;circ;circ = circ->next) {
- if(circ->cpath && circ->state != CIRCUIT_STATE_OPEN)
- num++;
- }
- return num;
- }
- int circuit_deliver_relay_cell(cell_t *cell, circuit_t *circ,
- int cell_direction, crypt_path_t *layer_hint) {
- connection_t *conn=NULL;
- char recognized=0;
- char buf[256];
- assert(cell && circ);
- assert(cell_direction == CELL_DIRECTION_OUT || cell_direction == CELL_DIRECTION_IN);
- buf[0] = cell->length;
- memcpy(buf+1, cell->payload, CELL_PAYLOAD_SIZE);
- log_fn(LOG_DEBUG,"direction %d, streamid %d before crypt.", cell_direction, *(int*)(cell->payload+1));
- if(relay_crypt(circ, buf, 1+CELL_PAYLOAD_SIZE, cell_direction, &layer_hint, &recognized, &conn) < 0) {
- log_fn(LOG_WARN,"relay crypt failed. Dropping connection.");
- return -1;
- }
- cell->length = buf[0];
- memcpy(cell->payload, buf+1, CELL_PAYLOAD_SIZE);
- if(recognized) {
- if(cell_direction == CELL_DIRECTION_OUT) {
- ++stats_n_relay_cells_delivered;
- log_fn(LOG_DEBUG,"Sending to exit.");
- if (connection_edge_process_relay_cell(cell, circ, conn, EDGE_EXIT, NULL) < 0) {
- log_fn(LOG_WARN,"connection_edge_process_relay_cell (at exit) failed.");
- return -1;
- }
- }
- if(cell_direction == CELL_DIRECTION_IN) {
- ++stats_n_relay_cells_delivered;
- log_fn(LOG_DEBUG,"Sending to AP.");
- if (connection_edge_process_relay_cell(cell, circ, conn, EDGE_AP, layer_hint) < 0) {
- log_fn(LOG_WARN,"connection_edge_process_relay_cell (at AP) failed.");
- return -1;
- }
- }
- return 0;
- }
-
- if(cell_direction == CELL_DIRECTION_OUT)
- conn = circ->n_conn;
- else
- conn = circ->p_conn;
- if(!conn) {
- log_fn(LOG_INFO,"Didn't recognize cell (%d), but circ stops here! Dropping.",
- *(int *)(cell->payload+1));
- return 0;
- }
- log_fn(LOG_DEBUG,"Passing on unrecognized cell.");
- ++stats_n_relay_cells_relayed;
- connection_or_write_cell_to_buf(cell, conn);
- return 0;
- }
- int relay_crypt(circuit_t *circ, char *in, int inlen, char cell_direction,
- crypt_path_t **layer_hint, char *recognized, connection_t **conn) {
- crypt_path_t *thishop;
- char out[256];
- assert(circ && in && recognized && conn);
- assert(inlen < 256);
- if(cell_direction == CELL_DIRECTION_IN) {
- if(circ->cpath) {
- thishop = circ->cpath;
- if(thishop->state != CPATH_STATE_OPEN) {
- log_fn(LOG_WARN,"Relay cell before first created cell?");
- return -1;
- }
- do {
- assert(thishop);
- log_fn(LOG_DEBUG,"before decrypt: %d",*(int*)(in+2));
-
- if(crypto_cipher_decrypt(thishop->b_crypto, in, inlen, out)) {
- log_fn(LOG_WARN,"Error performing onion decryption: %s", crypto_perror());
- return -1;
- }
- memcpy(in,out,inlen);
- log_fn(LOG_DEBUG,"after decrypt: %d",*(int*)(in+2));
- if( (*recognized = relay_check_recognized(circ, cell_direction, in+2, conn))) {
- *layer_hint = thishop;
- return 0;
- }
- thishop = thishop->next;
- } while(thishop != circ->cpath && thishop->state == CPATH_STATE_OPEN);
- log_fn(LOG_INFO,"in-cell at OP not recognized. Dropping.");
- return 0;
- } else {
- log_fn(LOG_DEBUG,"before encrypt: %d",*(int*)(in+2));
- if(crypto_cipher_encrypt(circ->p_crypto, in, inlen, out)) {
- log_fn(LOG_WARN,"Onion encryption failed for circID %u: %s",
- circ->p_circ_id, crypto_perror());
- return -1;
- }
- memcpy(in,out,inlen);
- log_fn(LOG_DEBUG,"after encrypt: %d",*(int*)(in+2));
- log_fn(LOG_DEBUG,"Skipping recognized check, because we're not the OP.");
-
- }
- } else if(cell_direction == CELL_DIRECTION_OUT) {
- if(circ->cpath) {
- thishop = *layer_hint;
-
- do {
- assert(thishop);
- log_fn(LOG_DEBUG,"before encrypt: %d",*(int*)(in+2));
- if(crypto_cipher_encrypt(thishop->f_crypto, in, inlen, out)) {
- log_fn(LOG_WARN,"Error performing encryption: %s", crypto_perror());
- return -1;
- }
- memcpy(in,out,inlen);
- log_fn(LOG_DEBUG,"after encrypt: %d",*(int*)(in+2));
- thishop = thishop->prev;
- } while(thishop != circ->cpath->prev);
- } else {
- if(crypto_cipher_decrypt(circ->n_crypto,in, inlen, out)) {
- log_fn(LOG_WARN,"Decryption failed for circID %u: %s",
- circ->n_circ_id, crypto_perror());
- return -1;
- }
- memcpy(in,out,inlen);
- if( (*recognized = relay_check_recognized(circ, cell_direction, in+2, conn)))
- return 0;
- }
- } else {
- log_fn(LOG_ERR,"unknown cell direction %d.", cell_direction);
- assert(0);
- }
- return 0;
- }
- int relay_check_recognized(circuit_t *circ, int cell_direction, char *stream, connection_t **conn) {
- connection_t *tmpconn;
- if(!memcmp(stream,ZERO_STREAM,STREAM_ID_SIZE)) {
- log_fn(LOG_DEBUG,"It's the zero stream. Recognized.");
- return 1;
- }
- log_fn(LOG_DEBUG,"not the zero stream.");
- if(cell_direction == CELL_DIRECTION_OUT)
- tmpconn = circ->n_streams;
- else
- tmpconn = circ->p_streams;
- if(!tmpconn) {
- log_fn(LOG_DEBUG,"No conns. Not recognized.");
- return 0;
- }
- for( ; tmpconn; tmpconn=tmpconn->next_stream) {
- if(!memcmp(stream,tmpconn->stream_id, STREAM_ID_SIZE)) {
- log_fn(LOG_DEBUG,"recognized stream %d.", *(int*)stream);
- *conn = tmpconn;
- return 1;
- }
- log_fn(LOG_DEBUG,"considered stream %d, not it.",*(int*)tmpconn->stream_id);
- }
- log_fn(LOG_DEBUG,"Didn't recognize on this iteration of decryption.");
- return 0;
- }
- void circuit_resume_edge_reading(circuit_t *circ, int edge_type, crypt_path_t *layer_hint) {
- connection_t *conn;
- assert(edge_type == EDGE_EXIT || edge_type == EDGE_AP);
- log_fn(LOG_DEBUG,"resuming");
- if(edge_type == EDGE_EXIT)
- conn = circ->n_streams;
- else
- conn = circ->p_streams;
- for( ; conn; conn=conn->next_stream) {
- if((edge_type == EDGE_EXIT && conn->package_window > 0) ||
- (edge_type == EDGE_AP && conn->package_window > 0 && conn->cpath_layer == layer_hint)) {
- connection_start_reading(conn);
- connection_edge_package_raw_inbuf(conn);
-
- if(circuit_consider_stop_edge_reading(circ, edge_type, layer_hint))
- return;
- }
- }
- }
- int circuit_consider_stop_edge_reading(circuit_t *circ, int edge_type, crypt_path_t *layer_hint) {
- connection_t *conn = NULL;
- assert(edge_type == EDGE_EXIT || edge_type == EDGE_AP);
- assert(edge_type == EDGE_EXIT || layer_hint);
- log_fn(LOG_DEBUG,"considering");
- if(edge_type == EDGE_EXIT && circ->package_window <= 0)
- conn = circ->n_streams;
- else if(edge_type == EDGE_AP && layer_hint->package_window <= 0)
- conn = circ->p_streams;
- else
- return 0;
- for( ; conn; conn=conn->next_stream)
- if(!layer_hint || conn->cpath_layer == layer_hint)
- connection_stop_reading(conn);
- log_fn(LOG_DEBUG,"yes. stopped.");
- return 1;
- }
- int circuit_consider_sending_sendme(circuit_t *circ, int edge_type, crypt_path_t *layer_hint) {
- cell_t cell;
- assert(circ);
- memset(&cell, 0, sizeof(cell_t));
- cell.command = CELL_RELAY;
- SET_CELL_RELAY_COMMAND(cell, RELAY_COMMAND_SENDME);
- SET_CELL_STREAM_ID(cell, ZERO_STREAM);
- cell.length = RELAY_HEADER_SIZE;
- if(edge_type == EDGE_AP) {
- cell.circ_id = circ->n_circ_id;
- while(layer_hint->deliver_window < CIRCWINDOW_START-CIRCWINDOW_INCREMENT) {
- log_fn(LOG_DEBUG,"deliver_window %d, Queueing sendme forward.", layer_hint->deliver_window);
- layer_hint->deliver_window += CIRCWINDOW_INCREMENT;
- if(circuit_deliver_relay_cell(&cell, circ, CELL_DIRECTION_OUT, layer_hint) < 0) {
- log_fn(LOG_WARN,"At AP: circuit_deliver_relay_cell failed.");
- return -1;
- }
- }
- } else if(edge_type == EDGE_EXIT) {
- cell.circ_id = circ->p_circ_id;
- while(circ->deliver_window < CIRCWINDOW_START-CIRCWINDOW_INCREMENT) {
- log_fn(LOG_DEBUG,"deliver_window %d, Queueing sendme back.", circ->deliver_window);
- circ->deliver_window += CIRCWINDOW_INCREMENT;
- if(circuit_deliver_relay_cell(&cell, circ, CELL_DIRECTION_IN, layer_hint) < 0) {
- log_fn(LOG_WARN,"At exit: circuit_deliver_relay_cell failed.");
- return -1;
- }
- }
- }
- return 0;
- }
- void circuit_close(circuit_t *circ) {
- connection_t *conn;
- assert(circ);
- circuit_remove(circ);
- if(circ->n_conn)
- connection_send_destroy(circ->n_circ_id, circ->n_conn);
- for(conn=circ->n_streams; conn; conn=conn->next_stream) {
- connection_send_destroy(circ->n_circ_id, conn);
- }
- if(circ->p_conn)
- connection_send_destroy(circ->n_circ_id, circ->p_conn);
- for(conn=circ->p_streams; conn; conn=conn->next_stream) {
- connection_send_destroy(circ->p_circ_id, conn);
- }
- circuit_free(circ);
- }
- void circuit_about_to_close_connection(connection_t *conn) {
-
-
- circuit_t *circ;
- connection_t *prevconn;
- switch(conn->type) {
- case CONN_TYPE_OR:
-
- while((circ = circuit_get_by_conn(conn))) {
- if(circ->n_conn == conn)
- circ->n_conn = NULL;
- if(circ->p_conn == conn)
- circ->p_conn = NULL;
- circuit_close(circ);
- }
- return;
- case CONN_TYPE_AP:
- case CONN_TYPE_EXIT:
-
- circ = circuit_get_by_conn(conn);
- if(!circ)
- return;
- if(!conn->has_sent_end) {
- log_fn(LOG_INFO,"Edge connection hasn't sent end yet? Bug.");
- connection_edge_end(conn, END_STREAM_REASON_MISC, conn->cpath_layer);
- }
- if(conn == circ->p_streams) {
- circ->p_streams = conn->next_stream;
- return;
- }
- if(conn == circ->n_streams) {
- circ->n_streams = conn->next_stream;
- return;
- }
- for(prevconn = circ->p_streams; prevconn && prevconn->next_stream && prevconn->next_stream != conn; prevconn = prevconn->next_stream) ;
- if(prevconn && prevconn->next_stream) {
- prevconn->next_stream = conn->next_stream;
- return;
- }
- for(prevconn = circ->n_streams; prevconn && prevconn->next_stream && prevconn->next_stream != conn; prevconn = prevconn->next_stream) ;
- if(prevconn && prevconn->next_stream) {
- prevconn->next_stream = conn->next_stream;
- return;
- }
- log_fn(LOG_ERR,"edge conn not in circuit's list?");
- assert(0);
- }
- }
- void circuit_dump_details(int severity, circuit_t *circ, int poll_index,
- char *type, int this_circid, int other_circid) {
- struct crypt_path_t *hop;
- log(severity,"Conn %d has %s circuit: circID %d (other side %d), state %d (%s), born %d",
- poll_index, type, this_circid, other_circid, circ->state,
- circuit_state_to_string[circ->state], (int)circ->timestamp_created);
- if(circ->cpath) {
- if(circ->state == CIRCUIT_STATE_BUILDING)
- log(severity,"Building: desired len %d, planned exit node %s.",
- circ->build_state->desired_path_len, circ->build_state->chosen_exit);
- for(hop=circ->cpath;hop->next != circ->cpath; hop=hop->next)
- log(severity,"hop: state %d, addr %d, port %d", hop->state, hop->addr, hop->port);
- }
- }
- void circuit_dump_by_conn(connection_t *conn, int severity) {
- circuit_t *circ;
- connection_t *tmpconn;
- for(circ=global_circuitlist;circ;circ = circ->next) {
- if(circ->p_conn == conn)
- circuit_dump_details(severity, circ, conn->poll_index, "App-ward",
- circ->p_circ_id, circ->n_circ_id);
- for(tmpconn=circ->p_streams; tmpconn; tmpconn=tmpconn->next_stream) {
- if(tmpconn == conn) {
- circuit_dump_details(severity, circ, conn->poll_index, "App-ward",
- circ->p_circ_id, circ->n_circ_id);
- }
- }
- if(circ->n_conn == conn)
- circuit_dump_details(severity, circ, conn->poll_index, "Exit-ward",
- circ->n_circ_id, circ->p_circ_id);
- for(tmpconn=circ->n_streams; tmpconn; tmpconn=tmpconn->next_stream) {
- if(tmpconn == conn) {
- circuit_dump_details(severity, circ, conn->poll_index, "Exit-ward",
- circ->n_circ_id, circ->p_circ_id);
- }
- }
- }
- }
- void circuit_expire_unused_circuits(void) {
- circuit_t *circ, *tmpcirc;
- time_t now = time(NULL);
- circ = global_circuitlist;
- while(circ) {
- tmpcirc = circ;
- circ = circ->next;
- if(tmpcirc->timestamp_dirty &&
- tmpcirc->timestamp_dirty + options.NewCircuitPeriod < now &&
- !tmpcirc->p_conn && !tmpcirc->p_streams) {
- log_fn(LOG_DEBUG,"Closing n_circ_id %d",tmpcirc->n_circ_id);
- circuit_close(tmpcirc);
- }
- }
- }
- int circuit_launch_new(int failure_status) {
- static int failures=0;
- if(!options.SocksPort)
- return -1;
- if(failure_status == -1) {
- failures = 0;
- return -1;
- }
- failures += failure_status;
- if(failures > 5) {
- return -1;
- }
- if(circuit_establish_circuit() < 0) {
- failures++;
- return 0;
- }
- failures = 0;
- return 0;
- }
- int circuit_establish_circuit(void) {
- routerinfo_t *firsthop;
- connection_t *n_conn;
- circuit_t *circ;
- circ = circuit_new(0, NULL);
- circ->state = CIRCUIT_STATE_OR_WAIT;
- circ->build_state = onion_new_cpath_build_state();
- if (! circ->build_state) {
- log_fn(LOG_INFO,"Generating cpath length failed.");
- circuit_close(circ);
- return -1;
- }
- onion_extend_cpath(&circ->cpath, circ->build_state, &firsthop);
- if(!circ->cpath) {
- log_fn(LOG_INFO,"Generating first cpath hop failed.");
- circuit_close(circ);
- return -1;
- }
-
- log_fn(LOG_DEBUG,"Looking for firsthop '%s:%u'",
- firsthop->address,firsthop->or_port);
- n_conn = connection_twin_get_by_addr_port(firsthop->addr,firsthop->or_port);
- if(!n_conn || n_conn->state != OR_CONN_STATE_OPEN) {
- circ->n_addr = firsthop->addr;
- circ->n_port = firsthop->or_port;
- if(options.OnionRouter) {
- log_fn(LOG_INFO,"Route's firsthop isn't connected.");
- circuit_close(circ);
- return -1;
- }
- if(!n_conn) {
- n_conn = connection_or_connect(firsthop);
- if(!n_conn) {
- log_fn(LOG_INFO,"connect to firsthop failed. Closing.");
- circuit_close(circ);
- return -1;
- }
- }
- log_fn(LOG_DEBUG,"connecting in progress (or finished). Good.");
- return 0;
-
- } else {
- circ->n_addr = n_conn->addr;
- circ->n_port = n_conn->port;
- circ->n_conn = n_conn;
- log_fn(LOG_DEBUG,"Conn open. Delivering first onion skin.");
- if(circuit_send_next_onion_skin(circ) < 0) {
- log_fn(LOG_INFO,"circuit_send_next_onion_skin failed.");
- circuit_close(circ);
- return -1;
- }
- }
- return 0;
- }
- void circuit_n_conn_open(connection_t *or_conn) {
- circuit_t *circ;
- log_fn(LOG_DEBUG,"Starting.");
- circ = circuit_enumerate_by_naddr_nport(NULL, or_conn->addr, or_conn->port);
- for(;;) {
- if(!circ)
- return;
- assert(circ->state == CIRCUIT_STATE_OR_WAIT);
- log_fn(LOG_DEBUG,"Found circ, sending onion skin.");
- circ->n_conn = or_conn;
- if(circuit_send_next_onion_skin(circ) < 0) {
- log_fn(LOG_INFO,"send_next_onion_skin failed; circuit marked for closing.");
- circuit_close(circ);
- return;
- }
- circ = circuit_enumerate_by_naddr_nport(circ, or_conn->addr, or_conn->port);
- }
- }
- int circuit_send_next_onion_skin(circuit_t *circ) {
- cell_t cell;
- crypt_path_t *hop;
- routerinfo_t *router;
- int r;
- int circ_id_type;
- assert(circ && circ->cpath);
- if(circ->cpath->state == CPATH_STATE_CLOSED) {
- assert(circ->n_conn && circ->n_conn->type == CONN_TYPE_OR);
-
- log_fn(LOG_DEBUG,"First skin; sending create cell.");
- circ_id_type = decide_circ_id_type(options.Nickname,
- circ->n_conn->nickname);
- circ->n_circ_id = get_unique_circ_id_by_conn(circ->n_conn, circ_id_type);
- memset(&cell, 0, sizeof(cell_t));
- cell.command = CELL_CREATE;
- cell.circ_id = circ->n_circ_id;
- cell.length = DH_ONIONSKIN_LEN;
- if(onion_skin_create(circ->n_conn->onion_pkey, &(circ->cpath->handshake_state), cell.payload) < 0) {
- log_fn(LOG_WARN,"onion_skin_create (first hop) failed.");
- return -1;
- }
- connection_or_write_cell_to_buf(&cell, circ->n_conn);
- circ->cpath->state = CPATH_STATE_AWAITING_KEYS;
- circ->state = CIRCUIT_STATE_BUILDING;
- log_fn(LOG_DEBUG,"first skin; finished sending create cell.");
- } else {
- assert(circ->cpath->state == CPATH_STATE_OPEN);
- assert(circ->state == CIRCUIT_STATE_BUILDING);
- log_fn(LOG_DEBUG,"starting to send subsequent skin.");
- r = onion_extend_cpath(&circ->cpath, circ->build_state, &router);
- if (r==1) {
-
- circ->state = CIRCUIT_STATE_OPEN;
- log_fn(LOG_INFO,"circuit built!");
-
- connection_ap_attach_pending();
- return 0;
- } else if (r<0) {
- log_fn(LOG_INFO,"Unable to extend circuit path.");
- return -1;
- }
- hop = circ->cpath->prev;
- memset(&cell, 0, sizeof(cell_t));
- cell.command = CELL_RELAY;
- cell.circ_id = circ->n_circ_id;
- SET_CELL_RELAY_COMMAND(cell, RELAY_COMMAND_EXTEND);
- SET_CELL_STREAM_ID(cell, ZERO_STREAM);
- cell.length = RELAY_HEADER_SIZE + 6 + DH_ONIONSKIN_LEN;
- *(uint32_t*)(cell.payload+RELAY_HEADER_SIZE) = htonl(hop->addr);
- *(uint16_t*)(cell.payload+RELAY_HEADER_SIZE+4) = htons(hop->port);
- if(onion_skin_create(router->onion_pkey, &(hop->handshake_state), cell.payload+RELAY_HEADER_SIZE+6) < 0) {
- log_fn(LOG_WARN,"onion_skin_create failed.");
- return -1;
- }
- log_fn(LOG_DEBUG,"Sending extend relay cell.");
-
- if(circuit_deliver_relay_cell(&cell, circ, CELL_DIRECTION_OUT, hop->prev) < 0) {
- log_fn(LOG_WARN,"failed to deliver extend cell. Closing.");
- return -1;
- }
- hop->state = CPATH_STATE_AWAITING_KEYS;
- }
- return 0;
- }
- int circuit_extend(cell_t *cell, circuit_t *circ) {
- connection_t *n_conn;
- int circ_id_type;
- cell_t newcell;
- if(circ->n_conn) {
- log_fn(LOG_WARN,"n_conn already set. Bug/attack. Closing.");
- return -1;
- }
- circ->n_addr = ntohl(*(uint32_t*)(cell->payload+RELAY_HEADER_SIZE));
- circ->n_port = ntohs(*(uint16_t*)(cell->payload+RELAY_HEADER_SIZE+4));
- n_conn = connection_twin_get_by_addr_port(circ->n_addr,circ->n_port);
- if(!n_conn || n_conn->type != CONN_TYPE_OR) {
-
-
- struct in_addr in;
- in.s_addr = htonl(circ->n_addr);
- log_fn(LOG_INFO,"Next router (%s:%d) not connected. Closing.", inet_ntoa(in), circ->n_port);
- connection_edge_send_command(NULL, circ, RELAY_COMMAND_TRUNCATED,
- NULL, 0, NULL);
- return 0;
- }
- circ->n_addr = n_conn->addr;
- circ->n_port = n_conn->port;
- circ->n_conn = n_conn;
- log_fn(LOG_DEBUG,"n_conn is %s:%u",n_conn->address,n_conn->port);
- circ_id_type = decide_circ_id_type(options.Nickname, n_conn->nickname);
- log_fn(LOG_DEBUG,"circ_id_type = %u.",circ_id_type);
- circ->n_circ_id = get_unique_circ_id_by_conn(circ->n_conn, circ_id_type);
- if(!circ->n_circ_id) {
- log_fn(LOG_WARN,"failed to get unique circID.");
- return -1;
- }
- log_fn(LOG_DEBUG,"Chosen circID %u.",circ->n_circ_id);
- memset(&newcell, 0, sizeof(cell_t));
- newcell.command = CELL_CREATE;
- newcell.circ_id = circ->n_circ_id;
- newcell.length = DH_ONIONSKIN_LEN;
- memcpy(newcell.payload, cell->payload+RELAY_HEADER_SIZE+6, DH_ONIONSKIN_LEN);
- connection_or_write_cell_to_buf(&newcell, circ->n_conn);
- return 0;
- }
- int circuit_finish_handshake(circuit_t *circ, char *reply) {
- unsigned char iv[16];
- unsigned char keys[32];
- crypt_path_t *hop;
- memset(iv, 0, 16);
- assert(circ->cpath);
- if(circ->cpath->state == CPATH_STATE_AWAITING_KEYS)
- hop = circ->cpath;
- else {
- for(hop=circ->cpath->next;
- hop != circ->cpath && hop->state == CPATH_STATE_OPEN;
- hop=hop->next) ;
- if(hop == circ->cpath) {
- log_fn(LOG_WARN,"got extended when circ already built? Closing.");
- return -1;
- }
- }
- assert(hop->state == CPATH_STATE_AWAITING_KEYS);
- if(onion_skin_client_handshake(hop->handshake_state, reply, keys, 32) < 0) {
- log_fn(LOG_WARN,"onion_skin_client_handshake failed.");
- return -1;
- }
- crypto_dh_free(hop->handshake_state);
- hop->handshake_state = NULL;
- log_fn(LOG_DEBUG,"hop %d init cipher forward %d, backward %d.", (uint32_t)hop, *(uint32_t*)keys, *(uint32_t*)(keys+16));
- if (!(hop->f_crypto =
- crypto_create_init_cipher(CIRCUIT_CIPHER,keys,iv,1))) {
- log(LOG_WARN,"forward cipher initialization failed.");
- return -1;
- }
- if (!(hop->b_crypto =
- crypto_create_init_cipher(CIRCUIT_CIPHER,keys+16,iv,0))) {
- log(LOG_WARN,"backward cipher initialization failed.");
- return -1;
- }
- hop->state = CPATH_STATE_OPEN;
- log_fn(LOG_INFO,"finished");
- return 0;
- }
- int circuit_truncated(circuit_t *circ, crypt_path_t *layer) {
- crypt_path_t *victim;
- connection_t *stream;
- assert(circ);
- assert(layer);
- while(layer->next != circ->cpath) {
-
- victim = layer->next;
- log_fn(LOG_DEBUG, "Killing a layer of the cpath.");
- for(stream = circ->p_streams; stream; stream=stream->next_stream) {
- if(stream->cpath_layer == victim) {
- log_fn(LOG_INFO, "Marking stream %d for close.", *(int*)stream->stream_id);
-
- stream->marked_for_close = 1;
- stream->has_sent_end = 1;
- }
- }
- layer->next = victim->next;
- circuit_free_cpath_node(victim);
- }
- log_fn(LOG_INFO, "finished");
- return 0;
- }
- void assert_cpath_layer_ok(const crypt_path_t *cp)
- {
- assert(cp->f_crypto);
- assert(cp->b_crypto);
- assert(cp->addr);
- assert(cp->port);
- switch(cp->state)
- {
- case CPATH_STATE_CLOSED:
- case CPATH_STATE_OPEN:
- assert(!cp->handshake_state);
- break;
- case CPATH_STATE_AWAITING_KEYS:
- assert(cp->handshake_state);
- break;
- default:
- assert(0);
- }
- assert(cp->package_window >= 0);
- assert(cp->deliver_window >= 0);
- }
- void assert_cpath_ok(const crypt_path_t *cp)
- {
- while(cp->prev)
- cp = cp->prev;
- while(cp->next) {
- assert_cpath_layer_ok(cp);
-
- if (cp->prev) {
- if (cp->prev->state == CPATH_STATE_OPEN) {
- assert(cp->state == CPATH_STATE_CLOSED ||
- cp->state == CPATH_STATE_AWAITING_KEYS);
- } else {
- assert(cp->state == CPATH_STATE_CLOSED);
- }
- }
- cp = cp->next;
- }
- }
- void assert_circuit_ok(const circuit_t *c)
- {
- connection_t *conn;
- assert(c->n_addr);
- assert(c->n_port);
- assert(c->n_conn);
- assert(c->n_conn->type == CONN_TYPE_OR);
- if (c->p_conn)
- assert(c->p_conn->type == CONN_TYPE_OR);
- for (conn = c->p_streams; conn; conn = conn->next_stream)
- assert(c->p_conn->type == CONN_TYPE_EXIT);
- for (conn = c->n_streams; conn; conn = conn->next_stream)
- assert(conn->type == CONN_TYPE_EXIT);
- assert(c->deliver_window >= 0);
- assert(c->package_window >= 0);
- if (c->state == CIRCUIT_STATE_OPEN) {
- if (c->cpath) {
- assert(!c->n_crypto);
- assert(!c->p_crypto);
- } else {
- assert(c->n_crypto);
- assert(c->p_crypto);
- }
- }
- if (c->cpath) {
- assert_cpath_ok(c->cpath);
- }
- }
|