mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-12-06 19:41:15 +01:00
Merge branch 'master' of https://git.torproject.org/tor into bug13111-empty-key-files-fn-empty
Conflicts: src/or/connection_edge.c Merged in favour of origin.
This commit is contained in:
@@ -0,0 +1,4 @@
|
||||
o Minor features (directory, memory usage):
|
||||
- When we have recently been under memory pressure (over 3/4 of
|
||||
MaxMemInQueues is allocated), then allocate smaller zlib objects for
|
||||
small requests. Closes ticket 11791.
|
||||
@@ -0,0 +1,4 @@
|
||||
|
||||
o Minor bugfixes (automapping):
|
||||
- Prevent changes to other optoins from removing the wildcard value "."
|
||||
from "AutomapHostsSuffixes".
|
||||
@@ -0,0 +1,5 @@
|
||||
o Minor bugfixes (shutdown):
|
||||
- When shutting down, always call event_del() on lingering read or
|
||||
write events before freeing them. Otherwise, we risk double-frees
|
||||
or read-after-frees in event_base_free(). Fixes bug 12985; bugfix on
|
||||
0.1.0.2-rc.
|
||||
@@ -1,10 +0,0 @@
|
||||
o Code simplification and refactoring:
|
||||
|
||||
- Remove our old, non-weighted bandwidth-based node selection code.
|
||||
Previously, we used it as a fallback when we couldn't perform
|
||||
weighted bandwidth-based node selection. But that would only
|
||||
happen in the cases where we had no consensus, or when we had a
|
||||
consensus generated by buggy or ancient directory authorities. In
|
||||
either case, it's better to use the more modern, better maintained
|
||||
algorithm, with reasonable defaults for the weights. Closes
|
||||
ticket 13126.
|
||||
@@ -1,7 +0,0 @@
|
||||
o Minor bugfixes (hidden services):
|
||||
- When fetching hidden service descriptors, check not only for
|
||||
whether we got the hidden service we had in mind, but also
|
||||
whether we got the particular descriptors we wanted. This
|
||||
prevents a class of inefficient but annoying DoS attacks by
|
||||
hidden service directories. Fixes bug 13214; bugfix on
|
||||
0.2.1.6-alpha. Reported by "special".
|
||||
@@ -1,5 +0,0 @@
|
||||
o Directory authority changes:
|
||||
- Remove turtles as a directory authority.
|
||||
- Add longclaw as a new (v3) directory authority. This implements
|
||||
ticket 13296. This keeps the directory authority count at 9.
|
||||
|
||||
@@ -1,5 +0,0 @@
|
||||
o Minor features:
|
||||
- Validate hostnames in SOCKS5 requests more strictly. If SafeSocks
|
||||
is enabled, reject requests with IP addresses as hostnames. Resolves
|
||||
ticket 13315.
|
||||
|
||||
@@ -1,12 +0,0 @@
|
||||
o Minor bugfixes:
|
||||
- Use a full 256 bits of the SHA256 digest of a microdescriptor when
|
||||
computing which microdescriptors to download. This keeps us from
|
||||
erroneous download behavior if two microdescriptor digests ever have
|
||||
the same first 160 bits. Fixes part of bug 13399; bugfix on
|
||||
0.2.3.1-alpha.
|
||||
|
||||
- Reset a router's status if its microdescriptor digest changes,
|
||||
even if the first 160 bits remain the same. Fixes part of bug
|
||||
13399; bugfix on 0.2.3.1-alpha.
|
||||
|
||||
|
||||
@@ -1,3 +0,0 @@
|
||||
o Code simplifications and refactoring:
|
||||
- Refactor our generic strmap and digestmap types into a single
|
||||
implementation, so that we can add a new digest256map type trivially.
|
||||
@@ -1,5 +0,0 @@
|
||||
o Minor feature:
|
||||
- When re-enabling the network, don't try to build introduction circuits
|
||||
until we have successfully built a circuit. This makes hidden services
|
||||
come up faster when the network is re-enabled. Patch from
|
||||
"akwizgran". Closes ticket 13447.
|
||||
@@ -1,4 +0,0 @@
|
||||
o Code simplifications and refactoring:
|
||||
- Document all members of was_router_added_t enum and rename
|
||||
ROUTER_WAS_NOT_NEW to ROUTER_IS_ALREADY_KNOWN to make it less
|
||||
confusable with ROUTER_WAS_TOO_OLD. Fixes issue 13644.
|
||||
@@ -0,0 +1,6 @@
|
||||
o Minor bugfixes:
|
||||
|
||||
- Support two-number and three-number version numbers correctly, in
|
||||
case we change the Tor versioning system in the future. Fixes bug
|
||||
13661; bugfix on 0.0.8pre1.
|
||||
|
||||
@@ -1,6 +0,0 @@
|
||||
|
||||
o Testing:
|
||||
- In the unit tests, use 'chgrp' to change the group of the unit test
|
||||
temporary directory to the current user, so that the sticky bit doesn't
|
||||
interfere with tests that check directory groups. Closes 13678.
|
||||
|
||||
@@ -1,6 +0,0 @@
|
||||
o Major bugfixes:
|
||||
- When closing an introduction circuit that was opened in
|
||||
parallel, don't mark the introduction point as
|
||||
unreachable. Previously, the first successful connection to an
|
||||
introduction point would make the other uintroduction points get
|
||||
marked as having timed out. Fixes bug 13698; bugfix on 0.0.6rc2.
|
||||
@@ -1,4 +0,0 @@
|
||||
o Minor bugfixes (logging):
|
||||
- Log the circuit identifier correctly in
|
||||
connection_ap_handshake_attach_circuit(). Fixes bug 13701;
|
||||
bugfix on 0.0.6.
|
||||
@@ -1,4 +0,0 @@
|
||||
o Documentation:
|
||||
- Fix typo in PredictedPortsRelevanceTime option description in
|
||||
manpage. Resolves issue 13707.
|
||||
|
||||
@@ -1,3 +0,0 @@
|
||||
o Documentation:
|
||||
- Document the bridge-authority-only 'networkstatus-bridges'
|
||||
file. Closes ticket 13713; patch from "tom".
|
||||
@@ -1,3 +0,0 @@
|
||||
o Code simplifications and refactoring:
|
||||
- In connection_exit_begin_conn(), use END_CIRC_REASON_TORPROTOCOL
|
||||
constant instead of hardcoded value. Fixes issue 13840.
|
||||
@@ -1,6 +0,0 @@
|
||||
o Minor bugfixes (hidden services):
|
||||
- When adding a new hidden-service (for example, via SETCONF) Tor
|
||||
no longer logs a congratulations for running a relay. Fixes bug
|
||||
13941; bugfix on 0.2.6.1-alpha.
|
||||
|
||||
|
||||
@@ -1,5 +0,0 @@
|
||||
o Minor bugfixes (hidden services):
|
||||
- Pre-check directory permissions for new hidden-services to avoid
|
||||
at least one case of "Bug: Acting on config options left us in a
|
||||
broken state. Dying." Fixes bug 13942.
|
||||
|
||||
@@ -0,0 +1,3 @@
|
||||
o Minor bugfixes (statistics):
|
||||
- Increase period over which bandwidth observations are aggregated
|
||||
from 15 minutes to 4 hours. Fixes bug 13988; bugfix on 0.0.8pre1.
|
||||
@@ -0,0 +1,3 @@
|
||||
o Minor bugfixes (build):
|
||||
- Avoid warnings when building with systemd 209 or later.
|
||||
Fixes bug 14072; bugfix on 0.2.6.2-alpha. Patch from "h.venev".
|
||||
@@ -0,0 +1,4 @@
|
||||
o Minor bugfixes (hidden services):
|
||||
- Successfully launch Tor with a nonexistent hidden service directory.
|
||||
Our fix for bug 13942 didn't catch this case. Fixes bug 14106;
|
||||
bugfix on 0.2.6.2-alpha.
|
||||
@@ -0,0 +1,3 @@
|
||||
o Minor bugfixes (controller):
|
||||
- Avoid crashing on a malformed EXTENDCIRCUIT command. Fixes bug 14116;
|
||||
bugfix on 0.2.2.9-alpha.
|
||||
@@ -0,0 +1,4 @@
|
||||
o Minor bugfixes (small memory leaks):
|
||||
- Avoid leaking memory when using IPv6 virtual address mappings.
|
||||
Fixes bug 14123; bugfix on 0.2.4.7-alpha. Patch by Tom van der
|
||||
Woerdt.
|
||||
@@ -0,0 +1,5 @@
|
||||
o Minor bugfixes (dirauth):
|
||||
- Enlarge the buffer to read bw-auth generated files to avoid an
|
||||
issue when parsing the file in dirserv_read_measured_bandwidths().
|
||||
Bugfix on 0.2.2.1-alpha, fixes #14125.
|
||||
|
||||
@@ -1,4 +0,0 @@
|
||||
o Minor bugfixes:
|
||||
- Stop allowing invalid address patterns containing both a wildcard
|
||||
address and a bit prefix length. This affects all our
|
||||
address-range parsing code. Fixes bug 7484; bugfix on 0.0.2pre14.
|
||||
@@ -1,5 +0,0 @@
|
||||
o Removed features:
|
||||
- Tor clients no longer support connecting to hidden services running on
|
||||
Tor 0.2.2.x and earlier; the Support022HiddenServices option has been
|
||||
removed. (There shouldn't be any hidden services running these
|
||||
versions on the network.)
|
||||
@@ -0,0 +1,4 @@
|
||||
o Minor bugfixes (parsing):
|
||||
- Stop accepting milliseconds (or other junk) at the end of
|
||||
descriptor publication times. Fixes bug 9286; bugfix on
|
||||
0.0.2pre25.
|
||||
@@ -1,6 +0,0 @@
|
||||
o Minor bugfixes (logging):
|
||||
- Downgrade warnings about RSA signature failures to info log
|
||||
level. Emit a warning when extra info document is found
|
||||
incompatible with a corresponding router descriptor. Fixes bug
|
||||
9812; bugfix on 0.0.6rc3.
|
||||
|
||||
@@ -1,5 +0,0 @@
|
||||
o Documentation:
|
||||
- Stop suggesting that users specify nodes by nickname: it isn't a
|
||||
good idea. Also, properly cross-reference how to specify nodes
|
||||
in all parts of the manual for options that take a list of
|
||||
nodes. Closes ticket 13381.
|
||||
@@ -0,0 +1,12 @@
|
||||
o Major features (changed defaults):
|
||||
- Prevent relay operators from unintentionally running exits: When
|
||||
a relay is configured as an exit node, we now warn the user
|
||||
unless the 'ExitRelay' option is set to 1. We warn even more
|
||||
loudly if the relay is configured with the default exit policy,
|
||||
since this tends to indicate accidental misconfiguration.
|
||||
Setting 'ExitRelay' to 0 stops Tor from running as an exit relay.
|
||||
Closes ticket 10067.
|
||||
|
||||
o Removed features:
|
||||
- To avoid confusion with the 'ExitRelay' option, 'ExitNode' is no
|
||||
longer silently accepted as an alias for 'ExitNodes'.
|
||||
@@ -1,4 +0,0 @@
|
||||
o Minor features (hidden services):
|
||||
- Inform Tor controller about nature of failure to retrieve
|
||||
hidden service descriptor by sending reason string with HS_DESC
|
||||
FAILED controller event. Implements feature 13212.
|
||||
@@ -1,4 +0,0 @@
|
||||
o Minor features (controller):
|
||||
- Add a "SIGNAL HEARTBEAT" Tor controller command that provokes
|
||||
writing unscheduled heartbeat message to the log. Implements
|
||||
feature 9503.
|
||||
@@ -0,0 +1,4 @@
|
||||
o Testing:
|
||||
- Make the test_cmdline_args.py script work correctly on Windows.
|
||||
Patch from Gisle Vanem.
|
||||
|
||||
@@ -1,3 +0,0 @@
|
||||
o Minor features:
|
||||
- Update geoip to the November 15 2014 Maxmind GeoLite2 Country database.
|
||||
|
||||
@@ -1,3 +0,0 @@
|
||||
o Minor features:
|
||||
- Update geoip6 to the November 15 2014 Maxmind GeoLite2 Country database.
|
||||
|
||||
@@ -1,12 +0,0 @@
|
||||
o Major features (relay, infrastructure):
|
||||
- Implement a new inter-cmux comparison API, a global high/low watermark
|
||||
mechanism and a global scheduler loop for transmission prioritization
|
||||
across all channels as well as among circuits on one channel. This
|
||||
schedule is currently tuned to (tolerantly) avoid making changes
|
||||
in the current network performance, but it should form the basis
|
||||
major circuit performance increases. Code by Andrea; implements
|
||||
ticket 9262.
|
||||
|
||||
o Testing:
|
||||
- New tests for many parts of channel, relay, and circuit mux
|
||||
functionality. Code by Andrea; part of 9262.
|
||||
@@ -1,3 +0,0 @@
|
||||
o Code Simplification and Refactoring:
|
||||
- Stop using can_complete_circuits as a global variable; access it with
|
||||
a function instead.
|
||||
@@ -1,10 +0,0 @@
|
||||
o Minor bugfixes:
|
||||
- Silence clang warnings under --enable-expensive-hardening, including:
|
||||
+ implicit truncation of 64 bit values to 32 bit;
|
||||
+ const char assignment to self;
|
||||
+ tautological compare; and
|
||||
+ additional parentheses around equality tests. (gcc uses these to
|
||||
silence assignment, so clang warns when they're present in an
|
||||
equality test. But we need to use extra parentheses in macros to
|
||||
isolate them from other code).
|
||||
Fixes bug 13577.
|
||||
@@ -1,4 +0,0 @@
|
||||
o Minor features (hidden services):
|
||||
- New HiddenServiceDirGroupReadable option to cause hidden service
|
||||
directories and hostname files to be created group-readable.
|
||||
Patch from "anon", David Stainton, and "meejah".
|
||||
@@ -1,4 +0,0 @@
|
||||
o Code simplification and refactoring:
|
||||
- Avoid using operators directly as macro arguments: this lets us
|
||||
apply coccinelle transformations to our codebase more
|
||||
directly. Closes ticket 13172.
|
||||
@@ -0,0 +1,6 @@
|
||||
o Testing:
|
||||
|
||||
- New "make test-stem" target to run stem integration tests.
|
||||
Requires that the "STEM_SOURCE_DIR" environment variable be set.
|
||||
Closes ticket 14107.
|
||||
|
||||
@@ -0,0 +1,5 @@
|
||||
o Minor features (controller):
|
||||
- New "GETINFO bw-event-cache" to get information about recent bandwidth
|
||||
events. Closes ticket 14128. Useful for controllers to get recent
|
||||
bandwidth history after the fix for 13988.
|
||||
|
||||
@@ -1,6 +0,0 @@
|
||||
o Code simplification and refactoring:
|
||||
- Combine the functions used to parse ClientTransportPlugin and
|
||||
ServerTransportPlugin into a single function. Closes ticket 6456.
|
||||
|
||||
o Testing:
|
||||
- New tests for parse_transport_line(). Part of ticket 6456.
|
||||
Reference in New Issue
Block a user