[tor-commits] [tor/master] Add a fix for the buf_pullup bug that Vektor reported
nickm at torproject.org
nickm at torproject.org
Fri Dec 16 16:59:38 UTC 2011
commit 9d0777839be6642954a4c064c819d406d8bb7cb4
Author: Nick Mathewson <nickm at torproject.org>
Date: Wed Dec 14 16:38:43 2011 -0500
Add a fix for the buf_pullup bug that Vektor reported
---
changes/buffer_bug | 7 +++++++
src/or/buffers.c | 5 +++--
2 files changed, 10 insertions(+), 2 deletions(-)
diff --git a/changes/buffer_bug b/changes/buffer_bug
new file mode 100644
index 0000000..634f609
--- /dev/null
+++ b/changes/buffer_bug
@@ -0,0 +1,7 @@
+
+ o Major bugfixes:
+ - Fix a heap overflow bug that could occur when trying to pull
+ data into the first chunk of a buffer, when that chunk had
+ already had some data drained from it. Fixes CVE-2011-2778;
+ bugfix on 0.2.0.16-alpha. Reported by "Vektor".
+
diff --git a/src/or/buffers.c b/src/or/buffers.c
index 7103746..5701604 100644
--- a/src/or/buffers.c
+++ b/src/or/buffers.c
@@ -375,9 +375,10 @@ buf_pullup(buf_t *buf, size_t bytes, int nulterminate)
if (buf->head->memlen >= capacity) {
/* We don't need to grow the first chunk, but we might need to repack it.*/
- if (CHUNK_REMAINING_CAPACITY(buf->head) < capacity-buf->datalen)
+ size_t needed = capacity - buf->head->datalen;
+ if (CHUNK_REMAINING_CAPACITY(buf->head) < needed)
chunk_repack(buf->head);
- tor_assert(CHUNK_REMAINING_CAPACITY(buf->head) >= capacity-buf->datalen);
+ tor_assert(CHUNK_REMAINING_CAPACITY(buf->head) >= needed);
} else {
chunk_t *newhead;
size_t newsize;
More information about the tor-commits
mailing list