/* Copyright 2001,2002,2003 Roger Dingledine, Matej Pfajfar. */ /* See LICENSE for licensing information */ /* $Id$ */ #include "or.h" extern or_options_t options; /* command-line and config-file options */ static int count_acceptable_routers(routerinfo_t **rarray, int rarray_len); int decide_circ_id_type(char *local_nick, char *remote_nick) { int result; assert(remote_nick); if(!local_nick) return CIRC_ID_TYPE_LOWER; result = strcmp(local_nick, remote_nick); assert(result); if(result < 0) return CIRC_ID_TYPE_LOWER; return CIRC_ID_TYPE_HIGHER; } struct onion_queue_t { circuit_t *circ; struct onion_queue_t *next; }; /* global (within this file) variables used by the next few functions */ static struct onion_queue_t *ol_list=NULL; static struct onion_queue_t *ol_tail=NULL; static int ol_length=0; int onion_pending_add(circuit_t *circ) { struct onion_queue_t *tmp; tmp = tor_malloc(sizeof(struct onion_queue_t)); memset(tmp, 0, sizeof(struct onion_queue_t)); tmp->circ = circ; if(!ol_tail) { assert(!ol_list); assert(!ol_length); ol_list = tmp; ol_tail = tmp; ol_length++; return 0; } assert(ol_list); assert(!ol_tail->next); if(ol_length >= options.MaxOnionsPending) { log_fn(LOG_WARN,"Already have %d onions queued. Closing.", ol_length); free(tmp); return -1; } ol_length++; ol_tail->next = tmp; ol_tail = tmp; return 0; } circuit_t *onion_next_task(void) { circuit_t *circ; if(!ol_list) return NULL; /* no onions pending, we're done */ assert(ol_list->circ); if(!ol_list->circ->p_conn) { log_fn(LOG_INFO,"ol_list->circ->p_conn null, must have died?"); onion_pending_remove(ol_list->circ); return onion_next_task(); /* recurse: how about the next one? */ } assert(ol_length > 0); circ = ol_list->circ; onion_pending_remove(ol_list->circ); return circ; } /* go through ol_list, find the onion_queue_t element which points to * circ, remove and free that element. leave circ itself alone. */ void onion_pending_remove(circuit_t *circ) { struct onion_queue_t *tmpo, *victim; if(!ol_list) return; /* nothing here. */ /* first check to see if it's the first entry */ tmpo = ol_list; if(tmpo->circ == circ) { /* it's the first one. remove it from the list. */ ol_list = tmpo->next; if(!ol_list) ol_tail = NULL; ol_length--; victim = tmpo; } else { /* we need to hunt through the rest of the list */ for( ;tmpo->next && tmpo->next->circ != circ; tmpo=tmpo->next) ; if(!tmpo->next) { log_fn(LOG_DEBUG,"circ (p_circ_id %d) not in list, probably at cpuworker.",circ->p_circ_id); return; } /* now we know tmpo->next->circ == circ */ victim = tmpo->next; tmpo->next = victim->next; if(ol_tail == victim) ol_tail = tmpo; ol_length--; } /* now victim points to the element that needs to be removed */ free(victim); } /* given a response payload and keys, initialize, then send a created cell back */ int onionskin_answer(circuit_t *circ, unsigned char *payload, unsigned char *keys) { unsigned char iv[16]; cell_t cell; memset(iv, 0, 16); memset(&cell, 0, sizeof(cell_t)); cell.command = CELL_CREATED; cell.circ_id = circ->p_circ_id; cell.length = DH_KEY_LEN; circ->state = CIRCUIT_STATE_OPEN; log_fn(LOG_DEBUG,"Entering."); memcpy(cell.payload, payload, DH_KEY_LEN); log_fn(LOG_DEBUG,"init cipher forward %d, backward %d.", *(int*)keys, *(int*)(keys+16)); if (!(circ->n_crypto = crypto_create_init_cipher(CIRCUIT_CIPHER,keys,iv,0))) { log_fn(LOG_WARN,"Cipher initialization failed (n)."); return -1; } if (!(circ->p_crypto = crypto_create_init_cipher(CIRCUIT_CIPHER,keys+16,iv,1))) { log_fn(LOG_WARN,"Cipher initialization failed (p)."); return -1; } connection_or_write_cell_to_buf(&cell, circ->p_conn); log_fn(LOG_DEBUG,"Finished sending 'created' cell."); return 0; } char **parse_nickname_list(char *list, int *num) { char **out; char *start,*end; int i; while(isspace(*list)) list++; i=0, start = list; while(*start) { while(*start && !isspace(*start)) start++; i++; while(isspace(*start)) start++; } out = tor_malloc(i * sizeof(char *)); i=0, start=list; while(*start) { end=start; while(*end && !isspace(*end)) end++; out[i] = tor_malloc(MAX_NICKNAME_LEN); strncpy(out[i],start,end-start); out[i][end-start] = 0; /* null terminate it */ i++; while(isspace(*end)) end++; start = end; } *num = i; return out; } static int new_route_len(double cw, routerinfo_t **rarray, int rarray_len) { int num_acceptable_routers; int routelen; assert((cw >= 0) && (cw < 1) && rarray); /* valid parameters */ for(routelen=3; ; routelen++) { /* 3, increment until coinflip says we're done */ if (crypto_pseudo_rand_int(255) >= cw*255) /* don't extend */ break; } log_fn(LOG_DEBUG,"Chosen route length %d (%d routers available).",routelen, rarray_len); num_acceptable_routers = count_acceptable_routers(rarray, rarray_len); if(num_acceptable_routers < 2) { log_fn(LOG_INFO,"Not enough acceptable routers. Failing."); return -1; } if(num_acceptable_routers < routelen) { log_fn(LOG_INFO,"Not enough routers: cutting routelen from %d to %d.",routelen, num_acceptable_routers); routelen = num_acceptable_routers; } if (routelen < 1) { log_fn(LOG_WARN,"Didn't find any acceptable routers. Failing."); return -1; } return routelen; } int onion_new_route_len(void) { directory_t *dir; router_get_directory(&dir); return new_route_len(options.PathlenCoinWeight, dir->routers, dir->n_routers); } static int count_acceptable_routers(routerinfo_t **rarray, int rarray_len) { int i, j; int num=0; connection_t *conn; for(i=0;iaddr, rarray[i]->or_port); if(!conn || conn->type != CONN_TYPE_OR || conn->state != OR_CONN_STATE_OPEN) { log_fn(LOG_DEBUG,"Nope, %d is not connected.",i); goto next_i_loop; } } for(j=0;jonion_pkey, rarray[j]->onion_pkey)) { /* these guys are twins. so we've already counted him. */ log_fn(LOG_DEBUG,"Nope, %d is a twin of %d.",i,j); goto next_i_loop; } } num++; log_fn(LOG_DEBUG,"I like %d. num_acceptable_routers now %d.",i, num); next_i_loop: ; /* our compiler may need an explicit statement after the label */ } return num; } int onion_extend_cpath(crypt_path_t **head_ptr, int path_len, routerinfo_t **router_out) { int cur_len; crypt_path_t *cpath, *hop; routerinfo_t **rarray, *r; unsigned int choice; int rarray_len; int i; directory_t *dir; char **nicknames; int num_nicknames; assert(head_ptr); assert(router_out); router_get_directory(&dir); rarray = dir->routers; rarray_len = dir->n_routers; if (!*head_ptr) { cur_len = 0; } else { cur_len = 1; for (cpath = *head_ptr; cpath->next != *head_ptr; cpath = cpath->next) { ++cur_len; } } if (cur_len >= path_len) { return 1; } log_fn(LOG_DEBUG, "Path is %d long; we want %d", cur_len, path_len); again: if(cur_len == 0) { /* picking entry node */ } choice = crypto_pseudo_rand_int(rarray_len); log_fn(LOG_DEBUG,"Contemplating router %s for hop %d", rarray[choice]->nickname, cur_len); for (i = 0, cpath = *head_ptr; i < cur_len; ++i, cpath=cpath->next) { r = router_get_by_addr_port(cpath->addr, cpath->port); if ((r && !crypto_pk_cmp_keys(r->onion_pkey, rarray[choice]->onion_pkey)) || (cpath->addr == rarray[choice]->addr && cpath->port == rarray[choice]->or_port) || (options.OnionRouter && !(connection_twin_get_by_addr_port(rarray[choice]->addr, rarray[choice]->or_port)))) { log_fn(LOG_DEBUG, "Picked an already-selected router for hop %d; retrying.", cur_len); goto again; } } /* Okay, so we haven't used 'choice' before. */ hop = (crypt_path_t *)tor_malloc(sizeof(crypt_path_t)); memset(hop, 0, sizeof(crypt_path_t)); /* link hop into the cpath, at the end. */ if (*head_ptr) { hop->next = (*head_ptr); hop->prev = (*head_ptr)->prev; (*head_ptr)->prev->next = hop; (*head_ptr)->prev = hop; } else { *head_ptr = hop; hop->prev = hop->next = hop; } hop->state = CPATH_STATE_CLOSED; hop->port = rarray[choice]->or_port; hop->addr = rarray[choice]->addr; hop->package_window = CIRCWINDOW_START; hop->deliver_window = CIRCWINDOW_START; log_fn(LOG_DEBUG, "Extended circuit path with %s for hop %d", rarray[choice]->nickname, cur_len); *router_out = rarray[choice]; return 0; } /*----------------------------------------------------------------------*/ /* Given a router's public key, generates a 144-byte encrypted DH pubkey, * and stores it into onion_skin out. Stores the DH private key into * handshake_state_out for later completion of the handshake. * * The encrypted pubkey is formed as follows: * 16 bytes of symmetric key * 128 bytes of g^x for DH. * The first 128 bytes are RSA-encrypted with the server's public key, * and the last 16 are encrypted with the symmetric key. */ int onion_skin_create(crypto_pk_env_t *dest_router_key, crypto_dh_env_t **handshake_state_out, char *onion_skin_out) /* Must be DH_ONIONSKIN_LEN bytes long */ { char iv[16]; char *pubkey = NULL; crypto_dh_env_t *dh = NULL; crypto_cipher_env_t *cipher = NULL; int dhbytes, pkbytes; *handshake_state_out = NULL; memset(onion_skin_out, 0, DH_ONIONSKIN_LEN); memset(iv, 0, 16); if (!(dh = crypto_dh_new())) goto err; dhbytes = crypto_dh_get_bytes(dh); pkbytes = crypto_pk_keysize(dest_router_key); assert(dhbytes+16 == DH_ONIONSKIN_LEN); pubkey = (char *)tor_malloc(dhbytes+16); if (crypto_rand(16, pubkey)) goto err; /* XXXX You can't just run around RSA-encrypting any bitstream: if it's * greater than the RSA key, then OpenSSL will happily encrypt, * and later decrypt to the wrong value. So we set the first bit * of 'pubkey' to 0. This means that our symmetric key is really only * 127 bits long, but since it shouldn't be necessary to encrypt * DH public keys values in the first place, we should be fine. */ pubkey[0] &= 0x7f; if (crypto_dh_get_public(dh, pubkey+16, dhbytes)) goto err; #ifdef DEBUG_ONION_SKINS #define PA(a,n) \ { int _i; for (_i = 0; _i