Age | Commit message (Collapse) | Author | |
---|---|---|---|
2021-06-29 | Merge branch 'maint-0.4.5' into maint-0.4.6 | David Goulet | |
2021-06-28 | Suppress strict-prototypes warning on NSS pk11pub.h header | Nick Mathewson | |
We already did this in a couple of places, but there are more that we didn't get. This is necessary for systems with versions of NSS that don't do their prototypes properly. Fixes #40409; bugfix on 0.3.5.1-alpha. | |||
2021-06-26 | Merge branch 'maint-0.4.5' into maint-0.4.6 | Nick Mathewson | |
2021-06-25 | Enable deterministic RNG for address set tests. | Alexander Færøy | |
This patch enables the deterministic RNG for address set tests, including the tests which uses address set indirectly via the nodelist API. This should prevent random test failures in the highly unlikely case of a false positive which was seen in tor#40419. See: tpo/core/tor#40419. | |||
2021-06-18 | Fix compilation on systems with older compilers. | Alexander Færøy | |
This patch fixes a build error with GCC 7.x which doesn't seem to accept const int's as constants in macro initialization. See: tpo/core/tor#40410 | |||
2021-06-14 | Bump to 0.4.6.5-dev | Nick Mathewson | |
2021-06-14 | Bump to 0.4.5.9-dev | Nick Mathewson | |
2021-06-10 | Merge branch 'maint-0.4.5' into maint-0.4.6 | Nick Mathewson | |
2021-06-10 | Merge branch 'maint-0.4.4' into maint-0.4.5 | Nick Mathewson | |
2021-06-10 | Merge branch 'maint-0.3.5' into maint-0.4.4 | Nick Mathewson | |
2021-06-10 | Fix TROVE-2021-006: Out-of-bounds read on v3 desc parsing | George Kadianakis | |
2021-06-10 | Merge branch 'maint-0.4.5' into maint-0.4.6 | Nick Mathewson | |
2021-06-10 | Merge branch 'maint-0.4.4' into maint-0.4.5 | Nick Mathewson | |
2021-06-10 | Resolve remaining merge conflicts in relay.c | Nick Mathewson | |
(My bad!) | |||
2021-06-10 | Merge branch 'maint-0.4.5' into maint-0.4.6 | Nick Mathewson | |
2021-06-10 | Merge branch 'maint-0.4.4' into maint-0.4.5 | Nick Mathewson | |
2021-06-10 | Merge branch 'maint-0.3.5' into maint-0.4.4 | Nick Mathewson | |
Conflicts resolved: src/core/or/relay.c | |||
2021-06-10 | TROVE-2021-003: Check layer_hint before half-closed end and resolve cells | David Goulet | |
This issue was reported by Jann Horn part of Google's Project Zero. Jann's one-sentence summary: entry/middle relays can spoof RELAY_END cells on half-closed streams, which can lead to stream confusion between OP and exit. Fixes #40389 | |||
2021-06-10 | Merge branch 'maint-0.4.5' into maint-0.4.6 | Nick Mathewson | |
2021-06-10 | Merge branch 'maint-0.4.4' into maint-0.4.5 | Nick Mathewson | |
2021-06-10 | Merge branch 'maint-0.3.5' into maint-0.4.4 | Nick Mathewson | |
2021-06-10 | Merge branch 'bug40391_035' into maint-0.3.5 | Nick Mathewson | |
2021-06-10 | Merge branch 'maint-0.4.5' into maint-0.4.6 | Nick Mathewson | |
2021-06-10 | Merge branch 'maint-0.4.4' into maint-0.4.5 | Nick Mathewson | |
2021-06-10 | Merge branch 'maint-0.3.5' into maint-0.4.4 | Nick Mathewson | |
2021-06-10 | Merge branch 'bug40390_035_squashed' into maint-0.3.5 | Nick Mathewson | |
2021-06-10 | Assert on _all_ failures from RAND_bytes(). | Nick Mathewson | |
Previously, we would detect errors from a missing RNG implementation, but not failures from the RNG code itself. Fortunately, it appears those failures do not happen in practice when Tor is using OpenSSL's default RNG implementation. Fixes bug 40390; bugfix on 0.2.8.1-alpha. This issue is also tracked as TROVE-2021-004. Reported by Jann Horn at Google's Project Zero. | |||
2021-06-10 | Merge branch 'maint-0.4.5' into maint-0.4.6 | Nick Mathewson | |
2021-06-10 | Merge branch 'maint-0.4.4' into maint-0.4.5 | Nick Mathewson | |
2021-06-10 | Merge branch 'maint-0.3.5' into maint-0.4.4 | Nick Mathewson | |
2021-06-10 | Update geoip files to match ipfire location db, 2021/06/10. | Nick Mathewson | |
2021-06-07 | Bump to 0.4.6.5 | Nick Mathewson | |
2021-06-07 | Bump to 0.4.5.9. | Nick Mathewson | |
2021-06-07 | Bump to 0.4.4.9 | Nick Mathewson | |
2021-06-07 | Bump to 0.3.5.15. | Nick Mathewson | |
2021-06-01 | Merge branch 'tor-gitlab/mr/393' into maint-0.4.6 | David Goulet | |
2021-05-28 | Bump to 0.4.6.4-rc-dev | Nick Mathewson | |
2021-05-28 | Bump to 0.4.6.4-rc. | Nick Mathewson | |
2021-05-27 | Upgrade and rate-limit compression failure message. | Nick Mathewson | |
Without this message getting logged at 'WARN', it's hard to contextualize the messages we get about compression bombs, so this message should fix #40175. I'm rate-limiting this, however, since it _could_ get spammy if somebody on the network starts acting up. (Right now it should be very quiet; I've asked Sebastian to check it, and he says that he doesn't hit this message in practice.) Closes #40175. | |||
2021-05-27 | Merge branch 'tor-gitlab/mr/392' into maint-0.4.6 | David Goulet | |
2021-05-26 | Prefer mmap()ed consensus files over cached_dir_t entries. | Nick Mathewson | |
Cached_dir_t is a somewhat "legacy" kind of storage when used for consensus documents, and it appears that there are cases when changing our settings causes us to stop updating those entries. This can cause trouble, as @arma found out in #40375, where he changed his settings around, and consensus diff application got messed up: consensus diffs were being _requested_ based on the latest consensus, but were being (incorrectly) applied to a consensus that was no longer the latest one. This patch is a minimal fix for backporting purposes: it has Tor do the same search when applying consensus diffs as we use to request them. This should be sufficient for correct behavior. There's a similar case in GETINFO handling; I've fixed that too. Fixes #40375; bugfix on 0.3.1.1-alpha. | |||
2021-05-25 | Merge branch 'maint-0.3.5' into maint-0.4.4 | Alexander Færøy | |
2021-05-25 | Merge branch 'maint-0.4.4' into maint-0.4.5 | Alexander Færøy | |
2021-05-25 | Merge branch 'maint-0.4.5' into maint-0.4.6 | Alexander Færøy | |
2021-05-25 | Remove the function `tor_tls_assert_renegotiation_unblocked`. | Nick Mathewson | |
It was used nowhere outside its own unit tests, and it was causing compilation issues with recent OpenSSL 3.0.0 alphas. Closes ticket 40399. | |||
2021-05-18 | Use a more secure hash function for the circuitmux hashtable. | Nick Mathewson | |
Fixes bug 40931; bugfix on 0.2.4.4-alpha. Also tracked as TROVE-2021-005. This issue was reported by Jann Horn from Google's Project Zero. | |||
2021-05-17 | Merge branch 'maint-0.4.5' into maint-0.4.6 | Nick Mathewson | |
2021-05-17 | Merge remote-tracking branch 'tor-gitlab/mr/387' into maint-0.4.5 | Nick Mathewson | |
2021-05-17 | Merge branch 'maint-0.4.5' into maint-0.4.6 | Nick Mathewson | |
2021-05-17 | Make SAVECONF keep only one backup and add sandbox rules for it. #40317 | Daniel Pinto | |
When seccomp sandbox is active, SAVECONF failed because it was not able to save the backup files for torrc. This commit simplifies the implementation of SAVECONF and sandbox by making it keep only one backup of the configuration file. |