12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274 |
- const char connection_edge_c_id[] = "$Id$";
- #include "or.h"
- #include "tree.h"
- static addr_policy_t *socks_policy = NULL;
- static smartlist_t *redirect_exit_list = NULL;
- static int connection_ap_handshake_process_socks(connection_t *conn);
- int connection_edge_reached_eof(connection_t *conn) {
- #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);
- connection_mark_for_close(conn);
- } else {
- connection_edge_send_command(conn, circuit_get_by_conn(conn), RELAY_COMMAND_END,
- NULL, 0, conn->cpath_layer);
- }
- return 0;
- #else
- if (buf_datalen(conn->inbuf) && connection_state_is_open(conn)) {
-
- return 0;
- }
- log_fn(LOG_INFO,"conn (fd %d) reached eof (stream size %d). Closing.", conn->s, (int)conn->stream_size);
- if (!conn->marked_for_close) {
-
- connection_edge_end(conn, END_STREAM_REASON_DONE, conn->cpath_layer);
- connection_mark_for_close(conn);
- conn->hold_open_until_flushed = 1;
- }
- return 0;
- #endif
- }
- int connection_edge_process_inbuf(connection_t *conn, int package_partial) {
- tor_assert(conn);
- tor_assert(conn->type == CONN_TYPE_AP || conn->type == CONN_TYPE_EXIT);
- switch (conn->state) {
- case AP_CONN_STATE_SOCKS_WAIT:
- if (connection_ap_handshake_process_socks(conn) < 0) {
- conn->has_sent_end = 1;
- connection_mark_for_close(conn);
- conn->hold_open_until_flushed = 1;
- return -1;
- }
- return 0;
- case AP_CONN_STATE_OPEN:
- case EXIT_CONN_STATE_OPEN:
- if (connection_edge_package_raw_inbuf(conn, package_partial) < 0) {
- connection_edge_end(conn, END_STREAM_REASON_MISC, conn->cpath_layer);
- connection_mark_for_close(conn);
- return -1;
- }
- return 0;
- case EXIT_CONN_STATE_CONNECTING:
- case AP_CONN_STATE_RENDDESC_WAIT:
- case AP_CONN_STATE_CIRCUIT_WAIT:
- case AP_CONN_STATE_CONNECT_WAIT:
- case AP_CONN_STATE_RESOLVE_WAIT:
- log_fn(LOG_INFO,"data from edge while in '%s' state. Leaving it on buffer.",
- conn_state_to_string[conn->type][conn->state]);
- return 0;
- }
- log_fn(LOG_WARN,"Bug: Got unexpected state %d. Closing.",conn->state);
- connection_edge_end(conn, END_STREAM_REASON_MISC, conn->cpath_layer);
- connection_mark_for_close(conn);
- return -1;
- }
- int connection_edge_destroy(uint16_t circ_id, connection_t *conn) {
- tor_assert(conn->type == CONN_TYPE_AP || conn->type == CONN_TYPE_EXIT);
- if (conn->marked_for_close)
- return 0;
- log_fn(LOG_INFO,"CircID %d: At an edge. Marking connection for close.",
- circ_id);
- conn->has_sent_end = 1;
- connection_mark_for_close(conn);
- conn->hold_open_until_flushed = 1;
- return 0;
- }
- int
- connection_edge_end(connection_t *conn, char reason, crypt_path_t *cpath_layer)
- {
- char payload[5];
- size_t payload_len=1;
- circuit_t *circ;
- if (conn->has_sent_end) {
- log_fn(LOG_WARN,"Bug: Calling connection_edge_end on an already ended stream?");
- return -1;
- }
- payload[0] = reason;
- if (reason == END_STREAM_REASON_EXITPOLICY) {
-
- set_uint32(payload+1, htonl(conn->addr));
- payload_len += 4;
- }
- circ = circuit_get_by_conn(conn);
- if (circ && !circ->marked_for_close) {
- 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);
- } else {
- log_fn(LOG_DEBUG,"Marking conn (fd %d); no circ to send end.",conn->s);
- }
- conn->has_sent_end = 1;
- return 0;
- }
- int connection_edge_finished_flushing(connection_t *conn) {
- tor_assert(conn);
- tor_assert(conn->type == CONN_TYPE_AP || conn->type == CONN_TYPE_EXIT);
- switch (conn->state) {
- 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:
- case AP_CONN_STATE_RENDDESC_WAIT:
- case AP_CONN_STATE_CIRCUIT_WAIT:
- case AP_CONN_STATE_CONNECT_WAIT:
- connection_stop_writing(conn);
- return 0;
- default:
- log_fn(LOG_WARN,"BUG: called in unexpected state %d.", conn->state);
- return -1;
- }
- return 0;
- }
- int connection_edge_finished_connecting(connection_t *conn)
- {
- unsigned char connected_payload[4];
- tor_assert(conn);
- tor_assert(conn->type == CONN_TYPE_EXIT);
- tor_assert(conn->state == EXIT_CONN_STATE_CONNECTING);
- log_fn(LOG_INFO,"Exit connection to %s:%u established.",
- conn->address,conn->port);
- conn->state = EXIT_CONN_STATE_OPEN;
- connection_watch_events(conn, EV_READ);
- if (connection_wants_to_flush(conn))
- connection_start_writing(conn);
-
- if (connection_edge_is_rendezvous_stream(conn)) {
- if (connection_edge_send_command(conn, circuit_get_by_conn(conn),
- RELAY_COMMAND_CONNECTED, NULL, 0, conn->cpath_layer) < 0)
- return 0;
- } else {
- *(uint32_t*)connected_payload = htonl(conn->addr);
- if (connection_edge_send_command(conn, circuit_get_by_conn(conn),
- RELAY_COMMAND_CONNECTED, connected_payload, 4, conn->cpath_layer) < 0)
- return 0;
- }
- tor_assert(conn->package_window > 0);
-
- return connection_edge_process_inbuf(conn, 1);
- }
- void connection_ap_expire_beginning(void) {
- connection_t **carray;
- connection_t *conn;
- circuit_t *circ;
- int n, i;
- time_t now = time(NULL);
- or_options_t *options = get_options();
- get_connection_array(&carray, &n);
- for (i = 0; i < n; ++i) {
- conn = carray[i];
- if (conn->type != CONN_TYPE_AP)
- continue;
- if (conn->state != AP_CONN_STATE_RESOLVE_WAIT &&
- conn->state != AP_CONN_STATE_CONNECT_WAIT)
- continue;
- if (now - conn->timestamp_lastread < 15)
- continue;
- circ = circuit_get_by_conn(conn);
- if (!circ) {
- log_fn(LOG_INFO,"Conn is waiting (address %s), but lost its circ.",
- conn->socks_request->address);
- connection_mark_for_close(conn);
- continue;
- }
- if (circ->purpose == CIRCUIT_PURPOSE_C_REND_JOINED) {
- if (now - conn->timestamp_lastread > 45) {
- log_fn(LOG_NOTICE,"Rend stream is %d seconds late. Giving up on address '%s'.",
- (int)(now - conn->timestamp_lastread), conn->socks_request->address);
- connection_edge_end(conn, END_STREAM_REASON_TIMEOUT, conn->cpath_layer);
- connection_mark_for_close(conn);
- }
- continue;
- }
- tor_assert(circ->purpose == CIRCUIT_PURPOSE_C_GENERAL);
- log_fn(LOG_NOTICE,"Stream is %d seconds late on address '%s'. Retrying.",
- (int)(now - conn->timestamp_lastread), conn->socks_request->address);
- circuit_log_path(LOG_NOTICE, circ);
-
- connection_edge_end(conn, END_STREAM_REASON_TIMEOUT, conn->cpath_layer);
-
- conn->has_sent_end = 0;
-
- conn->state = AP_CONN_STATE_CIRCUIT_WAIT;
- circuit_detach_stream(circ, conn);
-
- tor_assert(circ->timestamp_dirty);
- circ->timestamp_dirty -= options->MaxCircuitDirtiness;
-
- conn->timestamp_lastread += 15;
-
- if (connection_ap_handshake_attach_circuit(conn)<0) {
-
-
- conn->has_sent_end = 1;
- connection_mark_for_close(conn);
- }
- }
- }
- void connection_ap_attach_pending(void)
- {
- connection_t **carray;
- connection_t *conn;
- int n, i;
- get_connection_array(&carray, &n);
- for (i = 0; i < n; ++i) {
- conn = carray[i];
- if (conn->marked_for_close ||
- conn->type != CONN_TYPE_AP ||
- conn->state != AP_CONN_STATE_CIRCUIT_WAIT)
- continue;
- if (connection_ap_handshake_attach_circuit(conn) < 0) {
-
-
- conn->has_sent_end = 1;
- connection_mark_for_close(conn);
- }
- }
- }
- static int connection_ap_handshake_process_socks(connection_t *conn) {
- socks_request_t *socks;
- int sockshere;
- hostname_type_t addresstype;
- tor_assert(conn);
- tor_assert(conn->type == CONN_TYPE_AP);
- tor_assert(conn->state == AP_CONN_STATE_SOCKS_WAIT);
- tor_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);
- socks->replylen = 0;
- } else if (sockshere == -1) {
- log_fn(LOG_WARN,"Fetching socks handshake failed. Closing.");
- connection_ap_handshake_socks_reply(conn, NULL, 0, -1);
- } else {
- log_fn(LOG_DEBUG,"socks handshake not all here yet.");
- }
- if (sockshere == -1)
- socks->has_finished = 1;
- return sockshere;
- }
-
- addresstype = parse_extended_hostname(socks->address);
- if (addresstype == EXIT_HOSTNAME) {
-
- char *s = strrchr(socks->address,'.');
- if (!s || s[1] == '\0') {
- log_fn(LOG_WARN,"Malformed address '%s.exit'. Refusing.", socks->address);
- return -1;
- }
- conn->chosen_exit_name = tor_strdup(s+1);
- *s = 0;
- }
- if (addresstype != ONION_HOSTNAME) {
-
- if (socks->command == SOCKS_COMMAND_RESOLVE) {
- uint32_t answer = 0;
- struct in_addr in;
-
- if (strlen(socks->address) > RELAY_PAYLOAD_SIZE) {
- log_fn(LOG_WARN,"Address to be resolved is too large. Failing.");
- connection_ap_handshake_socks_resolved(conn,RESOLVED_TYPE_ERROR,0,NULL);
- return -1;
- }
- if (tor_inet_aton(socks->address, &in))
- answer = in.s_addr;
- if (!answer && !conn->chosen_exit_name)
- answer = htonl(client_dns_lookup_entry(socks->address));
- if (answer) {
- connection_ap_handshake_socks_resolved(conn,RESOLVED_TYPE_IPV4,4,
- (char*)&answer);
- conn->has_sent_end = 1;
- connection_mark_for_close(conn);
- conn->hold_open_until_flushed = 1;
- return 0;
- }
- rep_hist_note_used_resolve(time(NULL));
- } else {
- if (socks->port == 0) {
- log_fn(LOG_NOTICE,"Application asked to connect to port 0. Refusing.");
- return -1;
- }
- rep_hist_note_used_port(socks->port, time(NULL));
- }
- conn->state = AP_CONN_STATE_CIRCUIT_WAIT;
- return connection_ap_handshake_attach_circuit(conn);
- } else {
-
- rend_cache_entry_t *entry;
- int r;
- if (socks->command == SOCKS_COMMAND_RESOLVE) {
-
- log_fn(LOG_WARN,"Resolve requests to hidden services not allowed. Failing.");
- connection_ap_handshake_socks_resolved(conn,RESOLVED_TYPE_ERROR,0,NULL);
- return -1;
- }
- strlcpy(conn->rend_query, socks->address, sizeof(conn->rend_query));
- log_fn(LOG_INFO,"Got a hidden service request for ID '%s'", conn->rend_query);
-
- r = rend_cache_lookup_entry(conn->rend_query, &entry);
- if (r<0) {
- log_fn(LOG_WARN,"Invalid service descriptor %s", conn->rend_query);
- return -1;
- }
- if (r==0) {
- conn->state = AP_CONN_STATE_RENDDESC_WAIT;
- log_fn(LOG_INFO, "Unknown descriptor %s. Fetching.", conn->rend_query);
- rend_client_refetch_renddesc(conn->rend_query);
- return 0;
- }
- if (r>0) {
- #define NUM_SECONDS_BEFORE_REFETCH (60*15)
- if (time(NULL) - entry->received < NUM_SECONDS_BEFORE_REFETCH) {
- conn->state = AP_CONN_STATE_CIRCUIT_WAIT;
- log_fn(LOG_INFO, "Descriptor is here and fresh enough. Great.");
- return connection_ap_handshake_attach_circuit(conn);
- } else {
- conn->state = AP_CONN_STATE_RENDDESC_WAIT;
- log_fn(LOG_INFO, "Stale descriptor %s. Refetching.", conn->rend_query);
- rend_client_refetch_renddesc(conn->rend_query);
- return 0;
- }
- }
- }
- return 0;
- }
- static uint16_t get_unique_stream_id_by_circ(circuit_t *circ) {
- connection_t *tmpconn;
- uint16_t test_stream_id;
- uint32_t attempts=0;
- again:
- test_stream_id = circ->next_stream_id++;
- if (++attempts > 1<<16) {
-
- log_fn(LOG_WARN,"No unused stream IDs. Failing.");
- return 0;
- }
- if (test_stream_id == 0)
- goto again;
- for (tmpconn = circ->p_streams; tmpconn; tmpconn=tmpconn->next_stream)
- if (tmpconn->stream_id == test_stream_id)
- goto again;
- return test_stream_id;
- }
- int 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;
- tor_assert(ap_conn->type == CONN_TYPE_AP);
- tor_assert(ap_conn->state == AP_CONN_STATE_CIRCUIT_WAIT);
- tor_assert(ap_conn->socks_request);
- ap_conn->stream_id = get_unique_stream_id_by_circ(circ);
- if (ap_conn->stream_id==0) {
-
- ap_conn->has_sent_end = 1;
- connection_mark_for_close(ap_conn);
- circuit_mark_for_close(circ);
- return -1;
- }
- if (circ->purpose == CIRCUIT_PURPOSE_C_GENERAL) {
- in.s_addr = htonl(client_dns_lookup_entry(ap_conn->socks_request->address));
- string_addr = in.s_addr ? inet_ntoa(in) : NULL;
- tor_snprintf(payload,RELAY_PAYLOAD_SIZE,
- "%s:%d",
- string_addr ? string_addr : ap_conn->socks_request->address,
- ap_conn->socks_request->port);
- } else {
- tor_snprintf(payload,RELAY_PAYLOAD_SIZE,
- ":%d", ap_conn->socks_request->port);
- }
- payload_len = strlen(payload)+1;
- log_fn(LOG_DEBUG,"Sending relay cell to begin stream %d.",ap_conn->stream_id);
- if (connection_edge_send_command(ap_conn, circ, RELAY_COMMAND_BEGIN,
- payload, payload_len, ap_conn->cpath_layer) < 0)
- return -1;
- ap_conn->package_window = STREAMWINDOW_START;
- ap_conn->deliver_window = STREAMWINDOW_START;
- ap_conn->state = AP_CONN_STATE_CONNECT_WAIT;
- log_fn(LOG_INFO,"Address/port sent, ap socket %d, n_circ_id %d",ap_conn->s,circ->n_circ_id);
- control_event_stream_status(ap_conn, STREAM_EVENT_SENT_CONNECT);
- return 0;
- }
- int connection_ap_handshake_send_resolve(connection_t *ap_conn, circuit_t *circ)
- {
- int payload_len;
- const char *string_addr;
- tor_assert(ap_conn->type == CONN_TYPE_AP);
- tor_assert(ap_conn->state == AP_CONN_STATE_CIRCUIT_WAIT);
- tor_assert(ap_conn->socks_request);
- tor_assert(ap_conn->socks_request->command == SOCKS_COMMAND_RESOLVE);
- tor_assert(circ->purpose == CIRCUIT_PURPOSE_C_GENERAL);
- ap_conn->stream_id = get_unique_stream_id_by_circ(circ);
- if (ap_conn->stream_id==0) {
-
- ap_conn->has_sent_end = 1;
- connection_mark_for_close(ap_conn);
- circuit_mark_for_close(circ);
- return -1;
- }
- string_addr = ap_conn->socks_request->address;
- payload_len = strlen(string_addr);
- tor_assert(strlen(string_addr) <= RELAY_PAYLOAD_SIZE);
- log_fn(LOG_DEBUG,"Sending relay cell to begin stream %d.",ap_conn->stream_id);
- if (connection_edge_send_command(ap_conn, circ, RELAY_COMMAND_RESOLVE,
- string_addr, payload_len, ap_conn->cpath_layer) < 0)
- return -1;
- ap_conn->state = AP_CONN_STATE_RESOLVE_WAIT;
- log_fn(LOG_INFO,"Address sent for resolve, ap socket %d, n_circ_id %d",ap_conn->s,circ->n_circ_id);
- control_event_stream_status(ap_conn, STREAM_EVENT_SENT_RESOLVE);
- return 0;
- }
- int connection_ap_make_bridge(char *address, uint16_t port) {
- int fd[2];
- connection_t *conn;
- log_fn(LOG_INFO,"Making AP bridge to %s:%d ...",address,port);
- if (tor_socketpair(AF_UNIX, SOCK_STREAM, 0, fd) < 0) {
- log(LOG_WARN,"Couldn't construct socketpair (%s). Network down? Delaying.",
- tor_socket_strerror(tor_socket_errno(-1)));
- return -1;
- }
- set_socket_nonblocking(fd[0]);
- set_socket_nonblocking(fd[1]);
- conn = connection_new(CONN_TYPE_AP);
- conn->s = fd[0];
-
-
- conn->socks_request->socks_version = 0;
- conn->socks_request->has_finished = 0;
- strlcpy(conn->socks_request->address, address,
- sizeof(conn->socks_request->address));
- conn->socks_request->port = port;
- conn->socks_request->command = SOCKS_COMMAND_CONNECT;
- conn->address = tor_strdup("(local bridge)");
- conn->addr = 0;
- conn->port = 0;
- if (connection_add(conn) < 0) {
- connection_free(conn);
- tor_close_socket(fd[1]);
- return -1;
- }
- conn->state = AP_CONN_STATE_CIRCUIT_WAIT;
- connection_start_reading(conn);
-
- if (connection_ap_handshake_attach_circuit(conn) < 0) {
- conn->has_sent_end = 1;
- connection_mark_for_close(conn);
- tor_close_socket(fd[1]);
- return -1;
- }
- log_fn(LOG_INFO,"... AP bridge created and connected.");
- return fd[1];
- }
- void connection_ap_handshake_socks_resolved(connection_t *conn,
- int answer_type,
- size_t answer_len,
- const char *answer)
- {
- char buf[256];
- size_t replylen;
- if (answer_type == RESOLVED_TYPE_IPV4) {
- uint32_t a = get_uint32(answer);
- if (a)
- client_dns_set_entry(conn->socks_request->address, ntohl(a));
- }
- if (conn->socks_request->socks_version == 4) {
- buf[0] = 0x00;
- if (answer_type == RESOLVED_TYPE_IPV4 && answer_len == 4) {
- buf[1] = 90;
- set_uint16(buf+2, 0);
- memcpy(buf+4, answer, 4);
- replylen = SOCKS4_NETWORK_LEN;
- } else {
- buf[1] = 91;
- memset(buf+2, 0, 6);
- replylen = SOCKS4_NETWORK_LEN;
- }
- } else {
-
- buf[0] = 0x05;
- if (answer_type == RESOLVED_TYPE_IPV4 && answer_len == 4) {
- buf[1] = 0;
- buf[2] = 0;
- buf[3] = 0x01;
- memcpy(buf+4, answer, 4);
- set_uint16(buf+8, 0);
- replylen = 10;
- } else if (answer_type == RESOLVED_TYPE_IPV6 && answer_len == 16) {
- buf[1] = 0;
- buf[2] = 0;
- buf[3] = 0x04;
- memcpy(buf+4, answer, 16);
- set_uint16(buf+20, 0);
- replylen = 22;
- } else {
- buf[1] = 0x04;
- memset(buf+2, 0, 8);
- replylen = 10;
- }
- }
- connection_ap_handshake_socks_reply(conn, buf, replylen,
- (answer_type == RESOLVED_TYPE_IPV4 ||
- answer_type == RESOLVED_TYPE_IPV6) ? 1 : -1);
- conn->socks_request->has_finished = 1;
- }
- void connection_ap_handshake_socks_reply(connection_t *conn, char *reply,
- size_t replylen, int status) {
- char buf[256];
- if (status)
- control_event_stream_status(conn,
- status==1 ? STREAM_EVENT_SUCCEEDED : STREAM_EVENT_FAILED);
- if (replylen) {
- connection_write_to_buf(reply, replylen, conn);
- return;
- }
- tor_assert(conn->socks_request);
- tor_assert(status == 1 || status == -1);
- if (conn->socks_request->socks_version == 4) {
- memset(buf,0,SOCKS4_NETWORK_LEN);
- #define SOCKS4_GRANTED 90
- #define SOCKS4_REJECT 91
- buf[1] = (status==1 ? SOCKS4_GRANTED : SOCKS4_REJECT);
-
- connection_write_to_buf(buf, SOCKS4_NETWORK_LEN, conn);
- }
- if (conn->socks_request->socks_version == 5) {
- buf[0] = 5;
- #define SOCKS5_SUCCESS 0
- #define SOCKS5_GENERIC_ERROR 1
- buf[1] = status==1 ? SOCKS5_SUCCESS : SOCKS5_GENERIC_ERROR;
- buf[2] = 0;
- buf[3] = 1;
- memset(buf+4,0,6);
- connection_write_to_buf(buf,10,conn);
- }
-
- return;
- }
- int connection_exit_begin_conn(cell_t *cell, circuit_t *circ) {
- connection_t *n_stream;
- relay_header_t rh;
- char *address=NULL;
- uint16_t port;
- assert_circuit_ok(circ);
- relay_header_unpack(&rh, cell->payload);
-
- if (!memchr(cell->payload+RELAY_HEADER_SIZE, 0, rh.length)) {
- log_fn(LOG_WARN,"relay begin cell has no \\0. Dropping.");
- return 0;
- }
- if (parse_addr_port(cell->payload+RELAY_HEADER_SIZE,&address,NULL,&port)<0) {
- log_fn(LOG_WARN,"Unable to parse addr:port in relay begin cell. Dropping.");
- return 0;
- }
- if (port==0) {
- log_fn(LOG_WARN,"Missing port in relay begin cell. Dropping.");
- tor_free(address);
- return 0;
- }
- log_fn(LOG_DEBUG,"Creating new exit connection.");
- n_stream = connection_new(CONN_TYPE_EXIT);
- n_stream->purpose = EXIT_PURPOSE_CONNECT;
- n_stream->stream_id = rh.stream_id;
- n_stream->port = port;
-
- n_stream->package_window = STREAMWINDOW_START;
- n_stream->deliver_window = STREAMWINDOW_START;
- if (circ->purpose == CIRCUIT_PURPOSE_S_REND_JOINED) {
- log_fn(LOG_DEBUG,"begin is for rendezvous. configuring stream.");
- n_stream->address = tor_strdup("(rendezvous)");
- n_stream->state = EXIT_CONN_STATE_CONNECTING;
- strlcpy(n_stream->rend_query, circ->rend_query,
- sizeof(n_stream->rend_query));
- tor_assert(connection_edge_is_rendezvous_stream(n_stream));
- assert_circuit_ok(circ);
- if (rend_service_set_connection_addr_port(n_stream, circ) < 0) {
- log_fn(LOG_INFO,"Didn't find rendezvous service (port %d)",n_stream->port);
- connection_edge_end(n_stream, END_STREAM_REASON_EXITPOLICY, n_stream->cpath_layer);
- connection_free(n_stream);
- circuit_mark_for_close(circ);
- tor_free(address);
- return 0;
- }
- assert_circuit_ok(circ);
- log_fn(LOG_DEBUG,"Finished assigning addr/port");
- n_stream->cpath_layer = circ->cpath->prev;
-
- n_stream->next_stream = circ->n_streams;
- circ->n_streams = n_stream;
- assert_circuit_ok(circ);
- connection_exit_connect(n_stream);
- tor_free(address);
- return 0;
- }
- n_stream->address = address;
- n_stream->state = EXIT_CONN_STATE_RESOLVEFAILED;
-
- if (we_are_hibernating()) {
- connection_edge_end(n_stream, END_STREAM_REASON_EXITPOLICY, n_stream->cpath_layer);
- connection_free(n_stream);
- return 0;
- }
-
- switch (dns_resolve(n_stream)) {
- case 1:
-
- n_stream->next_stream = circ->n_streams;
- circ->n_streams = n_stream;
- assert_circuit_ok(circ);
- connection_exit_connect(n_stream);
- return 0;
- case -1:
- log_fn(LOG_INFO,"Resolve failed (%s).", n_stream->address);
- if (!n_stream->marked_for_close) {
- connection_edge_end(n_stream, END_STREAM_REASON_RESOLVEFAILED,
- n_stream->cpath_layer);
- }
- connection_free(n_stream);
- break;
- case 0:
-
- n_stream->next_stream = circ->resolving_streams;
- circ->resolving_streams = n_stream;
- assert_circuit_ok(circ);
- ;
- }
- return 0;
- }
- int connection_exit_begin_resolve(cell_t *cell, circuit_t *circ) {
- connection_t *dummy_conn;
- relay_header_t rh;
- assert_circuit_ok(circ);
- relay_header_unpack(&rh, cell->payload);
-
- dummy_conn = connection_new(CONN_TYPE_EXIT);
- dummy_conn->stream_id = rh.stream_id;
- dummy_conn->address = tor_strndup(cell->payload+RELAY_HEADER_SIZE,
- rh.length);
- dummy_conn->port = 0;
- dummy_conn->state = EXIT_CONN_STATE_RESOLVEFAILED;
- dummy_conn->purpose = EXIT_PURPOSE_RESOLVE;
- dummy_conn->next_stream = circ->resolving_streams;
- circ->resolving_streams = dummy_conn;
-
- switch (dns_resolve(dummy_conn)) {
- case 1:
- case -1:
- circuit_detach_stream(circuit_get_by_conn(dummy_conn), dummy_conn);
- connection_free(dummy_conn);
- return 0;
- case 0:
- assert_circuit_ok(circ);
- ;
- }
- return 0;
- }
- void
- connection_exit_connect(connection_t *conn) {
- unsigned char connected_payload[4];
- uint32_t addr;
- uint16_t port;
- if (!connection_edge_is_rendezvous_stream(conn) &&
- router_compare_to_my_exit_policy(conn) == ADDR_POLICY_REJECTED) {
- log_fn(LOG_INFO,"%s:%d failed exit policy. Closing.", conn->address, conn->port);
- connection_edge_end(conn, END_STREAM_REASON_EXITPOLICY, conn->cpath_layer);
- circuit_detach_stream(circuit_get_by_conn(conn), conn);
- connection_free(conn);
- return;
- }
- addr = conn->addr;
- port = conn->port;
- if (redirect_exit_list) {
- SMARTLIST_FOREACH(redirect_exit_list, exit_redirect_t *, r,
- {
- if ((addr&r->mask)==(r->addr&r->mask) &&
- (r->port_min <= port) && (port <= r->port_max)) {
- struct in_addr in;
- if (r->is_redirect) {
- addr = r->addr_dest;
- port = r->port_dest;
- in.s_addr = htonl(addr);
- log_fn(LOG_DEBUG, "Redirecting connection from %s:%d to %s:%d",
- conn->address, conn->port, inet_ntoa(in), port);
- }
- break;
- }
- });
- }
- log_fn(LOG_DEBUG,"about to try connecting");
- switch (connection_connect(conn, conn->address, addr, port)) {
- case -1:
- connection_edge_end(conn, END_STREAM_REASON_CONNECTFAILED, conn->cpath_layer);
- circuit_detach_stream(circuit_get_by_conn(conn), conn);
- connection_free(conn);
- return;
- case 0:
- conn->state = EXIT_CONN_STATE_CONNECTING;
- connection_watch_events(conn, EV_WRITE | EV_READ);
-
- return;
-
- }
- conn->state = EXIT_CONN_STATE_OPEN;
- if (connection_wants_to_flush(conn)) {
- log_fn(LOG_WARN,"Bug: newly connected conn had data waiting!");
- }
- connection_watch_events(conn, EV_READ);
-
- if (connection_edge_is_rendezvous_stream(conn)) {
-
- connection_edge_send_command(conn, circuit_get_by_conn(conn), RELAY_COMMAND_CONNECTED,
- NULL, 0, conn->cpath_layer);
- } else {
-
- *(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_edge_is_rendezvous_stream(connection_t *conn) {
- tor_assert(conn);
- if (*conn->rend_query)
- return 1;
- return 0;
- }
- int connection_ap_can_use_exit(connection_t *conn, routerinfo_t *exit)
- {
- uint32_t addr;
- tor_assert(conn);
- tor_assert(conn->type == CONN_TYPE_AP);
- tor_assert(conn->socks_request);
- tor_assert(exit);
- log_fn(LOG_DEBUG,"considering nickname %s, for address %s / port %d:",
- exit->nickname, conn->socks_request->address,
- conn->socks_request->port);
-
- if (conn->chosen_exit_name) {
- if (router_get_by_nickname(conn->chosen_exit_name) != exit) {
-
- log_fn(LOG_DEBUG,"Requested node '%s', considering node '%s'. No.",
- conn->chosen_exit_name, exit->nickname);
- return 0;
- }
- }
- if (conn->socks_request->command != SOCKS_COMMAND_RESOLVE) {
- addr = client_dns_lookup_entry(conn->socks_request->address);
- if (router_compare_addr_to_addr_policy(addr, conn->socks_request->port,
- exit->exit_policy) == ADDR_POLICY_REJECTED)
- return 0;
- }
- return 1;
- }
- void
- parse_socks_policy(void)
- {
- addr_policy_t *n;
- if (socks_policy) {
- addr_policy_free(socks_policy);
- socks_policy = NULL;
- }
- config_parse_addr_policy(get_options()->SocksPolicy, &socks_policy);
-
- for (n=socks_policy; n; n = n->next) {
- n->prt_min = 1;
- n->prt_max = 65535;
- }
- }
- int socks_policy_permits_address(uint32_t addr)
- {
- int a;
- if (!socks_policy)
- return 1;
- a = router_compare_addr_to_addr_policy(addr, 1, socks_policy);
- if (a==-1)
- return 0;
- else if (a==0)
- return 1;
- tor_assert(a==1);
- log_fn(LOG_WARN, "Bug: Got unexpected 'maybe' answer from socks policy");
- return 0;
- }
- struct client_dns_entry {
- uint32_t addr;
- time_t expires;
- int n_failures;
- };
- static int client_dns_size = 0;
- static strmap_t *client_dns_map = NULL;
- void client_dns_init(void) {
- client_dns_map = strmap_new();
- client_dns_size = 0;
- }
- static struct client_dns_entry *
- _get_or_create_ent(const char *address)
- {
- struct client_dns_entry *ent;
- ent = strmap_get_lc(client_dns_map,address);
- if (!ent) {
- ent = tor_malloc_zero(sizeof(struct client_dns_entry));
- ent->expires = time(NULL)+MAX_DNS_ENTRY_AGE;
- strmap_set_lc(client_dns_map,address,ent);
- ++client_dns_size;
- }
- return ent;
- }
- uint32_t client_dns_lookup_entry(const char *address)
- {
- struct client_dns_entry *ent;
- struct in_addr in;
- time_t now;
- tor_assert(address);
- if (tor_inet_aton(address, &in)) {
- log_fn(LOG_DEBUG, "Using static address %s (%08lX)", address,
- (unsigned long)ntohl(in.s_addr));
- return ntohl(in.s_addr);
- }
- ent = strmap_get_lc(client_dns_map,address);
- if (!ent || !ent->addr) {
- 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);
- strmap_remove_lc(client_dns_map,address);
- tor_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;
- }
- }
- int client_dns_incr_failures(const char *address)
- {
- struct client_dns_entry *ent;
- ent = _get_or_create_ent(address);
- ++ent->n_failures;
- log_fn(LOG_DEBUG,"Address %s now has %d resolve failures.",
- address, ent->n_failures);
- return ent->n_failures;
- }
- void client_dns_set_entry(const char *address, uint32_t val)
- {
- struct client_dns_entry *ent;
- struct in_addr in;
- time_t now;
- tor_assert(address);
- tor_assert(val);
- if (tor_inet_aton(address, &in))
- return;
- now = time(NULL);
- ent = _get_or_create_ent(address);
- in.s_addr = htonl(val);
- log_fn(LOG_DEBUG, "Updating entry for address %s: %s", address,
- inet_ntoa(in));
- ent->addr = val;
- ent->expires = now+MAX_DNS_ENTRY_AGE;
- ent->n_failures = 0;
- }
- static void* _remove_if_expired(const char *addr,
- struct client_dns_entry *ent,
- time_t *nowp)
- {
- if (ent->expires < *nowp) {
- --client_dns_size;
- tor_free(ent);
- return NULL;
- } else {
- return ent;
- }
- }
- void client_dns_clean(void)
- {
- time_t now;
- if (!client_dns_size)
- return;
- now = time(NULL);
- strmap_foreach(client_dns_map, (strmap_foreach_fn)_remove_if_expired, &now);
- }
- void
- set_exit_redirects(smartlist_t *lst)
- {
- if (redirect_exit_list) {
- SMARTLIST_FOREACH(redirect_exit_list, exit_redirect_t *, p, tor_free(p));
- smartlist_free(redirect_exit_list);
- }
- redirect_exit_list = lst;
- }
- hostname_type_t
- parse_extended_hostname(char *address) {
- char *s;
- char query[REND_SERVICE_ID_LEN+1];
- s = strrchr(address,'.');
- if (!s) return 0;
- if (!strcasecmp(s+1,"exit")) {
- *s = 0;
- return EXIT_HOSTNAME;
- }
- if (strcasecmp(s+1,"onion"))
- return NORMAL_HOSTNAME;
-
- *s = 0;
- if (strlcpy(query, address, REND_SERVICE_ID_LEN+1) >= REND_SERVICE_ID_LEN+1)
- goto failed;
- tor_strlower(query);
- if (rend_valid_service_id(query)) {
- tor_strlower(address);
- return ONION_HOSTNAME;
- }
- failed:
-
- *s = '.';
- return NORMAL_HOSTNAME;
- }
|