aboutsummaryrefslogtreecommitdiff
path: root/src/common
AgeCommit message (Collapse)Author
2008-07-10Fix bug 763. When a hidden service is giving up on an introduction point ↵Karsten Loesing
candidate that was not included in the last published rendezvous descriptor, don't reschedule publication of the next descriptor. svn:r15825
2008-07-10 r16882@tombo: nickm | 2008-07-10 14:31:25 -0400Nick Mathewson
Fix for session-related bug found by Geoff Goodell. backport candidate, once tested. svn:r15821
2008-07-09Stop using __attribute__((nonnull)): It gets us occcasional warnings when we ↵Nick Mathewson
do something so foolish it can be detected without dataflow analysis, but it also eliminates some of our error checking code. Suggested by Peter Gutmann. svn:r15803
2008-07-06Fix the rest of the GCC warnings on OpenBSD_malloc_linux.cNick Mathewson
svn:r15698
2008-07-05Remove spurious "netintet" check from configure.inNick Mathewson
svn:r15672
2008-07-03 r16689@tombo: nickm | 2008-07-03 11:03:14 -0400Nick Mathewson
Fix for bug 742: do not use O_CREAT on 2-option version of open(). Especially do not use it on /dev/null. Fix from Michael Scherer. Bugfix on 0.0.2pre19 (wow). svn:r15626
2008-06-28 r16587@tombo: nickm | 2008-06-28 00:13:40 -0400Nick Mathewson
fix for bug 704; found by sjmurdoch. Windows and recent openssl both want to define OCSP_RESPONSE; do not let them. svn:r15533
2008-06-13Set dynamic-locking callbacks in openssl. These can be more efficient when ↵Nick Mathewson
openssl uses them. svn:r15222
2008-06-13fix a few typos, and give the bootstrap phase stuff a changelog entry.Roger Dingledine
svn:r15183
2008-06-13 r16217@tombo: nickm | 2008-06-12 21:13:09 -0400Nick Mathewson
Remove spurious debugging message. svn:r15176
2008-06-12 r16215@tombo: nickm | 2008-06-12 18:39:03 -0400Nick Mathewson
Implement code to manually force the OpenSSL client cipher list to match the one recommended in proposal 124, *even if* we do not know all those ciphers. This is a bit of a kludge, but it is at least decently well commented. svn:r15173
2008-06-10 r16127@tombo: nickm | 2008-06-10 14:03:01 -0400Nick Mathewson
Improved code for counting clients by country: support recording by number of directory status requests in addition to number of IPs seen. svn:r15097
2008-06-04Remov unused macro in crypto.cNick Mathewson
svn:r14950
2008-05-29Ouch. We were sometimes getting openssl compression by default. This is ↵Nick Mathewson
pointless for us, since the overwhelming majority of our cells are encrypted, full of compressed data, or both. This is also harmful, since doing piles of compression is not cheap. Backport candidate once more tested. svn:r14830
2008-05-29New code to implement proposal for local geoip stats. Only enabled with ↵Nick Mathewson
--enable-geoip-stats passed to configure. svn:r14802
2008-05-19If the user has an openssl that supports my "release buffer ram" patch, use it.Nick Mathewson
svn:r14671
2008-05-16 r19795@catbus: nickm | 2008-05-16 14:54:24 -0400Nick Mathewson
Rename tor_addr_t manipulation functions for a consistent style. svn:r14639
2008-05-09 r15558@tombo: nickm | 2008-05-09 04:35:12 -0400Nick Mathewson
New (temporary) tool to dump the modulus of a key. May help with a project of weasel's. svn:r14580
2008-05-05 r19613@catbus: nickm | 2008-05-05 19:57:06 -0400Nick Mathewson
Log correct openssl buf capacity when using my sooper sekrit buffer hack. This will help test the aforementioned ssbh. svn:r14567
2008-04-29make check-spaces wants a newline at the end of tortlsRoger Dingledine
svn:r14508
2008-04-23 r15304@tombo: nickm | 2008-04-23 16:31:40 -0400Nick Mathewson
Forward-port: I had apparently broken OSX and Freebsd by not initializing threading before we initialize the logging system. This patch should do so, and fix bug 671. svn:r14430
2008-04-22 r15251@tombo: nickm | 2008-04-22 11:59:46 -0400Nick Mathewson
On platforms using pthreads, allow a thread to acquire a lock it already holds. This is crucial for logging: otherwise any log message thrown from inside the logging process (especially from control.c) will deadlock. Win32 CriticalSections are already recursive. Bug spotted by nwf. Bugfix on 0.2.0.16-alpha. Backport candidate. I hope this is portable. svn:r14406
2008-04-10 r15161@31-33-107: nickm | 2008-04-10 11:11:58 -0400Nick Mathewson
Make dumpstats() log the size and fullness of openssl-internal buffers, so I can test my hypothesis that many of them are empty, and my alternative hypothesis that many of them are mostly empty, against the null hypothesis that we really need to be burning 32K per open OR connection on this. svn:r14350
2008-04-10 r19283@catbus: nickm | 2008-04-09 21:44:18 -0400Nick Mathewson
The optimist calls the glass half full. The pessimist calls it half empty. The engineer says it is twice as large as it needs to be. In this case, the engineer says that the default smartlist size is twice as large as it needs to be and wouldn't it be nice to save half a megabyte with a one-line patch? svn:r14341
2008-04-08 r15120@tombo: nickm | 2008-04-08 18:01:58 -0400Nick Mathewson
Add very short 0.2.1.x list based on discussion from arma. needs fleshing out and merging with other lists. svn:r14324
2008-04-08 r19249@catbus: nickm | 2008-04-08 14:04:02 -0400Nick Mathewson
Oops. Fix one last memarea freelist bug. svn:r14322
2008-04-08 r19247@catbus: nickm | 2008-04-08 13:50:01 -0400Nick Mathewson
Fix behavior of memarea freelists. svn:r14321
2008-04-08 r19245@catbus: nickm | 2008-04-08 13:33:27 -0400Nick Mathewson
Oops. It turns out that there are some subtle differences between >= and <. svn:r14320
2008-04-08 r19243@catbus: nickm | 2008-04-08 13:28:59 -0400Nick Mathewson
Use a freelist to hold a few recent memarea chunks. We do a kazillion memarea allocs and frees; that cant be good for us. svn:r14319
2008-04-08 r19233@catbus: nickm | 2008-04-08 13:06:34 -0400Nick Mathewson
When we remove old routers, use Bloom filters rather than a digestmap-based set in order to tell which ones we absolutely need to keep. This will save us roughly a kazillion little short-lived allocations for hash table entries. svn:r14318
2008-04-07 r19229@catbus: nickm | 2008-04-07 12:28:22 -0400Nick Mathewson
Add a new SMARTLIST_FOREACH_JOIN macro to iterate through two sorted lists in lockstep. This happens at least 3 times in the code so far, and is likely to happen more in the future. Previous attempts to do so proved touchy, tricky, and error-prone: now, we only need to get it right in one place. svn:r14309
2008-04-04 r19201@catbus: nickm | 2008-04-04 14:23:19 -0400Nick Mathewson
Better macro documentation svn:r14298
2008-03-27Add --hush switch.Peter Palfrader
New --hush command-line option similar to --quiet. While --quiet disables all logging to the console on startup, --hush limits the output to messages of warning and error severity. svn:r14222
2008-03-27 r19089@catbus: nickm | 2008-03-27 11:05:23 -0400Nick Mathewson
Free some static hashtables and the log mutex on exit. Backport candidate. svn:r14212
2008-03-26fix a leak when adding a temp logRoger Dingledine
svn:r14203
2008-03-26fix mem leak in parsing log config linesRoger Dingledine
svn:r14202
2008-03-26 r19072@catbus: nickm | 2008-03-26 13:50:24 -0400Nick Mathewson
Add code to debug memory area size. Use results of this code to set a couple of area sizes more sanely. svn:r14201
2008-03-26 r19062@catbus: nickm | 2008-03-26 12:56:25 -0400Nick Mathewson
Fix whitespace svn:r14197
2008-03-26 r19049@catbus: nickm | 2008-03-26 12:33:25 -0400Nick Mathewson
Add new stacklike, free-all-at-once memory allocation strategy. Use it when parsing directory information. This helps parsing speed, and may well help fragmentation some too. hidden-service-related stuff still uses the old tokenizing strategies. svn:r14194
2008-03-25 r19041@catbus: nickm | 2008-03-25 16:20:42 -0400Nick Mathewson
More unit tests to improve coverage. svn:r14185
2008-03-25 r19039@catbus: nickm | 2008-03-25 12:15:58 -0400Nick Mathewson
Add some unit tests, particularly for AES counter mode. svn:r14180
2008-03-24correct a confusing log messageRoger Dingledine
svn:r14165
2008-03-21 r19004@catbus: nickm | 2008-03-21 15:18:43 -0400Nick Mathewson
Use RAND_poll() again: the bug that made us stop using it has been fixed. svn:r14150
2008-03-18 r18929@catbus: nickm | 2008-03-18 12:08:16 -0400Nick Mathewson
Detect errors from directory listing correctly on win32. Bug found by lodger. svn:r14102
2008-03-18 r18927@catbus: nickm | 2008-03-18 11:11:49 -0400Nick Mathewson
Combine common code in set_max_file_descriptors(): all that varies from platform to platform in the no-getrlimit() case is the connection limit and the platform name. svn:r14101
2008-03-18 r18923@catbus: nickm | 2008-03-18 11:01:22 -0400Nick Mathewson
Add missing typecasts to log message in set_max_file_descriptors to tell gcc everything is okay on windows. Fixes bug 630. svn:r14099
2008-03-18 r18919@catbus: nickm | 2008-03-18 10:53:38 -0400Nick Mathewson
Forward-port bug 622 fix as diagnosed by lodger. svn:r14096
2008-03-17 r18890@catbus: nickm | 2008-03-17 13:19:29 -0400Nick Mathewson
Clarify documentation for file_status a little svn:r14079
2008-03-17And use 16k pages on ia64. Maybe this should be a configure thingPeter Palfrader
svn:r14073
2008-03-17 r18878@catbus: nickm | 2008-03-17 00:11:02 -0400Nick Mathewson
Clean up an overwide line. svn:r14072