Given the conversation on #tor-dev, here's how I want to proceed:
remove the test case for legacy/trac#20894 (moved) before posting the branch,
(it can be regenerated in a few minutes using the fuzzer instructions, but that's ok),
Here's what I'm thinking of doing, but I could be persuaded either way:
run the fuzzing code on a 24-core machine for a week, to see if we can shake loose any more bugs.
In any case, I want to have posted this code by Wednesday 14 December at the latest.
I think it's been kept secret long enough.
Also see a few extra commits on my fuzz-dir-extras branch.
We might want to keep the test cases separate, as the directory entry point expects HTTP headers.
Let me know when you think the branch is ready for testing, and I will deploy it on a 20 core machine I have access to.
(It would be nice to have a valid HTTP request for each descriptor GET and POST, and then we could strip out the descriptor content for the descriptor entry point. I'm thinking relay, bridge, HSDir, etc. Perhaps adding debug logging then running one of the comprehensive chutney networks would be the way to go here.)
Teor: I'm now up to combined-fuzzing-v3. I've pulled out the corpora, since they were getting unwieldy. I'm wondering if we should just have tiny seed corpora in the tor repo, and larger corpora kept separately.
Makes sense to me: I want to add a full dump of everything seen in a chutney network with all features active, so we should probably create a tor patch, chutney network, and build script for that.
On nickm's combined-fuzzing-v3 branch, I see the following error when running make:
src/or/routerparse.c:3717:9: warning: implicit declaration of function ‘vote_routerstatus_free’ [-Wimplicit-function-declaration] vote_routerstatus_free(rs); ^src/or/routerparse.c:3717:9: warning: nested extern declaration of ‘vote_routerstatus_free’ [-Wnested-externs]
It looks like this is due to vote_routerstatus_free being wrapped by#ifdef NETWORKSTATUS_PRIVATE in routerstatus.h, although I do see more errors when vote_routerstatus_free is defined...
I don't see this error on master (but I did rebase combined-fuzzing-v3 with master).
Hello. I tried to test run the fuzzer but it seems like make fuzz does not exist on purpose but that's what Fuzzing.md is suggesting to use... Shouldn't we also include make fuzz? Otherwise how do we test this feature?
Also are we sure we want an src/or/dirsplit file? Maybe it should be shoved away in docs/.
OK, I followed the guide and now it works fine. I fuzzed with fuzz-http and fuzz-consensus for a little while. I think this feature is ready to merge now.