- 12 Aug, 2020 4 commits
-
-
Nick Mathewson authored
-
Nick Mathewson authored
-
Nick Mathewson authored
-
George Kadianakis authored
-
- 11 Aug, 2020 5 commits
-
-
Nick Mathewson authored
-
Nick Mathewson authored
-
Nick Mathewson authored
-
Nick Mathewson authored
-
Nick Mathewson authored
-
- 10 Aug, 2020 3 commits
-
-
Nick Mathewson authored
-
Nick Mathewson authored
This is based on @eighthave's templates, and the work we've been doing to present a uniform testing environment.
-
Nick Mathewson authored
Eventually this should be used by every one of our CI scripts.
-
- 06 Aug, 2020 1 commit
-
-
Nick Mathewson authored
-
- 30 Jul, 2020 2 commits
-
-
Nick Mathewson authored
We found this in #40076, after we started using buf_move_all() in more places. Fixes bug #40076; bugfix on 0.3.3.1-alpha. As far as I know, the crash only affects master, but I think this warrants a backport, "just in case".
-
Nick Mathewson authored
The failing case is #if'd out for now, but will be fixed in the next commit. Testing for a fix for #40076.
-
- 28 Jul, 2020 1 commit
-
-
Nick Mathewson authored
Fixes bug 31036; bugfix on 0.2.1.8-alpha when we moved the logging system to use posix fds.
-
- 24 Jul, 2020 1 commit
-
-
David Goulet authored
They are about to be shutdown in September. Signed-off-by:
David Goulet <dgoulet@torproject.org>
-
- 23 Jul, 2020 2 commits
-
-
Nick Mathewson authored
-
David Goulet authored
Closes #40061 Signed-off-by:
David Goulet <dgoulet@torproject.org>
-
- 09 Jul, 2020 3 commits
-
-
Nick Mathewson authored
-
Nick Mathewson authored
-
Nick Mathewson authored
-
- 07 Jul, 2020 2 commits
-
-
Nick Mathewson authored
This warning only affects platforms (like win32) with 32-bit time_t. Fixes bug 40028; bugfix on 0.3.2.8-rc.
-
David Goulet authored
For some reasons, Appveyor started to use the stdio printf format for 64 bit values (PRIu64, ...). Mingw doesn't like that so force it to use the Windows specific macros by setting D__USE_MINGW_ANSI_STDIO=0. Fixes #40026
-
- 06 Jul, 2020 4 commits
-
-
Alexander Færøy authored
This patch changes our bits-to-bytes conversion logic in the NSS implementation of `tor_tls_cert_matches_key()` from using (x >> 3) to ((x + 7) >> 3) since DER bit-strings are allowed to contain a number of bits that is not a multiple of 8. Additionally, we add a comment on why we cannot use the `DER_ConvertBitString()` macro from NSS, as we would potentially apply the bits-to-bytes conversion logic twice, which would lead to an insignificant amount of bytes being compared in `SECITEM_ItemsAreEqual()` and thus turn the logic into being a prefix match instead of a full match. The `DER_ConvertBitString()` macro is defined in NSS as: /* ** Macro to convert der decoded bit string into a decoded octet ** string. All it needs to do is fiddle with the length code. */ #define DER_ConvertBitString(item) \ { \ (item)->len = ((item)->len + 7) >> 3; \ } Thanks to Taylor Yu for spotting this problem. This patch is part of the fix for TROVE-2020-001. See: https://bugs.torproject.org/33119
-
Alexander Færøy authored
We add constness to `peer_info_orig_len` and `cert_info_orig_len` in `tor_tls_cert_matches_key` to ensure that we don't accidentally alter the variables. This patch is part of the fix for TROVE-2020-001. See: https://bugs.torproject.org/33119
-
Alexander Færøy authored
This patch fixes an out-of-bound memory read in `tor_tls_cert_matches_key()` when Tor is compiled to use Mozilla's NSS instead of OpenSSL. The NSS library stores some length fields in bits instead of bytes, but the comparison function found in `SECITEM_ItemsAreEqual()` needs the length to be encoded in bytes. This means that for a 140-byte, DER-encoded, SubjectPublicKeyInfo struct (with a 1024-bit RSA public key in it), we would ask `SECITEM_ItemsAreEqual()` to compare the first 1120 bytes instead of 140 (140bytes * 8bits = 1120bits). This patch fixes the issue by converting from bits to bytes before calling `SECITEM_ItemsAreEqual()` and convert the `len`-fields back to bits before we leave the function. This patch is part of the fix for TROVE-2020-001. See: https://bugs.torproject.org/33119
-
Alexander Færøy authored
This patch lifts the `tor_tls_cert_matches_key()` tests out of the OpenSSL specific TLS test suite and moves it into the generic TLS test suite that is executed for both OpenSSL and NSS. This patch is largely a code movement, but we had to rewrite parts of the test to avoid using OpenSSL specific data-types (such as `X509 *`) and replace it with the generic Tor abstraction type (`tor_x509_cert_impl_t *`). This patch is part of the fix for TROVE-2020-001. See: https://bugs.torproject.org/33119
-
- 30 Jun, 2020 5 commits
-
-
Nick Mathewson authored
This is not actually a bug! It can happen for a bunch of reasons, which all boil down to "trying to add an extrainfo for which we no longer have the corresponding routerinfo". Fixes #16016; bugfix on 0.2.6.3-alpha.
-
Alexander Færøy authored
-
Alexander Færøy authored
-
Alexander Færøy authored
-
Alexander Færøy authored
-
- 29 Jun, 2020 1 commit
-
-
Nick Mathewson authored
-
- 12 Jun, 2020 1 commit
-
-
David Goulet authored
-
- 05 Jun, 2020 1 commit
-
-
Alexander Færøy authored
This patch makes sures that AppVeyor upgrades its Pacman (the package manager) before installing the Tor dependencies. See: https://bugs.torproject.org/34384
-
- 03 Jun, 2020 1 commit
-
-
Nick Mathewson authored
This reverts commit e63bfca5, now that Stem has been upgraded to fix the underlying issue.
-
- 30 May, 2020 1 commit
-
-
Roger Dingledine authored
Resume being willing to use preemptively-built circuits when UseEntryGuards is set to 0. We accidentally disabled this feature with that config setting (in our fix for #24469), leading to slower load times. Fixes bug 34303; bugfix on 0.3.3.2-alpha.
-
- 15 May, 2020 1 commit
-
-
Nick Mathewson authored
Fixes bug 34233. (This has bug has been backported to 0.3.5, but only released in 0.4.3, so it only needs a changes file there.)
-
- 14 May, 2020 1 commit
-
-
Nick Mathewson authored
This is a workaround for https://github.com/torproject/stem/issues/63
-