123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923 |
- #include "or.h"
- extern or_options_t options;
- static circuit_t *global_circuitlist=NULL;
- char *circuit_state_to_string[] = {
- "receiving the onion",
- "waiting to process create",
- "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(aci_t p_aci, connection_t *p_conn) {
- circuit_t *circ;
- struct timeval now;
- my_gettimeofday(&now);
- circ = (circuit_t *)tor_malloc(sizeof(circuit_t));
- memset(circ,0,sizeof(circuit_t));
- circ->timestamp_created = now.tv_sec;
- circ->p_aci = p_aci;
- circ->p_conn = p_conn;
- circ->state = CIRCUIT_STATE_ONIONSKIN_PENDING;
-
- circ->p_aci = p_aci;
-
- circ->package_window = CIRCWINDOW_START;
- circ->deliver_window = CIRCWINDOW_START;
- circuit_add(circ);
- return circ;
- }
- void circuit_free(circuit_t *circ) {
- if (circ->n_crypto)
- crypto_free_cipher_env(circ->n_crypto);
- if (circ->p_crypto)
- crypto_free_cipher_env(circ->p_crypto);
- 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);
- }
- 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);
- }
- aci_t get_unique_aci_by_addr_port(uint32_t addr, uint16_t port, int aci_type) {
- aci_t test_aci;
- connection_t *conn;
- try_again:
- log_fn(LOG_DEBUG,"trying to get a unique aci");
- if (CRYPTO_PSEUDO_RAND_INT(test_aci))
- return -1;
- if(aci_type == ACI_TYPE_LOWER && test_aci >= (1<<15))
- test_aci -= (1<<15);
- if(aci_type == ACI_TYPE_HIGHER && test_aci < (1<<15))
- test_aci += (1<<15);
-
- if(test_aci == 0)
- goto try_again;
- conn = connection_exact_get_by_addr_port(addr,port);
- if(!conn)
- return test_aci;
- if(circuit_get_by_aci_conn(test_aci, conn))
- goto try_again;
- return test_aci;
- }
- 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_aci_conn(aci_t aci, connection_t *conn) {
- circuit_t *circ;
- connection_t *tmpconn;
- for(circ=global_circuitlist;circ;circ = circ->next) {
- if(circ->p_aci == aci) {
- 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_aci == aci) {
- 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_ap(void) {
- circuit_t *circ, *bestcirc=NULL;
- for(circ=global_circuitlist;circ;circ = circ->next) {
- if(circ->cpath && circ->state == CIRCUIT_STATE_OPEN && (!bestcirc ||
- bestcirc->timestamp_created < circ->timestamp_created)) {
- log_fn(LOG_DEBUG,"Choosing n_aci %d.", circ->n_aci);
- assert(circ->n_aci);
- bestcirc = circ;
- }
- }
- return bestcirc;
- }
- 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_DEBUG,"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) {
- log_fn(LOG_DEBUG,"Sending to exit.");
- return connection_edge_process_relay_cell(cell, circ, conn, EDGE_EXIT, NULL);
- }
- if(cell_direction == CELL_DIRECTION_IN) {
- log_fn(LOG_DEBUG,"Sending to AP.");
- return connection_edge_process_relay_cell(cell, circ, conn, EDGE_AP, layer_hint);
- }
- }
-
- 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.");
- return connection_write_cell_to_buf(cell, conn);
- }
- 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_INFO,"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_ERR,"Error performing 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_ERR,"Encryption failed for ACI : %u (%s).",
- circ->p_aci, 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_ERR,"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_ERR,"Decryption failed for ACI : %u (%s).",
- circ->n_aci, 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. Giving up.");
- 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_package_raw_inbuf(conn);
- }
- }
- circuit_consider_stop_edge_reading(circ, edge_type, layer_hint);
- }
- 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.aci = circ->n_aci;
- 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) {
- return -1;
- }
- }
- } else if(edge_type == EDGE_EXIT) {
- cell.aci = circ->p_aci;
- 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) {
- return -1;
- }
- }
- }
- return 0;
- }
- void circuit_close(circuit_t *circ) {
- connection_t *conn;
- circuit_t *youngest=NULL;
- assert(circ);
- if(options.APPort) {
- youngest = circuit_get_newest_ap();
- log_fn(LOG_DEBUG,"youngest %d, circ %d.",youngest, (int)circ);
- }
- circuit_remove(circ);
- if(circ->n_conn)
- connection_send_destroy(circ->n_aci, circ->n_conn);
- for(conn=circ->n_streams; conn; conn=conn->next_stream) {
- connection_send_destroy(circ->n_aci, conn);
- }
- if(circ->p_conn)
- connection_send_destroy(circ->n_aci, circ->p_conn);
- for(conn=circ->p_streams; conn; conn=conn->next_stream) {
- connection_send_destroy(circ->p_aci, conn);
- }
- if(options.APPort && youngest == circ) {
-
- log_fn(LOG_INFO,"Youngest circuit dying. Launching a replacement.");
- circuit_launch_new(1);
- }
- circuit_free(circ);
- }
- void circuit_about_to_close_connection(connection_t *conn) {
-
-
- circuit_t *circ;
- connection_t *prevconn;
- if(!connection_speaks_cells(conn)) {
-
- circ = circuit_get_by_conn(conn);
- if(!circ)
- return;
- if(conn == circ->p_streams) {
- circ->p_streams = conn->next_stream;
- goto send_end;
- }
- if(conn == circ->n_streams) {
- circ->n_streams = conn->next_stream;
- goto send_end;
- }
- 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;
- goto send_end;
- }
- 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;
- goto send_end;
- }
- log_fn(LOG_ERR,"edge conn not in circuit's list?");
- assert(0);
- send_end:
- if(connection_edge_send_command(conn, circ, RELAY_COMMAND_END) < 0) {
- log_fn(LOG_DEBUG,"sending end failed. Closing.");
- circuit_close(circ);
- }
- return;
- }
-
- 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);
- }
- }
- void circuit_dump_by_conn(connection_t *conn) {
- circuit_t *circ;
- connection_t *tmpconn;
- for(circ=global_circuitlist;circ;circ = circ->next) {
- if(circ->p_conn == conn)
- printf("Conn %d has App-ward circuit: aci %d (other side %d), state %d (%s)\n",
- conn->poll_index, circ->p_aci, circ->n_aci, circ->state, circuit_state_to_string[circ->state]);
- for(tmpconn=circ->p_streams; tmpconn; tmpconn=tmpconn->next_stream) {
- if(tmpconn == conn) {
- printf("Conn %d has App-ward circuit: aci %d (other side %d), state %d (%s)\n",
- conn->poll_index, circ->p_aci, circ->n_aci, circ->state, circuit_state_to_string[circ->state]);
- }
- }
- if(circ->n_conn == conn)
- printf("Conn %d has Exit-ward circuit: aci %d (other side %d), state %d (%s)\n",
- conn->poll_index, circ->n_aci, circ->p_aci, circ->state, circuit_state_to_string[circ->state]);
- for(tmpconn=circ->n_streams; tmpconn; tmpconn=tmpconn->next_stream) {
- if(tmpconn == conn) {
- printf("Conn %d has Exit-ward circuit: aci %d (other side %d), state %d (%s)\n",
- conn->poll_index, circ->n_aci, circ->p_aci, circ->state, circuit_state_to_string[circ->state]);
- }
- }
- }
- }
- void circuit_expire_unused_circuits(void) {
- circuit_t *circ, *tmpcirc;
- circuit_t *youngest;
- youngest = circuit_get_newest_ap();
- circ = global_circuitlist;
- while(circ) {
- tmpcirc = circ;
- circ = circ->next;
- if(tmpcirc != youngest && !tmpcirc->p_conn && !tmpcirc->p_streams) {
- log_fn(LOG_DEBUG,"Closing n_aci %d",tmpcirc->n_aci);
- circuit_close(tmpcirc);
- }
- }
- }
- void circuit_launch_new(int failure_status) {
- static int failures=0;
- if(!options.APPort)
- return;
- if(failure_status == -1) {
- failures = 0;
- return;
- }
- failures += failure_status;
- retry_circuit:
- if(failures > 5) {
- log_fn(LOG_INFO,"Giving up, %d failures.", failures);
- return;
- }
- if(circuit_establish_circuit() < 0) {
- failures++;
- goto retry_circuit;
- }
- failures = 0;
- return;
- }
- 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->cpath = onion_generate_cpath(&firsthop);
- if(!circ->cpath) {
- log_fn(LOG_DEBUG,"Generating cpath 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_DEBUG,"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_DEBUG,"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_DEBUG,"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;
- 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_DEBUG,"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;
- assert(circ && circ->cpath);
- if(circ->cpath->state == CPATH_STATE_CLOSED) {
- log_fn(LOG_DEBUG,"First skin; sending create cell.");
- circ->n_aci = get_unique_aci_by_addr_port(circ->n_addr, circ->n_port, ACI_TYPE_BOTH);
- memset(&cell, 0, sizeof(cell_t));
- cell.command = CELL_CREATE;
- cell.aci = circ->n_aci;
- cell.length = DH_ONIONSKIN_LEN;
- if(onion_skin_create(circ->n_conn->pkey, &(circ->cpath->handshake_state), cell.payload) < 0) {
- log_fn(LOG_INFO,"onion_skin_create (first hop) failed.");
- return -1;
- }
- if(connection_write_cell_to_buf(&cell, circ->n_conn) < 0) {
- return -1;
- }
- 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.");
- for(hop=circ->cpath->next;
- hop != circ->cpath && hop->state == CPATH_STATE_OPEN;
- hop=hop->next) ;
- if(hop == circ->cpath) {
- circ->state = CIRCUIT_STATE_OPEN;
- log_fn(LOG_DEBUG,"circuit built!");
- return 0;
- }
- router = router_get_by_addr_port(hop->addr,hop->port);
- if(!router) {
- log_fn(LOG_INFO,"couldn't lookup router %d:%d",hop->addr,hop->port);
- return -1;
- }
- memset(&cell, 0, sizeof(cell_t));
- cell.command = CELL_RELAY;
- cell.aci = circ->n_aci;
- 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);
- *(uint32_t*)(cell.payload+RELAY_HEADER_SIZE+4) = htons(hop->port);
- if(onion_skin_create(router->pkey, &(hop->handshake_state), cell.payload+RELAY_HEADER_SIZE+6) < 0) {
- log_fn(LOG_INFO,"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_DEBUG,"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;
- aci_t aci_type;
- struct sockaddr_in me;
- cell_t newcell;
- if(circ->n_conn) {
- log_fn(LOG_WARNING,"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));
- if(learn_my_address(&me) < 0)
- return -1;
- n_conn = connection_twin_get_by_addr_port(circ->n_addr,circ->n_port);
- if(!n_conn || n_conn->type != CONN_TYPE_OR) {
-
-
- log_fn(LOG_DEBUG,"Next router not connected. Closing.");
-
- return -1;
- }
- 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);
- aci_type = decide_aci_type(ntohl(me.sin_addr.s_addr), ntohs(me.sin_port),
- circ->n_addr, circ->n_port);
- log_fn(LOG_DEBUG,"aci_type = %u.",aci_type);
- circ->n_aci = get_unique_aci_by_addr_port(circ->n_addr, circ->n_port, aci_type);
- if(!circ->n_aci) {
- log_fn(LOG_ERR,"failed to get unique aci.");
- return -1;
- }
- log_fn(LOG_DEBUG,"Chosen ACI %u.",circ->n_aci);
- memset(&newcell, 0, sizeof(cell_t));
- newcell.command = CELL_CREATE;
- newcell.aci = circ->n_aci;
- newcell.length = DH_ONIONSKIN_LEN;
- memcpy(newcell.payload, cell->payload+RELAY_HEADER_SIZE+6, DH_ONIONSKIN_LEN);
- if(connection_write_cell_to_buf(&newcell, circ->n_conn) < 0) {
- return -1;
- }
- 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_INFO,"got extended when circ already built? Weird.");
- return 0;
- }
- }
- assert(hop->state == CPATH_STATE_AWAITING_KEYS);
- if(onion_skin_client_handshake(hop->handshake_state, reply, keys, 32) < 0) {
- log_fn(LOG_ERR,"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.", (int)hop, *(int*)keys, *(int*)(keys+16));
- if (!(hop->f_crypto =
- crypto_create_init_cipher(DEFAULT_CIPHER,keys,iv,1))) {
- log(LOG_ERR,"Cipher initialization failed.");
- return -1;
- }
- if (!(hop->b_crypto =
- crypto_create_init_cipher(DEFAULT_CIPHER,keys+16,iv,0))) {
- log(LOG_ERR,"Cipher initialization failed.");
- return -1;
- }
- hop->state = CPATH_STATE_OPEN;
- log_fn(LOG_DEBUG,"Completed.");
- 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_DEBUG, "Marking stream %d for close.", *(int*)stream->stream_id);
- stream->marked_for_close = 1;
- }
- }
- layer->next = victim->next;
- circuit_free_cpath_node(victim);
- }
- log_fn(LOG_DEBUG, "Complete.");
- return 0;
- }
|