#6027 (moved) enables clients which cannot talk to IPv4 relays to use fallback directory mirrors with IPv6 addresses and ORPorts. It's going to get merged into 0.2.5.x.
Assuming this code is in tor, how would we ship an up-to-date list of long-term fixed directory mirror IPv6 addresses with bundles? I think I can provide a simple script or set up a service generating this list. But what's the easiest way to include the step "Grab new IPv6 addresses file and put it into all bundles" in the process of making bundles? There's no code written yet, so please say what's most convenient for bundle makers.
To upload designs, you'll need to enable LFS and have an admin enable hashed storage. More information
Child items 0
Show closed items
No child items are currently assigned. Use child items to break down this issue into smaller parts.
Linked items 0
Link issues together to show that they're related.
Learn more.
Karsten, if you make such a list it would be easy for me (and I do mean easy, trivially so) to just add a makefile target to each of the bundles that wgets it and puts it in the right place each time I make a new one.
Karsten, if you make such a list it would be easy for me (and I do mean easy, trivially so) to just add a makefile target to each of the bundles that wgets it and puts it in the right place each time I make a new one.
Sounds great! Thanks!
nickm, how's that file supposed to look like when it's shipped with bundles? Would it simply contain a few dozen FallbackDir lines with ipv6 values?
I think that should work; make sure that they have IPv4 addresses too and that they're really likely to be stable for a long time. Also, test before shipping. :)
Okay. We should avoid writing yet another service for this if we can. I think Onionoo has almost everything we need, and the missing parts are quite easy to implement. What is missing is that Onionoo tracks relay address changes, and we'd also need a small script that converts Onionoo's output into a list of fallback addresses. Here's how this could work:
We add a new field to Onionoo to track address changes:
The spec for that field would be: "last_changed_addresses": UTC timestamp (YYYY-MM-DD hh:mm:ss) when this relay last announced a different IPv4 or IPv6 address where it accepts OR or directory connections. Note that this timestamp is reset when a relay drops out of the consensus for more than 7 days, so that whenever that relay rejoins, it would seem as if it changed its address(es) at that time; this is a known limitation of the current Onionoo design. Required field.
Note that the special case of leaving and rejoining relays is not relevant here, because we'd only look for stable relays that don't leave the network for more than a week.
We'll want to feed Onionoo with consensuses from the past month or so to initialize these field values.
The script that would be run whenever a new 0.2.5.x (or higher) bundle is made would do these steps:
Discard all relays that don't have an IPv6 address in "or_addresses", that don't have a "dir_address" field, that have a "first_seen" or "last_changed_addresses" date younger than 4 weeks (or more/less depending on results), or that have "Authority" in their "flags" field.
Sort the remaining relays by "consensus_weight" in descending order.
Format the top-20 (or more/less depending on results) relays as: FallbackDir "dir_address" orport="or_addresses(ipv4 port)" id="fingerprint" weight="consensus_weight" ipv6="or_addresses(ipv6 address)"
Here's an example relay that might make it into the fallback directories list:
{"nickname":"Kiruna","fingerprint":"980D326017CEF4CBBF4089FBABE767DC83D059AF","or_addresses":["193.11.164.242:9001","[2001:6b0:7:125::242]:9001"],"dir_address":"193.11.164.242:9030","last_seen":"2013-03-13 14:00:00","first_seen":"2013-01-21 15:00:00","running":true,"flags":["Fast","Named","Running","V2Dir","Valid"],"country":"se","latitude":62.0000,"longitude":15.0000,"country_name":"Sweden","as_number":"AS1653","as_name":"SUNET Swedish University Network","consensus_weight":16500,[...]
The fallback directory line for this relay would be:
I can look into making the Onionoo changes, but I'd appreciate if someone else would work on the script. In theory, work on the script can begin now, except for the "last_changed_addresses" check that will have to be added once that field is present. I'll ask around.
I can look into making the Onionoo changes, but I'd appreciate if someone else would work on the script. In theory, work on the script can begin now, except for the "last_changed_addresses" check that will have to be added once that field is present. I'll ask around.
I can look into making the Onionoo changes, but I'd appreciate if someone else would work on the script. In theory, work on the script can begin now, except for the "last_changed_addresses" check that will have to be added once that field is present. I'll ask around.
Check attached script.
Cool! Looks correct. Thanks!
Moving this ticket to the Onionoo component to add the "last_changed_addresses" field.
Trac: Status: needs_review to accepted Owner: erinn to karsten Component: Tor bundles/installation to Onionoo
Using Sathya's script, I created a list of 10 fallback directories which I think can be shipped with 0.2.5.x bundles. Each relay in that list matches the following requirements:
has both an IPv4 and an IPv6 address,
has a non-zero DirPort,
is around for at least 180 days,
has not changed one of its IP addresses or ORPort/DirPort in the past 180 days, and
Erinn, can you integrate this script and instructions into the build process for 0.2.5.x bundles? Of course, as Nick says above, we'll want to test those new bundles before shipping.
Trac: Component: Onionoo to Tor bundles/installation
I can, but we don't currently have any 0.2.5.x bundles. What is the ETA for 0.2.5.x? And just so we're clear, do we only want this in TBB? Or do we want it for all of them? And if I make a test bundle (based on master, presumably), which one would be best for me to make so that you can check it out?
I think we want this in all bundles, not just TBB.
I wonder, would it make things easier if we put this file in src/config/ in the tor repo? I could update this file once per month whenever I update the geoip file and send a joint pull request. That would reduce a couple of potential problems from generating this file for various bundles and platforms. I could clean up the dir_list.2.py script to include it in src/config/, too.
With respect to testing, I guess either an OS X TBB or a Debian package would be easiest for me. Testing should be easy: enable info-level logging, check for warnings (or success messages if there are any) when parsing the fallback dir file, and check if the first directory requests go to fallback directories and not to directory authorities. Well, the IPv4 testing part is easy, the IPv6 part requires doing the same on an IPv6-only client.
Putting it in src/config is probably better because it doesn't rely on various network services or other machines functioning. If once a month is frequent enough to keep fallback descriptors fresh then that sounds like a great solution to me.
Are there any deadlines for this? Let me know how to prioritize the testing package for you. I can get you one by the end of the month, unless it's more urgent in which case I can try to get it for you this week or sooner. I will make an OSX TBB.
Putting it in src/config is probably better because it doesn't rely on various network services or other machines functioning. If once a month is frequent enough to keep fallback descriptors fresh then that sounds like a great solution to me.
nickm, is this a workable solution? If so, I could prepare a branch similar to the geoip update branch once per month for you to merge. I could even do two commits in a single branch if that makes things simpler. Let me know what works best.
Are there any deadlines for this? Let me know how to prioritize the testing package for you. I can get you one by the end of the month, unless it's more urgent in which case I can try to get it for you this week or sooner. I will make an OSX TBB.
No deadlines in the next weeks. Take your time. Thanks!
Putting it in src/config is probably better because it doesn't rely on various network services or other machines functioning. If once a month is frequent enough to keep fallback descriptors fresh then that sounds like a great solution to me.
nickm, is this a workable solution? If so, I could prepare a branch similar to the geoip update branch once per month for you to merge. I could even do two commits in a single branch if that makes things simpler. Let me know what works best.
That ought to work. (If a set of fallback directory sources is not going to be a good choice for several months, it is probably not a good set of fallback directory sources after all.)
Are there any deadlines for this? Let me know how to prioritize the testing package for you. I can get you one by the end of the month, unless it's more urgent in which case I can try to get it for you this week or sooner. I will make an OSX TBB.
No deadlines in the next weeks. Take your time. Thanks!
In fact, let's first test and merge #6027 (moved) before making testing packages. I'll ping you. Thanks.