Age | Commit message (Collapse) | Author | |
---|---|---|---|
2018-11-14 | Work around check-spaces. | Nick Mathewson | |
2018-11-14 | Changes file for bug 28419 | Nick Mathewson | |
2018-11-14 | libtorrunner: fix memory leak in child() error path | Martin Kepplinger | |
This avoids leaking memory in case libtorrunner's child() function fails. | |||
2018-11-13 | Merge branch 'maint-0.2.9' into maint-0.3.3 | Nick Mathewson | |
2018-11-13 | Merge branch 'bug28413_029' into maint-0.2.9 | Nick Mathewson | |
2018-11-12 | Fix a compiler warning in aes.c. | Nick Mathewson | |
Apparently some freebsd compilers can't tell that 'c' will never be used uninitialized. Fixes bug 28413; bugfix on 0.2.9.3-alpha when we added support for longer AES keys to this function. | |||
2018-11-11 | Merge branch 'maint-0.2.9' into maint-0.3.3 | Nick Mathewson | |
2018-11-11 | Fix a bug in usage of SSL_set1_groups_list() | Nick Mathewson | |
Apparently, even though the manpage says it returns an int, it can return a long instead and cause a warning. Bug not in any released Tor. Part of #28399 | |||
2018-11-11 | Merge branch 'maint-0.2.9' into maint-0.3.3 | Nick Mathewson | |
2018-11-11 | Update geoip and geoip6 to the November 6 2018 database. | Karsten Loesing | |
2018-11-09 | Merge branch 'maint-0.2.9' into maint-0.3.3 | Nick Mathewson | |
2018-11-09 | Merge branch 'bug28245_029' into maint-0.2.9 | Nick Mathewson | |
2018-11-09 | Always declare groups when building with openssl 1.1.1 APIs | Nick Mathewson | |
Failing to do on clients was causing TLS 1.3 negotiation to fail. Fixes bug 28245; bugfix on 0.2.9.15, when we added TLS 1.3 support. | |||
2018-11-02 | Merge branch 'bug26470_032' into maint-0.3.3 | Nick Mathewson | |
2018-11-02 | Merge remote-tracking branch 'dgoulet/ticket27410_032_01' into maint-0.3.3 | Nick Mathewson | |
2018-10-31 | Merge branch 'maint-0.2.9' into maint-0.3.3 | Nick Mathewson | |
2018-10-31 | Merge remote-tracking branch 'tor-github/pr/436' into maint-0.2.9 | Nick Mathewson | |
2018-10-30 | Merge remote-tracking branch 'tor-github/pr/346' into maint-0.3.3 | Nick Mathewson | |
2018-10-25 | Merge branch 'bug28202_029' into bug28202_033 | Nick Mathewson | |
2018-10-25 | Fix two other cases of (buf + N > end) pattern | Nick Mathewson | |
Related to fix for 28202. | |||
2018-10-25 | Fix possible UB in an end-of-string check in get_next_token(). | Nick Mathewson | |
Remember, you can't check to see if there are N bytes left in a buffer by doing (buf + N < end), since the buf + N computation might take you off the end of the buffer and result in undefined behavior. Fixes 28202; bugfix on 0.2.0.3-alpha. | |||
2018-10-23 | Remove a now-unused rust "use". | Nick Mathewson | |
2018-10-23 | Merge remote-tracking branch 'onionk/rust-allsupportednull1' into maint-0.3.3 | Nick Mathewson | |
2018-10-23 | Treat backtrace test failures as expected on most BSD-derived systems | teor | |
Treat backtrace test failures as expected on NetBSD, OpenBSD, and macOS/Darwin, until we solve bug 17808. (FreeBSD failures have been treated as expected since 18204 in 0.2.8.) Fixes bug 27948; bugfix on 0.2.5.2-alpha. | |||
2018-10-17 | Log more info for duplicate ed25519 IDs | Taylor Yu | |
Occasionally, key pinning doesn't catch a relay that shares an ed25519 ID with another relay. Log the identity fingerprints and the shared ed25519 ID when this happens, instead of making a BUG() warning. Fixes bug 27800; bugfix on 0.3.2.1-alpha. | |||
2018-10-15 | Fix another tor_assert(0) case | Nick Mathewson | |
2018-10-15 | Merge branch 'maint-0.2.9' into maint-0.3.3 | Nick Mathewson | |
2018-10-15 | Fix make check-spaces. | Nick Mathewson | |
2018-10-15 | Adjust tor_assert_unreached() | Nick Mathewson | |
This version of the macro makes it obvious to the compiler that "tor_assert_unreached()" will always abort(). | |||
2018-10-15 | Merge branch 'maint-0.2.9' into maint-0.3.3 | Nick Mathewson | |
2018-10-15 | Merge branch 'bug27709_029' into maint-0.2.9 | Nick Mathewson | |
2018-10-15 | Explain a bit more about branch prediction in the unit-test case | Nick Mathewson | |
2018-10-10 | Merge branch 'maint-0.2.9' into maint-0.3.3 | Nick Mathewson | |
2018-10-10 | Merge remote-tracking branch 'tor-github/pr/392' into maint-0.2.9 | Nick Mathewson | |
2018-10-10 | Merge remote-tracking branch 'teor/bug27738-032' into bug27738-033 | Taylor Yu | |
2018-10-10 | Merge branch 'maint-0.2.9' into maint-0.3.3 | Nick Mathewson | |
2018-10-10 | Update geoip and geoip6 to the October 9 2018 database. | Karsten Loesing | |
2018-09-21 | Merge branch 'maint-0.3.2' into maint-0.3.3 | Nick Mathewson | |
2018-09-21 | Merge branch 'maint-0.2.9' into maint-0.3.2maint-0.3.2 | Nick Mathewson | |
2018-09-21 | rust/protover: return C-allocated string in protover_all_supported() | cypherpunks | |
The result of CString::into_raw() is not safe to free with free() except under finicky and fragile circumstances that we definitely don't meet right now. This was missed in be583a34a3815c2c10e86094ab0610e4b7f9c869. | |||
2018-09-21 | rust/protover: fix null deref in protover_all_supported() | cypherpunks | |
Fortunately with the current callers it couldn't happen in practice. Fix on d1820c1516a31a149fc51a9e5126bf899e4c4e08. | |||
2018-09-20 | hs-v3: Close all SOCKS request on descriptor failure | David Goulet | |
Client side, when a descriptor is finally fetched and stored in the cache, we then go over all pending SOCKS request for that descriptor. If it turns out that the intro points are unusable, we close the first SOCKS request but not the others for the same .onion. This commit makes it that we'll close all SOCKS requests so we don't let hanging the other ones. It also fixes another bug which is having a SOCKS connection in RENDDESC_WAIT state but with a descriptor in the cache. At some point, tor will expire the intro failure cache which will make that descriptor usable again. When retrying all SOCKS connection (retry_all_socks_conn_waiting_for_desc()), we won't end up in the code path where we have already the descriptor for a pending request causing a BUG(). Bottom line is that we should never have pending requests (waiting for a descriptor) with that descriptor in the cache (even if unusable). Fixees #27410. Signed-off-by: David Goulet <dgoulet@torproject.org> | |||
2018-09-20 | Merge branch 'maint-0.3.2' of https://git.torproject.org/tor into maint-0.3.2 | David Goulet | |
2018-09-18 | Merge remote-tracking branch 'onionk/rust-allsupported1' into maint-0.3.3 | Nick Mathewson | |
2018-09-18 | Travis: use the Homebrew addon for xz and zstd | teor | |
xz and zstd were added as optional dependencies in 0.3.1.1-alpha. Implements ticket 27738. | |||
2018-09-18 | Merge branch 'bug27738-029' into bug27738-032 | teor | |
Resolve conflicts due to modified comments, and deleted lines. | |||
2018-09-18 | Travis: use the Homebrew addon | teor | |
Use the Travis Homebrew addon to install packages on macOS. The package list is the same, but the Homebrew addon does not do a `brew update` by default. This makes builds faster, at the cost of using slightly older packages. Implements ticket 27738. | |||
2018-09-17 | Remove extraneous argument from Rust protover_compute_vote() | Nick Mathewson | |
This argument was added to match an older idea for the C api, but we decided not to do it that way in C. Fixes bug 27741; bugfix on 0.3.3.6 / TROVE-2018-005 fix. | |||
2018-09-14 | Merge branch 'maint-0.3.2' into maint-0.3.3 | Nick Mathewson | |
2018-09-14 | hs-v3: Don't BUG() on directory permission check failure | David Goulet | |
In hs_config.c, we do validate the permission of the hidden service directory but we do not try to create it. So, in the event that the directory doesn't exists, we end up in the loading key code path which checks for the permission and possibly creates the directory. On failure, don't BUG() since there is a perfectly valid use case for that function to fail. Fixes #27335 Signed-off-by: David Goulet <dgoulet@torproject.org> |