Nick Mathewson
c274f825da
Merge remote-tracking branch 'asn/bug17688'
2016-06-11 10:07:15 -04:00
Andrea Shepard
9eeaeddbb1
Reduce make check-spaces noise
2016-06-09 11:50:25 +00:00
Nick Mathewson
f016213f7f
Unit tests for our zlib code to test and reject compression bombs.
2016-06-08 18:08:30 -04:00
Nick Mathewson
429d15c529
Mark the unreachable lines in compat_{,p}threads and workqueue
...
These are all related to failures from functions that either can't
fail as we call them, or where we cannot provoke failure.
2016-06-08 17:30:22 -04:00
Nick Mathewson
3cc374456b
Add several test scripts wrapping test_workqueue
...
This is a fairly easy way for us to get our test coverage up on
compat_threads.c and workqueue.c -- I already implemented these
tests, so we might as well enable them.
2016-06-08 17:29:06 -04:00
George Kadianakis
36dd9538d9
Don't rely on consensus parameter to use a single guard.
2016-06-07 17:22:47 +03:00
Nick Mathewson
1e330e1947
Repair test_crypto_openssl_version with LibreSSL
2016-06-06 10:45:23 -04:00
Nick Mathewson
c19a3d1bf8
Merge branch 'maint-0.2.8'
2016-06-06 10:18:07 -04:00
Nick Mathewson
83513a93a1
Check tor_sscanf return value in test_crypto.c
...
Coverity noticed that we check tor_sscanf's return value everywhere
else.
2016-06-06 10:01:50 -04:00
Nick Mathewson
6eeedc02d8
Use directory_must_use_begindir to predict we'll surely use begindir
...
Previously, we used !directory_fetches_from_authorities() to predict
that we would tunnel connections. But the rules have changed
somewhat over the course of 0.2.8
2016-06-02 10:40:39 -04:00
Nick Mathewson
ed0ecd9f13
Use tor_sscanf, not sscanf, in test_crypto.c
...
Fixes the 0.2.9 instance of bug #19213 , which prevented mingw64 from
working. This case wasn't in any released Tor.
2016-06-02 10:16:15 -04:00
Nick Mathewson
b458a81cc5
Merge branch 'maint-0.2.8'
2016-06-02 10:13:35 -04:00
Nick Mathewson
a32ca313c4
Merge branch 'maint-0.2.7' into maint-0.2.8
2016-06-02 10:12:56 -04:00
Nick Mathewson
5854b19816
Use tor_sscanf, not sscanf, in test_util.c.
...
Fixes the 0.2.7 case of bug #19213 , which prevented mingw64 from
working.
2016-06-02 10:11:29 -04:00
Nick Mathewson
3cdc8bfa2c
Let's not even talk about those errors, ok?
2016-05-30 17:14:46 -04:00
Nick Mathewson
97f2c1c58e
Wait, we had sprintf() in our unit tests?? FOR SHAME!
2016-05-30 16:50:57 -04:00
Nick Mathewson
4f1a04ff9c
Replace nearly all XXX0vv comments with smarter ones
...
So, back long ago, XXX012 meant, "before Tor 0.1.2 is released, we
had better revisit this comment and fix it!"
But we have a huge pile of such comments accumulated for a large
number of released versions! Not cool.
So, here's what I tried to do:
* 0.2.9 and 0.2.8 are retained, since those are not yet released.
* XXX+ or XXX++ or XXX++++ or whatever means, "This one looks
quite important!"
* The others, after one-by-one examination, are downgraded to
plain old XXX. Which doesn't mean they aren't a problem -- just
that they cannot possibly be a release-blocking problem.
2016-05-30 16:18:16 -04:00
Nick Mathewson
ce31db4326
We no longer generate v0 directories. Remove the code to do so
2016-05-30 16:05:37 -04:00
Nick Mathewson
57bf8bb263
remove now-irrelevant XXX020 comments in configure.ac
...
They apply to ancient GCC versions and to an unknown set of
configuration options. Notabug.
2016-05-30 15:31:19 -04:00
Nick Mathewson
bdc59e33c1
Fix a warning on unnamed nodes in node_get_by_nickname().
...
There was a > that should have been an ==, and a missing !. These
together prevented us from issuing a warning in the case that a
nickname matched an Unnamed node only.
Fixes bug 19203; bugfix on 0.2.3.1-alpha.
2016-05-30 12:03:03 -04:00
Nick Mathewson
55b5e0076f
Add another 22 or so GCC warnings. None currently triggers for me.
2016-05-28 17:09:31 -04:00
Nick Mathewson
87593702eb
roger says this url is better
2016-05-27 15:11:11 -04:00
Nick Mathewson
1e5ad15688
Merge remote-tracking branch 'arma/task19035-fixedup'
2016-05-27 13:22:16 -04:00
Nick Mathewson
617b920551
Merge remote-tracking branch 'public/hardening_flags_must_link'
2016-05-27 12:52:39 -04:00
Roger Dingledine
3b83da1069
remove a now-unused section of or.h
2016-05-27 12:32:41 -04:00
Roger Dingledine
1ce1214d68
get rid of one more piece of --enable-instrument-downloads
2016-05-27 12:32:02 -04:00
cypherpunks
c404905822
Fix indentation and quotation of the headers
2016-05-27 11:56:34 -04:00
cypherpunks
ab8f1a9e9b
Do not warn on missing headers
2016-05-27 11:56:30 -04:00
Nick Mathewson
ae4889ac1a
remove sentence about tor-ops from manpage: #19185
2016-05-27 11:31:34 -04:00
Nick Mathewson
ce1dbbc4fd
Enable the -Waggregate-return warning
...
Suppress it in the one spot in the code where we actually do want to
allow an aggregate return in order to call the mallinfo() API.
2016-05-27 11:26:14 -04:00
Nick Mathewson
0df2c5677a
Use ENABLE_GCC_WARNING and DISABLE_GCC_WARNING in tortls.c
...
Previously we'd done this ad hoc.
2016-05-27 11:25:42 -04:00
Nick Mathewson
0279e48473
Add support for temporarily suppressing a warning
...
There are a few places where we want to disable a warning: for
example, when it's impossible to call a legacy API without
triggering it, or when it's impossible to include an external header
without triggering it.
This pile of macros uses GCC's c99 _Pragma support, plus the usual
macro trickery, to enable and disable warnings.
2016-05-27 11:23:52 -04:00
Roger Dingledine
500c4bf807
remove an unneeded layer of indentation
...
no actual behavior changes
2016-05-27 11:15:21 -04:00
Roger Dingledine
11d52a449c
Disable GET /tor/bytes.txt and GETINFO dir-usage
...
Remove support for "GET /tor/bytes.txt" DirPort request, and
"GETINFO dir-usage" controller request, which were only available
via a compile-time option in Tor anyway.
Feature was added in 0.2.2.1-alpha. Resolves ticket 19035.
2016-05-27 11:15:21 -04:00
Nick Mathewson
a0dd836098
Merge remote-tracking branch 'public/ticket19044'
2016-05-27 10:39:34 -04:00
Nick Mathewson
437cbb17c2
Merge remote-tracking branch 'asn/feature19036'
2016-05-27 10:37:11 -04:00
Nick Mathewson
476714e1a4
Merge remote-tracking branch 'arma/bug18840'
2016-05-27 10:35:55 -04:00
Nick Mathewson
3934e78bb9
Make format_changelog.py add links to bugs
2016-05-27 09:26:49 -04:00
Nick Mathewson
a93b6bbf17
Merge branch 'maint-0.2.8'
...
(This is an "ours" merge to avoid taking the version bump)
2016-05-26 21:09:22 -04:00
Nick Mathewson
f25806409d
Bump to 0.2.8.3-alpha-dev
2016-05-26 21:09:01 -04:00
Nick Mathewson
02383ea7ea
Forward-port the 0.2.8.3-alpha changelog
2016-05-26 21:06:42 -04:00
Nick Mathewson
a38dfc7f29
Merge branch 'maint-0.2.8'
...
(Ours merge, to avoid taking version bump)
2016-05-26 12:30:03 -04:00
Nick Mathewson
0a74346fe4
Bump to 0.2.8.3-alpha
2016-05-26 12:29:45 -04:00
Nick Mathewson
8c1c71aa2c
Merge branch 'maint-0.2.8'
2016-05-26 12:12:54 -04:00
Nick Mathewson
a873ba8edd
Fix two long lines
2016-05-26 12:11:57 -04:00
George Kadianakis
d875101e03
Functionify code that writes votes to disk.
2016-05-26 15:35:13 +03:00
Nick Mathewson
b7fac185a6
Merge branch 'maint-0.2.8'
2016-05-25 16:59:46 -04:00
Nick Mathewson
36b2b48308
Merge branch 'bug18668_028' into maint-0.2.8
2016-05-25 16:58:43 -04:00
Nick Mathewson
28cbcd033c
Merge branch 'maint-0.2.8'
2016-05-25 16:40:51 -04:00
Nick Mathewson
f2d614c3d9
Merge branch 'bug19175_028_v2' into maint-0.2.8
2016-05-25 16:12:01 -04:00