summaryrefslogtreecommitdiff
path: root/changes
AgeCommit message (Collapse)Author
2012-10-14Merge remote-tracking branch 'arma/bug7029'Nick Mathewson
2012-10-12Make tor_addr_is_internal log the calling function on errorNick Mathewson
This might make it a little easier to track down bug 7086.
2012-10-11Move all externally maintained source files into src/extNick Mathewson
The rationale for treating these files differently is that we should be checking upstream for changes as applicable, and merging changes upstream as warranted.
2012-10-10Merge branch 'bug7011'Nick Mathewson
Conflicts: src/or/circuitbuild.c The conflict was trivial, since no line of code actually changed in both branches: There was a fmt_addr() that turned into fmt_addrport() in bug7011, and a "if (!n_conn)" that turned into "if (!n_chan)" in master.
2012-10-10Fix changes/bug7011 slightlyNick Mathewson
2012-10-10Add changes file for bug7011.David Fifield
2012-10-10Merge branch 'bug6816_squashed_nowarn' of git://git.torproject.org/nickm/torAndrea Shepard
2012-10-10Add changes file for bug6816Andrea Shepard
2012-10-09Don't call fmt_addr() twice in a parameter list.George Kadianakis
2012-10-08Add changes file for channels (ticket 6465)Andrea Shepard
2012-10-05Downgrade "Failed to hand off onionskin" messagesRoger Dingledine
They're typically redundant with the "Your computer is too slow" messages. Fixes bug 7038; bugfix on 0.2.2.16-alpha. (In retrospect, we should have fixed this bug back in ticket 1042.)
2012-10-04Merge remote-tracking branch 'public/openssl_1_is_best'Nick Mathewson
2012-10-04Merge remote-tracking branch 'origin/maint-0.2.3'Nick Mathewson
2012-10-04Merge remote-tracking branch 'arma/bug7037' into maint-0.2.3Nick Mathewson
2012-10-04Add autoconf magic to support BitrigNick Mathewson
Bitrig is an openbsd fork. Patch from dhill. Ticket 6982.
2012-10-04Merge remote-tracking branch 'linus/bug6757'Nick Mathewson
2012-10-04Merge remote-tracking branch 'origin/maint-0.2.3'Nick Mathewson
2012-10-03pass the reason from the truncated cell to the controllerRoger Dingledine
(rather than just always declaring that the reason is END_CIRC_REASON_OR_CONN_CLOSED) resolves bug 7039.
2012-10-03Refuse extra create cells with reason "resource limit"Roger Dingledine
In the past we had used reason "internal", which is more vague than it needs to be. Resolves bug 7037.
2012-10-03properly free the return values of rate_limit_log()Roger Dingledine
resolves bug 7022.
2012-10-03Free some more still-in-use memory at exitRoger Dingledine
2012-10-01The --version option should imply --quiet.Nick Mathewson
Patch from 'maker'.
2012-09-25Merge remote-tracking branch 'rransom/warn-about-hses-without-guards'Nick Mathewson
2012-09-22Merge branch 'maint-0.2.3'Roger Dingledine
2012-09-22add faravahar as our ninth v3 dir authRoger Dingledine
2012-09-22fold in changes filesRoger Dingledine
2012-09-21Remove the testing_since* fieldsNick Mathewson
They weren't actually used since 7a35dad00 Bug 5809
2012-09-21add changes file and whitespace fixes for bug 4020Nick Mathewson
2012-09-19Have node_get_pref_orport() return an IPv6 OR port when UseBridges is set.Linus Nordberg
We used to never return an IPv6 address unless ClientUseIPv6 was set. We should allow clients running with bridges use IPv6 OR ports even without setting ClientUseIPv6. Configuring an IPv6 address in a Bridge line should imply that. Fixes th second part of #6757.
2012-09-19Merge branch 'bug6843'Nick Mathewson
2012-09-19Merge remote-tracking branch 'origin/maint-0.2.3'Nick Mathewson
2012-09-19Clarify that hidden services are TCP onlyNick Mathewson
Also remove some trailing whitespace. Patch from maker; fixes bug 6024.
2012-09-18Warn if HSes are configured on a client with UseEntryGuards disabledRobert Ransom
2012-09-18Note a bug number for 6888Nick Mathewson
2012-09-18Disable Guard usage for Tor2webMode.Mike Perry
Tor2webMode is fingerprintable by hidden services through repeated usage of the same three guard nodes for its rend and intro points.
2012-09-18Merge remote-tracking branch 'origin/maint-0.2.3'Nick Mathewson
2012-09-18specify a version for the bug6884 changes fileNick Mathewson
2012-09-18Print the correct address family in log printout.Linus Nordberg
Look at the address family of the preferred OR port rather than the node.ipv6_preferred flag since the logic has changed with new ClientUseIPv6 config option. Fixes ticket 6884.
2012-09-17Bug 6866: Convert pathbias asserts into log messages.Mike Perry
Asserts were hit by Tor2Web mode.
2012-09-17Merge remote-tracking branch 'linus/bug6880'Nick Mathewson
2012-09-17Don't do reachability testing over IPv6 unless AuthDirPublishIPv6 is set.Linus Nordberg
This affects both directory authorities and bridge authoritites.
2012-09-17Merge remote-tracking branch 'public/bug6853'Nick Mathewson
2012-09-17Merge branch 'bug6861_typofix'Nick Mathewson
2012-09-17Avoid sign-extending when computing rend auth type.Nick Mathewson
Right-shifting negative values has implementation-defined behavior. On all the platforms we work on right now, the behavior is to sign-extend the input. That isn't what we wanted in auth_type_val = (descriptor_cookie_tmp[16] >> 4) + 1; Fix for 6861; bugfix on 0.2.1.5-alpha; reported pseudonymously. The broken behavior didn't actually hurt anything, I think, since the only way to get sign-extension to happen would be to have the top bit of descriptor_cookie_tmp[16] set, which would make the value of descriptor_cookie_tmp[16] >> 4 somewhere between 0b11111111 and 0b11111000 (that is, between -1 and -8). So auth_type_val would be between -7 and 0. And the immediate next line does: if (auth_type_val < 1 || auth_type_val > 2) { So the incorrectly computed auth_type_val would be rejected as invalid, just as a correctly computed auth_type_val would be. Still, this stuff shouldn't sit around the codebase.
2012-09-17Parse votes with >31 flags correctlyNick Mathewson
We were doing (1<<p) to generate a flag at position p, but we should have been doing (U64_LITERAL(1)<<p). Fixes bug 6861; bugfix on 0.2.0.3-alpha; reported pseudonymously.
2012-09-17changes file for 6044Nick Mathewson
2012-09-15fold in changes files so farRoger Dingledine
2012-09-14Merge remote-tracking branch 'origin/maint-0.2.3'Nick Mathewson
2012-09-14Use file-size-fixup code on cygwin too.Nick Mathewson
We already had code on windows to fix our file sizes when we're reading a file in text mode and its size doesn't match the size from fstat. But that code was only enabled when _WIN32 was defined, and Cygwin defines __CYGWIN__ instead. Fixes bug 6844; bugfix on 0.1.2.7-alpha.
2012-09-14Fix dependency checking on manpage buildsNick Mathewson
Fixes bug 6843; bugfix on 0.2.4.1-alpha.