We should add the reject : to a copy of the list after it has been parsed in parse_reachable_addresses() using append_exit_policy_string(), rather than adding it to the option itself in options_validate().
We might also want to call exit_policy_remove_redundancies() on the parsed policy, so that long policies with redundancies are handled more efficiently. This is only likely to ever matter on busy hidden services.
To upload designs, you'll need to enable LFS and have an admin enable hashed storage. More information
Child items ...
Show closed items
Linked items 0
Link issues together to show that they're related.
Learn more.
This change does not appear to append the reject line if the user uses ReachableORAddresses?
It looks like the code in parse_reachable_addresses() has the property that ReachableAddresses can set either/both OR and DIR addresses if those options are not set, but if they are set, they take precidence over ReachableAddresses. I'm guessing we want this append logic to follow the same behavior?
Also maybe this means it should be part of parse_reachable_addresses() and not policies_parse_from_options() for that reason?
Technically, you should not be appending the reject to the or and dir policy if the user only set one of those options and not the other.
However, I think this is OK because it is simple and extra rejects at the end can't hurt in this case (unlike the situation we had before, where they were piling up in the actual config vars). Better simple than we miss an edge case, I think.
I'd like a test to make sure that the line gets added at the appropriate time.
Also somebody should test manually to make sure that the "reject" really happens -- that is, if you list a bunch of 'accept' reachable addresses, then other addresses should not be accepted.