aboutsummaryrefslogtreecommitdiff
path: root/src/or
AgeCommit message (Collapse)Author
2008-01-06 r17467@catbus: nickm | 2008-01-05 19:54:20 -0500Nick Mathewson
fix whitespace svn:r13035
2008-01-02 r15787@tombo: nickm | 2008-01-02 01:59:07 -0500Nick Mathewson
Allow config values in quotes to contain special characters, with full C escape syntax. With tests. Addresses bug 557. svn:r13021
2008-01-02 r15786@tombo: nickm | 2008-01-02 01:11:51 -0500Nick Mathewson
Push the strdups used for parsing configuration lines into parse_line_from_string(). This will make it easier to parse more complex value formats, which in turn will help fix bug 557 svn:r13020
2008-01-02 r15784@tombo: nickm | 2008-01-02 00:38:06 -0500Nick Mathewson
Fix bug 575: protect the list of logs with a mutex. I couldn't find any appreciable change in logging performance on osx, but ymmv. You can undef USE_LOG_MUTEX to see if stuff gets faster for you. svn:r13019
2008-01-02 r15782@tombo: nickm | 2008-01-01 23:57:43 -0500Nick Mathewson
Bugfix for bug 569: do not try to download nonexistant certificates with signing key 000000000000000. svn:r13018
2008-01-02 r15779@tombo: nickm | 2008-01-01 23:43:24 -0500Nick Mathewson
Use reference-counting to avoid allocating a zillion little addr_policy_t objects. (This is an old patch that had been sitting on my hard drive for a while.) svn:r13017
2007-12-31 r15768@tombo: nickm | 2007-12-31 16:12:09 -0500Nick Mathewson
Patch from Tup: make NS events work again. svn:r13009
2007-12-30 r15750@tombo: nickm | 2007-12-29 19:12:51 -0500Nick Mathewson
Make HTTP-processing code in buffers.c faster: do not pull up 50K of text into the first chunk if the headers end earlier than that. svn:r13006
2007-12-29 r17433@catbus: nickm | 2007-12-29 12:35:57 -0500Nick Mathewson
Incomplete code to avoid doing needless pull-ups on HTTP. Also, use memstr instead of strstr to find the content-length header. svn:r13005
2007-12-29 r15745@tombo: nickm | 2007-12-29 00:15:17 -0500Nick Mathewson
Try even harder not to allocate chunks bigger than MAX_CHUNK_ALLOC. svn:r13003
2007-12-29 r17426@catbus: nickm | 2007-12-28 21:12:29 -0500Nick Mathewson
Remove need for buf_pullup in fetch_line_from_buf(). svn:r13002
2007-12-27 r17410@catbus: nickm | 2007-12-27 09:20:27 -0500Nick Mathewson
Exciting new entries in buf_dump_freelist_sizes() to make sure our freelist sizes are reasonable. svn:r12996
2007-12-27 r17407@catbus: nickm | 2007-12-27 00:18:31 -0500Nick Mathewson
Fix windows compile error svn:r12995
2007-12-27 r17405@catbus: nickm | 2007-12-26 22:27:37 -0500Nick Mathewson
And clean up an assertion failure. svn:r12993
2007-12-27 r17403@catbus: nickm | 2007-12-26 22:23:50 -0500Nick Mathewson
Apparently loops work better when you actually increment/decrement the loop variable. Who knew? svn:r12992
2007-12-27 r15723@tombo: nickm | 2007-12-26 19:25:51 -0500Nick Mathewson
Actually trim freelists. svn:r12991
2007-12-26 r15721@tombo: nickm | 2007-12-26 17:07:10 -0500Nick Mathewson
Fix a nasty infinite loop in flush_buf[_tls]. svn:r12990
2007-12-26 r15719@tombo: nickm | 2007-12-26 14:02:12 -0500Nick Mathewson
More tweaks on 0-byte TLS writes. svn:r12989
2007-12-26 r15717@tombo: nickm | 2007-12-26 13:55:53 -0500Nick Mathewson
Oops. flush_buf_tls can request more than the requested number of bytes. When that happens, do not let the size_t sz wrap around. svn:r12988
2007-12-26 r15715@tombo: nickm | 2007-12-26 13:09:27 -0500Nick Mathewson
Peacetime managed to run overnight in paranoia mode. Disabling paranoia, so that buffers.c can be a little speedy again. svn:r12987
2007-12-26 r15710@tombo: nickm | 2007-12-25 19:36:03 -0500Nick Mathewson
Fix in flush_buf_tls: it is okay to flush an empty buffer, since we may have a partial TLS record pending. svn:r12984
2007-12-26 r15693@tombo: nickm | 2007-12-25 19:11:29 -0500Nick Mathewson
Here, have some terribly clever new buffer code. It uses a mbuf-like strategy rather than a ring buffer strategy, so it should require far far less extra memory to hold any given amount of data. Also, it avoids access patterns like x=malloc(1024);x=realloc(x,1048576);x=realloc(x,1024);append_to_freelist(x) that might have been contributing to memory fragmentation. I've tested it out a little on peacetime, and it seems to work so far. If you want to benchmark it for speed, make sure to remove the #define PARANOIA; #define NOINLINE macros at the head of the module. svn:r12983
2007-12-25The bridge GeoIP stats were counting other relays, for exampleRoger Dingledine
self-reachability and authority-reachability tests. svn:r12960
2007-12-24tweaksRoger Dingledine
svn:r12959
2007-12-24Fix several remotely triggerable asserts based on DirPort requestsRoger Dingledine
for a v2 or v3 networkstatus object before we were prepared. This was particularly bad for 0.2.0.13 and later bridge relays, who would never have a v2 networkstatus and would thus always crash when used. Bugfixes on 0.2.0.x. Estimate the v3 networkstatus size more accurately, rather than estimating it at zero bytes and giving it artificially high priority compared to other directory requests. Bugfix on 0.2.0.x. svn:r12952
2007-12-24bugfix on r10612:Roger Dingledine
When we load a bridge descriptor from the cache, and it was previously unreachable, mark it as retriable so we won't just ignore it. Also, try fetching a new copy immediately. svn:r12950
2007-12-23 r15653@tombo: nickm | 2007-12-23 14:15:12 -0500Nick Mathewson
Refactor circuit_launch* functions to take a bitfield of flags rather than 4 separate nonconsecutive flags arguments. Also, note a possible but in circuit_find_to_cannibalize, which seems to be ignoring its purpose argument. svn:r12948
2007-12-23 r15648@tombo: nickm | 2007-12-23 13:27:30 -0500Nick Mathewson
Support building for iPhone; patch from cjacker huang. svn:r12946
2007-12-23fix some irix compile complaints; make "kbytes" work as a memory unitRoger Dingledine
svn:r12936
2007-12-23minor other things in my sandboxRoger Dingledine
svn:r12934
2007-12-23If we receive a general-purpose descriptor and then receive anRoger Dingledine
identical bridge-purpose descriptor soon after, don't discard the next one as a duplicate. svn:r12933
2007-12-22and clean up after myselfRoger Dingledine
svn:r12930
2007-12-22If bridge authorities set BridgePassword, they will serve aRoger Dingledine
snapshot of known bridge routerstatuses from their DirPort to anybody who knows that password. Unset by default. svn:r12929
2007-12-22Fix a crash on startup if you install Tor 0.2.0.13-alpha fresh Roger Dingledine
without a datadirectory from a previous Tor install. Reported by Zax. svn:r12928
2007-12-22start working on serving bridge status from the dirport, forRoger Dingledine
bridge communities. svn:r12927
2007-12-22If the user sets RelayBandwidthRate but doesn't setRoger Dingledine
RelayBandwidthBurst, then make them equal rather than erroring out. svn:r12925
2007-12-22If BridgeRelay is set to 1, then the default forRoger Dingledine
PublishServerDescriptor is now "bridge" rather than "v2,v3". svn:r12923
2007-12-22Make PublishServerDescriptor default to 1, so the default doesn'tRoger Dingledine
have to change as we invent new directory protocol versions. svn:r12922
2007-12-22Fix a crash when we load a bridge descriptor from disk but we don'tRoger Dingledine
currently have a Bridge line for it in our torrc. Bugfix on 0.2.0.12-alpha. svn:r12921
2007-12-22Make "GETINFO/desc-annotations/id/<OR digest>" actually work.Roger Dingledine
svn:r12919
2007-12-22add a little note about matt's 0.2.0.12-alpha crashRoger Dingledine
svn:r12918
2007-12-21Fix a crash when accessing hidden services: it would work the firstRoger Dingledine
time you use a given introduction point for your service, but on subsequent requests we'd be using garbage memory. Fixed by Karsten Loesing. Bugfix on 0.2.0.12-alpha. svn:r12913
2007-12-21Fix a crash when we fetch a descriptor that turns out to beRoger Dingledine
unexpected (it used to be in our networkstatus when we started fetching it, but it isn't in our current networkstatus), and we aren't using bridges. Bugfix on 0.2.0.x. svn:r12911
2007-12-21the better fix for the unit testsRoger Dingledine
svn:r12907
2007-12-21Make the unit tests build again.Roger Dingledine
svn:r12905
2007-12-21tiny tweaks on r12900Roger Dingledine
svn:r12901
2007-12-21revert r12841 and r12842, and commit karsten's "patch 13"Roger Dingledine
svn:r12900
2007-12-21Directory authorities should only automatically download Extra InfoRoger Dingledine
documents if they're v1, v2, or v3 authorities. svn:r12898
2007-12-21some more refactoringRoger Dingledine
svn:r12897
2007-12-21new config option FetchDirInfoEarly for tup/ioerror and the tordnselRoger Dingledine
svn:r12896