Age | Commit message (Collapse) | Author | |
---|---|---|---|
2018-11-15 | Merge branch 'maint-0.3.5' | Nick Mathewson | |
2018-11-15 | Merge branch 'maint-0.3.4' into maint-0.3.5 | Nick Mathewson | |
2018-11-15 | Appveyor: manually add zstd flags to configure | teor | |
The mingw zstd from MSYS2 doesn't come with a pkg-config file. Fixes 28454 on Tor 0.3.4.1-alpha. | |||
2018-11-15 | Appveyor: remove incorrect OpenSSL path | teor | |
Fixes 28399 on 0.3.4.1-alpha. | |||
2018-11-14 | Merge branch 'maint-0.3.5' | Nick Mathewson | |
2018-11-14 | Merge branch 'ticket27750_034_01_squashed' into maint-0.3.5 | Nick Mathewson | |
2018-11-14 | conn: Close the read side of a closing connection when write limit is reached | David Goulet | |
In conn_close_if_marked(), we can decide to keep a connection open that still has data to flush on the wire if it is being rate limited on the write side. However, in this process, we were also looking at the read() side which can still have token in its bucket and thus not stop the reading. This lead to a BUG() introduced in 0.3.4.1-alpha that was expecting the read side to be closed due to the rate limit but which only applies on the write side. This commit removes any bandwidth check on the read side and simply stop the read side on the connection regardless of the bucket state. If we keep the connection open to flush it out before close, we should not read anything. Fixes #27750 Signed-off-by: David Goulet <dgoulet@torproject.org> | |||
2018-11-14 | Merge branch 'maint-0.3.5' | Nick Mathewson | |
2018-11-14 | Merge remote-tracking branch 'teor/bug28441-035' into maint-0.3.5 | Nick Mathewson | |
2018-11-14 | Merge branch 'maint-0.3.3' into maint-0.3.4 | Nick Mathewson | |
2018-11-14 | Merge branch 'maint-0.3.5' | Nick Mathewson | |
2018-11-14 | Merge branch 'maint-0.3.4' into maint-0.3.5 | Nick Mathewson | |
2018-11-14 | Changes file for bug 28419 | Nick Mathewson | |
2018-11-14 | Merge branch 'maint-0.3.5' | Nick Mathewson | |
2018-11-14 | Fix Doxyfile for 0.3.5 source tree moves | Taylor Yu | |
Make Doxygen work again after the 0.3.5 source tree moves. Fixes bug 28435; bugfix on 0.3.5.1-alpha. | |||
2018-11-14 | log: stop talking about the Named flag in log messages | teor | |
Clients have ignored the Named flag since 0.3.2. Fixes bug 28441; bugfix on 0.3.2.1-alpha. | |||
2018-11-13 | Merge branch 'maint-0.3.5' | Nick Mathewson | |
2018-11-13 | Merge branch 'bug28183_029' into maint-0.3.5 | Nick Mathewson | |
2018-11-13 | Merge branch 'maint-0.3.5' | David Goulet | |
2018-11-13 | Merge branch 'tor-github/pr/487' into maint-0.3.5 | David Goulet | |
2018-11-13 | Merge branch 'maint-0.3.3' into maint-0.3.4 | Nick Mathewson | |
2018-11-13 | Merge branch 'maint-0.3.5' | Nick Mathewson | |
2018-11-13 | Merge branch 'maint-0.3.4' into maint-0.3.5 | Nick Mathewson | |
2018-11-13 | Merge branch 'maint-0.2.9' into maint-0.3.3 | Nick Mathewson | |
2018-11-12 | Fix a compiler warning in aes.c. | Nick Mathewson | |
Apparently some freebsd compilers can't tell that 'c' will never be used uninitialized. Fixes bug 28413; bugfix on 0.2.9.3-alpha when we added support for longer AES keys to this function. | |||
2018-11-12 | seccomp2: Add "shutdown" to the list of permitted system calls. | Nick Mathewson | |
We don't use this syscall, but openssl apparently does. (This syscall puts a socket into a half-closed state. Don't worry: It doesn't shut down the system or anything.) Fixes bug 28183; bugfix on 0.2.5.1-alpha where the sandbox was introduced. | |||
2018-11-11 | Merge branch 'maint-0.3.5' | Nick Mathewson | |
2018-11-11 | Merge branch 'maint-0.3.3' into maint-0.3.4 | Nick Mathewson | |
2018-11-11 | Merge branch 'maint-0.3.4' into maint-0.3.5 | Nick Mathewson | |
2018-11-11 | Merge branch 'maint-0.2.9' into maint-0.3.3 | Nick Mathewson | |
2018-11-11 | Update geoip and geoip6 to the November 6 2018 database. | Karsten Loesing | |
2018-11-09 | Merge branch 'subsystems' | Nick Mathewson | |
2018-11-09 | Merge branch 'maint-0.3.5' | Nick Mathewson | |
2018-11-09 | Merge branch 'maint-0.3.3' into maint-0.3.4 | Nick Mathewson | |
2018-11-09 | Merge branch 'maint-0.3.4' into maint-0.3.5 | Nick Mathewson | |
2018-11-09 | Merge branch 'maint-0.2.9' into maint-0.3.3 | Nick Mathewson | |
2018-11-09 | Always declare groups when building with openssl 1.1.1 APIs | Nick Mathewson | |
Failing to do on clients was causing TLS 1.3 negotiation to fail. Fixes bug 28245; bugfix on 0.2.9.15, when we added TLS 1.3 support. | |||
2018-11-07 | Merge remote-tracking branch 'tor-github/pr/271' | Nick Mathewson | |
2018-11-07 | Merge branch 'maint-0.3.5' | Nick Mathewson | |
2018-11-07 | Merge remote-tracking branch 'teor/ticket28318-035' into maint-0.3.5 | Nick Mathewson | |
2018-11-07 | Merge branch 'ticket27225_squashed' | Nick Mathewson | |
2018-11-07 | Memoize summarize_protover_flags() | Nick Mathewson | |
Our tests showed that this function is responsible for a huge number of our malloc/free() calls. It's a prime candidate for being memoized. Closes ticket 27225. | |||
2018-11-06 | At intro points, don't close circuits on NACKs | Neel Chauhan | |
2018-11-06 | Merge remote-tracking branch 'tor-github/pr/466' | Nick Mathewson | |
2018-11-06 | Merge remote-tracking branch 'tor-github/pr/464' | Nick Mathewson | |
2018-11-06 | Merge branch 'maint-0.3.5' | Nick Mathewson | |
2018-11-06 | Merge remote-tracking branch 'tor-github/pr/474' into maint-0.3.5 | Nick Mathewson | |
2018-11-06 | Merge branch 'maint-0.3.5' | Nick Mathewson | |
2018-11-06 | Merge remote-tracking branch 'tor-github/pr/484' into maint-0.3.5 | Nick Mathewson | |
2018-11-06 | Merge branch 'maint-0.3.5' | Nick Mathewson | |