aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNick Mathewson <nickm@torproject.org>2018-06-08 10:11:57 -0400
committerNick Mathewson <nickm@torproject.org>2018-06-08 10:11:57 -0400
commit4843d5349dc43d7ad53346314234358053dc1d1c (patch)
treedfe38773f5183779f49724b72151d27f3c6dfbfc
parent3f8fe441cfd77ceea20cb6a3f5eb76f463e6d88e (diff)
parent1ef8023e000d9136b7069515f9d7303810a8f3b2 (diff)
downloadtor-4843d5349dc43d7ad53346314234358053dc1d1c.tar.gz
tor-4843d5349dc43d7ad53346314234358053dc1d1c.zip
Merge branch 'maint-0.3.1' into release-0.3.1
-rw-r--r--changes/bug261964
-rw-r--r--src/or/protover.c13
2 files changed, 17 insertions, 0 deletions
diff --git a/changes/bug26196 b/changes/bug26196
new file mode 100644
index 0000000000..47fcffa0f8
--- /dev/null
+++ b/changes/bug26196
@@ -0,0 +1,4 @@
+ o Minor bugfixes (hardening):
+ - Prevent a possible out-of-bounds smartlist read in
+ protover_compute_vote(). Fixes bug 26196; bugfix on
+ 0.2.9.4-alpha.
diff --git a/src/or/protover.c b/src/or/protover.c
index 45f0377d61..e8524a25b5 100644
--- a/src/or/protover.c
+++ b/src/or/protover.c
@@ -453,6 +453,10 @@ cmp_single_ent_by_version(const void **a_, const void **b_)
static char *
contract_protocol_list(const smartlist_t *proto_strings)
{
+ if (smartlist_len(proto_strings) == 0) {
+ return tor_strdup("");
+ }
+
// map from name to list of single-version entries
strmap_t *entry_lists_by_name = strmap_new();
// list of protocol names
@@ -561,6 +565,10 @@ char *
protover_compute_vote(const smartlist_t *list_of_proto_strings,
int threshold)
{
+ if (smartlist_len(list_of_proto_strings) == 0) {
+ return tor_strdup("");
+ }
+
smartlist_t *all_entries = smartlist_new();
// First, parse the inputs and break them into singleton entries.
@@ -587,6 +595,11 @@ protover_compute_vote(const smartlist_t *list_of_proto_strings,
smartlist_free(unexpanded);
} SMARTLIST_FOREACH_END(vote);
+ if (smartlist_len(all_entries) == 0) {
+ smartlist_free(all_entries);
+ return tor_strdup("");
+ }
+
// Now sort the singleton entries
smartlist_sort_strings(all_entries);