Age | Commit message (Collapse) | Author | |
---|---|---|---|
2016-11-03 | changes file for 20526 | Nick Mathewson | |
2016-11-03 | changes file for 19563 | Nick Mathewson | |
2016-11-03 | Merge branch 'maint-0.2.9' | Nick Mathewson | |
2016-11-03 | Merge branch 'maint-0.2.8' into maint-0.2.9 | Nick Mathewson | |
2016-11-03 | Merge remote-tracking branch 'arma/bug19969_028_squashed' into maint-0.2.8 | Nick Mathewson | |
2016-11-03 | Merge branch 'maint-0.2.8' into maint-0.2.9 | Nick Mathewson | |
2016-11-03 | Merge branch 'bug20553_028' | Nick Mathewson | |
2016-11-03 | Work around a behavior change in openssl's BUF_MEM code | Nick Mathewson | |
In our code to write public keys to a string, for some unfathomable reason since 253f0f160e1185c, we would allocate a memory BIO, then set the NOCLOSE flag on it, extract its memory buffer, and free it. Then a little while later we'd free the memory buffer with BUF_MEM_free(). As of openssl 1.1 this doesn't work any more, since there is now a BIO_BUF_MEM structure that wraps the BUF_MEM structure. This BIO_BUF_MEM doesn't get freed in our code. So, we had a memory leak! Is this an openssl bug? Maybe. But our code was already pretty silly. Why mess around with the NOCLOSE flag here when we can just keep the BIO object around until we don't need the buffer any more? Fixes bug 20553; bugfix on 0.0.2pre8 | |||
2016-11-03 | Merge branch 'bug20551_028' | Nick Mathewson | |
2016-11-03 | Use explicit casts to avoid warnings when building with openssl 1.1 | Nick Mathewson | |
fixes bug 20551; bugfix on 0.2.1.1-alpha | |||
2016-11-03 | Merge branch 'feature_15055_v2' | Nick Mathewson | |
2016-11-03 | Changes file for 15055 branch. | Nick Mathewson | |
2016-11-03 | Increase TLS RSA link key length to 2048 bits | Nick Mathewson | |
Oddly, nothing broke. Closes ticket 13752. | |||
2016-11-03 | Handle u32 overflow in ed25519 cert expiration time. | Nick Mathewson | |
The impact here isn't too bad. First, the only affected certs that expire after 32-bit signed time overflows in Y2038. Second, it could only make it seem that a non-expired cert is expired: it could never make it seem that an expired cert was still live. Fixes bug 20027; bugfix on 0.2.7.2-alpha. | |||
2016-11-03 | Free rsa_ed_crosscert at exit. | Nick Mathewson | |
Fixes bug 17779; bugfix on 0.2.7.2-alpha. | |||
2016-11-01 | Ask event_base_loop to finish when we add a pending stream | Roger Dingledine | |
Fixes bug 19969; bugfix on b1d56fc58. We can fix this some more in later Tors, but for now, this is probably the right fix for us. | |||
2016-11-01 | Merge branch 'maint-0.2.9' | Nick Mathewson | |
2016-11-01 | Merge remote-tracking branch 'teor/bug20472-029-v2' into maint-0.2.9 | Nick Mathewson | |
2016-11-01 | Merge remote-tracking branch 'pastly/ticket20486' | Nick Mathewson | |
2016-11-01 | Merge branch 'maint-0.2.9' | Nick Mathewson | |
2016-11-01 | Merge branch 'bug20487_029' into maint-0.2.9 | Nick Mathewson | |
2016-11-01 | Update man page that HS directory does not need to exist | Matt Traudt | |
2016-10-31 | Merge branch 'maint-0.2.9' | Nick Mathewson | |
2016-10-31 | Merge branch 'bug19968_029' into maint-0.2.9 | Nick Mathewson | |
2016-10-31 | Merge branch 'maint-0.2.9' | Nick Mathewson | |
2016-10-31 | Actually free the worker_state_t object when we do an update with it | Nick Mathewson | |
Previously we freed the old "keys" object, but leaked the worker_state_t that we had taken it from. Fixes bug 20401; bugfix on 0.2.6.3-alpha. | |||
2016-10-31 | Add a sentence to the manpage about nonanonymous=>Socksport 0. | Nick Mathewson | |
Closes 20487. | |||
2016-10-31 | Actually clamp the number of detected CPUs to 16. | Nick Mathewson | |
Previously we said we did, but didn't. Fixes #19968; bugfix on 0.2.3.1-alpha. | |||
2016-10-31 | In circuit_pick_extend_handshake, assume all hops support EXTEND2 and ntor | teor | |
This simplifies the function: if we have an ntor key, use ntor/EXTEND2, otherwise, use TAP/EXTEND. Bugfix on commit 10aa913 from 19163 in 0.2.9.3-alpha. | |||
2016-10-27 | Add implementation of smartlist_add_strdup | overcaffeinated | |
Add smartlist_add_strdup(sl, string) - replaces the use of smartlist_add(sl, tor_strdup(string)). Fixes bug 20048. | |||
2016-10-26 | Add historic bwweight tests, comments, line len fixes | Matt Traudt | |
2016-10-26 | Add consensus weight calculation tests | Matt Traudt | |
2016-10-26 | Fix default bw weights with new consensus method | Matt Traudt | |
See #14881 | |||
2016-10-26 | Merge remote-tracking branch 'pastly/ticket20459' | Nick Mathewson | |
2016-10-26 | Merge branch 'maint-0.2.9' | Nick Mathewson | |
2016-10-26 | Avoid tor_fragile_assert() failure with DNSPort on RESOLVED_TYPE_ERROR | Nick Mathewson | |
The tor_fragile_assert() bug has existed here since c8a5e2d588e0d91 in tor-0.2.1.7-alpha forever, but tor_fragile_assert() was mostly a no-op until 0.2.9.1-alpha. Fixes bug 19869. | |||
2016-10-25 | Fix ewma_cmp_cmux never considering policies different | Matt Traudt | |
2016-10-24 | Merge remote-tracking branch 'pastly/ticket20273' | Nick Mathewson | |
2016-10-23 | man: Fix default value of AuthDirGuardBWGuarantee to 2MB | David Goulet | |
Closes #20435 Signed-off-by: David Goulet <dgoulet@torproject.org> | |||
2016-10-19 | changes file for 20389 | Nick Mathewson | |
2016-10-19 | Merge remote-tracking branch 'chelseakomlo/master' | Nick Mathewson | |
2016-10-19 | Merge remote-tracking branch 'andrea/ticket19858_v2' | Nick Mathewson | |
Conflict in entrynodes.c: any_bridge_supports_microdescriptors was removed in master, and modified in 19858_v2 | |||
2016-10-19 | Unify code in channel_write_*cell() | Nick Mathewson | |
Patch from pingl; patch for 13827. | |||
2016-10-19 | Merge remote-tracking branch 'arma/bug6769' | Nick Mathewson | |
2016-10-19 | Refactor purpose_needs_anonymity to use switch statement | Chelsea H. Komlo | |
2016-10-18 | Refactor to use purpose_needs_anonymity and remove is_sensitive_dir_purpose | Chelsea H. Komlo | |
2016-10-18 | changes file for module docs | Nick Mathewson | |
2016-10-17 | Fold 20384 into changelog | Nick Mathewson | |
2016-10-17 | Merge branch 'maint-0.2.8' | Nick Mathewson | |
2016-10-17 | Merge branch 'buf_sentinel_026_v2' into maint-0.2.8 | Nick Mathewson | |