diff options
author | Nick Mathewson <nickm@torproject.org> | 2008-12-10 15:50:04 +0000 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2008-12-10 15:50:04 +0000 |
commit | 3e9e1639d73e028ac40664ce6c85e0ed788bb924 (patch) | |
tree | ea2ecad8349b9bd4b6c868f71a0cda0d3ccfbcde /src/or | |
parent | da1a18d327692fdc2021581579e85ee28c7c60cb (diff) | |
download | tor-3e9e1639d73e028ac40664ce6c85e0ed788bb924.tar.gz tor-3e9e1639d73e028ac40664ce6c85e0ed788bb924.zip |
Backport karsten's bug 885 fix.
svn:r17558
Diffstat (limited to 'src/or')
-rw-r--r-- | src/or/routerlist.c | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/src/or/routerlist.c b/src/or/routerlist.c index 5a43019cb8..19b8b14b15 100644 --- a/src/or/routerlist.c +++ b/src/or/routerlist.c @@ -2084,6 +2084,11 @@ signed_descriptor_get_body_impl(signed_descriptor_t *desc, if (store && store->mmap) { tor_assert(desc->saved_offset + len <= store->mmap->size); r = store->mmap->data + offset; + } else if (store) { + log_err(LD_DIR, "We couldn't read a descriptor that is supposedly " + "mmaped in our cache. Is another process running in our data " + "directory? Exiting."); + exit(1); } } if (!r) /* no mmap, or not in cache. */ @@ -2094,11 +2099,11 @@ signed_descriptor_get_body_impl(signed_descriptor_t *desc, if (!with_annotations) { if (memcmp("router ", r, 7) && memcmp("extra-info ", r, 11)) { char *cp = tor_strndup(r, 64); - log_err(LD_DIR, "descriptor at %p begins with unexpected string %s", + log_err(LD_DIR, "descriptor at %p begins with unexpected string %s. " + "Is another process running in our data directory? Exiting.", desc, escaped(cp)); - tor_free(cp); + exit(1); } - tor_assert(!memcmp("router ", r, 7) || !memcmp("extra-info ", r, 11)); } return r; |