2016-02-27 18:48:19 +01:00
|
|
|
/* Copyright (c) 2014-2016, The Tor Project, Inc. */
|
2014-10-08 21:39:34 +02:00
|
|
|
/* See LICENSE for licensing information */
|
|
|
|
|
|
|
|
#include "orconfig.h"
|
|
|
|
|
|
|
|
#define CHANNELTLS_PRIVATE
|
|
|
|
#define CONNECTION_PRIVATE
|
|
|
|
#define TOR_CHANNEL_INTERNAL_
|
|
|
|
#include "or.h"
|
|
|
|
#include "config.h"
|
|
|
|
#include "connection.h"
|
|
|
|
#include "connection_or.h"
|
|
|
|
#include "channeltls.h"
|
|
|
|
#include "link_handshake.h"
|
2014-10-16 15:07:50 +02:00
|
|
|
#include "scheduler.h"
|
2014-10-08 21:39:34 +02:00
|
|
|
|
|
|
|
#include "test.h"
|
2016-08-31 18:11:01 +02:00
|
|
|
#include "log_test_helpers.h"
|
2014-10-08 21:39:34 +02:00
|
|
|
|
2016-06-02 15:46:12 +02:00
|
|
|
static var_cell_t *mock_got_var_cell = NULL;
|
2014-10-08 21:39:34 +02:00
|
|
|
|
|
|
|
static void
|
|
|
|
mock_write_var_cell(const var_cell_t *vc, or_connection_t *conn)
|
|
|
|
{
|
|
|
|
(void)conn;
|
|
|
|
|
|
|
|
var_cell_t *newcell = var_cell_new(vc->payload_len);
|
|
|
|
memcpy(newcell, vc, sizeof(var_cell_t));
|
|
|
|
memcpy(newcell->payload, vc->payload, vc->payload_len);
|
|
|
|
|
|
|
|
mock_got_var_cell = newcell;
|
|
|
|
}
|
|
|
|
static int
|
|
|
|
mock_tls_cert_matches_key(const tor_tls_t *tls, const tor_x509_cert_t *cert)
|
|
|
|
{
|
|
|
|
(void) tls;
|
|
|
|
(void) cert; // XXXX look at this.
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int mock_send_netinfo_called = 0;
|
|
|
|
static int
|
|
|
|
mock_send_netinfo(or_connection_t *conn)
|
|
|
|
{
|
|
|
|
(void) conn;
|
|
|
|
++mock_send_netinfo_called;// XXX check_this
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int mock_close_called = 0;
|
|
|
|
static void
|
|
|
|
mock_close_for_err(or_connection_t *orconn, int flush)
|
|
|
|
{
|
|
|
|
(void)orconn;
|
|
|
|
(void)flush;
|
|
|
|
++mock_close_called;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int mock_send_authenticate_called = 0;
|
|
|
|
static int
|
|
|
|
mock_send_authenticate(or_connection_t *conn, int type)
|
|
|
|
{
|
|
|
|
(void) conn;
|
|
|
|
(void) type;
|
|
|
|
++mock_send_authenticate_called;// XXX check_this
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Test good certs cells */
|
|
|
|
static void
|
|
|
|
test_link_handshake_certs_ok(void *arg)
|
|
|
|
{
|
|
|
|
(void) arg;
|
|
|
|
|
|
|
|
or_connection_t *c1 = or_connection_new(CONN_TYPE_OR, AF_INET);
|
|
|
|
or_connection_t *c2 = or_connection_new(CONN_TYPE_OR, AF_INET);
|
|
|
|
var_cell_t *cell1 = NULL, *cell2 = NULL;
|
|
|
|
certs_cell_t *cc1 = NULL, *cc2 = NULL;
|
|
|
|
channel_tls_t *chan1 = NULL, *chan2 = NULL;
|
|
|
|
crypto_pk_t *key1 = NULL, *key2 = NULL;
|
|
|
|
|
|
|
|
scheduler_init();
|
|
|
|
|
|
|
|
MOCK(tor_tls_cert_matches_key, mock_tls_cert_matches_key);
|
|
|
|
MOCK(connection_or_write_var_cell_to_buf, mock_write_var_cell);
|
|
|
|
MOCK(connection_or_send_netinfo, mock_send_netinfo);
|
|
|
|
|
|
|
|
key1 = pk_generate(2);
|
|
|
|
key2 = pk_generate(3);
|
|
|
|
|
|
|
|
/* We need to make sure that our TLS certificates are set up before we can
|
|
|
|
* actually generate a CERTS cell.
|
|
|
|
*/
|
|
|
|
tt_int_op(tor_tls_context_init(TOR_TLS_CTX_IS_PUBLIC_SERVER,
|
|
|
|
key1, key2, 86400), ==, 0);
|
|
|
|
|
|
|
|
c1->base_.state = OR_CONN_STATE_OR_HANDSHAKING_V3;
|
|
|
|
c1->link_proto = 3;
|
|
|
|
tt_int_op(connection_init_or_handshake_state(c1, 1), ==, 0);
|
|
|
|
|
|
|
|
c2->base_.state = OR_CONN_STATE_OR_HANDSHAKING_V3;
|
|
|
|
c2->link_proto = 3;
|
|
|
|
tt_int_op(connection_init_or_handshake_state(c2, 0), ==, 0);
|
|
|
|
|
|
|
|
tt_int_op(0, ==, connection_or_send_certs_cell(c1));
|
|
|
|
tt_assert(mock_got_var_cell);
|
|
|
|
cell1 = mock_got_var_cell;
|
|
|
|
|
|
|
|
tt_int_op(0, ==, connection_or_send_certs_cell(c2));
|
|
|
|
tt_assert(mock_got_var_cell);
|
|
|
|
cell2 = mock_got_var_cell;
|
|
|
|
|
|
|
|
tt_int_op(cell1->command, ==, CELL_CERTS);
|
|
|
|
tt_int_op(cell1->payload_len, >, 1);
|
|
|
|
|
|
|
|
tt_int_op(cell2->command, ==, CELL_CERTS);
|
|
|
|
tt_int_op(cell2->payload_len, >, 1);
|
|
|
|
|
|
|
|
tt_int_op(cell1->payload_len, ==,
|
|
|
|
certs_cell_parse(&cc1, cell1->payload, cell1->payload_len));
|
|
|
|
tt_int_op(cell2->payload_len, ==,
|
|
|
|
certs_cell_parse(&cc2, cell2->payload, cell2->payload_len));
|
|
|
|
|
|
|
|
tt_int_op(2, ==, cc1->n_certs);
|
|
|
|
tt_int_op(2, ==, cc2->n_certs);
|
|
|
|
|
|
|
|
tt_int_op(certs_cell_get_certs(cc1, 0)->cert_type, ==,
|
|
|
|
CERTTYPE_RSA1024_ID_AUTH);
|
|
|
|
tt_int_op(certs_cell_get_certs(cc1, 1)->cert_type, ==,
|
|
|
|
CERTTYPE_RSA1024_ID_ID);
|
|
|
|
|
|
|
|
tt_int_op(certs_cell_get_certs(cc2, 0)->cert_type, ==,
|
|
|
|
CERTTYPE_RSA1024_ID_LINK);
|
|
|
|
tt_int_op(certs_cell_get_certs(cc2, 1)->cert_type, ==,
|
|
|
|
CERTTYPE_RSA1024_ID_ID);
|
|
|
|
|
|
|
|
chan1 = tor_malloc_zero(sizeof(*chan1));
|
|
|
|
channel_tls_common_init(chan1);
|
|
|
|
c1->chan = chan1;
|
|
|
|
chan1->conn = c1;
|
|
|
|
c1->base_.address = tor_strdup("C1");
|
|
|
|
c1->tls = tor_tls_new(-1, 0);
|
|
|
|
c1->link_proto = 4;
|
|
|
|
c1->base_.conn_array_index = -1;
|
|
|
|
crypto_pk_get_digest(key2, c1->identity_digest);
|
|
|
|
|
|
|
|
channel_tls_process_certs_cell(cell2, chan1);
|
|
|
|
|
|
|
|
tt_assert(c1->handshake_state->received_certs_cell);
|
|
|
|
tt_assert(c1->handshake_state->auth_cert == NULL);
|
|
|
|
tt_assert(c1->handshake_state->id_cert);
|
|
|
|
tt_assert(! tor_mem_is_zero(
|
|
|
|
(char*)c1->handshake_state->authenticated_peer_id, 20));
|
|
|
|
|
|
|
|
chan2 = tor_malloc_zero(sizeof(*chan2));
|
|
|
|
channel_tls_common_init(chan2);
|
|
|
|
c2->chan = chan2;
|
|
|
|
chan2->conn = c2;
|
|
|
|
c2->base_.address = tor_strdup("C2");
|
|
|
|
c2->tls = tor_tls_new(-1, 1);
|
|
|
|
c2->link_proto = 4;
|
|
|
|
c2->base_.conn_array_index = -1;
|
|
|
|
crypto_pk_get_digest(key1, c2->identity_digest);
|
|
|
|
|
|
|
|
channel_tls_process_certs_cell(cell1, chan2);
|
|
|
|
|
|
|
|
tt_assert(c2->handshake_state->received_certs_cell);
|
|
|
|
tt_assert(c2->handshake_state->auth_cert);
|
|
|
|
tt_assert(c2->handshake_state->id_cert);
|
|
|
|
tt_assert(tor_mem_is_zero(
|
|
|
|
(char*)c2->handshake_state->authenticated_peer_id, 20));
|
|
|
|
|
|
|
|
done:
|
|
|
|
UNMOCK(tor_tls_cert_matches_key);
|
|
|
|
UNMOCK(connection_or_write_var_cell_to_buf);
|
|
|
|
UNMOCK(connection_or_send_netinfo);
|
2016-08-31 17:37:18 +02:00
|
|
|
memset(c1->identity_digest, 0, sizeof(c1->identity_digest));
|
|
|
|
memset(c2->identity_digest, 0, sizeof(c2->identity_digest));
|
2014-10-08 21:39:34 +02:00
|
|
|
connection_free_(TO_CONN(c1));
|
|
|
|
connection_free_(TO_CONN(c2));
|
|
|
|
tor_free(cell1);
|
|
|
|
tor_free(cell2);
|
|
|
|
certs_cell_free(cc1);
|
|
|
|
certs_cell_free(cc2);
|
2015-05-28 18:41:00 +02:00
|
|
|
if (chan1)
|
|
|
|
circuitmux_free(chan1->base_.cmux);
|
2014-10-08 21:39:34 +02:00
|
|
|
tor_free(chan1);
|
2015-05-28 18:41:00 +02:00
|
|
|
if (chan2)
|
|
|
|
circuitmux_free(chan2->base_.cmux);
|
2014-10-08 21:39:34 +02:00
|
|
|
tor_free(chan2);
|
2014-10-17 22:30:42 +02:00
|
|
|
crypto_pk_free(key1);
|
|
|
|
crypto_pk_free(key2);
|
2014-10-08 21:39:34 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
typedef struct certs_data_s {
|
|
|
|
or_connection_t *c;
|
|
|
|
channel_tls_t *chan;
|
|
|
|
certs_cell_t *ccell;
|
|
|
|
var_cell_t *cell;
|
2014-10-17 22:30:42 +02:00
|
|
|
crypto_pk_t *key1, *key2;
|
2014-10-08 21:39:34 +02:00
|
|
|
} certs_data_t;
|
|
|
|
|
|
|
|
static int
|
|
|
|
recv_certs_cleanup(const struct testcase_t *test, void *obj)
|
|
|
|
{
|
|
|
|
(void)test;
|
|
|
|
certs_data_t *d = obj;
|
|
|
|
UNMOCK(tor_tls_cert_matches_key);
|
|
|
|
UNMOCK(connection_or_send_netinfo);
|
|
|
|
UNMOCK(connection_or_close_for_error);
|
|
|
|
|
|
|
|
if (d) {
|
|
|
|
tor_free(d->cell);
|
|
|
|
certs_cell_free(d->ccell);
|
2016-08-31 17:37:18 +02:00
|
|
|
connection_or_remove_from_identity_map(d->c);
|
2014-10-08 21:39:34 +02:00
|
|
|
connection_free_(TO_CONN(d->c));
|
2014-10-17 22:30:42 +02:00
|
|
|
circuitmux_free(d->chan->base_.cmux);
|
2014-10-08 21:39:34 +02:00
|
|
|
tor_free(d->chan);
|
2014-10-17 22:30:42 +02:00
|
|
|
crypto_pk_free(d->key1);
|
|
|
|
crypto_pk_free(d->key2);
|
2014-10-08 21:39:34 +02:00
|
|
|
tor_free(d);
|
|
|
|
}
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void *
|
|
|
|
recv_certs_setup(const struct testcase_t *test)
|
|
|
|
{
|
|
|
|
(void)test;
|
|
|
|
certs_data_t *d = tor_malloc_zero(sizeof(*d));
|
|
|
|
certs_cell_cert_t *ccc1 = NULL;
|
|
|
|
certs_cell_cert_t *ccc2 = NULL;
|
|
|
|
ssize_t n;
|
|
|
|
|
|
|
|
d->c = or_connection_new(CONN_TYPE_OR, AF_INET);
|
|
|
|
d->chan = tor_malloc_zero(sizeof(*d->chan));
|
|
|
|
d->c->chan = d->chan;
|
|
|
|
d->c->base_.address = tor_strdup("HaveAnAddress");
|
|
|
|
d->c->base_.state = OR_CONN_STATE_OR_HANDSHAKING_V3;
|
|
|
|
d->chan->conn = d->c;
|
|
|
|
tt_int_op(connection_init_or_handshake_state(d->c, 1), ==, 0);
|
|
|
|
d->c->link_proto = 4;
|
|
|
|
|
2014-10-17 22:30:42 +02:00
|
|
|
d->key1 = pk_generate(2);
|
|
|
|
d->key2 = pk_generate(3);
|
2014-10-08 21:39:34 +02:00
|
|
|
|
|
|
|
tt_int_op(tor_tls_context_init(TOR_TLS_CTX_IS_PUBLIC_SERVER,
|
2014-10-17 22:30:42 +02:00
|
|
|
d->key1, d->key2, 86400), ==, 0);
|
2014-10-08 21:39:34 +02:00
|
|
|
d->ccell = certs_cell_new();
|
|
|
|
ccc1 = certs_cell_cert_new();
|
|
|
|
certs_cell_add_certs(d->ccell, ccc1);
|
|
|
|
ccc2 = certs_cell_cert_new();
|
|
|
|
certs_cell_add_certs(d->ccell, ccc2);
|
|
|
|
d->ccell->n_certs = 2;
|
|
|
|
ccc1->cert_type = 1;
|
|
|
|
ccc2->cert_type = 2;
|
|
|
|
|
|
|
|
const tor_x509_cert_t *a,*b;
|
|
|
|
const uint8_t *enca, *encb;
|
|
|
|
size_t lena, lenb;
|
|
|
|
tor_tls_get_my_certs(1, &a, &b);
|
|
|
|
tor_x509_cert_get_der(a, &enca, &lena);
|
|
|
|
tor_x509_cert_get_der(b, &encb, &lenb);
|
|
|
|
certs_cell_cert_setlen_body(ccc1, lena);
|
|
|
|
ccc1->cert_len = lena;
|
|
|
|
certs_cell_cert_setlen_body(ccc2, lenb);
|
|
|
|
ccc2->cert_len = lenb;
|
|
|
|
|
|
|
|
memcpy(certs_cell_cert_getarray_body(ccc1), enca, lena);
|
|
|
|
memcpy(certs_cell_cert_getarray_body(ccc2), encb, lenb);
|
|
|
|
|
|
|
|
d->cell = var_cell_new(4096);
|
|
|
|
d->cell->command = CELL_CERTS;
|
|
|
|
|
|
|
|
n = certs_cell_encode(d->cell->payload, 4096, d->ccell);
|
|
|
|
tt_int_op(n, >, 0);
|
|
|
|
d->cell->payload_len = n;
|
|
|
|
|
|
|
|
MOCK(tor_tls_cert_matches_key, mock_tls_cert_matches_key);
|
|
|
|
MOCK(connection_or_send_netinfo, mock_send_netinfo);
|
|
|
|
MOCK(connection_or_close_for_error, mock_close_for_err);
|
|
|
|
|
|
|
|
tt_int_op(0, ==, d->c->handshake_state->received_certs_cell);
|
|
|
|
tt_int_op(0, ==, mock_send_authenticate_called);
|
|
|
|
tt_int_op(0, ==, mock_send_netinfo_called);
|
|
|
|
|
|
|
|
return d;
|
|
|
|
done:
|
|
|
|
recv_certs_cleanup(test, d);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct testcase_setup_t setup_recv_certs = {
|
|
|
|
.setup_fn = recv_certs_setup,
|
|
|
|
.cleanup_fn = recv_certs_cleanup
|
|
|
|
};
|
|
|
|
|
|
|
|
static void
|
|
|
|
test_link_handshake_recv_certs_ok(void *arg)
|
|
|
|
{
|
|
|
|
certs_data_t *d = arg;
|
|
|
|
channel_tls_process_certs_cell(d->cell, d->chan);
|
|
|
|
tt_int_op(0, ==, mock_close_called);
|
|
|
|
tt_int_op(d->c->handshake_state->authenticated, ==, 1);
|
|
|
|
tt_int_op(d->c->handshake_state->received_certs_cell, ==, 1);
|
|
|
|
tt_assert(d->c->handshake_state->id_cert != NULL);
|
|
|
|
tt_assert(d->c->handshake_state->auth_cert == NULL);
|
|
|
|
|
|
|
|
done:
|
|
|
|
;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
test_link_handshake_recv_certs_ok_server(void *arg)
|
|
|
|
{
|
|
|
|
certs_data_t *d = arg;
|
|
|
|
d->c->handshake_state->started_here = 0;
|
|
|
|
certs_cell_get_certs(d->ccell, 0)->cert_type = 3;
|
|
|
|
certs_cell_get_certs(d->ccell, 1)->cert_type = 2;
|
|
|
|
ssize_t n = certs_cell_encode(d->cell->payload, 2048, d->ccell);
|
|
|
|
tt_int_op(n, >, 0);
|
|
|
|
d->cell->payload_len = n;
|
|
|
|
channel_tls_process_certs_cell(d->cell, d->chan);
|
|
|
|
tt_int_op(0, ==, mock_close_called);
|
|
|
|
tt_int_op(d->c->handshake_state->authenticated, ==, 0);
|
|
|
|
tt_int_op(d->c->handshake_state->received_certs_cell, ==, 1);
|
|
|
|
tt_assert(d->c->handshake_state->id_cert != NULL);
|
|
|
|
tt_assert(d->c->handshake_state->auth_cert != NULL);
|
|
|
|
|
|
|
|
done:
|
|
|
|
;
|
|
|
|
}
|
|
|
|
|
|
|
|
#define CERTS_FAIL(name, code) \
|
|
|
|
static void \
|
2015-06-01 16:56:54 +02:00
|
|
|
test_link_handshake_recv_certs_ ## name(void *arg) \
|
2014-10-08 21:39:34 +02:00
|
|
|
{ \
|
|
|
|
certs_data_t *d = arg; \
|
2016-08-31 18:11:01 +02:00
|
|
|
const char *require_failure_message = NULL; \
|
|
|
|
const int prev_level = setup_capture_of_logs(LOG_INFO); \
|
2014-10-08 21:39:34 +02:00
|
|
|
{ code ; } \
|
|
|
|
channel_tls_process_certs_cell(d->cell, d->chan); \
|
|
|
|
tt_int_op(1, ==, mock_close_called); \
|
|
|
|
tt_int_op(0, ==, mock_send_authenticate_called); \
|
|
|
|
tt_int_op(0, ==, mock_send_netinfo_called); \
|
2016-08-31 18:11:01 +02:00
|
|
|
if (require_failure_message) { \
|
2016-09-08 17:16:09 +02:00
|
|
|
expect_log_msg_containing(require_failure_message); \
|
2016-08-31 18:11:01 +02:00
|
|
|
} \
|
2014-10-08 21:39:34 +02:00
|
|
|
done: \
|
2016-08-31 18:11:01 +02:00
|
|
|
teardown_capture_of_logs(prev_level); \
|
2014-10-08 21:39:34 +02:00
|
|
|
}
|
|
|
|
|
2016-08-31 18:11:01 +02:00
|
|
|
CERTS_FAIL(badstate,
|
|
|
|
require_failure_message = "We're not doing a v3 handshake!";
|
|
|
|
d->c->base_.state = OR_CONN_STATE_CONNECTING;)
|
|
|
|
CERTS_FAIL(badproto,
|
|
|
|
require_failure_message = "not using link protocol >= 3";
|
|
|
|
d->c->link_proto = 2)
|
|
|
|
CERTS_FAIL(duplicate,
|
|
|
|
require_failure_message = "We already got one";
|
|
|
|
d->c->handshake_state->received_certs_cell = 1)
|
2014-10-08 21:39:34 +02:00
|
|
|
CERTS_FAIL(already_authenticated,
|
2016-08-31 18:11:01 +02:00
|
|
|
require_failure_message = "We're already authenticated!";
|
2014-10-08 21:39:34 +02:00
|
|
|
d->c->handshake_state->authenticated = 1)
|
2016-08-31 18:11:01 +02:00
|
|
|
CERTS_FAIL(empty,
|
|
|
|
require_failure_message = "It had no body";
|
|
|
|
d->cell->payload_len = 0)
|
|
|
|
CERTS_FAIL(bad_circid,
|
|
|
|
require_failure_message = "It had a nonzero circuit ID";
|
|
|
|
d->cell->circ_id = 1)
|
|
|
|
CERTS_FAIL(truncated_1,
|
|
|
|
require_failure_message = "It couldn't be parsed";
|
|
|
|
d->cell->payload[0] = 5)
|
2015-06-01 16:56:54 +02:00
|
|
|
CERTS_FAIL(truncated_2,
|
|
|
|
{
|
2016-08-31 18:11:01 +02:00
|
|
|
require_failure_message = "It couldn't be parsed";
|
2015-06-01 16:56:54 +02:00
|
|
|
d->cell->payload_len = 4;
|
|
|
|
memcpy(d->cell->payload, "\x01\x01\x00\x05", 4);
|
|
|
|
})
|
|
|
|
CERTS_FAIL(truncated_3,
|
|
|
|
{
|
2016-08-31 18:11:01 +02:00
|
|
|
require_failure_message = "It couldn't be parsed";
|
2015-06-01 16:56:54 +02:00
|
|
|
d->cell->payload_len = 7;
|
|
|
|
memcpy(d->cell->payload, "\x01\x01\x00\x05""abc", 7);
|
|
|
|
})
|
2014-10-08 21:39:34 +02:00
|
|
|
#define REENCODE() do { \
|
|
|
|
ssize_t n = certs_cell_encode(d->cell->payload, 4096, d->ccell); \
|
|
|
|
tt_int_op(n, >, 0); \
|
|
|
|
d->cell->payload_len = n; \
|
|
|
|
} while (0)
|
|
|
|
|
2015-06-01 16:56:54 +02:00
|
|
|
CERTS_FAIL(not_x509,
|
|
|
|
{
|
2016-08-31 18:11:01 +02:00
|
|
|
require_failure_message = "Received undecodable certificate";
|
2014-10-08 21:39:34 +02:00
|
|
|
certs_cell_cert_setlen_body(certs_cell_get_certs(d->ccell, 0), 3);
|
|
|
|
certs_cell_get_certs(d->ccell, 0)->cert_len = 3;
|
|
|
|
REENCODE();
|
2015-06-01 16:56:54 +02:00
|
|
|
})
|
|
|
|
CERTS_FAIL(both_link,
|
|
|
|
{
|
2016-08-31 18:11:01 +02:00
|
|
|
require_failure_message = "Duplicate x509 certificate";
|
2014-10-08 21:39:34 +02:00
|
|
|
certs_cell_get_certs(d->ccell, 0)->cert_type = 1;
|
|
|
|
certs_cell_get_certs(d->ccell, 1)->cert_type = 1;
|
|
|
|
REENCODE();
|
2015-06-01 16:56:54 +02:00
|
|
|
})
|
|
|
|
CERTS_FAIL(both_id_rsa,
|
|
|
|
{
|
2016-08-31 18:11:01 +02:00
|
|
|
require_failure_message = "Duplicate x509 certificate";
|
2014-10-08 21:39:34 +02:00
|
|
|
certs_cell_get_certs(d->ccell, 0)->cert_type = 2;
|
|
|
|
certs_cell_get_certs(d->ccell, 1)->cert_type = 2;
|
|
|
|
REENCODE();
|
2015-06-01 16:56:54 +02:00
|
|
|
})
|
|
|
|
CERTS_FAIL(both_auth,
|
|
|
|
{
|
2016-08-31 18:11:01 +02:00
|
|
|
require_failure_message = "Duplicate x509 certificate";
|
2014-10-08 21:39:34 +02:00
|
|
|
certs_cell_get_certs(d->ccell, 0)->cert_type = 3;
|
|
|
|
certs_cell_get_certs(d->ccell, 1)->cert_type = 3;
|
|
|
|
REENCODE();
|
2015-06-01 16:56:54 +02:00
|
|
|
})
|
|
|
|
CERTS_FAIL(wrong_labels_1,
|
|
|
|
{
|
2016-08-31 18:11:01 +02:00
|
|
|
require_failure_message = "The link certificate was not valid";
|
2014-10-08 21:39:34 +02:00
|
|
|
certs_cell_get_certs(d->ccell, 0)->cert_type = 2;
|
|
|
|
certs_cell_get_certs(d->ccell, 1)->cert_type = 1;
|
|
|
|
REENCODE();
|
2015-06-01 16:56:54 +02:00
|
|
|
})
|
|
|
|
CERTS_FAIL(wrong_labels_2,
|
|
|
|
{
|
2014-10-08 21:39:34 +02:00
|
|
|
const tor_x509_cert_t *a;
|
|
|
|
const tor_x509_cert_t *b;
|
|
|
|
const uint8_t *enca;
|
|
|
|
size_t lena;
|
2016-08-31 18:11:01 +02:00
|
|
|
require_failure_message = "The link certificate was not valid";
|
2014-10-08 21:39:34 +02:00
|
|
|
tor_tls_get_my_certs(1, &a, &b);
|
|
|
|
tor_x509_cert_get_der(a, &enca, &lena);
|
|
|
|
certs_cell_cert_setlen_body(certs_cell_get_certs(d->ccell, 1), lena);
|
|
|
|
memcpy(certs_cell_cert_getarray_body(certs_cell_get_certs(d->ccell, 1)),
|
|
|
|
enca, lena);
|
|
|
|
certs_cell_get_certs(d->ccell, 1)->cert_len = lena;
|
|
|
|
REENCODE();
|
|
|
|
})
|
2015-06-01 16:56:54 +02:00
|
|
|
CERTS_FAIL(wrong_labels_3,
|
|
|
|
{
|
2016-08-31 18:11:01 +02:00
|
|
|
require_failure_message = "The certs we wanted were missing";
|
2015-06-01 16:56:54 +02:00
|
|
|
certs_cell_get_certs(d->ccell, 0)->cert_type = 2;
|
|
|
|
certs_cell_get_certs(d->ccell, 1)->cert_type = 3;
|
|
|
|
REENCODE();
|
|
|
|
})
|
|
|
|
CERTS_FAIL(server_missing_certs,
|
|
|
|
{
|
2016-08-31 18:11:01 +02:00
|
|
|
require_failure_message = "The certs we wanted were missing";
|
2015-06-01 16:56:54 +02:00
|
|
|
d->c->handshake_state->started_here = 0;
|
|
|
|
})
|
|
|
|
CERTS_FAIL(server_wrong_labels_1,
|
|
|
|
{
|
2016-08-31 18:11:01 +02:00
|
|
|
require_failure_message =
|
|
|
|
"The authentication certificate was not valid";
|
2015-06-01 16:56:54 +02:00
|
|
|
d->c->handshake_state->started_here = 0;
|
|
|
|
certs_cell_get_certs(d->ccell, 0)->cert_type = 2;
|
|
|
|
certs_cell_get_certs(d->ccell, 1)->cert_type = 3;
|
|
|
|
REENCODE();
|
|
|
|
})
|
2014-10-08 21:39:34 +02:00
|
|
|
|
|
|
|
static void
|
|
|
|
test_link_handshake_send_authchallenge(void *arg)
|
|
|
|
{
|
|
|
|
(void)arg;
|
|
|
|
|
|
|
|
or_connection_t *c1 = or_connection_new(CONN_TYPE_OR, AF_INET);
|
|
|
|
var_cell_t *cell1=NULL, *cell2=NULL;
|
|
|
|
|
|
|
|
MOCK(connection_or_write_var_cell_to_buf, mock_write_var_cell);
|
|
|
|
|
|
|
|
tt_int_op(connection_init_or_handshake_state(c1, 0), ==, 0);
|
|
|
|
c1->base_.state = OR_CONN_STATE_OR_HANDSHAKING_V3;
|
|
|
|
tt_assert(! mock_got_var_cell);
|
|
|
|
tt_int_op(0, ==, connection_or_send_auth_challenge_cell(c1));
|
|
|
|
cell1 = mock_got_var_cell;
|
|
|
|
tt_int_op(0, ==, connection_or_send_auth_challenge_cell(c1));
|
|
|
|
cell2 = mock_got_var_cell;
|
|
|
|
tt_int_op(36, ==, cell1->payload_len);
|
|
|
|
tt_int_op(36, ==, cell2->payload_len);
|
|
|
|
tt_int_op(0, ==, cell1->circ_id);
|
|
|
|
tt_int_op(0, ==, cell2->circ_id);
|
|
|
|
tt_int_op(CELL_AUTH_CHALLENGE, ==, cell1->command);
|
|
|
|
tt_int_op(CELL_AUTH_CHALLENGE, ==, cell2->command);
|
|
|
|
|
|
|
|
tt_mem_op("\x00\x01\x00\x01", ==, cell1->payload + 32, 4);
|
|
|
|
tt_mem_op("\x00\x01\x00\x01", ==, cell2->payload + 32, 4);
|
|
|
|
tt_mem_op(cell1->payload, !=, cell2->payload, 32);
|
|
|
|
|
|
|
|
done:
|
|
|
|
UNMOCK(connection_or_write_var_cell_to_buf);
|
|
|
|
connection_free_(TO_CONN(c1));
|
|
|
|
tor_free(cell1);
|
|
|
|
tor_free(cell2);
|
|
|
|
}
|
|
|
|
|
|
|
|
typedef struct authchallenge_data_s {
|
|
|
|
or_connection_t *c;
|
|
|
|
channel_tls_t *chan;
|
|
|
|
var_cell_t *cell;
|
|
|
|
} authchallenge_data_t;
|
|
|
|
|
|
|
|
static int
|
|
|
|
recv_authchallenge_cleanup(const struct testcase_t *test, void *obj)
|
|
|
|
{
|
|
|
|
(void)test;
|
|
|
|
authchallenge_data_t *d = obj;
|
|
|
|
|
|
|
|
UNMOCK(connection_or_send_netinfo);
|
|
|
|
UNMOCK(connection_or_close_for_error);
|
|
|
|
UNMOCK(connection_or_send_authenticate_cell);
|
|
|
|
|
|
|
|
if (d) {
|
|
|
|
tor_free(d->cell);
|
|
|
|
connection_free_(TO_CONN(d->c));
|
2014-10-17 22:30:42 +02:00
|
|
|
circuitmux_free(d->chan->base_.cmux);
|
2014-10-08 21:39:34 +02:00
|
|
|
tor_free(d->chan);
|
|
|
|
tor_free(d);
|
|
|
|
}
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void *
|
|
|
|
recv_authchallenge_setup(const struct testcase_t *test)
|
|
|
|
{
|
|
|
|
(void)test;
|
|
|
|
authchallenge_data_t *d = tor_malloc_zero(sizeof(*d));
|
|
|
|
d->c = or_connection_new(CONN_TYPE_OR, AF_INET);
|
|
|
|
d->chan = tor_malloc_zero(sizeof(*d->chan));
|
|
|
|
d->c->chan = d->chan;
|
|
|
|
d->c->base_.address = tor_strdup("HaveAnAddress");
|
|
|
|
d->c->base_.state = OR_CONN_STATE_OR_HANDSHAKING_V3;
|
|
|
|
d->chan->conn = d->c;
|
|
|
|
tt_int_op(connection_init_or_handshake_state(d->c, 1), ==, 0);
|
|
|
|
d->c->link_proto = 4;
|
|
|
|
d->c->handshake_state->received_certs_cell = 1;
|
|
|
|
d->cell = var_cell_new(128);
|
|
|
|
d->cell->payload_len = 38;
|
|
|
|
d->cell->payload[33] = 2;
|
|
|
|
d->cell->payload[35] = 7;
|
|
|
|
d->cell->payload[37] = 1;
|
|
|
|
d->cell->command = CELL_AUTH_CHALLENGE;
|
|
|
|
|
|
|
|
get_options_mutable()->ORPort_set = 1;
|
|
|
|
|
|
|
|
MOCK(connection_or_close_for_error, mock_close_for_err);
|
|
|
|
MOCK(connection_or_send_netinfo, mock_send_netinfo);
|
|
|
|
MOCK(connection_or_send_authenticate_cell, mock_send_authenticate);
|
|
|
|
|
|
|
|
tt_int_op(0, ==, d->c->handshake_state->received_auth_challenge);
|
|
|
|
tt_int_op(0, ==, mock_send_authenticate_called);
|
|
|
|
tt_int_op(0, ==, mock_send_netinfo_called);
|
|
|
|
|
|
|
|
return d;
|
|
|
|
done:
|
|
|
|
recv_authchallenge_cleanup(test, d);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct testcase_setup_t setup_recv_authchallenge = {
|
|
|
|
.setup_fn = recv_authchallenge_setup,
|
|
|
|
.cleanup_fn = recv_authchallenge_cleanup
|
|
|
|
};
|
|
|
|
|
|
|
|
static void
|
|
|
|
test_link_handshake_recv_authchallenge_ok(void *arg)
|
|
|
|
{
|
|
|
|
authchallenge_data_t *d = arg;
|
|
|
|
|
|
|
|
channel_tls_process_auth_challenge_cell(d->cell, d->chan);
|
|
|
|
tt_int_op(0, ==, mock_close_called);
|
|
|
|
tt_int_op(1, ==, d->c->handshake_state->received_auth_challenge);
|
|
|
|
tt_int_op(1, ==, mock_send_authenticate_called);
|
|
|
|
tt_int_op(1, ==, mock_send_netinfo_called);
|
|
|
|
done:
|
|
|
|
;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
test_link_handshake_recv_authchallenge_ok_noserver(void *arg)
|
|
|
|
{
|
|
|
|
authchallenge_data_t *d = arg;
|
|
|
|
get_options_mutable()->ORPort_set = 0;
|
|
|
|
|
|
|
|
channel_tls_process_auth_challenge_cell(d->cell, d->chan);
|
|
|
|
tt_int_op(0, ==, mock_close_called);
|
|
|
|
tt_int_op(1, ==, d->c->handshake_state->received_auth_challenge);
|
|
|
|
tt_int_op(0, ==, mock_send_authenticate_called);
|
|
|
|
tt_int_op(0, ==, mock_send_netinfo_called);
|
|
|
|
done:
|
|
|
|
;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
test_link_handshake_recv_authchallenge_ok_unrecognized(void *arg)
|
|
|
|
{
|
|
|
|
authchallenge_data_t *d = arg;
|
|
|
|
d->cell->payload[37] = 99;
|
|
|
|
|
|
|
|
channel_tls_process_auth_challenge_cell(d->cell, d->chan);
|
|
|
|
tt_int_op(0, ==, mock_close_called);
|
|
|
|
tt_int_op(1, ==, d->c->handshake_state->received_auth_challenge);
|
|
|
|
tt_int_op(0, ==, mock_send_authenticate_called);
|
|
|
|
tt_int_op(1, ==, mock_send_netinfo_called);
|
|
|
|
done:
|
|
|
|
;
|
|
|
|
}
|
|
|
|
|
|
|
|
#define AUTHCHALLENGE_FAIL(name, code) \
|
|
|
|
static void \
|
2015-06-01 16:56:54 +02:00
|
|
|
test_link_handshake_recv_authchallenge_ ## name(void *arg) \
|
2014-10-08 21:39:34 +02:00
|
|
|
{ \
|
|
|
|
authchallenge_data_t *d = arg; \
|
2016-08-31 18:11:01 +02:00
|
|
|
const char *require_failure_message = NULL; \
|
|
|
|
const int prev_level = setup_capture_of_logs(LOG_INFO); \
|
2014-10-08 21:39:34 +02:00
|
|
|
{ code ; } \
|
|
|
|
channel_tls_process_auth_challenge_cell(d->cell, d->chan); \
|
|
|
|
tt_int_op(1, ==, mock_close_called); \
|
|
|
|
tt_int_op(0, ==, mock_send_authenticate_called); \
|
|
|
|
tt_int_op(0, ==, mock_send_netinfo_called); \
|
2016-08-31 18:11:01 +02:00
|
|
|
if (require_failure_message) { \
|
2016-09-08 17:16:09 +02:00
|
|
|
expect_log_msg_containing(require_failure_message); \
|
2016-08-31 18:11:01 +02:00
|
|
|
} \
|
2014-10-08 21:39:34 +02:00
|
|
|
done: \
|
2016-08-31 18:11:01 +02:00
|
|
|
teardown_capture_of_logs(prev_level); \
|
2014-10-08 21:39:34 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
AUTHCHALLENGE_FAIL(badstate,
|
2016-08-31 20:10:15 +02:00
|
|
|
require_failure_message = "We're not currently doing a "
|
|
|
|
"v3 handshake";
|
2014-10-08 21:39:34 +02:00
|
|
|
d->c->base_.state = OR_CONN_STATE_CONNECTING)
|
|
|
|
AUTHCHALLENGE_FAIL(badproto,
|
2016-08-31 20:10:15 +02:00
|
|
|
require_failure_message = "not using link protocol >= 3";
|
2014-10-08 21:39:34 +02:00
|
|
|
d->c->link_proto = 2)
|
|
|
|
AUTHCHALLENGE_FAIL(as_server,
|
2016-08-31 20:10:15 +02:00
|
|
|
require_failure_message = "We didn't originate this "
|
|
|
|
"connection";
|
2014-10-08 21:39:34 +02:00
|
|
|
d->c->handshake_state->started_here = 0;)
|
|
|
|
AUTHCHALLENGE_FAIL(duplicate,
|
2016-08-31 20:10:15 +02:00
|
|
|
require_failure_message = "We already received one";
|
2014-10-08 21:39:34 +02:00
|
|
|
d->c->handshake_state->received_auth_challenge = 1)
|
|
|
|
AUTHCHALLENGE_FAIL(nocerts,
|
2016-08-31 20:10:15 +02:00
|
|
|
require_failure_message = "We haven't gotten a CERTS "
|
|
|
|
"cell yet";
|
2014-10-08 21:39:34 +02:00
|
|
|
d->c->handshake_state->received_certs_cell = 0)
|
|
|
|
AUTHCHALLENGE_FAIL(tooshort,
|
2016-08-31 20:10:15 +02:00
|
|
|
require_failure_message = "It was not well-formed";
|
2014-10-08 21:39:34 +02:00
|
|
|
d->cell->payload_len = 33)
|
|
|
|
AUTHCHALLENGE_FAIL(truncated,
|
2016-08-31 20:10:15 +02:00
|
|
|
require_failure_message = "It was not well-formed";
|
2014-10-08 21:39:34 +02:00
|
|
|
d->cell->payload_len = 34)
|
|
|
|
AUTHCHALLENGE_FAIL(nonzero_circid,
|
2016-08-31 20:10:15 +02:00
|
|
|
require_failure_message = "It had a nonzero circuit ID";
|
2014-10-08 21:39:34 +02:00
|
|
|
d->cell->circ_id = 1337)
|
|
|
|
|
2014-10-16 15:07:50 +02:00
|
|
|
static tor_x509_cert_t *mock_peer_cert = NULL;
|
|
|
|
static tor_x509_cert_t *
|
|
|
|
mock_get_peer_cert(tor_tls_t *tls)
|
|
|
|
{
|
|
|
|
(void)tls;
|
|
|
|
return mock_peer_cert;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
mock_get_tlssecrets(tor_tls_t *tls, uint8_t *secrets_out)
|
|
|
|
{
|
|
|
|
(void)tls;
|
|
|
|
memcpy(secrets_out, "int getRandomNumber(){return 4;}", 32);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
mock_set_circid_type(channel_t *chan,
|
|
|
|
crypto_pk_t *identity_rcvd,
|
|
|
|
int consider_identity)
|
|
|
|
{
|
|
|
|
(void) chan;
|
|
|
|
(void) identity_rcvd;
|
|
|
|
(void) consider_identity;
|
|
|
|
}
|
|
|
|
|
|
|
|
typedef struct authenticate_data_s {
|
|
|
|
or_connection_t *c1, *c2;
|
|
|
|
channel_tls_t *chan2;
|
|
|
|
var_cell_t *cell;
|
2014-10-17 22:30:42 +02:00
|
|
|
crypto_pk_t *key1, *key2;
|
2014-10-16 15:07:50 +02:00
|
|
|
} authenticate_data_t;
|
|
|
|
|
|
|
|
static int
|
|
|
|
authenticate_data_cleanup(const struct testcase_t *test, void *arg)
|
|
|
|
{
|
|
|
|
(void) test;
|
|
|
|
UNMOCK(connection_or_write_var_cell_to_buf);
|
|
|
|
UNMOCK(tor_tls_get_peer_cert);
|
|
|
|
UNMOCK(tor_tls_get_tlssecrets);
|
|
|
|
UNMOCK(connection_or_close_for_error);
|
|
|
|
UNMOCK(channel_set_circid_type);
|
|
|
|
authenticate_data_t *d = arg;
|
|
|
|
if (d) {
|
|
|
|
tor_free(d->cell);
|
2016-08-31 17:37:18 +02:00
|
|
|
connection_or_remove_from_identity_map(d->c1);
|
|
|
|
connection_or_remove_from_identity_map(d->c2);
|
2014-10-16 15:07:50 +02:00
|
|
|
connection_free_(TO_CONN(d->c1));
|
|
|
|
connection_free_(TO_CONN(d->c2));
|
2014-10-17 22:30:42 +02:00
|
|
|
circuitmux_free(d->chan2->base_.cmux);
|
2014-10-16 15:07:50 +02:00
|
|
|
tor_free(d->chan2);
|
2014-10-17 22:30:42 +02:00
|
|
|
crypto_pk_free(d->key1);
|
|
|
|
crypto_pk_free(d->key2);
|
|
|
|
tor_free(d);
|
2014-10-16 15:07:50 +02:00
|
|
|
}
|
|
|
|
mock_peer_cert = NULL;
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void *
|
|
|
|
authenticate_data_setup(const struct testcase_t *test)
|
|
|
|
{
|
|
|
|
authenticate_data_t *d = tor_malloc_zero(sizeof(*d));
|
|
|
|
|
|
|
|
scheduler_init();
|
|
|
|
|
|
|
|
MOCK(connection_or_write_var_cell_to_buf, mock_write_var_cell);
|
|
|
|
MOCK(tor_tls_get_peer_cert, mock_get_peer_cert);
|
|
|
|
MOCK(tor_tls_get_tlssecrets, mock_get_tlssecrets);
|
|
|
|
MOCK(connection_or_close_for_error, mock_close_for_err);
|
|
|
|
MOCK(channel_set_circid_type, mock_set_circid_type);
|
|
|
|
d->c1 = or_connection_new(CONN_TYPE_OR, AF_INET);
|
|
|
|
d->c2 = or_connection_new(CONN_TYPE_OR, AF_INET);
|
2016-08-31 17:37:18 +02:00
|
|
|
tor_addr_from_ipv4h(&d->c1->base_.addr, 0x01020304);
|
|
|
|
tor_addr_from_ipv4h(&d->c2->base_.addr, 0x05060708);
|
2014-10-16 15:07:50 +02:00
|
|
|
|
2014-10-17 22:30:42 +02:00
|
|
|
d->key1 = pk_generate(2);
|
|
|
|
d->key2 = pk_generate(3);
|
2014-10-16 15:07:50 +02:00
|
|
|
tt_int_op(tor_tls_context_init(TOR_TLS_CTX_IS_PUBLIC_SERVER,
|
2014-10-17 22:30:42 +02:00
|
|
|
d->key1, d->key2, 86400), ==, 0);
|
2014-10-16 15:07:50 +02:00
|
|
|
|
|
|
|
d->c1->base_.state = OR_CONN_STATE_OR_HANDSHAKING_V3;
|
|
|
|
d->c1->link_proto = 3;
|
|
|
|
tt_int_op(connection_init_or_handshake_state(d->c1, 1), ==, 0);
|
|
|
|
|
|
|
|
d->c2->base_.state = OR_CONN_STATE_OR_HANDSHAKING_V3;
|
|
|
|
d->c2->link_proto = 3;
|
|
|
|
tt_int_op(connection_init_or_handshake_state(d->c2, 0), ==, 0);
|
|
|
|
var_cell_t *cell = var_cell_new(16);
|
|
|
|
cell->command = CELL_CERTS;
|
|
|
|
or_handshake_state_record_var_cell(d->c1, d->c1->handshake_state, cell, 1);
|
|
|
|
or_handshake_state_record_var_cell(d->c2, d->c2->handshake_state, cell, 0);
|
|
|
|
memset(cell->payload, 0xf0, 16);
|
|
|
|
or_handshake_state_record_var_cell(d->c1, d->c1->handshake_state, cell, 0);
|
|
|
|
or_handshake_state_record_var_cell(d->c2, d->c2->handshake_state, cell, 1);
|
|
|
|
tor_free(cell);
|
|
|
|
|
|
|
|
d->chan2 = tor_malloc_zero(sizeof(*d->chan2));
|
|
|
|
channel_tls_common_init(d->chan2);
|
|
|
|
d->c2->chan = d->chan2;
|
|
|
|
d->chan2->conn = d->c2;
|
|
|
|
d->c2->base_.address = tor_strdup("C2");
|
|
|
|
d->c2->tls = tor_tls_new(-1, 1);
|
|
|
|
d->c2->handshake_state->received_certs_cell = 1;
|
|
|
|
|
|
|
|
const tor_x509_cert_t *id_cert=NULL, *link_cert=NULL, *auth_cert=NULL;
|
|
|
|
tt_assert(! tor_tls_get_my_certs(1, &link_cert, &id_cert));
|
|
|
|
|
|
|
|
const uint8_t *der;
|
|
|
|
size_t sz;
|
|
|
|
tor_x509_cert_get_der(id_cert, &der, &sz);
|
|
|
|
d->c1->handshake_state->id_cert = tor_x509_cert_decode(der, sz);
|
|
|
|
d->c2->handshake_state->id_cert = tor_x509_cert_decode(der, sz);
|
|
|
|
|
|
|
|
tor_x509_cert_get_der(link_cert, &der, &sz);
|
|
|
|
mock_peer_cert = tor_x509_cert_decode(der, sz);
|
|
|
|
tt_assert(mock_peer_cert);
|
|
|
|
tt_assert(! tor_tls_get_my_certs(0, &auth_cert, &id_cert));
|
|
|
|
tor_x509_cert_get_der(auth_cert, &der, &sz);
|
|
|
|
d->c2->handshake_state->auth_cert = tor_x509_cert_decode(der, sz);
|
|
|
|
|
|
|
|
/* Make an authenticate cell ... */
|
|
|
|
tt_int_op(0, ==, connection_or_send_authenticate_cell(d->c1,
|
|
|
|
AUTHTYPE_RSA_SHA256_TLSSECRET));
|
|
|
|
tt_assert(mock_got_var_cell);
|
|
|
|
d->cell = mock_got_var_cell;
|
|
|
|
mock_got_var_cell = NULL;
|
|
|
|
|
|
|
|
return d;
|
|
|
|
done:
|
|
|
|
authenticate_data_cleanup(test, d);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct testcase_setup_t setup_authenticate = {
|
|
|
|
.setup_fn = authenticate_data_setup,
|
|
|
|
.cleanup_fn = authenticate_data_cleanup
|
|
|
|
};
|
|
|
|
|
|
|
|
static void
|
|
|
|
test_link_handshake_auth_cell(void *arg)
|
|
|
|
{
|
|
|
|
authenticate_data_t *d = arg;
|
|
|
|
auth1_t *auth1 = NULL;
|
2014-10-17 22:30:42 +02:00
|
|
|
crypto_pk_t *auth_pubkey = NULL;
|
2014-10-16 15:07:50 +02:00
|
|
|
|
|
|
|
/* Is the cell well-formed on the outer layer? */
|
|
|
|
tt_int_op(d->cell->command, ==, CELL_AUTHENTICATE);
|
|
|
|
tt_int_op(d->cell->payload[0], ==, 0);
|
|
|
|
tt_int_op(d->cell->payload[1], ==, 1);
|
|
|
|
tt_int_op(ntohs(get_uint16(d->cell->payload + 2)), ==,
|
|
|
|
d->cell->payload_len - 4);
|
|
|
|
|
|
|
|
/* Check it out for plausibility... */
|
|
|
|
auth_ctx_t ctx;
|
|
|
|
ctx.is_ed = 0;
|
|
|
|
tt_int_op(d->cell->payload_len-4, ==, auth1_parse(&auth1,
|
|
|
|
d->cell->payload+4,
|
|
|
|
d->cell->payload_len - 4, &ctx));
|
|
|
|
tt_assert(auth1);
|
|
|
|
|
|
|
|
tt_mem_op(auth1->type, ==, "AUTH0001", 8);
|
|
|
|
tt_mem_op(auth1->tlssecrets, ==, "int getRandomNumber(){return 4;}", 32);
|
|
|
|
tt_int_op(auth1_getlen_sig(auth1), >, 120);
|
|
|
|
|
|
|
|
/* Is the signature okay? */
|
|
|
|
uint8_t sig[128];
|
|
|
|
uint8_t digest[32];
|
2014-10-17 22:30:42 +02:00
|
|
|
|
|
|
|
auth_pubkey = tor_tls_cert_get_key(d->c2->handshake_state->auth_cert);
|
2014-10-16 15:07:50 +02:00
|
|
|
int n = crypto_pk_public_checksig(
|
2014-10-17 22:30:42 +02:00
|
|
|
auth_pubkey,
|
2014-10-16 15:07:50 +02:00
|
|
|
(char*)sig, sizeof(sig), (char*)auth1_getarray_sig(auth1),
|
|
|
|
auth1_getlen_sig(auth1));
|
|
|
|
tt_int_op(n, ==, 32);
|
|
|
|
const uint8_t *start = d->cell->payload+4, *end = auth1->end_of_signed;
|
|
|
|
crypto_digest256((char*)digest,
|
|
|
|
(const char*)start, end-start, DIGEST_SHA256);
|
|
|
|
tt_mem_op(sig, ==, digest, 32);
|
|
|
|
|
|
|
|
/* Then feed it to c2. */
|
|
|
|
tt_int_op(d->c2->handshake_state->authenticated, ==, 0);
|
|
|
|
channel_tls_process_authenticate_cell(d->cell, d->chan2);
|
|
|
|
tt_int_op(mock_close_called, ==, 0);
|
|
|
|
tt_int_op(d->c2->handshake_state->authenticated, ==, 1);
|
|
|
|
|
|
|
|
done:
|
|
|
|
auth1_free(auth1);
|
2014-10-17 22:30:42 +02:00
|
|
|
crypto_pk_free(auth_pubkey);
|
2014-10-16 15:07:50 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#define AUTHENTICATE_FAIL(name, code) \
|
|
|
|
static void \
|
2015-06-01 16:56:54 +02:00
|
|
|
test_link_handshake_auth_ ## name(void *arg) \
|
2014-10-16 15:07:50 +02:00
|
|
|
{ \
|
|
|
|
authenticate_data_t *d = arg; \
|
2016-08-31 18:11:01 +02:00
|
|
|
const char *require_failure_message = NULL; \
|
|
|
|
const int prev_level = setup_capture_of_logs(LOG_INFO); \
|
2014-10-16 15:07:50 +02:00
|
|
|
{ code ; } \
|
|
|
|
tt_int_op(d->c2->handshake_state->authenticated, ==, 0); \
|
|
|
|
channel_tls_process_authenticate_cell(d->cell, d->chan2); \
|
|
|
|
tt_int_op(mock_close_called, ==, 1); \
|
|
|
|
tt_int_op(d->c2->handshake_state->authenticated, ==, 0); \
|
2016-08-31 18:11:01 +02:00
|
|
|
if (require_failure_message) { \
|
2016-09-08 17:16:09 +02:00
|
|
|
expect_log_msg_containing(require_failure_message); \
|
2016-08-31 18:11:01 +02:00
|
|
|
} \
|
|
|
|
done: \
|
|
|
|
teardown_capture_of_logs(prev_level); \
|
2014-10-16 15:07:50 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
AUTHENTICATE_FAIL(badstate,
|
2016-08-31 20:10:15 +02:00
|
|
|
require_failure_message = "We're not doing a v3 handshake";
|
2014-10-16 15:07:50 +02:00
|
|
|
d->c2->base_.state = OR_CONN_STATE_CONNECTING)
|
|
|
|
AUTHENTICATE_FAIL(badproto,
|
2016-08-31 20:10:15 +02:00
|
|
|
require_failure_message = "not using link protocol >= 3";
|
2014-10-16 15:07:50 +02:00
|
|
|
d->c2->link_proto = 2)
|
|
|
|
AUTHENTICATE_FAIL(atclient,
|
2016-08-31 20:10:15 +02:00
|
|
|
require_failure_message = "We originated this connection";
|
2014-10-16 15:07:50 +02:00
|
|
|
d->c2->handshake_state->started_here = 1)
|
|
|
|
AUTHENTICATE_FAIL(duplicate,
|
2016-08-31 20:10:15 +02:00
|
|
|
require_failure_message = "We already got one";
|
2014-10-16 15:07:50 +02:00
|
|
|
d->c2->handshake_state->received_authenticate = 1)
|
|
|
|
static void
|
|
|
|
test_link_handshake_auth_already_authenticated(void *arg)
|
|
|
|
{
|
|
|
|
authenticate_data_t *d = arg;
|
2016-08-31 20:10:15 +02:00
|
|
|
const int prev_level = setup_capture_of_logs(LOG_INFO);
|
2014-10-16 15:07:50 +02:00
|
|
|
d->c2->handshake_state->authenticated = 1;
|
|
|
|
channel_tls_process_authenticate_cell(d->cell, d->chan2);
|
|
|
|
tt_int_op(mock_close_called, ==, 1);
|
|
|
|
tt_int_op(d->c2->handshake_state->authenticated, ==, 1);
|
2016-08-31 20:10:15 +02:00
|
|
|
expect_log_msg_containing("The peer is already authenticated");
|
2014-10-16 15:07:50 +02:00
|
|
|
done:
|
2016-08-31 20:10:15 +02:00
|
|
|
teardown_capture_of_logs(prev_level);
|
2014-10-16 15:07:50 +02:00
|
|
|
}
|
2016-08-31 20:10:15 +02:00
|
|
|
|
2014-10-16 15:07:50 +02:00
|
|
|
AUTHENTICATE_FAIL(nocerts,
|
2016-08-31 20:10:15 +02:00
|
|
|
require_failure_message = "We never got a certs cell";
|
2014-10-16 15:07:50 +02:00
|
|
|
d->c2->handshake_state->received_certs_cell = 0)
|
|
|
|
AUTHENTICATE_FAIL(noidcert,
|
2016-08-31 20:10:15 +02:00
|
|
|
require_failure_message = "We never got an identity "
|
|
|
|
"certificate";
|
2014-10-17 22:30:42 +02:00
|
|
|
tor_x509_cert_free(d->c2->handshake_state->id_cert);
|
2014-10-16 15:07:50 +02:00
|
|
|
d->c2->handshake_state->id_cert = NULL)
|
|
|
|
AUTHENTICATE_FAIL(noauthcert,
|
2016-08-31 20:10:15 +02:00
|
|
|
require_failure_message = "We never got an authentication "
|
|
|
|
"certificate";
|
2014-10-17 22:30:42 +02:00
|
|
|
tor_x509_cert_free(d->c2->handshake_state->auth_cert);
|
2014-10-16 15:07:50 +02:00
|
|
|
d->c2->handshake_state->auth_cert = NULL)
|
|
|
|
AUTHENTICATE_FAIL(tooshort,
|
2016-08-31 20:10:15 +02:00
|
|
|
require_failure_message = "Cell was way too short";
|
2014-10-16 15:07:50 +02:00
|
|
|
d->cell->payload_len = 3)
|
|
|
|
AUTHENTICATE_FAIL(badtype,
|
2016-08-31 20:10:15 +02:00
|
|
|
require_failure_message = "Authenticator type was not "
|
|
|
|
"recognized";
|
2014-10-16 15:07:50 +02:00
|
|
|
d->cell->payload[0] = 0xff)
|
|
|
|
AUTHENTICATE_FAIL(truncated_1,
|
2016-08-31 20:10:15 +02:00
|
|
|
require_failure_message = "Authenticator was truncated";
|
2014-10-16 15:07:50 +02:00
|
|
|
d->cell->payload[2]++)
|
|
|
|
AUTHENTICATE_FAIL(truncated_2,
|
2016-08-31 20:10:15 +02:00
|
|
|
require_failure_message = "Authenticator was truncated";
|
2014-10-16 15:07:50 +02:00
|
|
|
d->cell->payload[3]++)
|
|
|
|
AUTHENTICATE_FAIL(tooshort_1,
|
2016-08-31 20:10:15 +02:00
|
|
|
require_failure_message = "Authenticator was too short";
|
2014-10-16 15:07:50 +02:00
|
|
|
tt_int_op(d->cell->payload_len, >=, 260);
|
|
|
|
d->cell->payload[2] -= 1;
|
|
|
|
d->cell->payload_len -= 256;)
|
|
|
|
AUTHENTICATE_FAIL(badcontent,
|
2016-08-31 20:10:15 +02:00
|
|
|
require_failure_message = "Some field in the AUTHENTICATE "
|
|
|
|
"cell body was not as expected";
|
2014-10-16 15:07:50 +02:00
|
|
|
d->cell->payload[10] ^= 0xff)
|
|
|
|
AUTHENTICATE_FAIL(badsig_1,
|
2016-08-31 20:10:15 +02:00
|
|
|
require_failure_message = "Signature wasn't valid";
|
2014-10-16 15:07:50 +02:00
|
|
|
d->cell->payload[d->cell->payload_len - 5] ^= 0xff)
|
|
|
|
|
2014-10-08 21:39:34 +02:00
|
|
|
#define TEST(name, flags) \
|
|
|
|
{ #name , test_link_handshake_ ## name, (flags), NULL, NULL }
|
|
|
|
|
|
|
|
#define TEST_RCV_AUTHCHALLENGE(name) \
|
|
|
|
{ "recv_authchallenge/" #name , \
|
|
|
|
test_link_handshake_recv_authchallenge_ ## name, TT_FORK, \
|
|
|
|
&setup_recv_authchallenge, NULL }
|
|
|
|
|
|
|
|
#define TEST_RCV_CERTS(name) \
|
|
|
|
{ "recv_certs/" #name , \
|
|
|
|
test_link_handshake_recv_certs_ ## name, TT_FORK, \
|
|
|
|
&setup_recv_certs, NULL }
|
|
|
|
|
2014-10-16 15:07:50 +02:00
|
|
|
#define TEST_AUTHENTICATE(name) \
|
|
|
|
{ "authenticate/" #name , test_link_handshake_auth_ ## name, TT_FORK, \
|
|
|
|
&setup_authenticate, NULL }
|
|
|
|
|
2014-10-08 21:39:34 +02:00
|
|
|
struct testcase_t link_handshake_tests[] = {
|
|
|
|
TEST(certs_ok, TT_FORK),
|
|
|
|
//TEST(certs_bad, TT_FORK),
|
|
|
|
TEST_RCV_CERTS(ok),
|
|
|
|
TEST_RCV_CERTS(ok_server),
|
|
|
|
TEST_RCV_CERTS(badstate),
|
|
|
|
TEST_RCV_CERTS(badproto),
|
|
|
|
TEST_RCV_CERTS(duplicate),
|
|
|
|
TEST_RCV_CERTS(already_authenticated),
|
|
|
|
TEST_RCV_CERTS(empty),
|
|
|
|
TEST_RCV_CERTS(bad_circid),
|
|
|
|
TEST_RCV_CERTS(truncated_1),
|
|
|
|
TEST_RCV_CERTS(truncated_2),
|
|
|
|
TEST_RCV_CERTS(truncated_3),
|
|
|
|
TEST_RCV_CERTS(not_x509),
|
|
|
|
TEST_RCV_CERTS(both_link),
|
|
|
|
TEST_RCV_CERTS(both_id_rsa),
|
|
|
|
TEST_RCV_CERTS(both_auth),
|
|
|
|
TEST_RCV_CERTS(wrong_labels_1),
|
|
|
|
TEST_RCV_CERTS(wrong_labels_2),
|
|
|
|
TEST_RCV_CERTS(wrong_labels_3),
|
|
|
|
TEST_RCV_CERTS(server_missing_certs),
|
|
|
|
TEST_RCV_CERTS(server_wrong_labels_1),
|
|
|
|
|
|
|
|
TEST(send_authchallenge, TT_FORK),
|
|
|
|
TEST_RCV_AUTHCHALLENGE(ok),
|
|
|
|
TEST_RCV_AUTHCHALLENGE(ok_noserver),
|
|
|
|
TEST_RCV_AUTHCHALLENGE(ok_unrecognized),
|
|
|
|
TEST_RCV_AUTHCHALLENGE(badstate),
|
|
|
|
TEST_RCV_AUTHCHALLENGE(badproto),
|
|
|
|
TEST_RCV_AUTHCHALLENGE(as_server),
|
|
|
|
TEST_RCV_AUTHCHALLENGE(duplicate),
|
|
|
|
TEST_RCV_AUTHCHALLENGE(nocerts),
|
|
|
|
TEST_RCV_AUTHCHALLENGE(tooshort),
|
|
|
|
TEST_RCV_AUTHCHALLENGE(truncated),
|
|
|
|
TEST_RCV_AUTHCHALLENGE(nonzero_circid),
|
|
|
|
|
2014-10-16 15:07:50 +02:00
|
|
|
TEST_AUTHENTICATE(cell),
|
|
|
|
TEST_AUTHENTICATE(badstate),
|
|
|
|
TEST_AUTHENTICATE(badproto),
|
|
|
|
TEST_AUTHENTICATE(atclient),
|
|
|
|
TEST_AUTHENTICATE(duplicate),
|
|
|
|
TEST_AUTHENTICATE(already_authenticated),
|
|
|
|
TEST_AUTHENTICATE(nocerts),
|
|
|
|
TEST_AUTHENTICATE(noidcert),
|
|
|
|
TEST_AUTHENTICATE(noauthcert),
|
|
|
|
TEST_AUTHENTICATE(tooshort),
|
|
|
|
TEST_AUTHENTICATE(badtype),
|
|
|
|
TEST_AUTHENTICATE(truncated_1),
|
|
|
|
TEST_AUTHENTICATE(truncated_2),
|
|
|
|
TEST_AUTHENTICATE(tooshort_1),
|
|
|
|
TEST_AUTHENTICATE(badcontent),
|
|
|
|
TEST_AUTHENTICATE(badsig_1),
|
|
|
|
//TEST_AUTHENTICATE(),
|
|
|
|
|
2014-10-08 21:39:34 +02:00
|
|
|
END_OF_TESTCASES
|
|
|
|
};
|
2015-06-01 14:59:14 +02:00
|
|
|
|