In torrc, the above two lines are the only non-commented lines, appended to the maintainer's version.
In torrc.d, there are twelve files containing one or more commented or empty lines, and only one non-commented HidServAuth statement each, all in the format :
I think it might be useful to have both torrc and the actual files within /etc/tor/torrc.d/ with any sensitive information replaced by 'x'. I am thinking this could be a parsing bug and things like whitespace and new line differences and empty files vs files with only comments/whitespace could matter here.
I chased the culprit and it is... wip ! :) As I wrote, it has only comments and empty lines.
Now to break the config/option parser, I just need any file in torrc.d, with a single # char in it and still, order ClientOnionAuthDir after %include in torrc, as reported.
An empty file or line, seems not enough to break the option parser : it has to contain at least one, or more comment(s), but only comments and ( optional ) empty lines, so I suspect, the file as a whole end up « nullified ». Inserting any valid option in that file, does fix the issue.
The cause of this problem is a bug in the processing of included folders containing files with only comments or whitespace. I was able to reproduce this problem with the following configuration:
torrc:
%include /etc/tor/torrc.d/Log notice stderr # can be any valid option
/etc/tor/torrc.d/01_invalid:
InvalidOption
/etc/tor/torrc.d/02_comment:
# comment
Running tor --verify-config -f torrc will incorrectly identify this as a valid configuration despite the invalid option on /etc/tor/torrc.d/01_invalid.
The bug is that any files on a %included folder where the last file contains only comments or whitespace are being ignored. Also the bug is only triggered if there is a valid option after the %include.
The cause of this bug is that, when creating the list of configurations options from the included files, a pointer to the last element of the list is incorrectly set to NULL when processing a file with only comments or whitespace. This can cause the options list to be built incorrectly, causing this behaviour.
I've commented on your pull request: your test uses an empty (0 byte) file but the issue is only reproduced with a non-empty file containing no options.