Some consensus headers contain "dir-source *-legacy" lines. Here's an example from 2011-10-29-05-00-00-consensus (attached):
[...]dir-source urras 80550987E1D626E3EBA5E5E75A458DE0626D088C 208.83.223.34 208.83.223.34 443 80contact 4096R/E012B42D Jacob Appelbaum <jacob@appelbaum.net>vote-digest C6E35236E655F00EBE1A750C75E38AFF17B56A62dir-source gabelmoo-legacy 81349FC1F2DBA2C2C11B45CB9706637D480AB913 212.112.245.170 212.112.245.170 80 443dir-source moria1 D586D18309DED4CD6D57C18FDB97EFA96D330566 128.31.0.34 128.31.0.34 9131 9101contact 1024D/28988BF5 arma mit eduvote-digest 3D115F7BA5E0A2C624D32C8C514171C9CE3E790F[...]
Stem complains:
ParsingFailure: Authority entries must have a 'contact' line:dir-source gabelmoo-legacy 81349FC1F2DBA2C2C11B45CB9706637D480AB913 212.112.245.170 212.112.245.170 80 443
See dir-spec.txt Section 3.5 for how to handle these lines correctly.
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.
Thanks Karsten, though I don't quite follow. Section 3.3 says that a contact line will happen once per an authority entry (that's what stem is complaining about here).
The only mention to "-legacy" in the dirspec is section 3.5 as you mentioned, with...
If the consensusmethod is 3 or later, a dir-source line must be included forevery vote with legacy-key entry, using the legacy-key'sfingerprint, the voter's ordinary nickname with the string"-legacy" appended, and all other fields as from the originalvote's dir-source line.
I'm not spotting where it specifies differences in how '-legacy' entries should be parsed.
The difference is that "dir-source *-legacy" lines don't have a subsequent "contact" or "vote-digest" line. That's what Stem complains about, that there's no "contact" line for this authority entry.
Gotcha. What I was trying to ask though is where in the dir-spec it says this (I copied the only part I could find about legacy lines above and by my read it doesn't say anything about the contact/vote-digest entries).
Would you mind copying the part of the spec that says '*-legacy' lines lack a contact and vote-digest entry? What I'm trying to figure out is if we need a spec update. :)
Oh, I see. I agree that dir-spec may need an update. The "dir-source *-legacy" line should be considered a special kind of authority section, because these lines are not part of the non-legacy groups of the respective authorities. And then the "exactly once" parts don't apply anymore. I guess 3.3 needs to be changed for this, whereas 3.5 can (mostly) stay the same. Here's a quick suggestion, feel free to polish.
diff --git a/dir-spec.txt b/dir-spec.txtindex ca5434b..875501e 100644--- a/dir-spec.txt+++ b/dir-spec.txt@@ -1340,28 +1340,34 @@ The authority section of a consensus contains groups the following items, in the order given, with one group for each authority that contributed to- the consensus, with groups sorted by authority identity digest:+ the consensus and for each vote with legacy-key entry, with groups sorted+ by authority identity digest: "dir-source" SP nickname SP identity SP address SP IP SP dirport SP orport NL [Exactly once, at start]- As in the authority section of a vote.+ As in the authority section of a vote, or using the legacy-key's+ fingerprint, the voter's ordinary nickname with the string+ "-legacy" appended, and all other fields as from the original+ vote's dir-source line. "contact" SP string NL- [Exactly once.]+ [At most once.]- As in the authority section of a vote.+ As in the authority section of a vote. Only present if this group+ does not represent a legacy key. "vote-digest" SP digest NL- [Exactly once.]+ [At most once.] A digest of the vote from the authority that contributed to this consensus, as signed (that is, not including the signature).- (Hex, upper-case.)+ (Hex, upper-case.) Only present if this group does not represent+ a legacy key. Each router status entry contains the following items. Router status entries are sorted in ascending order by identity digest.
I wonder if it's better, rather than cluttering the spec with details about the hack we did a few years ago, to just declare some of the fields optional.
Thanks Karsten! If this no longer appears in current consensuses then I agree that we should try to make this more of a side note. Maybe just an extra paragraph for the consensus' authority section?
diff --git a/dir-spec.txt b/dir-spec.txtindex ca5434b..bcb16f0 100644--- a/dir-spec.txt+++ b/dir-spec.txt@@ -1340,7 +1340,12 @@ The authority section of a consensus contains groups the following items, in the order given, with one group for each authority that contributed to- the consensus, with groups sorted by authority identity digest:+ the consensus, with groups sorted by authority identity digest.++ If the nickname attribute on the 'dir-source' line ends with "-legacy" then+ this follows a legacy formatting. Legacy entries differ only in that they+ do not have a 'contact' or 'vote-digest' line. This format stopped appearing+ as of Tor version XXXXXX. "dir-source" SP nickname SP identity SP address SP IP SP dirport SP orport NL
Looks fine, though I'm not sure if we really took out this format in recent Tor versions. It's just that no directory authority uses a legacy key right now. But in theory, once a directory authority starts using a legacy key, this format would be back. AFAIK.
Could you please try running this over some more legacy entries to ensure that there aren't any more hiccups? I assumed that votes still have a mandatory key certificate.
If all is well then we can reassign this to the tor component for the spec addition.
Looks fine, though I'm not sure if we really took out this format in recent Tor versions.
In that case maybe we should?
I don't have the context on where these come from but if they were a hack and no present authorities use them then it seems like we should drop support for them. Then that "This format stopped appearing as of Tor version XXXXXX." can be the present version.
Could you please try running this over some more legacy entries to ensure that there aren't any more hiccups? I assumed that votes still have a mandatory key certificate.
Yes, I'm planning to run this code over all consensuses as part of #7828 (closed). Will let you know there and in this ticket how that worked.
If all is well then we can reassign this to the tor component for the spec addition.
Looks fine, though I'm not sure if we really took out this format in recent Tor versions.
In that case maybe we should?
I don't have the context on where these come from but if they were a hack and no present authorities use them then it seems like we should drop support for them. Then that "This format stopped appearing as of Tor version XXXXXX." can be the present version.
It was a hack because we needed it quickly, but we may need it in the future again. We shouldn't take it out.
Does Tor currently even accept that format? From what I can tell, we have T1N for K_CONTACT and K_VOTE_DIGEST in those formats, meaning that they are mandatory in currently generated directory objects.
Maybe it's time to poke around and see when we stopped accepting them or what.
Does Tor currently even accept that format? From what I can tell, we have T1N for K_CONTACT and K_VOTE_DIGEST in those formats, meaning that they are mandatory in currently generated directory objects.
AFAICS, that's per consensus, not per authority section; and given that an authority with a legacy key must also have a non-legacy key, there's always at least one "contact" line and one "vote-digest" line per consensus.