2016-02-27 18:48:19 +01:00
|
|
|
/* Copyright (c) 2014-2016, The Tor Project, Inc. */
|
2014-01-13 20:15:33 +01:00
|
|
|
/* See LICENSE for licensing information */
|
|
|
|
|
|
|
|
/* Unit tests for OOM handling logic */
|
|
|
|
|
|
|
|
#define RELAY_PRIVATE
|
|
|
|
#define BUFFERS_PRIVATE
|
|
|
|
#define CIRCUITLIST_PRIVATE
|
2014-04-26 18:17:10 +02:00
|
|
|
#define CONNECTION_PRIVATE
|
2014-01-13 20:15:33 +01:00
|
|
|
#include "or.h"
|
|
|
|
#include "buffers.h"
|
|
|
|
#include "circuitlist.h"
|
|
|
|
#include "compat_libevent.h"
|
|
|
|
#include "connection.h"
|
|
|
|
#include "config.h"
|
|
|
|
#include "relay.h"
|
|
|
|
#include "test.h"
|
|
|
|
|
|
|
|
/* small replacement mock for circuit_mark_for_close_ to avoid doing all
|
|
|
|
* the other bookkeeping that comes with marking circuits. */
|
|
|
|
static void
|
|
|
|
circuit_mark_for_close_dummy_(circuit_t *circ, int reason, int line,
|
|
|
|
const char *file)
|
|
|
|
{
|
|
|
|
(void) reason;
|
|
|
|
if (circ->marked_for_close) {
|
|
|
|
TT_FAIL(("Circuit already marked for close at %s:%d, but we are marking "
|
|
|
|
"it again at %s:%d",
|
|
|
|
circ->marked_for_close_file, (int)circ->marked_for_close,
|
|
|
|
file, line));
|
|
|
|
}
|
|
|
|
|
|
|
|
circ->marked_for_close = line;
|
|
|
|
circ->marked_for_close_file = file;
|
|
|
|
}
|
|
|
|
|
|
|
|
static circuit_t *
|
|
|
|
dummy_or_circuit_new(int n_p_cells, int n_n_cells)
|
|
|
|
{
|
|
|
|
or_circuit_t *circ = or_circuit_new(0, NULL);
|
|
|
|
int i;
|
|
|
|
cell_t cell;
|
|
|
|
|
|
|
|
for (i=0; i < n_p_cells; ++i) {
|
|
|
|
crypto_rand((void*)&cell, sizeof(cell));
|
|
|
|
cell_queue_append_packed_copy(TO_CIRCUIT(circ), &circ->p_chan_cells,
|
|
|
|
0, &cell, 1, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
for (i=0; i < n_n_cells; ++i) {
|
|
|
|
crypto_rand((void*)&cell, sizeof(cell));
|
|
|
|
cell_queue_append_packed_copy(TO_CIRCUIT(circ),
|
|
|
|
&TO_CIRCUIT(circ)->n_chan_cells,
|
|
|
|
1, &cell, 1, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
TO_CIRCUIT(circ)->purpose = CIRCUIT_PURPOSE_OR;
|
|
|
|
return TO_CIRCUIT(circ);
|
|
|
|
}
|
|
|
|
|
|
|
|
static circuit_t *
|
|
|
|
dummy_origin_circuit_new(int n_cells)
|
|
|
|
{
|
|
|
|
origin_circuit_t *circ = origin_circuit_new();
|
|
|
|
int i;
|
|
|
|
cell_t cell;
|
|
|
|
|
|
|
|
for (i=0; i < n_cells; ++i) {
|
|
|
|
crypto_rand((void*)&cell, sizeof(cell));
|
|
|
|
cell_queue_append_packed_copy(TO_CIRCUIT(circ),
|
|
|
|
&TO_CIRCUIT(circ)->n_chan_cells,
|
|
|
|
1, &cell, 1, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
TO_CIRCUIT(circ)->purpose = CIRCUIT_PURPOSE_C_GENERAL;
|
|
|
|
return TO_CIRCUIT(circ);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2016-08-02 19:40:19 +02:00
|
|
|
add_bytes_to_buf(buf_t *buf, size_t n_bytes)
|
2014-01-13 20:15:33 +01:00
|
|
|
{
|
|
|
|
char b[3000];
|
|
|
|
|
|
|
|
while (n_bytes) {
|
2014-04-19 18:50:17 +02:00
|
|
|
size_t this_add = n_bytes > sizeof(b) ? sizeof(b) : n_bytes;
|
|
|
|
crypto_rand(b, this_add);
|
2016-08-02 19:40:19 +02:00
|
|
|
write_to_buf(b, this_add, buf);
|
2014-01-13 20:15:33 +01:00
|
|
|
n_bytes -= this_add;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static edge_connection_t *
|
2014-01-13 21:25:28 +01:00
|
|
|
dummy_edge_conn_new(circuit_t *circ,
|
|
|
|
int type, size_t in_bytes, size_t out_bytes)
|
2014-01-13 20:15:33 +01:00
|
|
|
{
|
2014-01-13 21:25:28 +01:00
|
|
|
edge_connection_t *conn;
|
2016-08-02 19:40:19 +02:00
|
|
|
buf_t *inbuf, *outbuf;
|
2014-01-13 21:25:28 +01:00
|
|
|
|
|
|
|
if (type == CONN_TYPE_EXIT)
|
|
|
|
conn = edge_connection_new(type, AF_INET);
|
|
|
|
else
|
|
|
|
conn = ENTRY_TO_EDGE_CONN(entry_connection_new(type, AF_INET));
|
2014-01-13 20:15:33 +01:00
|
|
|
|
2014-07-21 01:06:26 +02:00
|
|
|
inbuf = TO_CONN(conn)->inbuf;
|
|
|
|
outbuf = TO_CONN(conn)->outbuf;
|
|
|
|
|
2014-01-13 20:15:33 +01:00
|
|
|
/* We add these bytes directly to the buffers, to avoid all the
|
|
|
|
* edge connection read/write machinery. */
|
2014-07-21 01:06:26 +02:00
|
|
|
add_bytes_to_buf(inbuf, in_bytes);
|
|
|
|
add_bytes_to_buf(outbuf, out_bytes);
|
2014-01-13 20:15:33 +01:00
|
|
|
|
2014-01-13 21:25:28 +01:00
|
|
|
conn->on_circuit = circ;
|
|
|
|
if (type == CONN_TYPE_EXIT) {
|
|
|
|
or_circuit_t *oc = TO_OR_CIRCUIT(circ);
|
|
|
|
conn->next_stream = oc->n_streams;
|
|
|
|
oc->n_streams = conn;
|
|
|
|
} else {
|
|
|
|
origin_circuit_t *oc = TO_ORIGIN_CIRCUIT(circ);
|
|
|
|
conn->next_stream = oc->p_streams;
|
|
|
|
oc->p_streams = conn;
|
|
|
|
}
|
|
|
|
|
2014-01-13 20:15:33 +01:00
|
|
|
return conn;
|
|
|
|
}
|
|
|
|
|
|
|
|
/** Run unit tests for buffers.c */
|
|
|
|
static void
|
|
|
|
test_oom_circbuf(void *arg)
|
|
|
|
{
|
|
|
|
or_options_t *options = get_options_mutable();
|
|
|
|
circuit_t *c1 = NULL, *c2 = NULL, *c3 = NULL, *c4 = NULL;
|
2016-07-21 12:36:13 +02:00
|
|
|
uint64_t now_ns = 1389631048 * (uint64_t)1000000000;
|
|
|
|
const uint64_t start_ns = now_ns;
|
2014-01-13 20:15:33 +01:00
|
|
|
|
|
|
|
(void) arg;
|
|
|
|
|
2016-07-21 12:36:13 +02:00
|
|
|
monotime_enable_test_mocking();
|
2014-01-13 20:15:33 +01:00
|
|
|
MOCK(circuit_mark_for_close_, circuit_mark_for_close_dummy_);
|
2014-05-13 03:23:34 +02:00
|
|
|
|
2014-01-13 20:15:33 +01:00
|
|
|
/* Far too low for real life. */
|
|
|
|
options->MaxMemInQueues = 256*packed_cell_mem_cost();
|
|
|
|
options->CellStatistics = 0;
|
|
|
|
|
2014-11-12 19:28:07 +01:00
|
|
|
tt_int_op(cell_queues_check_size(), OP_EQ, 0); /* We don't start out OOM. */
|
|
|
|
tt_int_op(cell_queues_get_total_allocation(), OP_EQ, 0);
|
|
|
|
tt_int_op(buf_get_total_allocation(), OP_EQ, 0);
|
2014-01-13 20:15:33 +01:00
|
|
|
|
|
|
|
/* Now we're going to fake up some circuits and get them added to the global
|
|
|
|
circuit list. */
|
2016-07-21 12:36:13 +02:00
|
|
|
monotime_coarse_set_mock_time_nsec(now_ns);
|
2014-01-13 20:15:33 +01:00
|
|
|
c1 = dummy_origin_circuit_new(30);
|
2016-07-21 12:36:13 +02:00
|
|
|
|
|
|
|
now_ns += 10 * 1000000;
|
|
|
|
monotime_coarse_set_mock_time_nsec(now_ns);
|
2014-01-13 20:15:33 +01:00
|
|
|
c2 = dummy_or_circuit_new(20, 20);
|
|
|
|
|
2014-11-12 19:28:07 +01:00
|
|
|
tt_int_op(packed_cell_mem_cost(), OP_EQ,
|
2014-05-13 03:23:34 +02:00
|
|
|
sizeof(packed_cell_t));
|
2014-11-12 19:28:07 +01:00
|
|
|
tt_int_op(cell_queues_get_total_allocation(), OP_EQ,
|
2014-01-13 20:15:33 +01:00
|
|
|
packed_cell_mem_cost() * 70);
|
2014-11-12 19:28:07 +01:00
|
|
|
tt_int_op(cell_queues_check_size(), OP_EQ, 0); /* We are still not OOM */
|
2014-01-13 20:15:33 +01:00
|
|
|
|
2016-07-21 12:36:13 +02:00
|
|
|
now_ns += 10 * 1000000;
|
|
|
|
monotime_coarse_set_mock_time_nsec(now_ns);
|
2014-01-13 20:15:33 +01:00
|
|
|
c3 = dummy_or_circuit_new(100, 85);
|
2014-11-12 19:28:07 +01:00
|
|
|
tt_int_op(cell_queues_check_size(), OP_EQ, 0); /* We are still not OOM */
|
|
|
|
tt_int_op(cell_queues_get_total_allocation(), OP_EQ,
|
2014-01-13 20:15:33 +01:00
|
|
|
packed_cell_mem_cost() * 255);
|
|
|
|
|
2016-07-21 12:36:13 +02:00
|
|
|
now_ns += 10 * 1000000;
|
|
|
|
monotime_coarse_set_mock_time_nsec(now_ns);
|
2014-01-13 20:15:33 +01:00
|
|
|
/* Adding this cell will trigger our OOM handler. */
|
|
|
|
c4 = dummy_or_circuit_new(2, 0);
|
|
|
|
|
2014-11-12 19:28:07 +01:00
|
|
|
tt_int_op(cell_queues_get_total_allocation(), OP_EQ,
|
2014-01-13 20:15:33 +01:00
|
|
|
packed_cell_mem_cost() * 257);
|
|
|
|
|
2014-11-12 19:28:07 +01:00
|
|
|
tt_int_op(cell_queues_check_size(), OP_EQ, 1); /* We are now OOM */
|
2014-01-13 20:15:33 +01:00
|
|
|
|
|
|
|
tt_assert(c1->marked_for_close);
|
|
|
|
tt_assert(! c2->marked_for_close);
|
|
|
|
tt_assert(! c3->marked_for_close);
|
|
|
|
tt_assert(! c4->marked_for_close);
|
|
|
|
|
2014-11-12 19:28:07 +01:00
|
|
|
tt_int_op(cell_queues_get_total_allocation(), OP_EQ,
|
2014-01-13 20:15:33 +01:00
|
|
|
packed_cell_mem_cost() * (257 - 30));
|
|
|
|
|
|
|
|
circuit_free(c1);
|
2016-07-21 12:36:13 +02:00
|
|
|
|
|
|
|
monotime_coarse_set_mock_time_nsec(start_ns); /* go back in time */
|
2014-01-13 20:15:33 +01:00
|
|
|
c1 = dummy_or_circuit_new(90, 0);
|
|
|
|
|
2016-07-21 12:36:13 +02:00
|
|
|
now_ns += 10 * 1000000;
|
|
|
|
monotime_coarse_set_mock_time_nsec(now_ns);
|
2014-01-13 20:15:33 +01:00
|
|
|
|
2014-11-12 19:28:07 +01:00
|
|
|
tt_int_op(cell_queues_check_size(), OP_EQ, 1); /* We are now OOM */
|
2014-01-13 20:15:33 +01:00
|
|
|
|
|
|
|
tt_assert(c1->marked_for_close);
|
|
|
|
tt_assert(! c2->marked_for_close);
|
|
|
|
tt_assert(! c3->marked_for_close);
|
|
|
|
tt_assert(! c4->marked_for_close);
|
|
|
|
|
2014-11-12 19:28:07 +01:00
|
|
|
tt_int_op(cell_queues_get_total_allocation(), OP_EQ,
|
2014-01-13 20:15:33 +01:00
|
|
|
packed_cell_mem_cost() * (257 - 30));
|
|
|
|
|
|
|
|
done:
|
|
|
|
circuit_free(c1);
|
|
|
|
circuit_free(c2);
|
|
|
|
circuit_free(c3);
|
|
|
|
circuit_free(c4);
|
|
|
|
|
|
|
|
UNMOCK(circuit_mark_for_close_);
|
2016-07-21 12:36:13 +02:00
|
|
|
monotime_disable_test_mocking();
|
2014-01-13 20:15:33 +01:00
|
|
|
}
|
|
|
|
|
2014-01-13 21:25:28 +01:00
|
|
|
/** Run unit tests for buffers.c */
|
|
|
|
static void
|
|
|
|
test_oom_streambuf(void *arg)
|
|
|
|
{
|
|
|
|
or_options_t *options = get_options_mutable();
|
|
|
|
circuit_t *c1 = NULL, *c2 = NULL, *c3 = NULL, *c4 = NULL, *c5 = NULL;
|
|
|
|
uint32_t tvms;
|
|
|
|
int i;
|
2014-04-26 18:17:10 +02:00
|
|
|
smartlist_t *edgeconns = smartlist_new();
|
2016-07-21 12:36:13 +02:00
|
|
|
const uint64_t start_ns = 1389641159 * (uint64_t)1000000000;
|
|
|
|
uint64_t now_ns = start_ns;
|
2014-01-13 21:25:28 +01:00
|
|
|
|
|
|
|
(void) arg;
|
2016-07-21 12:36:13 +02:00
|
|
|
monotime_enable_test_mocking();
|
2014-01-13 21:25:28 +01:00
|
|
|
|
|
|
|
MOCK(circuit_mark_for_close_, circuit_mark_for_close_dummy_);
|
2014-05-13 03:23:34 +02:00
|
|
|
|
2014-01-13 21:25:28 +01:00
|
|
|
/* Far too low for real life. */
|
|
|
|
options->MaxMemInQueues = 81*packed_cell_mem_cost() + 4096 * 34;
|
|
|
|
options->CellStatistics = 0;
|
|
|
|
|
2014-11-12 19:28:07 +01:00
|
|
|
tt_int_op(cell_queues_check_size(), OP_EQ, 0); /* We don't start out OOM. */
|
|
|
|
tt_int_op(cell_queues_get_total_allocation(), OP_EQ, 0);
|
|
|
|
tt_int_op(buf_get_total_allocation(), OP_EQ, 0);
|
2014-01-13 21:25:28 +01:00
|
|
|
|
2016-07-21 12:36:13 +02:00
|
|
|
monotime_coarse_set_mock_time_nsec(start_ns);
|
|
|
|
|
2014-01-13 21:25:28 +01:00
|
|
|
/* Start all circuits with a bit of data queued in cells */
|
2016-07-21 12:36:13 +02:00
|
|
|
|
|
|
|
/* go halfway into the second. */
|
|
|
|
monotime_coarse_set_mock_time_nsec(start_ns + 500 * 1000000);
|
2014-01-13 21:25:28 +01:00
|
|
|
c1 = dummy_or_circuit_new(10,10);
|
2016-07-21 12:36:13 +02:00
|
|
|
|
|
|
|
monotime_coarse_set_mock_time_nsec(start_ns + 510 * 1000000);
|
2014-01-13 21:25:28 +01:00
|
|
|
c2 = dummy_origin_circuit_new(20);
|
2016-07-21 12:36:13 +02:00
|
|
|
monotime_coarse_set_mock_time_nsec(start_ns + 520 * 1000000);
|
2014-01-13 21:25:28 +01:00
|
|
|
c3 = dummy_or_circuit_new(20,20);
|
2016-07-21 12:36:13 +02:00
|
|
|
monotime_coarse_set_mock_time_nsec(start_ns + 530 * 1000000);
|
2014-01-13 21:25:28 +01:00
|
|
|
c4 = dummy_or_circuit_new(0,0);
|
2014-11-12 19:28:07 +01:00
|
|
|
tt_int_op(cell_queues_get_total_allocation(), OP_EQ,
|
2014-01-13 21:25:28 +01:00
|
|
|
packed_cell_mem_cost() * 80);
|
|
|
|
|
2016-07-21 12:36:13 +02:00
|
|
|
now_ns = start_ns + 600 * 1000000;
|
|
|
|
monotime_coarse_set_mock_time_nsec(now_ns);
|
2014-01-13 21:25:28 +01:00
|
|
|
|
|
|
|
/* Add some connections to c1...c4. */
|
|
|
|
for (i = 0; i < 4; ++i) {
|
|
|
|
edge_connection_t *ec;
|
|
|
|
/* link it to a circuit */
|
2016-07-21 12:36:13 +02:00
|
|
|
now_ns += 10 * 1000000;
|
|
|
|
monotime_coarse_set_mock_time_nsec(now_ns);
|
2014-01-13 21:25:28 +01:00
|
|
|
ec = dummy_edge_conn_new(c1, CONN_TYPE_EXIT, 1000, 1000);
|
|
|
|
tt_assert(ec);
|
2014-04-26 18:17:10 +02:00
|
|
|
smartlist_add(edgeconns, ec);
|
2016-07-21 12:36:13 +02:00
|
|
|
now_ns += 10 * 1000000;
|
|
|
|
monotime_coarse_set_mock_time_nsec(now_ns);
|
2014-01-13 21:25:28 +01:00
|
|
|
ec = dummy_edge_conn_new(c2, CONN_TYPE_AP, 1000, 1000);
|
|
|
|
tt_assert(ec);
|
2014-04-26 18:17:10 +02:00
|
|
|
smartlist_add(edgeconns, ec);
|
2016-07-21 12:36:13 +02:00
|
|
|
now_ns += 10 * 1000000;
|
|
|
|
monotime_coarse_set_mock_time_nsec(now_ns);
|
2014-01-13 21:25:28 +01:00
|
|
|
ec = dummy_edge_conn_new(c4, CONN_TYPE_EXIT, 1000, 1000); /* Yes, 4 twice*/
|
|
|
|
tt_assert(ec);
|
2014-04-26 18:17:10 +02:00
|
|
|
smartlist_add(edgeconns, ec);
|
2016-07-21 12:36:13 +02:00
|
|
|
now_ns += 10 * 1000000;
|
|
|
|
monotime_coarse_set_mock_time_nsec(now_ns);
|
2014-01-13 21:25:28 +01:00
|
|
|
ec = dummy_edge_conn_new(c4, CONN_TYPE_EXIT, 1000, 1000);
|
2014-04-26 18:17:10 +02:00
|
|
|
smartlist_add(edgeconns, ec);
|
2014-01-13 21:25:28 +01:00
|
|
|
tt_assert(ec);
|
|
|
|
}
|
|
|
|
|
2016-07-21 12:36:13 +02:00
|
|
|
now_ns -= now_ns % 1000000000;
|
|
|
|
now_ns += 1000000000;
|
|
|
|
monotime_coarse_set_mock_time_nsec(now_ns);
|
|
|
|
tvms = (uint32_t) monotime_coarse_absolute_msec();
|
2014-01-13 21:25:28 +01:00
|
|
|
|
2014-11-12 19:28:07 +01:00
|
|
|
tt_int_op(circuit_max_queued_cell_age(c1, tvms), OP_EQ, 500);
|
|
|
|
tt_int_op(circuit_max_queued_cell_age(c2, tvms), OP_EQ, 490);
|
|
|
|
tt_int_op(circuit_max_queued_cell_age(c3, tvms), OP_EQ, 480);
|
|
|
|
tt_int_op(circuit_max_queued_cell_age(c4, tvms), OP_EQ, 0);
|
2014-01-13 21:25:28 +01:00
|
|
|
|
2014-11-12 19:28:07 +01:00
|
|
|
tt_int_op(circuit_max_queued_data_age(c1, tvms), OP_EQ, 390);
|
|
|
|
tt_int_op(circuit_max_queued_data_age(c2, tvms), OP_EQ, 380);
|
|
|
|
tt_int_op(circuit_max_queued_data_age(c3, tvms), OP_EQ, 0);
|
|
|
|
tt_int_op(circuit_max_queued_data_age(c4, tvms), OP_EQ, 370);
|
2014-01-13 21:25:28 +01:00
|
|
|
|
2014-11-12 19:28:07 +01:00
|
|
|
tt_int_op(circuit_max_queued_item_age(c1, tvms), OP_EQ, 500);
|
|
|
|
tt_int_op(circuit_max_queued_item_age(c2, tvms), OP_EQ, 490);
|
|
|
|
tt_int_op(circuit_max_queued_item_age(c3, tvms), OP_EQ, 480);
|
|
|
|
tt_int_op(circuit_max_queued_item_age(c4, tvms), OP_EQ, 370);
|
2014-01-13 21:25:28 +01:00
|
|
|
|
2014-11-12 19:28:07 +01:00
|
|
|
tt_int_op(cell_queues_get_total_allocation(), OP_EQ,
|
2014-01-13 21:25:28 +01:00
|
|
|
packed_cell_mem_cost() * 80);
|
2014-11-12 19:28:07 +01:00
|
|
|
tt_int_op(buf_get_total_allocation(), OP_EQ, 4096*16*2);
|
2014-01-13 21:25:28 +01:00
|
|
|
|
|
|
|
/* Now give c4 a very old buffer of modest size */
|
|
|
|
{
|
|
|
|
edge_connection_t *ec;
|
2016-07-21 12:36:13 +02:00
|
|
|
now_ns -= 1000000000;
|
|
|
|
monotime_coarse_set_mock_time_nsec(now_ns);
|
2014-01-13 21:25:28 +01:00
|
|
|
ec = dummy_edge_conn_new(c4, CONN_TYPE_EXIT, 1000, 1000);
|
|
|
|
tt_assert(ec);
|
2014-04-26 18:17:10 +02:00
|
|
|
smartlist_add(edgeconns, ec);
|
2014-01-13 21:25:28 +01:00
|
|
|
}
|
2014-11-12 19:28:07 +01:00
|
|
|
tt_int_op(buf_get_total_allocation(), OP_EQ, 4096*17*2);
|
|
|
|
tt_int_op(circuit_max_queued_item_age(c4, tvms), OP_EQ, 1000);
|
2014-01-13 21:25:28 +01:00
|
|
|
|
2014-11-12 19:28:07 +01:00
|
|
|
tt_int_op(cell_queues_check_size(), OP_EQ, 0);
|
2014-01-13 21:25:28 +01:00
|
|
|
|
|
|
|
/* And run over the limit. */
|
2016-07-21 12:36:13 +02:00
|
|
|
now_ns += 800*1000000;
|
|
|
|
monotime_coarse_set_mock_time_nsec(now_ns);
|
2014-01-13 21:25:28 +01:00
|
|
|
c5 = dummy_or_circuit_new(0,5);
|
|
|
|
|
2014-11-12 19:28:07 +01:00
|
|
|
tt_int_op(cell_queues_get_total_allocation(), OP_EQ,
|
2014-01-13 21:25:28 +01:00
|
|
|
packed_cell_mem_cost() * 85);
|
2014-11-12 19:28:07 +01:00
|
|
|
tt_int_op(buf_get_total_allocation(), OP_EQ, 4096*17*2);
|
2014-01-13 21:25:28 +01:00
|
|
|
|
2014-11-12 19:28:07 +01:00
|
|
|
tt_int_op(cell_queues_check_size(), OP_EQ, 1); /* We are now OOM */
|
2014-01-13 21:25:28 +01:00
|
|
|
|
|
|
|
/* C4 should have died. */
|
|
|
|
tt_assert(! c1->marked_for_close);
|
|
|
|
tt_assert(! c2->marked_for_close);
|
|
|
|
tt_assert(! c3->marked_for_close);
|
|
|
|
tt_assert(c4->marked_for_close);
|
|
|
|
tt_assert(! c5->marked_for_close);
|
|
|
|
|
2014-11-12 19:28:07 +01:00
|
|
|
tt_int_op(cell_queues_get_total_allocation(), OP_EQ,
|
2014-01-13 21:25:28 +01:00
|
|
|
packed_cell_mem_cost() * 85);
|
2014-11-12 19:28:07 +01:00
|
|
|
tt_int_op(buf_get_total_allocation(), OP_EQ, 4096*8*2);
|
2014-01-13 21:25:28 +01:00
|
|
|
|
|
|
|
done:
|
|
|
|
circuit_free(c1);
|
|
|
|
circuit_free(c2);
|
|
|
|
circuit_free(c3);
|
|
|
|
circuit_free(c4);
|
|
|
|
circuit_free(c5);
|
|
|
|
|
2014-04-26 18:17:10 +02:00
|
|
|
SMARTLIST_FOREACH(edgeconns, edge_connection_t *, ec,
|
|
|
|
connection_free_(TO_CONN(ec)));
|
|
|
|
smartlist_free(edgeconns);
|
|
|
|
|
2014-01-13 21:25:28 +01:00
|
|
|
UNMOCK(circuit_mark_for_close_);
|
2016-07-21 12:36:13 +02:00
|
|
|
monotime_disable_test_mocking();
|
2014-01-13 21:25:28 +01:00
|
|
|
}
|
|
|
|
|
2014-01-13 20:15:33 +01:00
|
|
|
struct testcase_t oom_tests[] = {
|
|
|
|
{ "circbuf", test_oom_circbuf, TT_FORK, NULL, NULL },
|
2014-01-13 21:25:28 +01:00
|
|
|
{ "streambuf", test_oom_streambuf, TT_FORK, NULL, NULL },
|
2014-01-13 20:15:33 +01:00
|
|
|
END_OF_TESTCASES
|
|
|
|
};
|
|
|
|
|