|
@@ -4,135 +4,6 @@
|
|
|
|
|
|
#include "or.h"
|
|
|
|
|
|
-int connection_exit_process_inbuf(connection_t *conn) {
|
|
|
- circuit_t *circ;
|
|
|
- cell_t cell;
|
|
|
-
|
|
|
- assert(conn && conn->type == CONN_TYPE_EXIT);
|
|
|
-
|
|
|
- if(conn->inbuf_reached_eof) {
|
|
|
-#ifdef HALF_OPEN
|
|
|
- /* eof reached; we're done reading, but we might want to write more. */
|
|
|
- conn->done_receiving = 1;
|
|
|
- shutdown(conn->s, 0); /* XXX check return, refactor NM */
|
|
|
- if (conn->done_sending)
|
|
|
- conn->marked_for_close = 1;
|
|
|
-
|
|
|
- /* XXX Factor out common logic here and in circuit_about_to_close NM */
|
|
|
- circ = circuit_get_by_conn(conn);
|
|
|
- if (!circ)
|
|
|
- return -1;
|
|
|
-
|
|
|
- memset(&cell, 0, sizeof(cell_t));
|
|
|
- cell.command = CELL_DATA;
|
|
|
- cell.length = TOPIC_HEADER_SIZE;
|
|
|
- *(uint16_t *)(cell.payload+2) = htons(conn->topic_id);
|
|
|
- *cell.payload = TOPIC_COMMAND_END;
|
|
|
- cell.aci = circ->p_aci;
|
|
|
- if (circuit_deliver_data_cell_from_edge(&cell, circ, EDGE_EXIT) < 0) {
|
|
|
- log(LOG_DEBUG,"connection_exit_process_inbuf: circuit_deliver_data_cell_from_edge failed. Closing");
|
|
|
- circuit_close(circ);
|
|
|
- }
|
|
|
- return 0;
|
|
|
-#else
|
|
|
-
|
|
|
- /* eof reached, kill it. */
|
|
|
- log(LOG_DEBUG,"connection_exit_process_inbuf(): conn reached eof. Closing.");
|
|
|
- return -1;
|
|
|
-#endif
|
|
|
- }
|
|
|
-
|
|
|
- log(LOG_DEBUG,"connection_exit_process_inbuf(): state %d.",conn->state);
|
|
|
-
|
|
|
- switch(conn->state) {
|
|
|
- case EXIT_CONN_STATE_CONNECTING:
|
|
|
- log(LOG_DEBUG,"connection_exit_process_inbuf(): text from server while in 'connecting' state. Leaving it on buffer.");
|
|
|
- return 0;
|
|
|
- case EXIT_CONN_STATE_OPEN:
|
|
|
- if(connection_package_raw_inbuf(conn) < 0)
|
|
|
- return -1;
|
|
|
- circuit_consider_stop_edge_reading(circuit_get_by_conn(conn), EDGE_EXIT);
|
|
|
- return 0;
|
|
|
- }
|
|
|
- return 0;
|
|
|
-}
|
|
|
-
|
|
|
-int connection_exit_finished_flushing(connection_t *conn) {
|
|
|
- int e, len=sizeof(e);
|
|
|
-
|
|
|
- assert(conn && conn->type == CONN_TYPE_EXIT);
|
|
|
-
|
|
|
- switch(conn->state) {
|
|
|
- case EXIT_CONN_STATE_CONNECTING:
|
|
|
- if (getsockopt(conn->s, SOL_SOCKET, SO_ERROR, &e, &len) < 0) { /* not yet */
|
|
|
- if(errno != EINPROGRESS){
|
|
|
- /* yuck. kill it. */
|
|
|
- log(LOG_DEBUG,"connection_exit_finished_flushing(): in-progress connect failed. Removing.");
|
|
|
- return -1;
|
|
|
- } else {
|
|
|
- log(LOG_DEBUG,"connection_exit_finished_flushing(): in-progress connect still waiting.");
|
|
|
- return 0; /* no change, see if next time is better */
|
|
|
- }
|
|
|
- }
|
|
|
- /* the connect has finished. */
|
|
|
-
|
|
|
- log(LOG_DEBUG,"connection_exit_finished_flushing(): Connection to %s:%u established.",
|
|
|
- conn->address,conn->port);
|
|
|
-
|
|
|
- conn->state = EXIT_CONN_STATE_OPEN;
|
|
|
- connection_watch_events(conn, POLLIN); /* stop writing, continue reading */
|
|
|
- if(connection_wants_to_flush(conn)) /* in case there are any queued data cells */
|
|
|
- connection_start_writing(conn);
|
|
|
- return
|
|
|
- connection_exit_send_connected(conn) || /* deliver a 'connected' data cell back through the circuit. */
|
|
|
- connection_process_inbuf(conn); /* in case the server has written anything */
|
|
|
- case EXIT_CONN_STATE_OPEN:
|
|
|
- /* FIXME down the road, we'll clear out circuits that are pending to close */
|
|
|
- log(LOG_DEBUG,"connection_exit_finished_flushing(): finished flushing.");
|
|
|
- connection_stop_writing(conn);
|
|
|
-#ifdef USE_ZLIB
|
|
|
- if (connection_decompress_to_buf(NULL, 0, conn, Z_SYNC_FLUSH) < 0)
|
|
|
- return -1;
|
|
|
-#endif
|
|
|
- connection_consider_sending_sendme(conn, EDGE_EXIT);
|
|
|
- return 0;
|
|
|
- default:
|
|
|
- log(LOG_DEBUG,"Bug: connection_exit_finished_flushing() called in unexpected state.");
|
|
|
- return 0;
|
|
|
- }
|
|
|
-
|
|
|
- return 0;
|
|
|
-}
|
|
|
-
|
|
|
-int connection_exit_send_connected(connection_t *conn) {
|
|
|
- circuit_t *circ;
|
|
|
- cell_t cell;
|
|
|
-
|
|
|
- assert(conn);
|
|
|
-
|
|
|
- circ = circuit_get_by_conn(conn);
|
|
|
-
|
|
|
- if(!circ) {
|
|
|
- log(LOG_DEBUG,"connection_exit_send_connected(): client-side sent destroy just as we completed server connection. Closing.");
|
|
|
- return -1;
|
|
|
- }
|
|
|
-
|
|
|
- memset(&cell, 0, sizeof(cell_t));
|
|
|
- cell.aci = circ->p_aci;
|
|
|
- cell.command = CELL_DATA;
|
|
|
- *(uint16_t *)(cell.payload+2) = htons(conn->topic_id);
|
|
|
- *cell.payload = TOPIC_COMMAND_CONNECTED;
|
|
|
- cell.length = TOPIC_HEADER_SIZE;
|
|
|
- log(LOG_INFO,"connection_exit_send_connected(): passing back cell (aci %d).",circ->p_aci);
|
|
|
-
|
|
|
- if(circuit_deliver_data_cell_from_edge(&cell, circ, EDGE_EXIT) < 0) {
|
|
|
- log(LOG_DEBUG,"connection_exit_send_connected(): circuit_deliver_data_cell (backward) failed. Closing.");
|
|
|
- circuit_close(circ);
|
|
|
- return 0;
|
|
|
- }
|
|
|
- return 0;
|
|
|
-}
|
|
|
-
|
|
|
int connection_exit_begin_conn(cell_t *cell, circuit_t *circ) {
|
|
|
connection_t *n_conn;
|
|
|
char *colon;
|
|
@@ -192,149 +63,6 @@ int connection_exit_begin_conn(cell_t *cell, circuit_t *circ) {
|
|
|
return 0;
|
|
|
}
|
|
|
|
|
|
-int connection_exit_process_data_cell(cell_t *cell, circuit_t *circ) {
|
|
|
- connection_t *conn;
|
|
|
- int topic_command;
|
|
|
- int topic_id;
|
|
|
- int len;
|
|
|
- static int num_seen=0;
|
|
|
-
|
|
|
- /* an outgoing data cell has arrived */
|
|
|
-
|
|
|
- assert(cell && circ);
|
|
|
-
|
|
|
- topic_command = *cell->payload;
|
|
|
- topic_id = ntohs(*(uint16_t *)(cell->payload+2));
|
|
|
- log(LOG_DEBUG,"connection_exit_process_data_cell(): command %d topic %d", topic_command, topic_id);
|
|
|
- num_seen++;
|
|
|
- log(LOG_DEBUG,"connection_exit_process_data_cell(): Now seen %d data cells here.", num_seen);
|
|
|
-
|
|
|
- circuit_consider_sending_sendme(circ, EDGE_EXIT);
|
|
|
-
|
|
|
- for(conn = circ->n_conn; conn && conn->topic_id != topic_id; conn = conn->next_topic) ;
|
|
|
-
|
|
|
- /* now conn is either NULL, in which case we don't recognize the topic_id, or
|
|
|
- * it is set, in which case cell is talking about this conn.
|
|
|
- */
|
|
|
-
|
|
|
- if(conn && conn->state != EXIT_CONN_STATE_OPEN) {
|
|
|
- if(topic_command == TOPIC_COMMAND_END) {
|
|
|
- log(LOG_ERR,"connection_exit_process_data_cell(): Got an end before we're connected. Marking for close.");
|
|
|
- conn->marked_for_close = 1;
|
|
|
- return 0;
|
|
|
- } else {
|
|
|
- log(LOG_INFO,"connection_exit_process_data_cell(): Got a non-end data cell when not in 'open' state. Dropping.");
|
|
|
- return 0;
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- switch(topic_command) {
|
|
|
- case TOPIC_COMMAND_BEGIN:
|
|
|
- if(conn) {
|
|
|
- log(LOG_INFO,"connection_exit_process_data_cell(): begin cell for known topic. Dropping.");
|
|
|
- return 0;
|
|
|
- }
|
|
|
- return connection_exit_begin_conn(cell, circ);
|
|
|
- case TOPIC_COMMAND_DATA:
|
|
|
- if(!conn) {
|
|
|
- log(LOG_INFO,"connection_exit_process_data_cell(): data cell for unknown topic. Dropping.");
|
|
|
- return 0;
|
|
|
- }
|
|
|
- if(--conn->p_receive_topicwindow < 0) { /* is it below 0 after decrement? */
|
|
|
- log(LOG_DEBUG,"connection_exit_process_data_cell(): receive_topicwindow at exit below 0. Killing.");
|
|
|
- return -1; /* AP breaking protocol. kill the whole circuit. */
|
|
|
- }
|
|
|
- log(LOG_DEBUG,"connection_exit_process_data_cell(): willing to receive %d more cells from circ",conn->p_receive_topicwindow);
|
|
|
-
|
|
|
- if(conn->state != EXIT_CONN_STATE_OPEN) {
|
|
|
- log(LOG_DEBUG,"connection_exit_process_data_cell(): data received while resolving/connecting. Queueing.");
|
|
|
- }
|
|
|
-#ifdef USE_ZLIB
|
|
|
- log(LOG_DEBUG,"connection_exit_process_data_cell(): uncompressing %d bytes onto outbuf...",cell->length - TOPIC_HEADER_SIZE);
|
|
|
- len = connection_decompress_to_buf(cell->payload + TOPIC_HEADER_SIZE,
|
|
|
- cell->length - TOPIC_HEADER_SIZE,
|
|
|
- conn, Z_SYNC_FLUSH);
|
|
|
- log(LOG_DEBUG,"%d bytes written", len);
|
|
|
- if (len<0) {
|
|
|
- log(LOG_INFO,"connection_exit_process_data_cell(): write to buf failed. Marking for close.");
|
|
|
- conn->marked_for_close = 1;
|
|
|
- return 0;
|
|
|
- }
|
|
|
-#else
|
|
|
- log(LOG_DEBUG,"connection_exit_process_data_cell(): put %d bytes on outbuf.",cell->length - TOPIC_HEADER_SIZE);
|
|
|
- if(connection_write_to_buf(cell->payload + TOPIC_HEADER_SIZE,
|
|
|
- cell->length - TOPIC_HEADER_SIZE, conn) < 0) {
|
|
|
- log(LOG_INFO,"connection_exit_process_data_cell(): write to buf failed. Marking for close.");
|
|
|
- conn->marked_for_close = 1;
|
|
|
- return 0;
|
|
|
- }
|
|
|
-#endif
|
|
|
- if(connection_consider_sending_sendme(conn, EDGE_EXIT) < 0)
|
|
|
- conn->marked_for_close = 1;
|
|
|
- return 0;
|
|
|
- case TOPIC_COMMAND_END:
|
|
|
- if(!conn) {
|
|
|
- log(LOG_DEBUG,"connection_exit_process_data_cell(): end cell dropped, unknown topic %d.",topic_id);
|
|
|
- return 0;
|
|
|
- }
|
|
|
- log(LOG_DEBUG,"connection_exit_process_data_cell(): end cell for topic %d. Removing topic.",topic_id);
|
|
|
-
|
|
|
-#if 0
|
|
|
- /* go through and identify who points to conn. remove conn from the list. */
|
|
|
- if(conn == circ->n_conn) {
|
|
|
- circ->n_conn = conn->next_topic;
|
|
|
- }
|
|
|
- for(prevconn = circ->n_conn; prevconn->next_topic != conn; prevconn = prevconn->next_topic) ;
|
|
|
- prevconn->next_topic = conn->next_topic;
|
|
|
-#endif
|
|
|
-#ifdef HALF_OPEN
|
|
|
- conn->done_sending = 1;
|
|
|
- shutdown(conn->s, 1); /* XXX check return; refactor NM */
|
|
|
- if (conn->done_receiving)
|
|
|
- conn->marked_for_close = 1;
|
|
|
-#endif
|
|
|
-
|
|
|
- conn->marked_for_close = 1;
|
|
|
- break;
|
|
|
- case TOPIC_COMMAND_CONNECTED:
|
|
|
- log(LOG_INFO,"connection_exit_process_data_cell(): topic connected request unsupported. Dropping.");
|
|
|
- break;
|
|
|
- case TOPIC_COMMAND_SENDME:
|
|
|
- if(!conn) {
|
|
|
- log(LOG_DEBUG,"connection_exit_process_data_cell(): sendme cell dropped, unknown topic %d.",topic_id);
|
|
|
- return 0;
|
|
|
- }
|
|
|
- conn->n_receive_topicwindow += TOPICWINDOW_INCREMENT;
|
|
|
- connection_start_reading(conn);
|
|
|
- connection_package_raw_inbuf(conn); /* handle whatever might still be on the inbuf */
|
|
|
- circuit_consider_stop_edge_reading(circ, EDGE_EXIT);
|
|
|
- break;
|
|
|
- default:
|
|
|
- log(LOG_DEBUG,"connection_exit_process_data_cell(): unknown topic command %d.",topic_command);
|
|
|
- }
|
|
|
- return 0;
|
|
|
-}
|
|
|
-
|
|
|
-#if 0
|
|
|
-static uint32_t address_to_addr(char *address) {
|
|
|
- struct hostent *rent;
|
|
|
- uint32_t addr;
|
|
|
- char *caddr;
|
|
|
-
|
|
|
- rent = gethostbyname(address);
|
|
|
- if (!rent) {
|
|
|
- log(LOG_ERR,"address_to_addr(): Could not resolve dest addr %s.",address);
|
|
|
- return 0;
|
|
|
- }
|
|
|
- memcpy(&addr, rent->h_addr,rent->h_length);
|
|
|
- addr = ntohl(addr); /* get it back to host order */
|
|
|
- caddr = (char *)&addr;
|
|
|
- log(LOG_DEBUG,"address_to_addr(): addr is %d %d %d %d",
|
|
|
- caddr[0], caddr[1], caddr[2], caddr[3]);
|
|
|
- return addr;
|
|
|
-}
|
|
|
-#endif
|
|
|
-
|
|
|
int connection_exit_connect(connection_t *conn) {
|
|
|
int s; /* for the new socket */
|
|
|
struct sockaddr_in dest_addr;
|
|
@@ -391,7 +119,7 @@ int connection_exit_connect(connection_t *conn) {
|
|
|
connection_watch_events(conn, POLLIN);
|
|
|
|
|
|
/* also, deliver a 'connected' cell back through the circuit. */
|
|
|
- return connection_exit_send_connected(conn);
|
|
|
+ return connection_edge_send_command(conn, circuit_get_by_conn(conn), TOPIC_COMMAND_CONNECTED);
|
|
|
}
|
|
|
|
|
|
/*
|