aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNick Mathewson <nickm@torproject.org>2011-01-20 14:59:23 -0500
committerNick Mathewson <nickm@torproject.org>2011-01-20 14:59:23 -0500
commit1471e577432273d51aa13919603a648437d05fea (patch)
tree12d5168d158c3a36a6e01e04a717f9a2aefdabf9
parentc8f94eed12c0a7e8226bdadcd26570e29152f299 (diff)
parent43414eb98821d3b5c6c65181d7545ce938f82c8e (diff)
downloadtor-1471e577432273d51aa13919603a648437d05fea.tar.gz
tor-1471e577432273d51aa13919603a648437d05fea.zip
Merge remote branch 'rransom/policy_summarize-assert' into maint-0.2.1
-rw-r--r--changes/policy_summarize-assert6
-rw-r--r--src/or/policies.c4
2 files changed, 8 insertions, 2 deletions
diff --git a/changes/policy_summarize-assert b/changes/policy_summarize-assert
new file mode 100644
index 0000000000..619e8e7e42
--- /dev/null
+++ b/changes/policy_summarize-assert
@@ -0,0 +1,6 @@
+ o Major bugfixes (security)
+ - Fix a bounds-checking error that could allow an attacker to
+ remotely crash a directory authority. Found by piebeer.
+ Bugfix on 0.2.1.5-alpha.
+
+
diff --git a/src/or/policies.c b/src/or/policies.c
index d4b4a07c56..0a8fd7328e 100644
--- a/src/or/policies.c
+++ b/src/or/policies.c
@@ -1209,8 +1209,8 @@ policy_summarize(smartlist_t *policy)
accepts_str = smartlist_join_strings(accepts, ",", 0, &accepts_len);
rejects_str = smartlist_join_strings(rejects, ",", 0, &rejects_len);
- if (rejects_len > MAX_EXITPOLICY_SUMMARY_LEN &&
- accepts_len > MAX_EXITPOLICY_SUMMARY_LEN) {
+ if (rejects_len > MAX_EXITPOLICY_SUMMARY_LEN-strlen("reject")-1 &&
+ accepts_len > MAX_EXITPOLICY_SUMMARY_LEN-strlen("accept")-1) {
char *c;
shorter_str = accepts_str;
prefix = "accept";