summaryrefslogtreecommitdiff
path: root/ChangeLog
AgeCommit message (Collapse)Author
2008-08-22 r17853@tombo: nickm | 2008-08-22 12:55:00 -0400Nick Mathewson
Oops. We had been telling people to use --with-ssl-dir, which had not worked since 0.2.0.1-alpha: --with-openssl-dir was the one that worked. Make them both work, document --with-openssl-dir, and mark --with-ssl-dir as obsolete. Found by "Dave". svn:r16625
2008-08-22 r17846@tombo: nickm | 2008-08-22 11:54:00 -0400Nick Mathewson
Make dns resolver code more robust: handle nameservers with IPv6 addresses, make sure names in replies match requested names, make sure origin address of reply matches the address we asked. svn:r16621
2008-08-20Relays now reject risky extend cells: if the extend cell includesRoger Dingledine
a digest of all zeroes, or asks to extend back to the relay that sent the extend cell, tear down the circuit. Ideas suggested by rovv. svn:r16605
2008-08-15Switch global_identifier on connections to a 64-bit field and move it to ↵Nick Mathewson
connection_t. When procession onionskins, look up the connection by this field rather than by addr:port. This will keep us from dropping onionskins. How many dropped circuits are dropped because of this bug? svn:r16558
2008-08-09Rate-limit "too-many-sockets" messages; they can get needlessly verbose.Nick Mathewson
svn:r16480
2008-08-08The first of Karsten's proposal 121 patches: configure and maintain client ↵Nick Mathewson
authorization data. Tweaked a bit: see comments on or-dev. svn:r16475
2008-08-07 r17680@tombo: nickm | 2008-08-07 16:06:30 -0400Nick Mathewson
Add a missing safe_str for a debug_log_message. Fix the bad part of bug 674. svn:r16462
2008-08-07Oops. On recent linux kernels we were not detecting the ↵Nick Mathewson
linux/netfilter_ipv4.h header properly, since we needed to have in_addr and in6_addr and __u32 defined before trying to include it. Fix that. svn:r16460
2008-08-06 r17664@tombo: nickm | 2008-08-06 12:32:09 -0400Nick Mathewson
Patch from Christopher Davis: open /dev/pf before dropping privileges. Fixes bug 782. Backport candidate. svn:r16450
2008-08-06 r17659@tombo: nickm | 2008-08-06 12:22:11 -0400Nick Mathewson
Fix bug 794: recover 3 bytes wasted per memory chunk. Fix from rovv. svn:r16447
2008-08-05bump to 0.2.1.4-alpha-dev, add a future todo itemRoger Dingledine
svn:r16440
2008-08-05 r17641@31-33-44: nickm | 2008-08-05 16:07:53 -0400Nick Mathewson
Initial conversion of uint32_t addr to tor_addr_t addr in connection_t and related types. Most of the Tor wire formats using these new types are in, but the code to generate and use it is not. This is a big patch. Let me know what it breaks for you. svn:r16435
2008-08-05Take out the TestVia config option, since it was a workaround fortor-0.2.1.4-alphaRoger Dingledine
a bug that was fixed in Tor 0.1.1.21. svn:r16409
2008-08-05get closer to a releaseRoger Dingledine
svn:r16408
2008-08-04minor fixesRoger Dingledine
svn:r16407
2008-08-04In some edge cases it occurs that the router descriptor of a previously ↵Karsten Loesing
picked introduction point becomes obsolete. In that case, don't stick to using that introduction point, but simply give up on it. Reverts some part of r15825. svn:r16404
2008-08-03Add changelog entries for r16372 and r16375.Karsten Loesing
svn:r16376
2008-08-03Fix a false assertion when extending a circuit to a relay to which a ↵Karsten Loesing
connection is already established. In that case the circuit should not need to memorize extend info for that relay. circuitbuild.c:389 contains a similar assertion. svn:r16375
2008-08-03bump to 0.2.1.3-alphator-0.2.1.3-alphaRoger Dingledine
svn:r16369
2008-07-31When a struct ends with char a[1], the size of all earlier members of the ↵Nick Mathewson
struct is _not_ sizeof(st)-1; compilers add alignment. Problem spotted by rovv. Backport candidate. svn:r16302
2008-07-30 r17436@tombo: nickm | 2008-07-30 09:03:19 -0400Nick Mathewson
Move n_addr, n_port, and n_conn_id_digest fields of circuit_t into a separately allocated extend_info_t. Saves 22 bytes per connected circuit_t on 32-bit platforms, and makes me more comfortable with using tor_addr_t in place of uint32_t n_addr. svn:r16257
2008-07-23 r17323@aud-055: nickm | 2008-07-23 17:58:25 +0200Nick Mathewson
Implement most of proposal 110. svn:r16156
2008-07-23 r17309@aud-055: nickm | 2008-07-23 16:05:43 +0200Nick Mathewson
Patch from Christian Wilms: remove (HiddenService|Rend)(Exclude)?Nodes options. They never worked properly, and nobody seems to be using them. Resolves bug 754. svn:r16144
2008-07-23 r17308@aud-055: nickm | 2008-07-23 15:57:41 +0200Nick Mathewson
In connection_edge_destroy, send a stream status control event when we have an AP connection. Previously, we would send an event when the connection was AP and non-AP at the same time. This didn't work so well. Patch from Anonymous Remailer (Austria). Backport candidate. svn:r16143
2008-07-23 r17302@aud-055: nickm | 2008-07-23 14:55:28 +0200Nick Mathewson
Never allow a circuit to be created with the same circid as a circuit that has been marked for close. May be a fix for bug 779. Needs testing. Backport candidate. svn:r16136
2008-07-18 r17188@tombo: nickm | 2008-07-18 14:35:18 -0400Nick Mathewson
Add new ExcludeExitNodes option. Also add a new routerset type to handle Exclude[Exit]Nodes. It is optimized for O(1) membership tests, so as to make choosing a random router run in O(N_routers) time instead of in O(N_routers*N_Excluded_Routers). svn:r16061
2008-07-16Stop trying to detect versions of Tor on the server-side older than ↵Nick Mathewson
0.1.1.15-rc; they simply do not work any more. Also add comment about how or_is_obsolete is a terrible field name. svn:r15982
2008-07-16integrate the 0.2.0.29-rc items into the release notesRoger Dingledine
svn:r15954
2008-07-11When relays do their initial bandwidth measurement, don't limitRoger Dingledine
to just our our entry guards for the test circuits. Otherwise we tend to have multiple test circuits going through a single entry guard, which makes our bandwidth test less accurate. Fixes part of bug 654; patch contributed by Josh Albrecht. (Actually, modify Josh's patch to avoid doing that when you're a bridge relay, since it would leak more than we want to leak.) svn:r15850
2008-07-10Fix bug 763. When a hidden service is giving up on an introduction point ↵Karsten Loesing
candidate that was not included in the last published rendezvous descriptor, don't reschedule publication of the next descriptor. svn:r15825
2008-07-10 r16882@tombo: nickm | 2008-07-10 14:31:25 -0400Nick Mathewson
Fix for session-related bug found by Geoff Goodell. backport candidate, once tested. svn:r15821
2008-07-09Stop using __attribute__((nonnull)): It gets us occcasional warnings when we ↵Nick Mathewson
do something so foolish it can be detected without dataflow analysis, but it also eliminates some of our error checking code. Suggested by Peter Gutmann. svn:r15803
2008-07-09fix up a confusion on the release notes (thanks karsten)Roger Dingledine
svn:r15793
2008-07-09remove duplicate changelog entriesRoger Dingledine
svn:r15784
2008-07-09forward-port the 0.2.0.29-rc changelogRoger Dingledine
svn:r15782
2008-07-07Patch from coderman: detect transparent proxy header correctly on some linux ↵Nick Mathewson
versions. svn:r15726
2008-07-06fix typos in last patch spotted by sebastian and karstenNick Mathewson
svn:r15700
2008-07-06Apply fix from chrisw: call connection_ap_attach_pending when we get a ↵Nick Mathewson
rendezvous2 or rendezvous_established call. This is a bit brute-foce, but it is better than we had before, and might not even show up on profiles. Backport candidate, once tested. svn:r15699
2008-07-03 r16689@tombo: nickm | 2008-07-03 11:03:14 -0400Nick Mathewson
Fix for bug 742: do not use O_CREAT on 2-option version of open(). Especially do not use it on /dev/null. Fix from Michael Scherer. Bugfix on 0.0.2pre19 (wow). svn:r15626
2008-06-28put in some of the release summariesRoger Dingledine
svn:r15535
2008-06-28 r16587@tombo: nickm | 2008-06-28 00:13:40 -0400Nick Mathewson
fix for bug 704; found by sjmurdoch. Windows and recent openssl both want to define OCSP_RESPONSE; do not let them. svn:r15533
2008-06-24Send a bootstrap problem "warn" event on the first problem if theRoger Dingledine
reason is NO_ROUTE (that is, our network is down). svn:r15443
2008-06-24annotate some changelog entriesRoger Dingledine
svn:r15442
2008-06-22Change the contrib/tor.logrotate script so it makes the newRoger Dingledine
logs as "_tor:_tor" rather than the default, which is generally "root:wheel". Fixes bug 676, reported by Serge Koksharov. Andrew, you should check if this breaks the rpm building (or if it makes it work better) svn:r15404
2008-06-21mark changelog bugfixes with what version they're fromtor-0.2.1.2-alphaRoger Dingledine
svn:r15384
2008-06-20prepare for the 0.2.1.2-alpha release. we will tagRoger Dingledine
sometime today. get your fixes in soon. :) svn:r15371
2008-06-20If we close our OR connection because there's been a circuitRoger Dingledine
pending on it for too long, we were telling our bootstrap status events "REASON=NONE". Now tell them "REASON=TIMEOUT". svn:r15369
2008-06-20If you're using bridges, generate "bootstrap problem" warningsRoger Dingledine
as soon as you run out of working bridges, rather than waiting for ten failures -- which will never happen if you have less than ten bridges. svn:r15368
2008-06-20Big bridge bugfixes. Backport candidates.Roger Dingledine
If you have more than one bridge but don't know their keys, you would only learn a request for the descriptor of the first one on your list. (Tor considered launching requests for the others, but found that it already had a connection on the way for $0000...0000 so it didn't open another.) If you have more than one bridge but don't know their keys, and the connection to one of the bridges failed, you would cancel all pending bridge connections. (After all, they all have the same digest.) svn:r15366
2008-06-18Directory authorities shouldn't complain about bootstrappingRoger Dingledine
problems just because they do a lot of reachability testing and some of the connection attempts fail. svn:r15348