Age | Commit message (Collapse) | Author | |
---|---|---|---|
2021-01-19 | Merge remote-tracking branch 'tor-gitlab/mr/143' into maint-0.3.5 | Nick Mathewson | |
2021-01-19 | Merge remote-tracking branch 'tor-gitlab/mr/259' into maint-0.3.5 | Nick Mathewson | |
2021-01-13 | gitignore: Add Linux core file patterns | David Goulet | |
Signed-off-by: David Goulet <dgoulet@torproject.org> | |||
2021-01-13 | Better fix for #40241 (--enable-all-bugs-are-fatal and fallthrough) | Nick Mathewson | |
This one should work on GCC _and_ on Clang. The previous version made Clang happier by not having unreachable "fallthrough" statements, but made GCC sad because GCC didn't think that the unconditional failures were really unconditional, and therefore _wanted_ a FALLTHROUGH. This patch adds a FALLTHROUGH_UNLESS_ALL_BUGS_ARE_FATAL macro that seems to please both GCC and Clang in this case: ordinarily it is a FALLTHROUGH, but when ALL_BUGS_ARE_FATAL is defined, it's an abort(). Fixes bug 40241 again. Bugfix on earlier fix for 40241, which was merged into maint-0.3.5 and forward, and released in 0.4.5.3-rc. | |||
2021-01-11 | Merge branch 'ticket40241_035' into maint-0.3.5 | Nick Mathewson | |
2021-01-11 | Fix warnings in current debian-hardened CI. | Nick Mathewson | |
We're getting "fallback annotation annotation in unreachable code" warnings when we build with ALL_BUGS_ARE_FATAL. This patch fixes that. Fixes bug 40241. Bugfix on 0.3.5.4-alpha. | |||
2020-11-16 | Merge remote-tracking branch 'tor-gitlab/mr/195' into maint-0.3.5 | Nick Mathewson | |
2020-11-12 | Bump to 0.3.5.12-dev | Nick Mathewson | |
2020-11-09 | Bump to 0.3.5.12 | Nick Mathewson | |
2020-11-09 | Merge remote-tracking branch 'tor-gitlab/mr/189' into maint-0.3.5 | Nick Mathewson | |
2020-11-05 | Handle a change in the implementation of hashlib in Python 3.9 | Nick Mathewson | |
Previously, hashlib.shake_256 was a class (if present); now it can also be a function. This change invalidated our old compatibility/workaround code, and made one of our tests fail. Fixes bug 40179; bugfix on 0.3.1.6-rc when the workaround code was added. | |||
2020-10-14 | Implement proposal 318: Limit protovers to 0..63 | Nick Mathewson | |
In brief: we go through a lot of gymnastics to handle huge protover numbers, but after years of development we're not even close to 10 for any of our current versions. We also have a convenient workaround available in case we ever run out of protocols: if (for example) we someday need Link=64, we can just add Link2=0 or something. This patch is a minimal patch to change tor's behavior; it doesn't take advantage of the new restrictions. Implements #40133 and proposal 318. | |||
2020-10-07 | Merge remote-tracking branch 'tor-github/pr/1827/head' into maint-0.3.5 | Nick Mathewson | |
2020-10-07 | hs-v2: Add deprecation warning for service | David Goulet | |
If at least one service is configured as a version 2, a log warning is emitted once and only once. Closes #40003 Signed-off-by: David Goulet <dgoulet@torproject.org> | |||
2020-10-07 | Merge remote-tracking branch 'tor-gitlab/mr/77' into maint-0.3.5 | Nick Mathewson | |
2020-10-07 | Merge remote-tracking branch 'tor-gitlab/mr/79' into maint-0.3.5 | Nick Mathewson | |
2020-10-07 | Merge remote-tracking branch 'tor-github/pr/1661/head' into maint-0.3.5 | Nick Mathewson | |
2020-10-07 | Merge remote-tracking branch 'tor-gitlab/mr/43' into maint-0.3.5 | Nick Mathewson | |
2020-10-07 | Merge remote-tracking branch 'tor-gitlab/mr/137' into maint-0.3.5 | Nick Mathewson | |
2020-10-07 | Merge remote-tracking branch 'tor-gitlab/mr/103' into maint-0.3.5 | Nick Mathewson | |
2020-10-07 | Merge branch 'mr_124_squashed' into maint-0.3.5 | Nick Mathewson | |
2020-10-07 | Parallelize src/test/test into chunks. | Nick Mathewson | |
First, we introduce a flag to teach src/test/test to split its work into chunks. Then we replace our invocation of src/test/test in our "make check" target with a set of 8 scripts that invoke the first 8th of the tests, the second 8th, and so on. This change makes our "make -kj4 check" target in our hardened gitlab build more than twice as fast, since src/test/test was taking the longest to finish. Closes 40098. | |||
2020-09-22 | srv: Remove spammy debug log | David Goulet | |
Fixes #40135 Signed-off-by: David Goulet <dgoulet@torproject.org> | |||
2020-09-21 | gitlab-ci: Use test-network-all for debian-integration | Nick Mathewson | |
2020-09-21 | gitlab-ci: add an NSS check. | Nick Mathewson | |
2020-09-21 | gitlab-ci: Add all-bugs-are-fatal on hardened and integration builds. | Nick Mathewson | |
2020-09-21 | gitlab-ci: Add disable-module builds. | Nick Mathewson | |
2020-09-21 | Add a few more options for the CI script. | Nick Mathewson | |
These are: --disable-module-relay --disable-module-dirauth --enable-all-bugs-are-fatal --enable-nss | |||
2020-09-18 | Make debian-trace job conditional on src/lib/trace/trace_sys.c | Nick Mathewson | |
2020-09-18 | .gitlab.yml: missing comments | Nick Mathewson | |
2020-09-18 | Copy tracing things back to maint-0.3.5, for consistency. | Nick Mathewson | |
2020-09-17 | Fix underflow in rend_cache/free_all test. | Nick Mathewson | |
We already fixed these in #40099 and #40125. This patch fixes #40126. Bugfix on 0.2.8.1-alpha. | |||
2020-09-17 | test: Increment rend cache allocation before freeing | David Goulet | |
The rend_cache/entry_free was missing the rend cache allocation increment before freeing the object. Without it, it had an underflow bug: Sep 17 08:40:13.845 [warn] rend_cache_decrement_allocation(): Bug: Underflow in rend_cache_decrement_allocation (on Tor 0.4.5.0-alpha-dev 7eef9ced61e72b1d) Fixes #40125 Signed-off-by: David Goulet <dgoulet@torproject.org> | |||
2020-09-14 | Resolve a compilation warning in test_connection.c | Nick Mathewson | |
Instead of casting an enum to a void and back, use a string -- that's better C anyway. Fixes bug 40113; bugfix on 0.2.9.3-alpha. | |||
2020-09-01 | conn: Remove assert on new listener connection when retrying | David Goulet | |
Opening a new listener connection can fail in many ways like a bind() permission denied on a low port for instance. And thus, we should expect to handle an error when creating a new one instead of assert() on it. To hit the removed assert: ORPort 80 KeepBindCapabilities 0 Start tor. Then edit torrc: ORPort <some-IP>:80 HUP tor and the assert is hit. Fixes #40073 Signed-off-by: David Goulet <dgoulet@torproject.org> | |||
2020-08-13 | Merge remote-tracking branch 'tor-gitlab/mr/125' into maint-0.3.5 | Nick Mathewson | |
2020-08-12 | Improve comments in .gitlab-ci.yml | Nick Mathewson | |
2020-08-12 | CI: Turn on stem with 044 and later. | Nick Mathewson | |
2020-08-12 | Fix allocation counting in clean_v2_descs_as_dir test. | Nick Mathewson | |
Without this fix, running this test on its own would fail. Fixes bug 40099. Bugfix on ade5005853c17b3 in 0.2.8.1-alpha. | |||
2020-08-12 | CI: improve output when skipping doxygen | Nick Mathewson | |
2020-08-12 | Try disabling "make all" when checking docs. | Nick Mathewson | |
2020-08-12 | CI: Try to enable integration tests, hardening, and clang. | Nick Mathewson | |
2020-08-12 | CI: Remove VS2015 AppVeyor build. | George Kadianakis | |
2020-08-11 | CI: label our python versions. | Nick Mathewson | |
2020-08-11 | CI: Only run doxygen on 0.4.3 and later. | Nick Mathewson | |
2020-08-11 | CI: enable documentation testing | Nick Mathewson | |
2020-08-11 | Fix a pair of typos in ci-driver.sh. | Nick Mathewson | |
2020-08-11 | Add a pair of warnings about only editing CI in 035 | Nick Mathewson | |
2020-08-10 | small code tweaks to try to work around debian stable complaints | Nick Mathewson | |
2020-08-10 | Try to set up a minimal gitlab CI script | Nick Mathewson | |
This is based on @eighthave's templates, and the work we've been doing to present a uniform testing environment. |