Age | Commit message (Collapse) | Author | |
---|---|---|---|
2014-11-04 | Check descriptor ID in addition to HS ID when saving a v2 hs descriptor | Nick Mathewson | |
Fixes bug 13214; reported by 'special'. | |||
2014-10-24 | bump version to 0.2.5.10-dev | Nick Mathewson | |
2014-10-20 | bump maint-0.2.5 to 0.2.5.9-rc-dev | Nick Mathewson | |
2014-10-20 | Merge remote-tracking branch 'origin/maint-0.2.4' into maint-0.2.5 | Nick Mathewson | |
2014-10-20 | Whoops, bump the version properly. | Nick Mathewson | |
2014-10-20 | bump maint-0.2.4 to 0.2.4.25-dev | Nick Mathewson | |
2014-10-19 | Merge remote-tracking branch 'origin/maint-0.2.4' into maint-0.2.5 | Nick Mathewson | |
2014-10-19 | Merge remote-tracking branch 'origin/maint-0.2.3' into maint-0.2.4 | Nick Mathewson | |
2014-10-19 | Note that our #13426 fix is also a #13471 fix. | Nick Mathewson | |
See also http://marc.info/?l=openssl-dev&m=141357408522028&w=2 | |||
2014-10-16 | Downgrade 'unexpected sendme cell from client' to PROTOCOL_WARN | Nick Mathewson | |
Closes 8093. | |||
2014-10-16 | Merge remote-tracking branch 'origin/maint-0.2.4' into maint-0.2.5 | Nick Mathewson | |
2014-10-16 | Merge remote-tracking branch 'origin/maint-0.2.3' into maint-0.2.4 | Nick Mathewson | |
2014-10-16 | Merge branch 'no_sslv3_023' into maint-0.2.3 | Nick Mathewson | |
2014-10-15 | Disable SSLv3 unconditionally. Closes ticket 13426. | Nick Mathewson | |
The POODLE attack doesn't affect Tor, but there's no reason to tempt fate: SSLv3 isn't going to get any better. | |||
2014-10-03 | Merge remote-tracking branch 'public/bug13325_024' into maint-0.2.5 | Nick Mathewson | |
2014-10-03 | Run correctly on OpenBSD systems without SSL_METHOD.get_cipher_by_char | Nick Mathewson | |
Also, make sure we will compile correctly on systems where they finally rip it out. Fixes issue #13325. Caused by this openbsd commit: http://marc.info/?l=openbsd-cvs&m=140768179627976&w=2 Reported by Fredzupy. | |||
2014-09-29 | Merge branch 'bug13295_v2_025' into maint-0.2.5 | Nick Mathewson | |
2014-09-29 | Don't use the getaddrinfo sandbox cache from tor-resolve | Nick Mathewson | |
Fixes bug 13295; bugfix on 0.2.5.3-alpha. The alternative here is to call crypto_global_init() from tor-resolve, but let's avoid linking openssl into tor-resolve for as long as we can. | |||
2014-09-20 | Merge branch 'maint-0.2.4' into maint-0.2.5 | Roger Dingledine | |
Conflicts: src/or/config.c | |||
2014-09-20 | Merge branch 'maint-0.2.3' into maint-0.2.4 | Roger Dingledine | |
2014-09-20 | gabelmoo's IPv4 address changed | Sebastian Hahn | |
2014-09-16 | Merge remote-tracking branch 'origin/maint-0.2.4' into maint-0.2.5 | Nick Mathewson | |
2014-09-16 | clients now send correct address for rendezvous point | Roger Dingledine | |
Clients now send the correct address for their chosen rendezvous point when trying to access a hidden service. They used to send the wrong address, which would still work some of the time because they also sent the identity digest of the rendezvous point, and if the hidden service happened to try connecting to the rendezvous point from a relay that already had a connection open to it, the relay would reuse that connection. Now connections to hidden services should be more robust and faster. Also, this bug meant that clients were leaking to the hidden service whether they were on a little-endian (common) or big-endian (rare) system, which for some users might have reduced their anonymity. Fixes bug 13151; bugfix on 0.2.1.5-alpha. | |||
2014-09-11 | Bump maint-0.2.5 to 0.2.5.7-rc-dev | Nick Mathewson | |
2014-09-11 | Reduce log severity for unused ClientTransportPlugin lines | Roger Dingledine | |
Tor Browser includes several ClientTransportPlugin lines in its torrc-defaults file, leading every Tor Browser user who looks at her logs to see these notices and wonder if they're dangerous. Resolves bug 13124; bugfix on 0.2.5.3-alpha. | |||
2014-09-10 | In routerlist_assert_ok(), check r2 before taking &(r2->cache_info) | Nick Mathewson | |
Technically, we're not allowed to take the address of a member can't exist relative to the null pointer. That makes me wonder how any sane compliant system implements the offsetof macro, but let's let sleeping balrogs lie. Fixes 13096; patch on 0.1.1.9-alpha; patch from "teor", who was using clang -fsanitize=undefined-trap -fsanitize-undefined-trap-on-error -ftrapv | |||
2014-09-10 | Merge remote-tracking branch 'public/bug12908_025' into maint-0.2.5 | Nick Mathewson | |
2014-09-09 | Merge remote-tracking branch 'andrea/bug12160_025' into maint-0.2.5 | Nick Mathewson | |
2014-09-09 | Merge remote-tracking branch 'public/bug12700_024' into maint-0.2.5 | Nick Mathewson | |
2014-09-09 | Clean up the MVSC nmake files so they work again. | Nick Mathewson | |
Fixes bug 13081; bugfix on 0.2.5.1-alpha. Patch from "NewEraCracker." | |||
2014-09-09 | Add more escaped() calls in directory.c | Nick Mathewson | |
Patch from teor to fix 13071. | |||
2014-09-08 | Expand the event_mask field in controller conns to 64 bits | Nick Mathewson | |
Back in 078d6bcd, we added an event number 0x20, but we didn't make the event_mask field big enough to compensate. Patch by "teor". Fixes 13085; bugfix on 0.2.5.1-alpha. | |||
2014-09-08 | Add cscope generated files to .gitignore. | Nick Mathewson | |
Closes #13092; patch from dgoulet. | |||
2014-09-05 | Correctly update channel local mark when address of incoming connection ↵ | Andrea Shepard | |
changes after handshake; fixes bug #12160 | |||
2014-09-02 | Documenting reject6 and accept6 ExitPolicy entries in manpage. | rl1987 | |
2014-09-02 | Fix a number of clang analyzer false-positives | Nick Mathewson | |
Most of these are in somewhat non-obvious code where it is probably a good idea to initialize variables and add extra assertions anyway. Closes 13036. Patches from "teor". | |||
2014-09-01 | Adding changes file. | rl1987 | |
2014-08-29 | Merge remote-tracking branch 'arma/bug12996b' into maint-0.2.5 | Nick Mathewson | |
2014-08-29 | Downgrade "Unexpected onionskin length after decryption" warning | Roger Dingledine | |
It's now a protocol-warn, since there's nothing relay operators can do about a client that sends them a malformed create cell. Resolves bug 12996; bugfix on 0.0.6rc1. | |||
2014-08-29 | Improve "Tried to establish rendezvous on non-OR or non-edge circuit" | Nick Mathewson | |
Instead of putting it all in one warning message, log what exactly was wrong with the circuit. Resolves ticket 12997. | |||
2014-08-28 | Resume expanding abbreviations for command-line options | Roger Dingledine | |
The fix for bug 4647 accidentally removed our hack from bug 586 that rewrote HashedControlPassword to __HashedControlSessionPassword when it appears on the commandline (which allowed the user to set her own HashedControlPassword in the torrc file while the controller generates a fresh session password for each run). Fixes bug 12948; bugfix on 0.2.5.1-alpha. | |||
2014-08-20 | Warn if Tor is a relay and a HS | Sathyanarayanan Gunasekaran | |
Closes 12908; see #8742 | |||
2014-08-18 | Fix relay_command_to_string(); solve 12700. | Nick Mathewson | |
Two bugs here: 1) We didn't add EXTEND2/EXTENDED2 to relay_command_to_string(). 2) relay_command_to_string() didn't log the value of unrecognized commands. Both fixed here. | |||
2014-08-18 | Fix windows warning introduced by 0808ed83f9cf312abe229 | Nick Mathewson | |
This will fix the warning "/src/or/config.c:6854:48: error: unused parameter 'group_readable'" that I introduced while fixing 12864. Bug not in any released version of Tor. | |||
2014-08-15 | Merge remote-tracking branch 'asn/nickm-bug12864_025' into maint-0.2.5 | Nick Mathewson | |
2014-08-15 | Some documentation fixes for #12864. | George Kadianakis | |
2014-08-15 | Remove stale printfs from buffer/zlib_fin_at_chunk_end test | Nick Mathewson | |
These got committed by mistake. | |||
2014-08-15 | Documentation fix on arguments to CookieAuthFileGroupReadable | Nick Mathewson | |
We don't actually allow a group name, but the documentation implied that we did. | |||
2014-08-15 | Restore functionality for CookieAuthFileGroupReadable. | Nick Mathewson | |
When we merged the cookieauthfile creation logic in 33c3e60a37, we accidentally took out this feature. Fixes bug 12864, bugfix on 0.2.5.1-alpha. Also adds an ExtORPortCookieAuthFileGroupReadable, since there's no reason not to. | |||
2014-08-13 | Merge remote-tracking branch 'public/bug12848_024' into maint-0.2.5 | Nick Mathewson | |
Conflicts: src/or/circuitbuild.c |