Move a few tickets out of 0.2.8. I would take a good patch for most of these if somebody writes one. (If you do, please make the ticket needs_review and move it back into maint-0.2.8 milestone. :) )
Trac: Milestone: Tor: 0.2.8.x-final to Tor: 0.2.???
When processing the list of MyFamily fingerprints, tor should exclude any digests where router_digest_is_me(digest) is true. It might be a good idea to log a message at LOG_DEBUG when excluding a fingerprint like this.
This issue is a regression:
I can convince a relay running 0.2.8.0-dev to include its own fingerprint in its family line, but I can't convince a relay running 0.2.6.9 to do so.
I would be happy to work on this. After asking around on the tor-dev channel, user "qwerty1" suggested enabling debug logs and performing git-bisect to find why its not working on 0.2.6.9.
I will try to do that in the next couple of days. Any pointers?
I would be happy to work on this. After asking around on the tor-dev channel, user "qwerty1" suggested enabling debug logs and performing git-bisect to find why its not working on 0.2.6.9.
I will try to do that in the next couple of days. Any pointers?
This is a regression: the feature worked in 0.2.6.9, it doesn't work on 0.2.8.0-alpha-dev.
It will help to write a unit test for router_build_fresh_descriptor, and then bisect based on that.
We've checked the code, and:
if (!strcasecmp(name, options->Nickname)) correctly removes the nickname of this relay from MyFamily
} else if (router_digest_is_me(member->identity)) { doesn't remove the fingerprint of this relay from MyFamily (when a relay is launched using chutney, and I looked at its first descriptor)
member = node_get_by_nickname(name, 1); could be failing to find our relay, because it's not in the consensus yet. You could try checking router_digest_is_me(nickname) after if (!strcasecmp(name, options->Nickname)), and skipping the fingerprint as well.
(We can't fix node_get_by_nickname in this case, because we can't return a node_t for ourselves when we're not in the consensus.)
Now that I think about it, relays may have only ever been able to exclude their fingerprint from MyFamily once they had a consensus with their own descriptor in it.
So the first descriptor from a relay would always contain its fingerprint in MyFamily, then subsequent descriptors wouldn't, unless the relay was offline.
If this is the case, then you won't find anything using git bisect. Try modifying router_build_fresh_descriptor like I suggested in the previous comment, and writing a unit test (you might find it easier to write a unit test if you refactor the code that sets the family line into its own helper function), and see if that works.