2007-12-02 15:41:39 +01:00
|
|
|
Filename: 127-dirport-mirrors-downloads.txt
|
2007-12-04 19:34:30 +01:00
|
|
|
Title: Relaying dirport requests to Tor download site / website
|
2007-12-03 12:18:44 +01:00
|
|
|
Version: $Revision$
|
|
|
|
Last-Modified: $Date$
|
2007-12-02 15:41:39 +01:00
|
|
|
Author: Roger Dingledine
|
|
|
|
Created: 2007-12-02
|
|
|
|
Status: Needs-Research
|
|
|
|
|
|
|
|
1. Overview
|
|
|
|
|
|
|
|
Some countries and networks block connections to the Tor website. As
|
|
|
|
time goes by, this will remain a problem and it may even become worse.
|
|
|
|
|
|
|
|
We have a big pile of mirrors (google for "Tor mirrors"), but few of
|
|
|
|
our users think to try a search like that. Also, many of these mirrors
|
|
|
|
might be automatically blocked since their pages contain words that
|
2007-12-04 19:34:30 +01:00
|
|
|
might cause them to get banned. And lastly, we can imagine a future
|
2007-12-02 15:41:39 +01:00
|
|
|
where the blockers are aware of the mirror list too.
|
|
|
|
|
|
|
|
Here we describe a new set of URLs for Tor's DirPort that will relay
|
|
|
|
connections from users to the official Tor download site. Rather than
|
|
|
|
trying to cache a bunch of new Tor packages (which is a hassle in terms
|
|
|
|
of keeping them up to date, and a hassle in terms of drive space used),
|
|
|
|
we instead just proxy the requests directly to Tor's /dist page.
|
|
|
|
|
|
|
|
Specifically, we should support
|
|
|
|
|
|
|
|
GET /tor/dist/$1
|
|
|
|
|
|
|
|
and
|
|
|
|
|
|
|
|
GET /tor/website/$1
|
|
|
|
|
|
|
|
2. Linked connections
|
|
|
|
|
|
|
|
Check out the connection_ap_make_link() function, as called from
|
|
|
|
directory.c. Tor clients use this to create a "fake" socks connection
|
|
|
|
back to themselves, and then they attach a directory request to it,
|
2007-12-04 19:34:30 +01:00
|
|
|
so they can launch directory fetches via Tor. We can piggyback on
|
2007-12-02 15:41:39 +01:00
|
|
|
this feature.
|
|
|
|
|
2007-12-04 19:34:30 +01:00
|
|
|
3. Direct connections, one-hop circuits, or three-hop circuits?
|
2007-12-02 15:41:39 +01:00
|
|
|
|
|
|
|
We could relay the connections directly to the download site -- but
|
|
|
|
this produces recognizable outgoing traffic on the bridge or cache's
|
|
|
|
network, which will probably surprise our nice volunteers. (Is this
|
|
|
|
a good enough reason to discard the direct connection idea?)
|
|
|
|
|
2007-12-04 19:34:30 +01:00
|
|
|
Even if we don't do direct connections, should we do a one-hop
|
|
|
|
begindir-style connection to the mirror site (make a one-hop circuit
|
|
|
|
to it, then send a 'begindir' cell down the circuit), or should we do
|
|
|
|
a normal three-hop anonymized connection?
|
2007-12-02 15:41:39 +01:00
|
|
|
|
2007-12-04 19:34:30 +01:00
|
|
|
If these mirrors are mainly bridges, doing either a direct or a one-hop
|
|
|
|
connection creates another way to enumerate bridges. That would argue
|
|
|
|
for three-hop. On the other hand, downloading a 10+ megabyte installer
|
|
|
|
through a normal Tor circuit can't be fun. But if you're already getting
|
|
|
|
throttled a lot because you're in the "relayed traffic" bucket, you're
|
|
|
|
going to have to accept a slow transfer anyway. So three-hop it is.
|
2007-12-02 15:41:39 +01:00
|
|
|
|
|
|
|
Speaking of which, we would want to label this connection
|
|
|
|
as "relay" traffic for the purposes of rate limiting; see
|
|
|
|
connection_counts_as_relayed_traffic() and or_conn->client_used. This
|
2007-12-04 19:34:30 +01:00
|
|
|
will be a bit tricky though, because these connections will use the
|
|
|
|
bridge's guards.
|
2007-12-02 15:41:39 +01:00
|
|
|
|
|
|
|
4. Scanning resistance
|
|
|
|
|
|
|
|
One other goal we'd like to achieve, or at least not hinder, is making
|
|
|
|
it hard to scan large swaths of the Internet to look for responses
|
|
|
|
that indicate a bridge.
|
|
|
|
|
2007-12-04 19:34:30 +01:00
|
|
|
In general this is a really hard problem, so we shouldn't demand to
|
|
|
|
solve it here. But we can note that some bridges should open their
|
|
|
|
DirPort (and offer this functionality), and others shouldn't. Then
|
|
|
|
some bridges provide a download mirror while others can remain
|
|
|
|
scanning-resistant.
|
2007-12-02 15:41:39 +01:00
|
|
|
|
|
|
|
5. Integrity checking
|
|
|
|
|
|
|
|
If we serve this stuff in plaintext from the bridge, anybody in between
|
|
|
|
the user and the bridge can intercept and modify it. The bridge can too.
|
|
|
|
|
|
|
|
If we do an anonymized three-hop connection, the exit node can also
|
|
|
|
intercept and modify the exe it sends back.
|
|
|
|
|
|
|
|
Are we setting ourselves up for rogue exit relays, or rogue bridges,
|
|
|
|
that trojan our users?
|
|
|
|
|
|
|
|
Answer #1: Users need to do pgp signature checking. Not a very good
|
|
|
|
answer, a) because it's complex, and b) because they don't know the
|
2007-12-04 19:34:30 +01:00
|
|
|
right signing keys in the first place.
|
2007-12-02 15:41:39 +01:00
|
|
|
|
|
|
|
Answer #2: The mirrors could exit from a specific Tor relay, using the
|
|
|
|
'.exit' notation. This would make connections a bit more brittle, but
|
|
|
|
would resolve the rogue exit relay issue. We could even round-robin
|
|
|
|
among several, and the list could be dynamic -- for example, all the
|
|
|
|
relays with an Authority flag that allow exits to the Tor website.
|
|
|
|
|
|
|
|
Answer #3: We could suggest that users only use trusted bridges for
|
|
|
|
fetching a copy of Tor. Hopefully they heard about the bridge from a
|
|
|
|
trusted source rather than from the adversary.
|
|
|
|
|
|
|
|
Answer #4: What if the adversary is trawling for Tor downloads by
|
|
|
|
network signature -- either by looking for known bytes in the binary,
|
|
|
|
or by looking for "GET /tor/dist/"? It would be nice to encrypt the
|
|
|
|
connection from the bridge user to the bridge. And we can! The bridge
|
2007-12-04 19:34:30 +01:00
|
|
|
already supports TLS. Rather than initiating a TLS renegotiation after
|
2007-12-02 15:41:39 +01:00
|
|
|
connecting to the ORPort, the user should actually request a URL. Then
|
|
|
|
the ORPort can either pass the connection off as a linked conn to the
|
|
|
|
dirport, or renegotiate and become a Tor connection, depending on how
|
|
|
|
the client behaves.
|
|
|
|
|
2007-12-04 19:34:30 +01:00
|
|
|
I suggest we go with Answers 2 and 3 for now, and keep 4 in mind for
|
|
|
|
down the road.
|
|
|
|
|
2007-12-04 20:38:42 +01:00
|
|
|
|