summaryrefslogtreecommitdiff
path: root/changes
AgeCommit message (Collapse)Author
2021-10-25Add Changelog and ReleaseNotes entry for tor#40500.Alexander Færøy
2021-10-25Merge branch 'maint-0.4.6' into mainAlexander Færøy
2021-10-25Merge branch 'maint-0.4.5' into maint-0.4.6Alexander Færøy
2021-10-25ci: Exclude HSv2 Stem testsDavid Goulet
Signed-off-by: David Goulet <dgoulet@torproject.org>
2021-10-25changelog: ChangeLog for 0.4.7.2-alpha releaseDavid Goulet
Signed-off-by: David Goulet <dgoulet@torproject.org>
2021-10-21Merge branch 'maint-0.4.6'David Goulet
2021-10-21Merge branch 'maint-0.4.5' into maint-0.4.6David Goulet
2021-10-21Merge branch 'maint-0.3.5' into maint-0.4.5David Goulet
2021-10-21fallbackdir: Regenerate the list for October 2021David Goulet
Closes #40493 Signed-off-by: David Goulet <dgoulet@torproject.org>
2021-10-21Merge branch 'tor-gitlab/mr/452_squashed' into mainAlexander Færøy
2021-10-21Prop335: Changes file and manual entries.Nick Mathewson
Closes #40448.
2021-10-21Merge remote-tracking branch 'tor-gitlab/mr/442' into mainAlexander Færøy
2021-10-21Merge branch 'maint-0.4.5' into maint-0.4.6Alexander Færøy
2021-10-21Merge remote-tracking branch 'tor-gitlab/mr/338' into maint-0.4.5Alexander Færøy
2021-10-20Merge branch 'maint-0.4.5' into maint-0.4.6Alexander Færøy
2021-10-20Merge branch 'maint-0.4.6' into mainAlexander Færøy
2021-10-20Merge branch 'maint-0.3.5' into maint-0.4.5Alexander Færøy
2021-10-20Announce URL to bridge status page when starting Tor as a bridge relay.Alexander Færøy
This patch makes Tor announce the relay specific bridge status page URL when Tor is starting up before bootstrap occours. See: tor#30477
2021-10-20Merge branch 'tor-gitlab/mr/464_squashed' into mainAlexander Færøy
2021-10-20Move "Didn't recognize cell, but circ stops here" into heartbeat.Nick Mathewson
When we looked, this was the third most frequent message at PROTOCOL_WARN, and doesn't actually tell us what to do about it. Now: * we just log it at info * we log it only once per circuit * we report, in the heartbeat, how many times it happens, how many cells it happens with per circuit, and how long these circuits have been alive (on average). Fixes the final part of #40400.
2021-10-20Merge branch 'maint-0.4.5' into maint-0.4.6Alexander Færøy
2021-10-20Merge branch 'maint-0.3.5' into maint-0.4.5Alexander Færøy
2021-10-20Merge remote-tracking branch 'tor-gitlab/mr/369' into maint-0.3.5Alexander Færøy
2021-10-20relay: For metrics, don't report DNS errors by query typeDavid Goulet
This is due to the libevent bug https://github.com/libevent/libevent/issues/1219 that fails to return back the DNS record type on error. And so, the MetricsPort now only reports the errors as a global counter and not a per record type. Closes #40490 Signed-off-by: David Goulet <dgoulet@torproject.org>
2021-10-20relay: Overload state on DNS timeout is now X% over Y secsDavid Goulet
With this commit, we will only report a general overload state if we've seen more than X% of DNS timeout errors over Y seconds. Previous behavior was to report when a single timeout occured which is really too small of a threshold. The value X is a consensus parameters called "overload_dns_timeout_scale_percent" which is a scaled percentage (factor of 1000) so we can represent decimal points for X like 0.5% for instance. Its default is 1000 which ends up being 1%. The value Y is a consensus parameters called "overload_dns_timeout_period_secs" which is the time period for which will gather DNS errors and once over, we assess if that X% has been reached ultimately triggering a general overload signal. Closes #40491 Signed-off-by: David Goulet <dgoulet@torproject.org>
2021-10-20changes: Add file for ticket 40491David Goulet
Signed-off-by: David Goulet <dgoulet@torproject.org>
2021-10-19hs: v2 address are now considered a bad hostnameDavid Goulet
This means that at this commit, tor will stop logging that v2 is deprecated and treat a v2 address as a bad hostname that we can't use. Part of #40476 Signed-off-by: David Goulet <dgoulet@torproject.org>
2021-10-19hs: Fix merge conflicts after merging forward 40476David Goulet
Signed-off-by: David Goulet <dgoulet@torproject.org>
2021-10-19Merge branch 'maint-0.4.6'David Goulet
2021-10-19changes: Add file for ticket 40476David Goulet
Closes #40476 Signed-off-by: David Goulet <dgoulet@torproject.org>
2021-10-19changes: Add file for ticket 40476David Goulet
Closes #40476 Signed-off-by: David Goulet <dgoulet@torproject.org>
2021-10-19Merge branch 'ticket40476_045_01' into ticket40476_046_01David Goulet
2021-10-19changes: Add file for ticket 40476David Goulet
Closes #40476 Signed-off-by: David Goulet <dgoulet@torproject.org>
2021-10-16Changes file for new fuzzersNick Mathewson
2021-10-14Merge remote-tracking branch 'tor-gitlab/mr/459' into mainAlexander Færøy
2021-10-14Merge remote-tracking branch 'tor-gitlab/mr/456' into mainAlexander Færøy
2021-10-14Merge branch 'tor-gitlab/mr/458'David Goulet
2021-10-14Lower maximum value for guard-extreme-restriction-percent to 100.Nick Mathewson
Values greater than 100 would have had the same effect as 100, so this doesn't actually change Tor's behavior; it just makes the intent clearer. Fixes #40486; see also torspec#66.
2021-10-14Merge remote-tracking branch 'tor-gitlab/mr/457'Nick Mathewson
2021-10-14Correct a version number.Nick Mathewson
2021-10-14Downgrade "Rejecting RENDEZVOUS1 cell with unrecognized cookie"Nick Mathewson
This is the loudest of our LOG_PROTOCOL_WARN messages, it can occur naturally, and there doesn't seem to be a great response to it. Partial fix for 40400; bugfix on 0.1.1.13-alpha.
2021-10-14ci: Set 5MB data for all chutney testsDavid Goulet
Closes #40485 Signed-off-by: David Goulet <dgoulet@torproject.org>
2021-10-14hs: Fix memory leak if service failed to configureDavid Goulet
Closes #40484 Signed-off-by: David Goulet <dgoulet@torproject.org>
2021-10-14Merge remote-tracking branch 'tor-gitlab/mr/433' into mainAlexander Færøy
2021-10-14Merge remote-tracking branch 'tor-gitlab/mr/451' into mainAlexander Færøy
2021-10-13Downgrade a PROTOCOL_WARN log message.Nick Mathewson
This one happens every time we get a failure from circuit_receive_relay_cell -- but for all the relevant failing cases in that function, we already log in that function. This resolves one case of #40400. Two cases remain.
2021-10-08dirauth: Reject EOL relaysDavid Goulet
Series 0.4.2.x, 0.4.3.x and 0.4.4.x will all be rejected at the authority level at this commit. Futhermore, the 0.4.5.x alphas and rc will also be rejected. Closes #40480 Signed-off-by: David Goulet <dgoulet@torproject.org>
2021-10-08Merge branch 'tor-gitlab/mr/447'David Goulet
2021-10-06Merge branch 'tor-gitlab/mr/392' into maint-0.4.5David Goulet
2021-10-06Merge branch 'tor-gitlab/mr/393' into maint-0.4.5David Goulet