mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-11-24 12:23:32 +01:00
Merge branch 'tor-github/pr/1043'
This commit is contained in:
commit
130eb227ac
6
changes/ticket26846
Normal file
6
changes/ticket26846
Normal file
@ -0,0 +1,6 @@
|
||||
o Minor features (authenticated SENDME):
|
||||
- Ensure that there is enough randomness on every circuit
|
||||
to prevent an attacker from successfully predicting what SENDME cells
|
||||
they will need to send: at a random interval, if we have not send
|
||||
randomness already, leave some extra space at the end of a cell that
|
||||
we can fill with random bytes. Closes ticket 26846.
|
@ -120,7 +120,7 @@ problem function-size /src/core/or/connection_or.c:connection_or_compute_authent
|
||||
problem file-size /src/core/or/policies.c 3249
|
||||
problem function-size /src/core/or/policies.c:policy_summarize() 107
|
||||
problem function-size /src/core/or/protover.c:protover_all_supported() 117
|
||||
problem file-size /src/core/or/relay.c 3173
|
||||
problem file-size /src/core/or/relay.c 3250
|
||||
problem function-size /src/core/or/relay.c:circuit_receive_relay_cell() 127
|
||||
problem function-size /src/core/or/relay.c:relay_send_command_from_edge_() 116
|
||||
problem function-size /src/core/or/relay.c:connection_ap_process_end_not_open() 194
|
||||
|
@ -92,6 +92,10 @@ struct circuit_t {
|
||||
/** True iff this circuit has received a DESTROY cell in either direction */
|
||||
unsigned int received_destroy : 1;
|
||||
|
||||
/** True iff we have sent a sufficiently random data cell since last
|
||||
* we reset send_randomness_after_n_cells. */
|
||||
unsigned int have_sent_sufficiently_random_cell : 1;
|
||||
|
||||
uint8_t state; /**< Current status of this circuit. */
|
||||
uint8_t purpose; /**< Why are we creating this circuit? */
|
||||
|
||||
@ -104,6 +108,13 @@ struct circuit_t {
|
||||
* circuit-level sendme cells to indicate that we're willing to accept
|
||||
* more. */
|
||||
int deliver_window;
|
||||
/**
|
||||
* How many cells do we have until we need to send one that contains
|
||||
* sufficient randomness? Used to ensure that authenticated SENDME cells
|
||||
* will reflect some unpredictable information.
|
||||
**/
|
||||
uint16_t send_randomness_after_n_cells;
|
||||
|
||||
/** FIFO containing the digest of the cells that are just before a SENDME is
|
||||
* sent by the client. It is done at the last cell before our package_window
|
||||
* goes down to 0 which is when we expect a SENDME.
|
||||
|
@ -993,6 +993,7 @@ init_circuit_base(circuit_t *circ)
|
||||
|
||||
circ->package_window = circuit_initial_package_window();
|
||||
circ->deliver_window = CIRCWINDOW_START;
|
||||
circuit_reset_sendme_randomness(circ);
|
||||
cell_queue_init(&circ->n_chan_cells);
|
||||
|
||||
smartlist_add(circuit_get_global_list(), circ);
|
||||
|
@ -218,7 +218,7 @@ void circuit_mark_all_dirty_circs_as_unusable(void);
|
||||
void circuit_synchronize_written_or_bandwidth(const circuit_t *c,
|
||||
circuit_channel_direction_t dir);
|
||||
MOCK_DECL(void, circuit_mark_for_close_, (circuit_t *circ, int reason,
|
||||
int line, const char *file));
|
||||
int line, const char *cfile));
|
||||
int circuit_get_cpath_len(origin_circuit_t *circ);
|
||||
int circuit_get_cpath_opened_len(const origin_circuit_t *);
|
||||
void circuit_clear_cpath(origin_circuit_t *circ);
|
||||
|
@ -533,6 +533,10 @@ relay_command_to_string(uint8_t command)
|
||||
}
|
||||
}
|
||||
|
||||
/** When padding a cell with randomness, leave this many zeros after the
|
||||
* payload. */
|
||||
#define CELL_PADDING_GAP 4
|
||||
|
||||
/** Return the offset where the padding should start. The <b>data_len</b> is
|
||||
* the relay payload length expected to be put in the cell. It can not be
|
||||
* bigger than RELAY_PAYLOAD_SIZE else this function assert().
|
||||
@ -556,7 +560,7 @@ get_pad_cell_offset(size_t data_len)
|
||||
|
||||
/* If the offset is larger than the cell payload size, we return an offset
|
||||
* of zero indicating that no padding needs to be added. */
|
||||
size_t offset = RELAY_HEADER_SIZE + data_len + 4;
|
||||
size_t offset = RELAY_HEADER_SIZE + data_len + CELL_PADDING_GAP;
|
||||
if (offset >= CELL_PAYLOAD_SIZE) {
|
||||
return 0;
|
||||
}
|
||||
@ -2027,6 +2031,84 @@ uint64_t stats_n_data_cells_received = 0;
|
||||
* ever received were completely full of data. */
|
||||
uint64_t stats_n_data_bytes_received = 0;
|
||||
|
||||
/**
|
||||
* Called when initializing a circuit, or when we have reached the end of the
|
||||
* window in which we need to send some randomness so that incoming sendme
|
||||
* cells will be unpredictable. Resets the flags and picks a new window.
|
||||
*/
|
||||
void
|
||||
circuit_reset_sendme_randomness(circuit_t *circ)
|
||||
{
|
||||
circ->have_sent_sufficiently_random_cell = 0;
|
||||
circ->send_randomness_after_n_cells = CIRCWINDOW_INCREMENT / 2 +
|
||||
crypto_fast_rng_get_uint(get_thread_fast_rng(), CIRCWINDOW_INCREMENT / 2);
|
||||
}
|
||||
|
||||
/**
|
||||
* Any relay data payload containing fewer than this many real bytes is
|
||||
* considered to have enough randomness to.
|
||||
**/
|
||||
#define RELAY_PAYLOAD_LENGTH_FOR_RANDOM_SENDMES \
|
||||
(RELAY_PAYLOAD_SIZE - CELL_PADDING_GAP - 16)
|
||||
|
||||
/**
|
||||
* Helper. Return the number of bytes that should be put into a cell from a
|
||||
* given edge connection on which <b>n_available</b> bytes are available.
|
||||
*/
|
||||
STATIC size_t
|
||||
connection_edge_get_inbuf_bytes_to_package(size_t n_available,
|
||||
int package_partial,
|
||||
circuit_t *on_circuit)
|
||||
{
|
||||
if (!n_available)
|
||||
return 0;
|
||||
|
||||
/* Do we need to force this payload to have space for randomness? */
|
||||
const bool force_random_bytes =
|
||||
(on_circuit->send_randomness_after_n_cells == 0) &&
|
||||
(! on_circuit->have_sent_sufficiently_random_cell);
|
||||
|
||||
/* At most how much would we like to send in this cell? */
|
||||
size_t target_length;
|
||||
if (force_random_bytes) {
|
||||
target_length = RELAY_PAYLOAD_LENGTH_FOR_RANDOM_SENDMES;
|
||||
} else {
|
||||
target_length = RELAY_PAYLOAD_SIZE;
|
||||
}
|
||||
|
||||
/* Decide how many bytes we will actually put into this cell. */
|
||||
size_t package_length;
|
||||
if (n_available >= target_length) { /* A full payload is available. */
|
||||
package_length = target_length;
|
||||
} else { /* not a full payload available */
|
||||
if (package_partial)
|
||||
package_length = n_available; /* just take whatever's available now */
|
||||
else
|
||||
return 0; /* nothing to do until we have a full payload */
|
||||
}
|
||||
|
||||
/* If we reach this point, we will be definitely sending the cell. */
|
||||
tor_assert_nonfatal(package_length > 0);
|
||||
|
||||
if (package_length <= RELAY_PAYLOAD_LENGTH_FOR_RANDOM_SENDMES) {
|
||||
/* This cell will have enough randomness in the padding to make a future
|
||||
* sendme cell unpredictable. */
|
||||
on_circuit->have_sent_sufficiently_random_cell = 1;
|
||||
}
|
||||
|
||||
if (on_circuit->send_randomness_after_n_cells == 0) {
|
||||
/* Either this cell, or some previous cell, had enough padding to
|
||||
* ensure sendme unpredictability. */
|
||||
tor_assert_nonfatal(on_circuit->have_sent_sufficiently_random_cell);
|
||||
/* Pick a new interval in which we need to send randomness. */
|
||||
circuit_reset_sendme_randomness(on_circuit);
|
||||
}
|
||||
|
||||
--on_circuit->send_randomness_after_n_cells;
|
||||
|
||||
return package_length;
|
||||
}
|
||||
|
||||
/** If <b>conn</b> has an entire relay payload of bytes on its inbuf (or
|
||||
* <b>package_partial</b> is true), and the appropriate package windows aren't
|
||||
* empty, grab a cell and send it down the circuit.
|
||||
@ -2099,17 +2181,14 @@ connection_edge_package_raw_inbuf(edge_connection_t *conn, int package_partial,
|
||||
bytes_to_process = connection_get_inbuf_len(TO_CONN(conn));
|
||||
}
|
||||
|
||||
if (!bytes_to_process)
|
||||
length = connection_edge_get_inbuf_bytes_to_package(bytes_to_process,
|
||||
package_partial, circ);
|
||||
if (!length)
|
||||
return 0;
|
||||
|
||||
if (!package_partial && bytes_to_process < RELAY_PAYLOAD_SIZE)
|
||||
return 0;
|
||||
/* If we reach this point, we will definitely be packaging bytes into
|
||||
* a cell. */
|
||||
|
||||
if (bytes_to_process > RELAY_PAYLOAD_SIZE) {
|
||||
length = RELAY_PAYLOAD_SIZE;
|
||||
} else {
|
||||
length = bytes_to_process;
|
||||
}
|
||||
stats_n_data_bytes_packaged += length;
|
||||
stats_n_data_cells_packaged += 1;
|
||||
|
||||
|
@ -42,6 +42,7 @@ int connection_edge_package_raw_inbuf(edge_connection_t *conn,
|
||||
int package_partial,
|
||||
int *max_cells);
|
||||
void connection_edge_consider_sending_sendme(edge_connection_t *conn);
|
||||
void circuit_reset_sendme_randomness(circuit_t *circ);
|
||||
|
||||
extern uint64_t stats_n_data_cells_packaged;
|
||||
extern uint64_t stats_n_data_bytes_packaged;
|
||||
@ -122,6 +123,9 @@ STATIC int connection_edge_process_relay_cell(cell_t *cell, circuit_t *circ,
|
||||
edge_connection_t *conn,
|
||||
crypt_path_t *layer_hint);
|
||||
STATIC size_t get_pad_cell_offset(size_t payload_len);
|
||||
STATIC size_t connection_edge_get_inbuf_bytes_to_package(size_t n_available,
|
||||
int package_partial,
|
||||
circuit_t *on_circuit);
|
||||
|
||||
#endif /* defined(RELAY_PRIVATE) */
|
||||
|
||||
|
@ -270,6 +270,84 @@ test_cell_version_validation(void *arg)
|
||||
;
|
||||
}
|
||||
|
||||
/* check our decisions about how much stuff to put into relay cells. */
|
||||
static void
|
||||
test_package_payload_len(void *arg)
|
||||
{
|
||||
(void)arg;
|
||||
/* this is not a real circuit: it only has the fields needed for this
|
||||
* test. */
|
||||
circuit_t *c = tor_malloc_zero(sizeof(circuit_t));
|
||||
|
||||
/* check initial conditions. */
|
||||
circuit_reset_sendme_randomness(c);
|
||||
tt_assert(! c->have_sent_sufficiently_random_cell);
|
||||
tt_int_op(c->send_randomness_after_n_cells, OP_GE, CIRCWINDOW_INCREMENT / 2);
|
||||
tt_int_op(c->send_randomness_after_n_cells, OP_LT, CIRCWINDOW_INCREMENT);
|
||||
|
||||
/* We have a bunch of cells before we need to send randomness, so the first
|
||||
* few can be packaged full. */
|
||||
int initial = c->send_randomness_after_n_cells;
|
||||
size_t n = connection_edge_get_inbuf_bytes_to_package(10000, 0, c);
|
||||
tt_uint_op(RELAY_PAYLOAD_SIZE, OP_EQ, n);
|
||||
n = connection_edge_get_inbuf_bytes_to_package(95000, 1, c);
|
||||
tt_uint_op(RELAY_PAYLOAD_SIZE, OP_EQ, n);
|
||||
tt_int_op(c->send_randomness_after_n_cells, OP_EQ, initial - 2);
|
||||
|
||||
/* If package_partial isn't set, we won't package a partially full cell at
|
||||
* all. */
|
||||
n = connection_edge_get_inbuf_bytes_to_package(RELAY_PAYLOAD_SIZE-1, 0, c);
|
||||
tt_int_op(n, OP_EQ, 0);
|
||||
/* no change in our state, since nothing was sent. */
|
||||
tt_assert(! c->have_sent_sufficiently_random_cell);
|
||||
tt_int_op(c->send_randomness_after_n_cells, OP_EQ, initial - 2);
|
||||
|
||||
/* If package_partial is set and the partial cell is not going to have
|
||||
* _enough_ randomness, we package it, but we don't consider ourselves to
|
||||
* have sent a sufficiently random cell. */
|
||||
n = connection_edge_get_inbuf_bytes_to_package(RELAY_PAYLOAD_SIZE-1, 1, c);
|
||||
tt_int_op(n, OP_EQ, RELAY_PAYLOAD_SIZE-1);
|
||||
tt_assert(! c->have_sent_sufficiently_random_cell);
|
||||
tt_int_op(c->send_randomness_after_n_cells, OP_EQ, initial - 3);
|
||||
|
||||
/* Make sure we set have_set_sufficiently_random_cell as appropriate. */
|
||||
n = connection_edge_get_inbuf_bytes_to_package(RELAY_PAYLOAD_SIZE-64, 1, c);
|
||||
tt_int_op(n, OP_EQ, RELAY_PAYLOAD_SIZE-64);
|
||||
tt_assert(c->have_sent_sufficiently_random_cell);
|
||||
tt_int_op(c->send_randomness_after_n_cells, OP_EQ, initial - 4);
|
||||
|
||||
/* Now let's look at what happens when we get down to zero. Since we have
|
||||
* sent a sufficiently random cell, we will not force this one to have a gap.
|
||||
*/
|
||||
c->send_randomness_after_n_cells = 0;
|
||||
n = connection_edge_get_inbuf_bytes_to_package(10000, 1, c);
|
||||
tt_int_op(n, OP_EQ, RELAY_PAYLOAD_SIZE);
|
||||
/* Now these will be reset. */
|
||||
tt_assert(! c->have_sent_sufficiently_random_cell);
|
||||
tt_int_op(c->send_randomness_after_n_cells, OP_GE,
|
||||
CIRCWINDOW_INCREMENT / 2 - 1);
|
||||
|
||||
/* What would happen if we hadn't sent a sufficiently random cell? */
|
||||
c->send_randomness_after_n_cells = 0;
|
||||
n = connection_edge_get_inbuf_bytes_to_package(10000, 1, c);
|
||||
const size_t reduced_payload_size = RELAY_PAYLOAD_SIZE - 4 - 16;
|
||||
tt_int_op(n, OP_EQ, reduced_payload_size);
|
||||
/* Now these will be reset. */
|
||||
tt_assert(! c->have_sent_sufficiently_random_cell);
|
||||
tt_int_op(c->send_randomness_after_n_cells, OP_GE,
|
||||
CIRCWINDOW_INCREMENT / 2 - 1);
|
||||
|
||||
/* Here is a fun case: if it's time to package a small cell, then
|
||||
* package_partial==0 should mean we accept that many bytes.
|
||||
*/
|
||||
c->send_randomness_after_n_cells = 0;
|
||||
n = connection_edge_get_inbuf_bytes_to_package(reduced_payload_size, 0, c);
|
||||
tt_int_op(n, OP_EQ, reduced_payload_size);
|
||||
|
||||
done:
|
||||
tor_free(c);
|
||||
}
|
||||
|
||||
struct testcase_t sendme_tests[] = {
|
||||
{ "v1_record_digest", test_v1_record_digest, TT_FORK,
|
||||
NULL, NULL },
|
||||
@ -281,6 +359,7 @@ struct testcase_t sendme_tests[] = {
|
||||
NULL, NULL },
|
||||
{ "cell_version_validation", test_cell_version_validation, TT_FORK,
|
||||
NULL, NULL },
|
||||
{ "package_payload_len", test_package_payload_len, 0, NULL, NULL },
|
||||
|
||||
END_OF_TESTCASES
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user