aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorRoger Dingledine <arma@torproject.org>2003-09-30 18:45:55 +0000
committerRoger Dingledine <arma@torproject.org>2003-09-30 18:45:55 +0000
commit013c4e1467c8de01df7a5725629072254ab4c10a (patch)
tree7e2e89cc3275525974c35ef3f12b96bd6bb49061 /src
parent4533da06c97e81a44332f77af35d6c10ce505aff (diff)
downloadtor-013c4e1467c8de01df7a5725629072254ab4c10a.tar
tor-013c4e1467c8de01df7a5725629072254ab4c10a.tar.gz
move the tls handshake stuff to connection_or
svn:r510
Diffstat (limited to 'src')
-rw-r--r--src/or/connection.c103
-rw-r--r--src/or/connection_or.c107
-rw-r--r--src/or/or.h5
3 files changed, 110 insertions, 105 deletions
diff --git a/src/or/connection.c b/src/or/connection.c
index 35dcc8110..bac327b60 100644
--- a/src/or/connection.c
+++ b/src/or/connection.c
@@ -68,8 +68,6 @@ char *conn_state_to_string[][_CONN_TYPE_MAX+1] = {
/********* END VARIABLES ************/
static int connection_init_accepted_conn(connection_t *conn);
-static int connection_tls_continue_handshake(connection_t *conn);
-static int connection_tls_finish_handshake(connection_t *conn);
/**************************************************************/
@@ -230,107 +228,6 @@ static int connection_init_accepted_conn(connection_t *conn) {
return 0;
}
-int connection_tls_start_handshake(connection_t *conn, int receiving) {
- conn->state = OR_CONN_STATE_HANDSHAKING;
- conn->tls = tor_tls_new(conn->s, receiving);
- if(!conn->tls) {
- log_fn(LOG_WARNING,"tor_tls_new failed. Closing.");
- return -1;
- }
- connection_start_reading(conn);
- log_fn(LOG_DEBUG,"starting the handshake");
- if(connection_tls_continue_handshake(conn) < 0)
- return -1;
- return 0;
-}
-
-static int connection_tls_continue_handshake(connection_t *conn) {
- switch(tor_tls_handshake(conn->tls)) {
- case TOR_TLS_ERROR:
- case TOR_TLS_CLOSE:
- log_fn(LOG_INFO,"tls error. breaking.");
- return -1;
- case TOR_TLS_DONE:
- return connection_tls_finish_handshake(conn);
- case TOR_TLS_WANTWRITE:
- connection_start_writing(conn);
- log_fn(LOG_DEBUG,"wanted write");
- return 0;
- case TOR_TLS_WANTREAD: /* handshaking conns are *always* reading */
- log_fn(LOG_DEBUG,"wanted read");
- return 0;
- }
- return 0;
-}
-
-static int connection_tls_finish_handshake(connection_t *conn) {
- crypto_pk_env_t *pk;
- routerinfo_t *router;
-
- conn->state = OR_CONN_STATE_OPEN;
- directory_set_dirty();
- connection_watch_events(conn, POLLIN);
- log_fn(LOG_DEBUG,"tls handshake done. verifying.");
- if(options.OnionRouter) { /* I'm an OR */
- if(tor_tls_peer_has_cert(conn->tls)) { /* it's another OR */
- pk = tor_tls_verify(conn->tls);
- if(!pk) {
- log_fn(LOG_WARNING,"Other side has a cert but it's invalid. Closing.");
- return -1;
- }
- router = router_get_by_link_pk(pk);
- if (!router) {
- log_fn(LOG_WARNING,"Unrecognized public key from peer. Closing.");
- crypto_free_pk_env(pk);
- return -1;
- }
- if(conn->link_pkey) { /* I initiated this connection. */
- if(crypto_pk_cmp_keys(conn->link_pkey, pk)) {
- log_fn(LOG_WARNING,"We connected to '%s' but he gave us a different key. Closing.", router->nickname);
- crypto_free_pk_env(pk);
- return -1;
- }
- log_fn(LOG_DEBUG,"The router's pk matches the one we meant to connect to. Good.");
- } else {
- if(connection_exact_get_by_addr_port(router->addr,router->or_port)) {
- log_fn(LOG_INFO,"Router %s is already connected. Dropping.", router->nickname);
- return -1;
- }
- connection_or_init_conn_from_router(conn, router);
- }
- crypto_free_pk_env(pk);
- } else { /* it's an OP */
- conn->receiver_bucket = conn->bandwidth = DEFAULT_BANDWIDTH_OP;
- }
- } else { /* I'm a client */
- if(!tor_tls_peer_has_cert(conn->tls)) { /* it's a client too?! */
- log_fn(LOG_WARNING,"Neither peer sent a cert! Closing.");
- return -1;
- }
- pk = tor_tls_verify(conn->tls);
- if(!pk) {
- log_fn(LOG_WARNING,"Other side has a cert but it's invalid. Closing.");
- return -1;
- }
- router = router_get_by_link_pk(pk);
- if (!router) {
- log_fn(LOG_WARNING,"Unrecognized public key from peer. Closing.");
- crypto_free_pk_env(pk);
- return -1;
- }
- if(crypto_pk_cmp_keys(conn->link_pkey, pk)) {
- log_fn(LOG_WARNING,"We connected to '%s' but he gave us a different key. Closing.", router->nickname);
- crypto_free_pk_env(pk);
- return -1;
- }
- log_fn(LOG_DEBUG,"The router's pk matches the one we meant to connect to. Good.");
- crypto_free_pk_env(pk);
- conn->receiver_bucket = conn->bandwidth = DEFAULT_BANDWIDTH_OP;
- circuit_n_conn_open(conn); /* send the pending create */
- }
- return 0;
-}
-
/* take conn, make a nonblocking socket; try to connect to
* addr:port (they arrive in *host order*). If fail, return -1. Else
* assign s to conn->s: if connected return 1, if eagain return 0.
diff --git a/src/or/connection_or.c b/src/or/connection_or.c
index d1cc66e62..da5e61b5b 100644
--- a/src/or/connection_or.c
+++ b/src/or/connection_or.c
@@ -6,6 +6,8 @@
extern or_options_t options; /* command-line and config-file options */
+static int connection_tls_finish_handshake(connection_t *conn);
+
/**************************************************************/
static void cell_pack(char *dest, const cell_t *src) {
@@ -142,6 +144,111 @@ connection_t *connection_or_connect(routerinfo_t *router) {
/* ********************************** */
+int connection_tls_start_handshake(connection_t *conn, int receiving) {
+ conn->state = OR_CONN_STATE_HANDSHAKING;
+ conn->tls = tor_tls_new(conn->s, receiving);
+ if(!conn->tls) {
+ log_fn(LOG_WARNING,"tor_tls_new failed. Closing.");
+ return -1;
+ }
+ connection_start_reading(conn);
+ log_fn(LOG_DEBUG,"starting the handshake");
+ if(connection_tls_continue_handshake(conn) < 0)
+ return -1;
+ return 0;
+}
+
+int connection_tls_continue_handshake(connection_t *conn) {
+ switch(tor_tls_handshake(conn->tls)) {
+ case TOR_TLS_ERROR:
+ case TOR_TLS_CLOSE:
+ log_fn(LOG_INFO,"tls error. breaking.");
+ return -1;
+ case TOR_TLS_DONE:
+ return connection_tls_finish_handshake(conn);
+ case TOR_TLS_WANTWRITE:
+ connection_start_writing(conn);
+ log_fn(LOG_DEBUG,"wanted write");
+ return 0;
+ case TOR_TLS_WANTREAD: /* handshaking conns are *always* reading */
+ log_fn(LOG_DEBUG,"wanted read");
+ return 0;
+ }
+ return 0;
+}
+
+static int connection_tls_finish_handshake(connection_t *conn) {
+ crypto_pk_env_t *pk;
+ routerinfo_t *router;
+
+ conn->state = OR_CONN_STATE_OPEN;
+ directory_set_dirty();
+ connection_watch_events(conn, POLLIN);
+ log_fn(LOG_DEBUG,"tls handshake done. verifying.");
+ if(options.OnionRouter) { /* I'm an OR */
+ if(tor_tls_peer_has_cert(conn->tls)) { /* it's another OR */
+ pk = tor_tls_verify(conn->tls);
+ if(!pk) {
+ log_fn(LOG_WARNING,"Other side has a cert but it's invalid. Closing.");
+ return -1;
+ }
+ router = router_get_by_link_pk(pk);
+ if (!router) {
+ log_fn(LOG_WARNING,"Unrecognized public key from peer. Closing.");
+ crypto_free_pk_env(pk);
+ return -1;
+ }
+ if(conn->link_pkey) { /* I initiated this connection. */
+ if(crypto_pk_cmp_keys(conn->link_pkey, pk)) {
+ log_fn(LOG_WARNING,"We connected to '%s' but he gave us a different key. Closing.",
+ router->nickname);
+ crypto_free_pk_env(pk);
+ return -1;
+ }
+ log_fn(LOG_DEBUG,"The router's pk matches the one we meant to connect to. Good.");
+ } else {
+ if(connection_exact_get_by_addr_port(router->addr,router->or_port)) {
+ log_fn(LOG_INFO,"Router %s is already connected. Dropping.", router->nickname);
+ return -1;
+ }
+ connection_or_init_conn_from_router(conn, router);
+ }
+ crypto_free_pk_env(pk);
+ } else { /* it's an OP */
+ conn->receiver_bucket = conn->bandwidth = DEFAULT_BANDWIDTH_OP;
+ }
+ } else { /* I'm a client */
+ if(!tor_tls_peer_has_cert(conn->tls)) { /* it's a client too?! */
+ log_fn(LOG_WARNING,"Neither peer sent a cert! Closing.");
+ return -1;
+ }
+ pk = tor_tls_verify(conn->tls);
+ if(!pk) {
+ log_fn(LOG_WARNING,"Other side has a cert but it's invalid. Closing.");
+ return -1;
+ }
+ router = router_get_by_link_pk(pk);
+ if (!router) {
+ log_fn(LOG_WARNING,"Unrecognized public key from peer. Closing.");
+ crypto_free_pk_env(pk);
+ return -1;
+ }
+ if(crypto_pk_cmp_keys(conn->link_pkey, pk)) {
+ log_fn(LOG_WARNING,"We connected to '%s' but he gave us a different key. Closing.",
+ router->nickname);
+ crypto_free_pk_env(pk);
+ return -1;
+ }
+ log_fn(LOG_DEBUG,"The router's pk matches the one we meant to connect to. Good.");
+ crypto_free_pk_env(pk);
+ conn->receiver_bucket = conn->bandwidth = DEFAULT_BANDWIDTH_OP;
+ circuit_n_conn_open(conn); /* send the pending create */
+ }
+ return 0;
+}
+
+/* ********************************** */
+
int connection_write_cell_to_buf(const cell_t *cellp, connection_t *conn) {
char networkcell[CELL_NETWORK_SIZE];
char *n = networkcell;
diff --git a/src/or/or.h b/src/or/or.h
index 2669f9293..40401c304 100644
--- a/src/or/or.h
+++ b/src/or/or.h
@@ -525,8 +525,6 @@ void connection_free(connection_t *conn);
int connection_create_listener(struct sockaddr_in *bindaddr, int type);
int connection_handle_listener_read(connection_t *conn, int new_type);
-int connection_tls_start_handshake(connection_t *conn, int receiving);
-
int connection_connect(connection_t *conn, char *address, uint32_t addr, uint16_t port);
int retry_all_connections(uint16_t or_listenport, uint16_t ap_listenport, uint16_t dir_listenport);
@@ -576,6 +574,9 @@ int connection_or_finished_flushing(connection_t *conn);
void connection_or_init_conn_from_router(connection_t *conn, routerinfo_t *router);
connection_t *connection_or_connect(routerinfo_t *router);
+int connection_tls_start_handshake(connection_t *conn, int receiving);
+int connection_tls_continue_handshake(connection_t *conn);
+
int connection_write_cell_to_buf(const cell_t *cellp, connection_t *conn);
int connection_process_cell_from_inbuf(connection_t *conn);