- Dec 18, 2020
-
-
Alexander Hansen Færøy authored
-
- Dec 17, 2020
-
-
David Goulet authored
-
David Goulet authored
-
George Kadianakis authored
Bug reported and diagnosed in: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=975977 Fixes bug #40210.
-
- Dec 16, 2020
-
-
Alexander Hansen Færøy authored
-
Alexander Hansen Færøy authored
-
Alexander Hansen Færøy authored
-
When making sure we have a Bridge line with a ClientTransportPlugin, we now check in the managed proxy list and so we can catch any missing ClientTransportPlugin for a Bridge line. Fixes #40106 Signed-off-by:
David Goulet <dgoulet@torproject.org>
-
Alexander Hansen Færøy authored
-
Alexander Hansen Færøy authored
-
Alexander Hansen Færøy authored
-
Alexander Hansen Færøy authored
-
David Goulet authored
Generates the compile_commands.json file using the "bear" application so the ccls server can be more efficient with our code base. Closes #40227 Signed-off-by:
David Goulet <dgoulet@torproject.org>
-
- Dec 15, 2020
-
-
David Goulet authored
-
David Goulet authored
-
George Kadianakis authored
-
George Kadianakis authored
-
George Kadianakis authored
-
- Dec 14, 2020
-
-
Nick Mathewson authored
Previously, our code would send back an error if the socks5 request parser said anything but DONE. But there are other non-error cases, like TRUNCATED: we shouldn't send back errors for them. This patch lowers the responsibility for setting the error message into the parsing code, since the actual type of the error message will depend on what problem was encountered. Fixes bug 40190; bugfix on 0.3.5.1-alpha.
-
- Dec 11, 2020
-
-
David Goulet authored
From c618c4f2, we changed the static libevent.a path to be able to use the git repository or tarball directly but that broke the "make install" setup that Tor Browser is using with Android. In other words, the git repository and tarball put the "libevent.a" in ".libs/" where "make install" puts it in "lib/". Using the --with-libevent-dir=..., which is mandatory for static libevent, autoconf will take the path and use it for the includes (-I) and library (-L) for which if it finds a "include/" and a "lib/" in the root, it will use those. However, with the git repo or tarball, the "lib/" doesn't exists thus autoconf sets the library search path to be at the root and thus fails to find the libevent.a in ".libs/". This is a whole lot more work to make both cases work in our configure.ac thus I'm reverting the change here to the Tor Browser case works again and the work around for others is to either symlink the libevent.a at the root or use a temporary make install directory. One long term fix here would likely be to ask libevent to symblink the .a into the root along the .la files and likely do the same for .so. Or, use the "lib/" structure to contain the .a + .so files. Would be better than doing ninji-tsu in our configure.ac Fixes #40225 Signed-off-by:
David Goulet <dgoulet@torproject.org>
-
George Kadianakis authored
-
- Dec 09, 2020
-
-
Nick Mathewson authored
Document !badexit, and improve the documentation for !invalid. Closes #40188.
-
Nick Mathewson authored
We should be using TOR_STATIC_LDFLAGS, not TOR_STATIC_LDFALGS. Bug not in any released version of Tor.
-
Nick Mathewson authored
-
This patch makes Tor announce the relay specific bridge status page URL when Tor is starting up before bootstrap occours. See: #30477
-
- Dec 08, 2020
-
-
Adds a more user-friendly error message when the configuration is reloaded and a new %include is added that makes its unglobbing access files/folders not allowed by the seccomp sandbox.
-
Nick Mathewson authored
-
David Goulet authored
-
David Goulet authored
Fixes #40205 Signed-off-by:
David Goulet <dgoulet@torproject.org>
-
George Kadianakis authored
-
Nick Mathewson authored
Previously, "--list-fingerprint --quiet" was an error. Now, the handler for optional arguments to "--list-fingerprint" can tell that "--quiet" is a flag, not an argument. This only affects flags that take an _optional_ argument, so you can still put your torrc file in a location starting with "-". Closes #40223.
-
David Goulet authored
-
David Goulet authored
The "-static" compile flag was set globally which means that all autoconf test were attempting to be built statically and lead to failures of detecting OpenSSL libraries and others. This commit adds this flag only to the "tor" binary build. There is also a fix on where to find libevent.a since it is using libtool, it is in .libs/. At this commit, there are still warnings being emitted that informs the user that the built binary must still be linked dynamically with glibc. Fixes #40111 Signed-off-by:
David Goulet <dgoulet@torproject.org>
-
Nick Mathewson authored
-
- Dec 04, 2020
-
-
Neel Chauhan authored
-
- Dec 02, 2020
-
-
Nick Mathewson authored
-
Nick Mathewson authored
This shouldn't be possible, but let's add it for defense-in-depth. Closes #40017.
-
- Nov 28, 2020
-
-
Samanta Navarro authored
The Python code is such a nice addition to the documentation and the C code for better understanding of onion v3 address generation. Straight to the point and easy to understand. Unfortunately it did not work with my distribution's Python version. I have adjusted the code to support Python 3.8 (tested with 3.8.6) and to still be compatible with Python 2.
-
- Nov 25, 2020
-
-
Alexander Hansen Færøy authored
Currently Tor fails with the following error: src/test/test_stats.c: In function ‘test_rephist_v3_onions’: src/test/test_stats.c:527:22: error: overflow in implicit constant conversion [-Werror=overflow] update_approx_time(10101010101); This patch changes the constant passed to update_approx_time() to avoid the overflow in the implicit conversion. See: #40199
-
- Nov 24, 2020
-
-
David Goulet authored
-