Age | Commit message (Collapse) | Author | |
---|---|---|---|
2015-09-03 | Use absolute path for datadir in test_keygen.sh | Nick Mathewson | |
2015-09-03 | Make test_keygen.sh dump what the problem is on cmp failure | Nick Mathewson | |
2015-09-03 | Only return 0..255 from main(). | Nick Mathewson | |
I think this may fix some bugs with windows exit codes being screwy. | |||
2015-09-03 | Add a little more output to test_keygen.sh: try to debug windows | Nick Mathewson | |
2015-09-02 | Merge remote-tracking branch 'dgoulet/bug15963_026_01' | Nick Mathewson | |
2015-09-02 | Don't vote HSDir if we aren't voting Fast | David Goulet | |
Fixes #15963 Signed-off-by: David Goulet <dgoulet@ev0ke.net> | |||
2015-09-02 | Fix crashes in tests | Nick Mathewson | |
2015-09-02 | Prohibit the use of one entry node with an HS | David Goulet | |
In a nutshell, since a circuit can not exit at its entry point, it's very easy for an attacker to find the hidden service guard if only one EntryNodes is specified since for that guard, the HS will refuse to build a rendezvous circuit to it. For now, the best solution is to stop tor to allow a single EntryNodes for an hidden service. Fixes #14917 Signed-off-by: David Goulet <dgoulet@ev0ke.net> | |||
2015-09-02 | Let recent relays run with the chutney sandbox. | Nick Mathewson | |
Fixes 16965 | |||
2015-09-02 | Let bridge authorities run under the sandbox | Nick Mathewson | |
(found thanks to teor's chutney haxx) | |||
2015-09-02 | Add test_keygen.sh to dist | Nick Mathewson | |
2015-09-02 | Merge remote-tracking branch 'teor/master' | Nick Mathewson | |
2015-09-02 | Merge remote-tracking branch 'dgoulet/bug15254_027_01' | Nick Mathewson | |
2015-09-02 | correct the doc for find_rp_for_intro. | Nick Mathewson | |
Thanks to Roger for spotting this! | |||
2015-09-02 | Remove remaining references to "nulterminate" in comments | Nick Mathewson | |
Thanks to Roger for spotting this! | |||
2015-09-02 | Include dns_structs.h in tarball | Nick Mathewson | |
2015-09-02 | Enable hidden service statistics by default | David Goulet | |
HiddenServiceStatistics option is now set to "1" by default. Fixes #15254 Signed-off-by: David Goulet <dgoulet@ev0ke.net> | |||
2015-09-01 | Remove the unused "nulterminate" option to buf_pullup() | Nick Mathewson | |
I was going to add a test for this, but I realized that it had no users. So, removed. | |||
2015-09-02 | Test bridges and hidden services in make test-network | teor (Tim Wilson-Brown) | |
Make "bridges+hs" the default test network. This tests almost all tor functionality during make test-network, while allowing tests to succeed on non-IPv6 systems. Requires chutney commit 396da92 in test-network-bridges-hs. Closes tickets 16945 (tor), 16946 (chutney) . Patches by "teor". | |||
2015-09-01 | missing semicolon | Nick Mathewson | |
2015-09-01 | Fix an always-false check with an assertion | Nick Mathewson | |
In validate_recommended_package_line, at this point in the function, n_entries is always >= 1. Coverity doesn't like us checking it for 0. CID 1268063. | |||
2015-09-01 | Fix a false-positive in coverity scan with an assertion | Nick Mathewson | |
CID 1301373 | |||
2015-09-01 | Fix code for checking expired certificates on load | Nick Mathewson | |
Fixes CID 1306915, which noticed that the check was dead. | |||
2015-09-01 | Add a comment about CID 1311630 and why we won't worry about it. | Nick Mathewson | |
2015-09-01 | Simplify API for find_rp_for_intro() | Nick Mathewson | |
The function now unconditionally allocates a new extend_info_t. This should convince coverity that we're not leaking memory. (CID 1311875) | |||
2015-09-01 | Merge remote-tracking branch 'sebastian/channel_free_list' | Nick Mathewson | |
2015-09-01 | properly delete current channel in channel_free_list | Sebastian Hahn | |
channel_unregister() removes channels from the current smartlist while we're in a SMORTLIST_FOREACH loop. This only works by accident. | |||
2015-08-30 | Remove -F from tor-resolve(1) usage message. | rl1987 | |
2015-08-26 | Fix some memory issues in test_dns.c | Nick Mathewson | |
2015-08-26 | Resolve check-spaces in test_dns.c | Nick Mathewson | |
2015-08-26 | fix compilation warnings in test_dns.c | Nick Mathewson | |
2015-08-26 | Merge remote-tracking branch 'rl1987/test_dns_resolve_rebased' | Nick Mathewson | |
2015-08-25 | Make test_checkdir.c dirent include consistent with other files | Nick Mathewson | |
2015-08-25 | Log malformed hostnames in socks5 request respecting SafeLogging | Andreas Stieger | |
2015-08-23 | Unit test dns_resolve(), dns_clip_ttl(), dns_get_expiry_ttl(). | rl1987 | |
2015-08-21 | Is this the syntax that will make freebsd make happy? | Nick Mathewson | |
2015-08-21 | Do not try to chmod test_keygen.sh: It is not generated by configure. | Nick Mathewson | |
2015-08-21 | Merge branch 'workqueue_squashed' | Nick Mathewson | |
2015-08-21 | Fix a bunch of check-spaces complaints | Sebastian Hahn | |
2015-08-21 | Ensure worker threads actually exit when it is time | Sebastian Hahn | |
This includes a small refactoring to use a new enum (workqueue_reply_t) for the return values instead of just ints. | |||
2015-08-20 | Rename EVENT_SIGNAL -> EVENT_GOT_SIGNAL | Nick Mathewson | |
This avoids a conflict with a macro decl from libevent 1.x. Fixes bug 16867; bug not in any released Tor. | |||
2015-08-20 | New testcase exposing bug during threadpool shutdown | Sebastian Hahn | |
We don't want to accept any work after one of our worker functions has returned WQ_RPL_SHUTDOWN. This testcase currently fails, because we do not actually stop any of the worker threads. | |||
2015-08-19 | Merge branch 'ed25519_keygen_squashed' | Nick Mathewson | |
2015-08-19 | More log messages for keygen problems | Nick Mathewson | |
2015-08-19 | Explain better why we are about to load the master key. | Nick Mathewson | |
2015-08-19 | Don' call failure to get keys a bug; it's possible now. | Nick Mathewson | |
2015-08-19 | When we infer the master key from the certificate, save it to disk. | Nick Mathewson | |
2015-08-19 | Document test_keygen.sh a little more | Nick Mathewson | |
2015-08-19 | Add test_keygen tests for all log outputs; improve keygen outputs. | Nick Mathewson | |
2015-08-19 | Suppress fingerprint display in test_keygen.sh | Nick Mathewson | |