]>
git.ipfire.org Git - thirdparty/tor.git/log
Nick Mathewson [Tue, 3 Jul 2018 16:52:43 +0000 (12:52 -0400)]
Merge remote-tracking branch 'github/ticket26626'
Nick Mathewson [Tue, 3 Jul 2018 15:34:36 +0000 (11:34 -0400)]
Merge branch 'bug26522'
rl1987 [Tue, 3 Jul 2018 10:36:15 +0000 (13:36 +0300)]
Refrain from potentially insecure usage of strncat()
Nick Mathewson [Tue, 3 Jul 2018 15:09:54 +0000 (11:09 -0400)]
Merge remote-tracking branch 'github/shrink_or_h_more'
Nick Mathewson [Tue, 3 Jul 2018 15:00:18 +0000 (11:00 -0400)]
Fix up some windows compilation issues.
These were mostly cases where our previous macros had been casting,
and the values that we were trying to printf were not in fact
uint64_t.
Nick Mathewson [Tue, 3 Jul 2018 14:43:43 +0000 (10:43 -0400)]
Retire U64_TO_DBL and DBL_TO_U64
These were necessary long ago to work around a bug in VC6.
Nick Mathewson [Tue, 3 Jul 2018 14:40:59 +0000 (10:40 -0400)]
Return U64_PRINTF_ARG and U64_FORMAT
The standard is printf("%"PRIu64, x);
Nick Mathewson [Tue, 3 Jul 2018 14:33:50 +0000 (10:33 -0400)]
Replace U64_LITERAL with the standard UINT64_C
Nick Mathewson [Tue, 3 Jul 2018 14:31:19 +0000 (10:31 -0400)]
Retire some unused (or nearly unused) macros.
Nick Mathewson [Tue, 3 Jul 2018 14:28:10 +0000 (10:28 -0400)]
Use the standard SHRT_MAX name.
Nick Mathewson [Tue, 3 Jul 2018 14:26:06 +0000 (10:26 -0400)]
Clean up various things that broke with our stdint.h changes
Casting before printf was necessary; now it's not so smart.
We don't have SIZEOF_UINT8_T any more.
Nick Mathewson [Tue, 3 Jul 2018 14:25:31 +0000 (10:25 -0400)]
Require stdint.h and inttypes.h
We've been silently requiring stdint.h for a while now, and nobody
has complained. Closes ticket 26626.
Nick Mathewson [Tue, 3 Jul 2018 13:53:46 +0000 (09:53 -0400)]
Merge remote-tracking branch 'rl1987/ticket26527'
Nick Mathewson [Tue, 3 Jul 2018 13:48:03 +0000 (09:48 -0400)]
Merge branch 'maint-0.3.4'
Nick Mathewson [Tue, 3 Jul 2018 13:48:03 +0000 (09:48 -0400)]
Merge branch 'maint-0.3.3' into maint-0.3.4
Nick Mathewson [Tue, 3 Jul 2018 13:48:03 +0000 (09:48 -0400)]
Merge branch 'maint-0.3.2' into maint-0.3.3
Nick Mathewson [Tue, 3 Jul 2018 13:48:03 +0000 (09:48 -0400)]
Merge branch 'maint-0.2.9' into maint-0.3.2
Nick Mathewson [Tue, 3 Jul 2018 13:48:00 +0000 (09:48 -0400)]
Merge branch 'bug26535_032' into maint-0.3.2
Nick Mathewson [Tue, 3 Jul 2018 13:47:41 +0000 (09:47 -0400)]
Merge branch 'bug26535_029' into maint-0.2.9
rl1987 [Tue, 3 Jul 2018 09:33:09 +0000 (12:33 +0300)]
Remove ATTR_NONNULL macro
Nick Mathewson [Mon, 2 Jul 2018 18:04:46 +0000 (14:04 -0400)]
hs_ntor_ref.py: pass only strings to subprocess.Popen
Recent Python3 versions seem to require this on Windows.
Fixes bug 26535; bug copied from ntor_ref.py on 0.3.1.1-alpha.
Nick Mathewson [Mon, 2 Jul 2018 18:04:46 +0000 (14:04 -0400)]
ntor_ref.py: pass only strings to subprocess.Popen
Recent Python3 versions seem to require this on Windows.
Fixes bug 26535; bug introduced in
f4be34f70d6f277a0f3f73e , which
was apparently intended itself as a Python3 workaround.
Nick Mathewson [Mon, 2 Jul 2018 17:38:47 +0000 (13:38 -0400)]
Merge branch 'maint-0.3.4'
Nick Mathewson [Mon, 2 Jul 2018 17:38:40 +0000 (13:38 -0400)]
Merge remote-tracking branch 'catalyst-github/bug26449_034' into maint-0.3.4
Nick Mathewson [Mon, 2 Jul 2018 17:22:14 +0000 (13:22 -0400)]
Merge branch 'maint-0.3.4'
Nick Mathewson [Mon, 2 Jul 2018 17:22:07 +0000 (13:22 -0400)]
Merge branch 'mikeperry_bug26214-rebased_squashed' into maint-0.3.4
Nick Mathewson [Mon, 2 Jul 2018 16:22:37 +0000 (12:22 -0400)]
Merge remote-tracking branch 'catalyst-github/moar-libs'
Nick Mathewson [Mon, 2 Jul 2018 16:11:16 +0000 (12:11 -0400)]
Merge branch 'bug26594'
Nick Mathewson [Mon, 2 Jul 2018 15:50:17 +0000 (11:50 -0400)]
Don't redefine str(n)casecmp on windows unless they're missing
When we do redefine them, use inline functions instead of #define.
This fixes a latent code problem in our redefinition of these
functions, which was exposed by our refactoring: Previously, we
would #define strcasecmp after string.h was included, so nothing bad
would happen. But when we refactored, we would sometimes #define it
first, which was a problem on mingw, whose headers contain
(approximately):
inline int strcasecmp (const char *a, const char *b)
{ return _stricmp(a,b); }
Our define turned this into:
inline int _stricmp(const char *a, const char *b)
{ return _stricmp(a,b); }
And GCC would correctly infer that this function would loop forever,
rather than actually comparing anything. This caused bug 26594.
Fixes bug 26594; bug not in any released version of Tor.
Nick Mathewson [Mon, 2 Jul 2018 00:22:55 +0000 (20:22 -0400)]
File-level documentation for some of src/lib.
Nick Mathewson [Sun, 1 Jul 2018 22:14:28 +0000 (18:14 -0400)]
Prune the .may_include files a bit; detect unused lines in them
Nick Mathewson [Sun, 1 Jul 2018 20:02:33 +0000 (16:02 -0400)]
fixup! Extract or_options_t from or.h
Nick Mathewson [Sun, 1 Jul 2018 19:31:18 +0000 (15:31 -0400)]
fixup! Remove system headers from or.h
Nick Mathewson [Sun, 1 Jul 2018 19:02:01 +0000 (15:02 -0400)]
Remove system headers from or.h
Nick Mathewson [Sun, 1 Jul 2018 18:58:29 +0000 (14:58 -0400)]
Extract or_options_t from or.h
I decided to have this file included from config.h, though, since it
is used nearly everywhere.
Nick Mathewson [Sun, 1 Jul 2018 18:51:53 +0000 (14:51 -0400)]
Extract or_state_t to its own header.
Fewer modules needed this than I had expected.
Nick Mathewson [Sun, 1 Jul 2018 18:44:04 +0000 (14:44 -0400)]
Pull a couple more enums from or.h
Nick Mathewson [Sun, 1 Jul 2018 18:34:52 +0000 (14:34 -0400)]
Move ext_or_cmd_t to proto_ext_or
Nick Mathewson [Sun, 1 Jul 2018 18:16:25 +0000 (14:16 -0400)]
Extract more constants from or.h
Nick Mathewson [Sun, 1 Jul 2018 18:00:37 +0000 (14:00 -0400)]
Extract addr_policy_t into a new header.
Nick Mathewson [Sun, 1 Jul 2018 17:43:11 +0000 (13:43 -0400)]
Extract various enums and tiny structs from or.h
These all have a logical header to go in.
Nick Mathewson [Sun, 1 Jul 2018 17:04:21 +0000 (13:04 -0400)]
Minimize headers that include crypto_formats and x25519 stuff
Nick Mathewson [Sun, 1 Jul 2018 16:06:52 +0000 (12:06 -0400)]
Remove other needless includes include from or/*.h
Nick Mathewson [Sun, 1 Jul 2018 15:32:11 +0000 (11:32 -0400)]
Remove needless includes from or.h
or.h should really include only the minimum of stuff from or/*,
common/*, and lib/*.
Nick Mathewson [Sun, 1 Jul 2018 15:25:29 +0000 (11:25 -0400)]
Combine DH_BYTES and DH_KEY_LEN; put them in a lib/defs header.
Nick Mathewson [Sun, 1 Jul 2018 14:22:21 +0000 (10:22 -0400)]
Merge branch 'maint-0.3.3' into maint-0.3.4
Nick Mathewson [Sun, 1 Jul 2018 14:22:21 +0000 (10:22 -0400)]
Merge branch 'maint-0.3.4'
Nick Mathewson [Sun, 1 Jul 2018 14:22:18 +0000 (10:22 -0400)]
Merge remote-tracking branch 'dgoulet/bug26523_033_01' into maint-0.3.3
Nick Mathewson [Sun, 1 Jul 2018 14:18:48 +0000 (10:18 -0400)]
Update the coverage script to look at new file locations
Nick Mathewson [Sun, 1 Jul 2018 14:08:54 +0000 (10:08 -0400)]
Add make targets to show static libraries.
These might make it easier for people to link our stuff, and keep
their scripts more robust.
Nick Mathewson [Sun, 1 Jul 2018 13:37:28 +0000 (09:37 -0400)]
Tabify all of the .am files.
Nick Mathewson [Sat, 30 Jun 2018 13:15:39 +0000 (09:15 -0400)]
Merge branch 'maint-0.3.4'
Nick Mathewson [Sat, 30 Jun 2018 13:15:34 +0000 (09:15 -0400)]
Merge remote-tracking branch 'catalyst-github/bug25895_034-squashed' into maint-0.3.4
Nick Mathewson [Sat, 30 Jun 2018 03:12:03 +0000 (23:12 -0400)]
Merge branch 'maint-0.3.1' into maint-0.3.2
Nick Mathewson [Sat, 30 Jun 2018 03:12:03 +0000 (23:12 -0400)]
Merge branch 'maint-0.3.2' into maint-0.3.3
Nick Mathewson [Sat, 30 Jun 2018 03:12:03 +0000 (23:12 -0400)]
Merge branch 'maint-0.3.4'
Nick Mathewson [Sat, 30 Jun 2018 03:12:03 +0000 (23:12 -0400)]
Merge branch 'maint-0.3.3' into maint-0.3.4
Nick Mathewson [Sat, 30 Jun 2018 03:11:47 +0000 (23:11 -0400)]
Merge branch 'maint-0.2.9' into maint-0.3.1
Nick Mathewson [Mon, 18 Jun 2018 20:10:47 +0000 (16:10 -0400)]
Finally remove our EOL@EOF check.
This check was added by mistake long ago. It will be nice to see
these EOLs disappear from our code over time.
(backport from master)
Nick Mathewson [Sat, 30 Jun 2018 03:08:45 +0000 (23:08 -0400)]
Restor EOL@EOF in routerlist.c
Nick Mathewson [Fri, 29 Jun 2018 23:17:24 +0000 (19:17 -0400)]
Add another winsock2 include, for timeval in procmon.
Nick Mathewson [Fri, 29 Jun 2018 18:03:13 +0000 (14:03 -0400)]
add an include to fix macos, and probably bsd too
Nick Mathewson [Fri, 29 Jun 2018 17:49:43 +0000 (13:49 -0400)]
Merge branch 'maint-0.3.1' into maint-0.3.2
Nick Mathewson [Fri, 29 Jun 2018 17:49:43 +0000 (13:49 -0400)]
Merge branch 'maint-0.3.2' into maint-0.3.3
Nick Mathewson [Fri, 29 Jun 2018 17:49:43 +0000 (13:49 -0400)]
Merge branch 'maint-0.2.9' into maint-0.3.1
Nick Mathewson [Fri, 29 Jun 2018 17:49:43 +0000 (13:49 -0400)]
Merge branch 'maint-0.3.3' into maint-0.3.4
Nick Mathewson [Fri, 29 Jun 2018 17:49:43 +0000 (13:49 -0400)]
Merge branch 'maint-0.3.4'
Nick Mathewson [Fri, 29 Jun 2018 17:49:02 +0000 (13:49 -0400)]
Fix a memory error in test_shared_random
Bug not in any released Tor.
Nick Mathewson [Fri, 29 Jun 2018 17:48:36 +0000 (13:48 -0400)]
Fix some memory errors in the recent coverity fixes.
Found by asan on travis :/
Nick Mathewson [Fri, 29 Jun 2018 17:07:13 +0000 (13:07 -0400)]
Merge branch 'maint-0.3.2' into maint-0.3.3
Nick Mathewson [Fri, 29 Jun 2018 17:07:13 +0000 (13:07 -0400)]
Merge branch 'maint-0.3.3' into maint-0.3.4
Nick Mathewson [Fri, 29 Jun 2018 17:07:13 +0000 (13:07 -0400)]
Merge branch 'maint-0.3.4'
Nick Mathewson [Fri, 29 Jun 2018 17:07:07 +0000 (13:07 -0400)]
Merge remote-tracking branch 'ahf-github/maint-0.3.2' into maint-0.3.2
Nick Mathewson [Fri, 29 Jun 2018 17:06:16 +0000 (13:06 -0400)]
Merge branch 'maint-0.3.4'
Nick Mathewson [Fri, 29 Jun 2018 17:06:15 +0000 (13:06 -0400)]
Merge branch 'maint-0.2.9' into maint-0.3.1
Nick Mathewson [Fri, 29 Jun 2018 17:06:15 +0000 (13:06 -0400)]
Merge branch 'maint-0.3.2' into maint-0.3.3
Nick Mathewson [Fri, 29 Jun 2018 17:06:15 +0000 (13:06 -0400)]
Merge branch 'maint-0.3.3' into maint-0.3.4
Nick Mathewson [Fri, 29 Jun 2018 17:06:15 +0000 (13:06 -0400)]
Merge branch 'maint-0.3.1' into maint-0.3.2
Nick Mathewson [Fri, 29 Jun 2018 17:06:11 +0000 (13:06 -0400)]
Merge remote-tracking branch 'ahf-github/maint-0.3.0' into maint-0.3.1
Nick Mathewson [Fri, 29 Jun 2018 17:06:08 +0000 (13:06 -0400)]
Merge remote-tracking branch 'ahf-github/maint-0.3.1' into maint-0.3.1
Nick Mathewson [Fri, 29 Jun 2018 17:04:29 +0000 (13:04 -0400)]
Changes file for 26467
Nick Mathewson [Fri, 29 Jun 2018 17:03:00 +0000 (13:03 -0400)]
Merge branch 'maint-0.3.4'
Nick Mathewson [Fri, 29 Jun 2018 17:02:56 +0000 (13:02 -0400)]
Merge branch 'maint-0.3.3' into maint-0.3.4
Nick Mathewson [Fri, 29 Jun 2018 17:00:56 +0000 (13:00 -0400)]
Merge branch 'maint-0.3.2' into maint-0.3.3
Nick Mathewson [Fri, 29 Jun 2018 17:00:56 +0000 (13:00 -0400)]
Merge branch 'maint-0.3.1' into maint-0.3.2
Nick Mathewson [Fri, 29 Jun 2018 17:00:56 +0000 (13:00 -0400)]
Merge branch 'maint-0.2.9' into maint-0.3.1
Nick Mathewson [Fri, 29 Jun 2018 17:00:52 +0000 (13:00 -0400)]
Merge remote-tracking branch 'ahf-github/maint-0.2.9' into maint-0.2.9
Nick Mathewson [Fri, 29 Jun 2018 16:59:43 +0000 (12:59 -0400)]
Add a missing include to timers, to make windows happier
Nick Mathewson [Fri, 29 Jun 2018 15:42:52 +0000 (11:42 -0400)]
Eliminate compat.h
Nick Mathewson [Fri, 29 Jun 2018 15:42:34 +0000 (11:42 -0400)]
Stop using util.h and compat.h in src/trunnel/
Nick Mathewson [Fri, 29 Jun 2018 15:41:38 +0000 (11:41 -0400)]
Stop using util.h and compat.h in src/tools
Nick Mathewson [Fri, 29 Jun 2018 15:35:49 +0000 (11:35 -0400)]
Remove util.h and compat.h includes from src/common
Nick Mathewson [Fri, 29 Jun 2018 15:15:42 +0000 (11:15 -0400)]
Combine compat.h into util.h
This is now just a collection of frequently-used headers.
Nick Mathewson [Fri, 29 Jun 2018 15:13:15 +0000 (11:13 -0400)]
Remove non-windows system includes from compat.h and util.h
Nick Mathewson [Fri, 29 Jun 2018 15:07:16 +0000 (11:07 -0400)]
Remove windows libraries from util.h and compat.h
Nick Mathewson [Fri, 29 Jun 2018 14:59:23 +0000 (10:59 -0400)]
Extract socks5_status_t
I'm not sure of the best place to put this header long-term, since
both or/*.c and tools/tor-resolve.c use it.
Nick Mathewson [Fri, 29 Jun 2018 14:55:38 +0000 (10:55 -0400)]
Move SIO_IDEAL_SEND_BACKLOG_QUERY into socket.h
Nick Mathewson [Fri, 29 Jun 2018 14:52:08 +0000 (10:52 -0400)]
Remove an errant (and unused) include permission in lib/tls
Nick Mathewson [Fri, 29 Jun 2018 14:51:15 +0000 (10:51 -0400)]
Remove compat.c and util.c
Nick Mathewson [Fri, 29 Jun 2018 14:50:05 +0000 (10:50 -0400)]
Extract getpass to a new lib/term library
(Term is short for terminal)