diff options
-rw-r--r-- | ChangeLog | 106 | ||||
-rw-r--r-- | changes/bug1362 | 5 | ||||
-rw-r--r-- | changes/bug1511 | 9 | ||||
-rw-r--r-- | changes/bug1739 | 4 | ||||
-rw-r--r-- | changes/bug1740 | 5 | ||||
-rw-r--r-- | changes/bug1751 | 5 | ||||
-rw-r--r-- | changes/bug1772 | 11 | ||||
-rw-r--r-- | changes/bug1789 | 16 | ||||
-rw-r--r-- | changes/bug1805 | 4 | ||||
-rw-r--r-- | changes/bug1882 | 4 | ||||
-rw-r--r-- | changes/bug1912 | 9 | ||||
-rw-r--r-- | changes/bug1943 | 4 | ||||
-rw-r--r-- | changes/bug1952 | 5 | ||||
-rw-r--r-- | changes/bug1954_loadlib | 4 | ||||
-rw-r--r-- | changes/bug1956 | 5 | ||||
-rw-r--r-- | changes/bug1964 | 3 | ||||
-rw-r--r-- | changes/bug1981 | 6 | ||||
-rw-r--r-- | changes/torrc_continuation | 6 | ||||
-rw-r--r-- | changes/win_build_fix | 2 |
19 files changed, 105 insertions, 108 deletions
@@ -1,4 +1,108 @@ -Changes in version 0.2.2.17-alpha - 2010-09-2? +Changes in version 0.2.2.17-alpha - 2010-09-30 + o Major features: + - Exit relays now try harder to block exit attempts from unknown + relays, to make it harder for people to use them as one-hop proxies + a la tortunnel. Controlled by the refuseunknownexits consensus + parameter (currently enabled), or you can override it on your + relay with the RefuseUnknownExits torrc option. + + o Major bugfixes (0.2.1.x and earlier): + - Fix a bug in bandwidth accounting that could make us use twice + the intended bandwidth when our interval start changes due to + daylight saving time. Now we tolerate skew in stored vs computed + interval starts: if the start of the period changes by no more than + 50% of the period's duration, we remember bytes that we transferred + in the old period. Fixes bug 1511; bugfix on 0.0.9pre5. + - Always search the Windows system directory for system DLLs, and + nowhere else. Bugfix on 0.1.1.23; fixes bug 1954. + - When you're using bridges and your network goes away and your + bridges get marked as down, recover when you attempt a new socks + connection (if the network is back), rather than waiting up to an + hour to try fetching new descriptors for your bridges. Bugfix on + 0.2.0.3-alpha; fixes bug 1981. + + o Major bugfixes (on 0.2.2.x): + - Fix compilation on Windows. Bugfix on 0.2.2.16-alpha; related to + bug 1797. + - Fix a segfault that could happen when operating a bridge relay with + no GeoIP database set. Fixes bug 1964; bugfix on 0.2.2.15-alpha. + - The consensus bandwidth-weights (used by clients to choose fast + relays) entered an unexpected edge case in September where + Exits were much scarcer than Guards, resulting in bad weight + recommendations. Now we compute them using new constraints that + should succeed in all cases. Also alter directory authorities to + not include the bandwidth-weights line if they fail to produce + valid values. Fixes bug 1952; bugfix on 0.2.2.10-alpha. + - When weighting bridges during path selection, we used to trust + the bandwidths they provided in their descriptor, only capping them + at 10MB/s. This turned out to be problematic for two reasons: + Bridges could claim to handle a lot more traffic then they + actually would, thus making more clients pick them and have a + pretty effective DoS attack. The other issue is that new bridges + that might not have a good estimate for their bw capacity yet + would not get used at all unless no other bridges are available + to a client. Fixes bug 1912; bugfix on 0.2.2.7-alpha. + + o Minor features: + - When we run out of directory information such that we can't build + circuits, but then get enough that we can build circuits, log when + we actually construct a circuit, so the user has a better chance of + knowing what's going on. Fixes bug 1362. + - Be more generous with how much bandwidth we'd use up (with + accounting enabled) before entering "soft hibernation". Previously, + we'd refuse new connections and circuits once we'd used up 95% of + our allotment. Now, we use up 95% of our allotment, AND make sure + that we have no more than 500MB (or 3 hours of expected traffic, + whichever is lower) remaining before we enter soft hibernation. + - If we've configured EntryNodes and our network goes away and/or all + our entrynodes get marked down, optimistically retry them all when + a new socks application request appears. Fixes bug 1882. + - Add some more defensive programming for architectures that can't + handle unaligned integer accesses. We don't know of any actual bugs + right now, but that's the best time to fix them. Fixes bug 1943. + - Support line continuations in the torrc config file. If a line + ends with a single backslash character, the newline is ignored, and + the configuration value is treated as continuing on the next line. + Resolves bug 1929. + + o Minor bugfixes (on 0.2.1.x and earlier): + - For bandwidth accounting, calculate our expected bandwidth rate + based on the time during which we were active and not in + soft-hibernation during the last interval. Previously, we were + also considering the time spent in soft-hibernation. If this + was a long time, we would wind up underestimating our bandwidth + by a lot, and skewing our wakeup time towards the start of the + accounting interval. Fixes bug 1789. Bugfix on 0.0.9pre5. + + o Minor bugfixes (on the circuit build timeout feature, 0.2.2.x): + - Ignore cannibalized circuits when recording circuit build times. + This should provide for a minor performance improvement for hidden + service users using 0.2.2.14-alpha, and should remove two spurious + notice log messages. Bugfix on 0.2.2.14-alpha; fixes bug 1740. + - Simplify the logic that causes us to decide if the network is + unavailable for purposes of recording circuit build times. If we + receive no cells whatsoever for the entire duration of a circuit's + full measured lifetime, the network is probably down. Also ignore + one-hop directory fetching circuit timeouts when calculating our + circuit build times. These changes should hopefully reduce the + cases where we see ridiculous circuit build timeouts for people + with spotty wireless connections. Fixes part of bug 1772; bugfix + on 0.2.2.2-alpha. + - Prevent the circuit build timeout from becoming larger than + the maximum build time we have ever seen. Also, prevent the time + period for measurement circuits from becoming larger than twice that + value. Fixes the other part of bug 1772; bugfix on 0.2.2.2-alpha. + + o Minor bugfixes (other, 0.2.2.x): + - Resume generating CIRC FAILED REASON=TIMEOUT control port messages, + which were disabled by the circuit build timeout changes in + 0.2.2.14-alpha. Bugfix on 0.2.2.14-alpha; fixes bug 1739. + - Make sure we don't warn about missing bandwidth weights when + choosing bridges or other relays not in the consensus. Bugfix on + 0.2.2.10-alpha; fixes bug 1805. + - In our logs, do not double-report signatures from unrecognized + authorities both as "from unknown authority" and "not + present". Fixes bug 1956, bugfix on 0.2.2.16-alpha. Changes in version 0.2.2.16-alpha - 2010-09-17 diff --git a/changes/bug1362 b/changes/bug1362 deleted file mode 100644 index e06393765b..0000000000 --- a/changes/bug1362 +++ /dev/null @@ -1,5 +0,0 @@ - o Minor features: - - When we run out of directory information such that we can't build - circuits, but then get enough that we can build circuits, log when - we actually construct a circuit, so the user has a better chance of - knowing what's going on. Fixes bug 1362. diff --git a/changes/bug1511 b/changes/bug1511 deleted file mode 100644 index 8e9652b90e..0000000000 --- a/changes/bug1511 +++ /dev/null @@ -1,9 +0,0 @@ - o Minor bugfixes: - - Tolerate skew in stored vs computed interval starts for bandwidth - accounting. Now, if we change our configuration so that the start - of the period changes by no more than 50% of the period's duration, - we remember bytes that we transferred in the old one. The upshot - of this is that daylight savings time should no longer mess up - bandwidth accounting and make each period potentially happen - twice. Fixes bug 1511; bugfix on 0.0.9pre5. - diff --git a/changes/bug1739 b/changes/bug1739 deleted file mode 100644 index ec1b1b1b5c..0000000000 --- a/changes/bug1739 +++ /dev/null @@ -1,4 +0,0 @@ - o Minor bugfixes: - - Fix to resume generating CIRC FAILED REASON=TIMEOUT control port - messages, which were disabled by the circuit build timeout changes - in 0.2.2.14-alpha. Bugfix on 0.2.2.14-alpha; fixes bug #1739. diff --git a/changes/bug1740 b/changes/bug1740 deleted file mode 100644 index 2e7769b0d6..0000000000 --- a/changes/bug1740 +++ /dev/null @@ -1,5 +0,0 @@ - o Minor bugfixes: - - Fix to ignore cannibalized circuits when recording circuit build times. - This should provide for a minor performance improvement for hidden - service users using 0.2.2.14-alpha, and should remove two spurious - notice log messages. Bugfix on 0.2.2.14-alpha; fixes bug #1740. diff --git a/changes/bug1751 b/changes/bug1751 deleted file mode 100644 index 58ea9a225f..0000000000 --- a/changes/bug1751 +++ /dev/null @@ -1,5 +0,0 @@ - o Major features: - - Exit relays now try harder to block exit attempts from unknown - relays, to make it harder for people to use them as one-hop proxies. - Controlled by the refuseunknownexits consensus parameter, or you - can override it with the RefuseUnknownExits torrc option. diff --git a/changes/bug1772 b/changes/bug1772 deleted file mode 100644 index 9a4f809ee2..0000000000 --- a/changes/bug1772 +++ /dev/null @@ -1,11 +0,0 @@ - o Minor bugfixes: - - Simplify the logic that causes us to decide if the network is unavailable - for purposes of recording circuit build times. If we receive no cells - whatsoever for the entire duration of a circuit's full measured lifetime, - the network is probably down. This should hopefully reduce some of the - cases where we see ridiculous circuit build timeouts for people with spotty - wireless connections. Fixes bug 1772; bugfix on 0.2.2.2-alpha. - - Prevent the circuit build timeout from becoming larger than the maximum - build time we have ever seen. Also, prevent the measurement time period - from becoming larger than twice that value. Fixes bug 1772; bugfix on - 0.2.2.2-alpha diff --git a/changes/bug1789 b/changes/bug1789 deleted file mode 100644 index 9292aa924f..0000000000 --- a/changes/bug1789 +++ /dev/null @@ -1,16 +0,0 @@ - o Minor features: - - Be more generous with how much bandwidth we'd use up (with - accounting enabled) before entering "soft hibernation". - Previously, we'd hibernate once we'd used up 95% of our - allotment. Now, we use up 95% of our allotment, AND make sure - that we have no more than 500MB (or 3 hours of expected traffic, - whichever is lower) remaining before we enter soft hibernation. - - o Minor bugfixes: - - For bandwidth accounting, calculate our expected bandwidth rate - based on the time during which we were active and not in - soft-hibernation during the last interval. Previously, we were - also considering the time spent in soft-hibernation. If this - was a long time, we would wind up underestimating our bandwidth - by a lot, and skewing our wakeup time towards the start of the - accounting interval. Fixes bug 1789. Bugfix on 0.0.9pre5. diff --git a/changes/bug1805 b/changes/bug1805 deleted file mode 100644 index fdd03fb985..0000000000 --- a/changes/bug1805 +++ /dev/null @@ -1,4 +0,0 @@ - o Minor bugfixes: - - Make sure we don't warn about not having bandwidth weights when - choosing bridges or other relays not in the consensus. Bugfix - on 0.2.2.10-alpha; fixes bug 1805. diff --git a/changes/bug1882 b/changes/bug1882 deleted file mode 100644 index d495d2f418..0000000000 --- a/changes/bug1882 +++ /dev/null @@ -1,4 +0,0 @@ - o Minor features: - - If we've configured EntryNodes and our network goes away and/or all - our entrynodes get marked down, optimistically retry them all when - a new socks application request appears. Fixes bug 1882. diff --git a/changes/bug1912 b/changes/bug1912 deleted file mode 100644 index 5a7af756d1..0000000000 --- a/changes/bug1912 +++ /dev/null @@ -1,9 +0,0 @@ - o Major bugfixes: - - When weighting bridges, we used to trust the bandwidths they provided - in their descriptor, only capping them at 10MB/s. This turned out to be - problematic for two reasons: Bridges could claim to handle a lot more - traffic then they actually would, thus making more clients pick them and - have a pretty effective DoS attack. The other issue is that new bridges - that might not have a good estimate for their bw capacity yet would not - get used at all unless no other bridges are available to a client. - This fixes bug 1912; bugfix on 0.2.2.7-alpha. diff --git a/changes/bug1943 b/changes/bug1943 deleted file mode 100644 index 0005cef9b3..0000000000 --- a/changes/bug1943 +++ /dev/null @@ -1,4 +0,0 @@ - o Minor features: - - Add some more defensive programming for architectures that can't - handle unaligned integer accesses. We don't know of any actual - bugs right now, but that's the best time to fix them. diff --git a/changes/bug1952 b/changes/bug1952 deleted file mode 100644 index e6784aa3d3..0000000000 --- a/changes/bug1952 +++ /dev/null @@ -1,5 +0,0 @@ - o Major bugfixes: - - Alter how consensus bandwidth-weights are computed using new constraints - that should succeed in all cases. Also alter directory authorities to not - include the bandwidth-weights line if they fail to produce valid values. - Fixes bug 1952; bugfix on 0.2.2.10-alpha. diff --git a/changes/bug1954_loadlib b/changes/bug1954_loadlib deleted file mode 100644 index 901d9baa5c..0000000000 --- a/changes/bug1954_loadlib +++ /dev/null @@ -1,4 +0,0 @@ - o Major bugfixes - - Always search the windows system directory for system DLLs, and - nowhere else. Fixes bug 1954. - diff --git a/changes/bug1956 b/changes/bug1956 deleted file mode 100644 index 3e402b7765..0000000000 --- a/changes/bug1956 +++ /dev/null @@ -1,5 +0,0 @@ - o Minor bugfixes - - Do not double-report signatures from unrecognized authorities both - as "from unknown authority" and "not present". Fixes bug 1956, - bugfix on 0.2.2.16-alpha. - diff --git a/changes/bug1964 b/changes/bug1964 deleted file mode 100644 index d100094eba..0000000000 --- a/changes/bug1964 +++ /dev/null @@ -1,3 +0,0 @@ - o Major bugfixes: - - Fix a segfault that can happen when using bridges. Fixes bug 1964; - bugfix on 0.2.2.15-alpha. diff --git a/changes/bug1981 b/changes/bug1981 deleted file mode 100644 index 3e5e1d36fb..0000000000 --- a/changes/bug1981 +++ /dev/null @@ -1,6 +0,0 @@ - o Major bugfixes: - - When you use bridges and your network goes away and your bridges - get marked as down, recover when you attempt a new socks connection - (if the network is back) rather than waiting up to an hour to try - fetching new descriptors for your bridges. Bugfix on 0.2.0.3-alpha; - fixes bug 1981. diff --git a/changes/torrc_continuation b/changes/torrc_continuation deleted file mode 100644 index 5b6e086e6f..0000000000 --- a/changes/torrc_continuation +++ /dev/null @@ -1,6 +0,0 @@ - o Minor features: - - Support line continuations in torrc. If a line ends with a - single backslash character, the newline is ignored, and the - configuration value is treated as continuing on the next line. - Resolves bug 1929. - diff --git a/changes/win_build_fix b/changes/win_build_fix deleted file mode 100644 index adcfcc0384..0000000000 --- a/changes/win_build_fix +++ /dev/null @@ -1,2 +0,0 @@ - o Major bugfixes: - - Fix compilation on Windows. Bugfix on 0.2.2.16-alpha, related to bug 1797. |