Age | Commit message (Collapse) | Author | |
---|---|---|---|
2016-12-08 | Rename connection_or_remove_from_identity_map | Nick Mathewson | |
2016-12-08 | Remove orconn_identity_map. | Nick Mathewson | |
It is no longer needed; look up channels by identity instead. | |||
2016-12-08 | Migrate main data loop for set_bad_connections to use channel structures | Nick Mathewson | |
This was the last user of our or_connections-by-ID map. It also had a tendency to be O(N) in cases that only had to be O(1). | |||
2016-12-08 | Add a bunch of work-in-progress comments for 15056 planning | Nick Mathewson | |
2016-12-08 | When attempting to find a channel by ID, consider Ed ID. | Nick Mathewson | |
Right now, there's only a mechanism to look for a channel where the RSA ID matches *and* the ED ID matches. We can add a separate map later if we want. | |||
2016-11-11 | Migrate extend2/create2 cell encoding to Trunnel | Nick Mathewson | |
(Not extended2/created2; that's too simple.) Incidentally, add ed25519 identities to the mix when we have them. | |||
2016-11-10 | Add an ed25519 identity to extend_info | Nick Mathewson | |
2016-11-10 | Accessor functions to get a node's ID keys. | Nick Mathewson | |
2016-11-10 | Merge remote-tracking branch 'dgoulet/bug20567_030_01' | Nick Mathewson | |
2016-11-10 | Merge remote-tracking branch 'public/feature20552' | Nick Mathewson | |
2016-11-10 | Merge remote-tracking branch 'dgoulet/ticket19642_030_01' | Nick Mathewson | |
2016-11-10 | Add "TByte" and "TBytes" units; also add "TBits" to man page | Matt Nordhoff | |
2016-11-10 | Merge branch 'maint-0.2.9' | Nick Mathewson | |
2016-11-09 | Stop logging single onion and Tor2web long-term one-hop circuits | teor | |
Single onion services and Tor2web deliberately create long-term one-hop circuits to their intro and rend points, respectively. These log messages are intended to diagnose issue 8387, which relates to circuits hanging around forever for no reason. Fixes bug 20613; bugfix on 0.2.9.1-alpha. Reported by "pastly". | |||
2016-11-09 | Call get_options() once at the top of circuit_log_ancient_one_hop_circuits() | teor | |
Refactoring, no behaviour change. | |||
2016-11-08 | Merge branch 'maint-0.2.9' | Nick Mathewson | |
2016-11-08 | Merge remote-tracking branch 'public/bug20306_029' into maint-0.2.9 | Nick Mathewson | |
2016-11-08 | hs: Add single-onion-service line to v3 descriptor | David Goulet | |
This field indicates if the service is a Single Onion Service if present in the descriptor. Closes #19642 Signed-off-by: David Goulet <dgoulet@torproject.org> | |||
2016-11-08 | Merge branch 'maint-0.2.9' | Nick Mathewson | |
2016-11-08 | When using exponential backoff in test networks, use a lower exponent | teor | |
Lower exponents mean that delays do not vary as much. This helps test networks bootstrap consistently. Bugfix on 20499. | |||
2016-11-07 | Merge branch 'maint-0.2.9' | Nick Mathewson | |
Conflicts: src/or/rendservice.c | |||
2016-11-07 | Merge remote-tracking branch 'teor/bug20484_029_v2' into maint-0.2.9 | Nick Mathewson | |
2016-11-07 | hs: Document arguments of rend_data_*_create() | David Goulet | |
Fixes #20567 Signed-off-by: David Goulet <dgoulet@torproject.org> | |||
2016-11-07 | Treat bacoff/schedule mismatch as a bug. | Nick Mathewson | |
2016-11-07 | Merge branch 'maint-0.2.9' | Nick Mathewson | |
2016-11-07 | Reduce multiplier to 3, per teor's recommendation on #20534 | Nick Mathewson | |
(Three _is_ a good number for anonymity!) | |||
2016-11-07 | Always increment delays by at least 1. | Nick Mathewson | |
2016-11-07 | Avoid integer overflow in delay calculation. | Nick Mathewson | |
2016-11-07 | Count HTTP 503 as a download failure. | Nick Mathewson | |
Because as Teor puts it: "[Resetting on 503] is exactly what we don't want when relays are busy - imagine clients doing an automatic reset every time they DoS a relay..." Fixes bug 20593. | |||
2016-11-07 | Adjust download schedules per teor's #20534 recommendataions | Nick Mathewson | |
2016-11-07 | Merge branch 'maint-0.2.9' | Nick Mathewson | |
2016-11-07 | Merge branch '20499_part1_029_squashed', remote-tracking branches ↵ | Nick Mathewson | |
'teor/bug20591_029' and 'teor/bug20533_029' into maint-0.2.9 | |||
2016-11-07 | Allow infinitely long delays in exponential-backoff downloads | Nick Mathewson | |
It's only safe to remove the failure limit (per 20536) if we are in fact waiting a bit longer each time we try to download. Fixes bug 20534; bugfix on 0.2.9.1-alpha. | |||
2016-11-08 | When downloading certificates, check for related failures | teor | |
If a consensus expires while we are waiting for certificates to download, stop waiting for certificates. If we stop waiting for certificates less than a minute after we started downloading them, do not consider the certificate download failure a separate failure. Fixes bug 20533; bugfix on commit e0204f21 in 0.2.0.9-alpha. | |||
2016-11-07 | Ensure relays don't make multiple connections during bootstrap | teor | |
Relays do not deliberately launch multiple attempts, so the impact of this bug should be minimal. This fix also defends against bugs like #20499. Bugfix on 0.2.8.1-alpha. | |||
2016-11-06 | Merge branch 'maint-0.2.9' | Nick Mathewson | |
2016-11-06 | Finish a sentence in a comment. Close 20576. | Nick Mathewson | |
2016-11-06 | Workaround for warning in desc_encode_v3(). | Nick Mathewson | |
Fixes bug 20581. | |||
2016-11-06 | Do not apply 'max_failures' to random-exponential schedules. | Nick Mathewson | |
Fixes bug 20536; bugfix on 0.2.9.1-alpha. | |||
2016-11-06 | Change a BUG warning to be a warning, not an info. | Nick Mathewson | |
2016-11-06 | Fix get_delay() code to avoid TIME_MAX overflow, not INT_MAX. | Nick Mathewson | |
Fixes bug 20587; bugfix on 35bbf2e4a4e8ccb in 0.2.8.1-alpha. | |||
2016-11-04 | Fix some 32-bit warnings and clang warnings | Nick Mathewson | |
2016-11-04 | Fix memory leaks in hs_descriptor/decode_descriptor and in encode_enc_key() | Nick Mathewson | |
2016-11-04 | Expose desc_intro_point_free to the tests, and use it. | Nick Mathewson | |
Also fix another couple of leaks. | |||
2016-11-04 | prop224: Fix crosscert memory leaks on error | David Goulet | |
2016-11-04 | Fix a bunch of leaks in hs_cache/upload_and_download_hs_desc | Nick Mathewson | |
2016-11-04 | Fix a use-after-free error. | David Goulet | |
2016-11-04 | Fix make check-spaces | Nick Mathewson | |
2016-11-04 | Check the correct key when checking RSA crosscert in hs_descriptor.c | Nick Mathewson | |
Note that the "signed key" in the signing key certificate is the signing key. The "signing key" in the signing key certificate is the key that signs the certificate -- that is, the blinded key. | |||
2016-11-04 | Fix an assertion failure in hs_cache_free_all(). | Nick Mathewson | |
It's possible for Tor to decide to exit before it's 100% done initializing. So, don't assert that the initialization is done. |