Age | Commit message (Collapse) | Author | |
---|---|---|---|
2015-08-18 | Remove obsolete event_format_t | Nick Mathewson | |
We used to use this when we had some controllers that would accept long names and some that wouldn't. But it's been obsolete for a while, and it's time to strip it out of the code. | |||
2015-08-18 | Refactor our logic for sending events to controllers | Nick Mathewson | |
Previously we'd put these strings right on the controllers' outbufs. But this could cause some trouble, for these reasons: 1) Calling the network stack directly here would make a huge portion of our networking code (from which so much of the rest of Tor is reachable) reachable from everything that potentially generated controller events. 2) Since _some_ events (EVENT_ERR for instance) would cause us to call connection_flush(), every control_event_* function would appear to be able to reach even _more_ of the network stack in our cllgraph. 3) Every time we generated an event, we'd have to walk the whole connection list, which isn't exactly fast. This is an attempt to break down the "blob" described in http://archives.seul.org/tor/dev/Mar-2015/msg00197.html -- the set of functions from which nearly all the other functions in Tor are reachable. Closes ticket 16695. | |||
2015-07-29 | Merge remote-tracking branch 'origin/maint-0.2.6' | Nick Mathewson | |
2015-07-29 | Merge remote-tracking branch 'origin/maint-0.2.5' into maint-0.2.6 | Nick Mathewson | |
2015-07-29 | Merge remote-tracking branch 'origin/maint-0.2.4' into maint-0.2.5 | Nick Mathewson | |
2015-07-29 | Merge remote-tracking branch 'teor/feature14175-chutney-performance-v2' | Nick Mathewson | |
2015-07-29 | Update geoip and geoip6 to the July 8 2015 database. | Karsten Loesing | |
2015-07-28 | Merge remote-tracking branch 'linus/bug_11061' | Nick Mathewson | |
2015-07-27 | Bump version to 0.2.7.2-alpha-dev | Nick Mathewson | |
2015-07-27 | Fold final entries into changelogtor-0.2.7.2-alpha | Nick Mathewson | |
2015-07-27 | tighten and tidy the changelog; pick a date | Nick Mathewson | |
2015-07-27 | Merge remote-tracking branch 'yawning/bug16674' | Nick Mathewson | |
2015-07-27 | Allow a single trailing `.` when validating FQDNs from SOCKS. | Yawning Angel | |
URI syntax (and DNS syntax) allows for a single trailing `.` to explicitly distinguish between a relative and absolute (fully-qualified) domain name. While this is redundant in that RFC 1928 DOMAINNAME addresses are *always* fully-qualified, certain clients blindly pass the trailing `.` along in the request. Fixes bug 16674; bugfix on 0.2.6.2-alpha. | |||
2015-07-27 | Fix ed25519-donna with SSP on non-x86. | Yawning Angel | |
The only reason 16 byte alignment is required is for SSE2 load and store operations, so only align datastructures to 16 byte boundaries when building with SSE2 support. This fixes builds with GCC SSP on platforms that don't have special case code to do dynamic stack re-alignment (everything not x86/x86_64). Fixes bug #16666. | |||
2015-07-24 | Move the note about non-localhost SOCKSPort usage up to where it belongs. | Linus Nordberg | |
I think this section slipped downwards when flags where added. | |||
2015-07-23 | Bump version (and explain how) | Nick Mathewson | |
2015-07-23 | Re-run trunnel to capture change for msvc. | Nick Mathewson | |
2015-07-23 | Fix a couple more msvc issues, reported by gisle vanem | Nick Mathewson | |
2015-07-23 | A nit found by qwerty1 | Nick Mathewson | |
2015-07-23 | Changelog tweaks from harmony | Nick Mathewson | |
2015-07-23 | Minor changelog tweaks | George Kadianakis | |
2015-07-22 | Edit changelog entries | Nick Mathewson | |
2015-07-22 | Move around and reformat items in 0.2.7.2-alpha changelog | Nick Mathewson | |
2015-07-22 | Merge branch 'ticket2325_squashed' | Nick Mathewson | |
2015-07-22 | Actually, write the torrc format in ABNF | Nick Mathewson | |
This should make it more clear what I meant, if you know how to read ABNF. (Thanks to rl1987 for correcting numerous issues here) | |||
2015-07-21 | Remove casting of void pointers when handling signals. | cypherpunks | |
2015-07-21 | Improve the workqueue test help message. | cypherpunks | |
The workqueue test help message has two issues. First, the message uses 4 space indentation when 2 space indentation seems more common. Second, the help message misses some options. This commit fixes both issues. | |||
2015-07-21 | Limit the number of inflight items to the number of items. | cypherpunks | |
2015-07-21 | changes file for bug16631 | Nick Mathewson | |
2015-07-21 | Fix some potential memory leaks in the thread pool code. | cypherpunks | |
2015-07-20 | typo fix; spotted by arma | Nick Mathewson | |
2015-07-20 | Document the torrc format as thoroughly as possible | Nick Mathewson | |
Closes ticket 2325 | |||
2015-07-20 | Merge remote-tracking branch 'public/bug16162_026' | Nick Mathewson | |
2015-07-20 | Use a more recommended syntax for the systemd unit file | Nick Mathewson | |
closes 16162. | |||
2015-07-20 | Fix testcases where scrypt APIs are used wrong. | rl1987 | |
2015-07-16 | Add the remaining changes items to ChangeLog for 0.2.7.2-alpha | Nick Mathewson | |
2015-07-16 | Make all changes files work with lintChanges | Nick Mathewson | |
2015-07-16 | Start changelog sections that are straight copies from 0.2.6 | Nick Mathewson | |
2015-07-16 | Merge remote-tracking branch 'public/feature_16580' | Nick Mathewson | |
2015-07-16 | Merge remote-tracking branch 'public/ticket16543' | Nick Mathewson | |
2015-07-16 | Merge remote-tracking branch 'sysrqb/bug15220_026_sysrqb' | Nick Mathewson | |
2015-07-16 | Add my script to dump per-file or per-function coverage | Nick Mathewson | |
2015-07-16 | Break some wide lines | Nick Mathewson | |
2015-07-16 | Fix most check-spaces issues | Nick Mathewson | |
2015-07-15 | Use C99 variadic macros when not on GCC. | Nick Mathewson | |
1) We already require C99. 2) This allows us to support MSVC again (thanks to Gisle Vanem for this part) 3) This change allows us to dump some rotten old compatibility code from log.c | |||
2015-07-15 | Merge branches 'feature_16582' and 'feature_16581' | Nick Mathewson | |
2015-07-15 | Don't allow INIT_ED_KEY_{NO_REPAIR,NEEDCERT} to be used together. | Nick Mathewson | |
We haven't implemented NO_REPAIR for NEEDCERT, and we don't need it: but it's safest to stop any attempt to use it that way. | |||
2015-07-15 | Add more EINVAL errno setting on key read failures | Nick Mathewson | |
Teor found these. This is for part of #16582. | |||
2015-07-14 | Add changes file for 8712; apply it to HSDir flag as well. | Nick Mathewson | |
2015-07-14 | Vote for relays to be fast and stable even when they aren't currently active. | Peter Retzlaff | |