Age | Commit message (Collapse) | Author | |
---|---|---|---|
2016-12-01 | Bump to 0.2.8.10 | Nick Mathewson | |
2016-11-07 | Merge branch 'maint-0.2.7' into maint-0.2.8 | Nick Mathewson | |
2016-11-07 | Merge branch 'maint-0.2.6' into maint-0.2.7 | Nick Mathewson | |
2016-11-07 | Merge branch 'maint-0.2.5' into maint-0.2.6 | Nick Mathewson | |
2016-11-07 | Merge branch 'maint-0.2.4' into maint-0.2.5 | Nick Mathewson | |
2016-11-07 | Update geoip and geoip6 to the November 3 2016 database. | Karsten Loesing | |
2016-11-03 | Merge branch 'bug20551_028' into maint-0.2.8 | Nick Mathewson | |
2016-11-03 | Merge remote-tracking branch 'arma/bug19969_028_squashed' into maint-0.2.8 | 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 | 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-01 | Always call connection_ap_attach_pending() once a second. | Nick Mathewson | |
Fixes bug 19969; bugfix on b1d56fc58. We can fix this some more in later Tors, but for now, this is probably the simplest fix possible. This is a belt-and-suspenders fix, where the earlier fix ("Ask event_base_loop to finish when we add a pending stream") aims to respond to new streams as soon as they arrive, and this one aims to make sure that we definitely respond to all of the streams. | |||
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 | refactor out the tor_event_base_loopexit() call | Roger Dingledine | |
no actual changes | |||
2016-10-17 | Bump to 0.2.8.9-dev | Nick Mathewson | |
2016-10-17 | bump to 0.2.8.9 | Nick Mathewson | |
2016-10-17 | Merge branch 'buf_sentinel_026_v2' into maint-0.2.8 | Nick Mathewson | |
2016-10-17 | Add a one-word sentinel value of 0x0 at the end of each buf_t chunk | Nick Mathewson | |
This helps protect against bugs where any part of a buf_t's memory is passed to a function that expects a NUL-terminated input. It also closes TROVE-2016-10-001 (aka bug 20384). | |||
2016-10-06 | Merge branch 'maint-0.2.7' into maint-0.2.8 | Nick Mathewson | |
2016-10-06 | Merge branch 'maint-0.2.6' into maint-0.2.7 | Nick Mathewson | |
2016-10-06 | Merge branch 'maint-0.2.5' into maint-0.2.6 | Nick Mathewson | |
2016-10-06 | Merge branch 'maint-0.2.4' into maint-0.2.5 | Nick Mathewson | |
2016-10-05 | Update geoip and geoip6 to the October 6 2016 database. | Karsten Loesing | |
2016-09-23 | Bump to 0.2.8.8-dev. | Nick Mathewson | |
2016-09-23 | Merge remote-tracking branch 'teor/broken-028-fallbacks' into maint-0.2.8 | Nick Mathewson | |
2016-09-22 | Remove another fallback whose operator opted-out | teor | |
2016-09-22 | Update versions to 0.2.8.8 | Nick Mathewson | |
2016-09-22 | Merge branch 'bug20203_027_squashed' into maint-0.2.8 | Nick Mathewson | |
2016-09-22 | When clearing cells from a circuit for OOM reasons, tell cmux we did so. | Nick Mathewson | |
Not telling the cmux would sometimes cause an assertion failure in relay.c when we tried to get an active circuit and found an "active" circuit with no cells. Additionally, replace that assert with a test and a log message. Fix for bug 20203. This is actually probably a bugfix on 0.2.8.1-alpha, specifically my code in 8b4e5b7ee902fb7fa0776 where I made circuit_mark_for_close_() do less in order to simplify our call graph. Thanks to "cypherpunks" for help diagnosing. | |||
2016-09-20 | Merge remote-tracking branch 'public/bug20103_028_v3' into maint-0.2.8 | Nick Mathewson | |
2016-09-21 | fixup! Update hard-coded fallback list based on pre-0.2.9 checks | teor | |
2016-09-20 | Don't look at any routerstatus_t when the networkstatus is inconsistent | Nick Mathewson | |
For a brief moment in networkstatus_set_current_consensus(), the old consensus has been freed, but the node_t objects still have dead pointers to the routerstatus_t objects within it. During that interval, we absolutely must not do anything that would cause Tor to look at those dangling pointers. Unfortunately, calling the (badly labeled!) current_consensus macro or anything else that calls into we_use_microdescriptors_for_circuits(), can make us look at the nodelist. The fix is to make sure we identify the main consensus flavor _outside_ the danger zone, and to make the danger zone much much smaller. Fixes bug 20103. This bug has been implicitly present for AGES; we just got lucky for a very long time. It became a crash bug in 0.2.8.2-alpha when we merged 35bbf2e4a4e8ccb to make find_dl_schedule start looking at the consensus, and 4460feaf2850ef0 which made node_get_all_orports less (accidentally) tolerant of nodes with a valid ri pointer but dangling rs pointer. | |||
2016-09-20 | Update hard-coded fallback list based on pre-0.2.9 checks | teor | |
2016-09-07 | Merge branch 'maint-0.2.7' into maint-0.2.8 | Nick Mathewson | |
2016-09-07 | Merge branch 'maint-0.2.6' into maint-0.2.7 | Nick Mathewson | |
2016-09-07 | Merge branch 'maint-0.2.5' into maint-0.2.6 | Nick Mathewson | |
2016-09-07 | Merge branch 'maint-0.2.4' into maint-0.2.5 | Nick Mathewson | |
2016-09-07 | Update geoip and geoip6 to the September 6 2016 database. | Karsten Loesing | |
2016-08-24 | bump to 0.2.8.7-dev | Nick Mathewson | |
2016-08-24 | Bump to 0.2.8.7 | Nick Mathewson | |
2016-08-24 | Fix path selection on firewalled clients | teor | |
Signed-off-by: teor <teor2345@gmail.com> | |||
2016-08-24 | Merge branch 'maint-0.2.7' into maint-0.2.8 | Nick Mathewson | |
2016-08-24 | Replace Tonga with Bifroest. | Isis Lovecruft | |
* FIXES #19728: https://bugs.torproject.org/19728 * CLOSES #19690: https://bugs.torproject.org/19690 | |||
2016-08-22 | Do not pass NULL to log(%s) in dir_server_new. | Nick Mathewson | |
This bug had existed since 0.2.4.7-alpha, but now that we have FallbackDirs by default, it actually matters. Fixes bug 19947; bugfix on 0.2.4.7-alpha or maybe 0.2.8.1-alpha. Rubiate wrote the patch; teor wrote the changes file. | |||
2016-08-19 | Merge branch 'bug19903_028_v2' into maint-0.2.8 | Nick Mathewson | |
2016-08-19 | Avoid confusing GCC 4.2.1 by saying "int foo()... inline int foo() {...}" | Nick Mathewson | |
Fixes bug 19903; bugfix on 0.2.8.1-alpha. | |||
2016-08-12 | Merge branch 'maint-0.2.7' into maint-0.2.8 | Nick Mathewson | |
2016-08-12 | Merge branch 'maint-0.2.6' into maint-0.2.7 | Nick Mathewson | |
2016-08-12 | Merge branch 'maint-0.2.5' into maint-0.2.6 | Nick Mathewson | |
2016-08-12 | Merge branch 'maint-0.2.4' into maint-0.2.5 | Nick Mathewson | |
2016-08-12 | Update geoip and geoip6 to the August 2 2016 database. | Karsten Loesing | |