[tor-commits] [tor/master] test/circuitbuid: Fix new_route_len_unhandled_exit

2020-04-09 Thread nickm
commit 726107856649719e913f4be2f68ee6bec07c4243 Author: teor Date: Wed Apr 1 22:35:07 2020 +1000 test/circuitbuid: Fix new_route_len_unhandled_exit Make test_new_route_len_unhandled_exit more robust, by always tearing down logs. (Rather than just tearing them down on success.)

[tor-commits] [tor/master] relay: Protocol warn when a client gets an extend

2020-04-09 Thread nickm
commit c9b674d5110278f98c48f7e36653141bd39416dd Author: teor Date: Wed Mar 18 18:07:14 2020 +1000 relay: Protocol warn when a client gets an extend circuit_extend() may be called when a client receives an extend cell, even if the relay module is disabled. Log a

[tor-commits] [tor/master] circuitbuild: Make some functions mockable

2020-04-09 Thread nickm
commit 42fdbbb50bbb9d0f2e15012256a088f3f1c22f8d Author: teor Date: Fri Apr 3 19:01:19 2020 +1000 circuitbuild: Make some functions mockable Part of 33633. --- src/core/or/circuitbuild.c | 8 src/core/or/circuitbuild.h | 12 ++-- 2 files changed, 10

[tor-commits] [tor/master] relay: Split state checks out of circuit_extend()

2020-04-09 Thread nickm
commit 2563d74a5cb321887324c010d6509c3af3f1e238 Author: teor Date: Wed Apr 1 09:20:58 2020 +1000 relay: Split state checks out of circuit_extend() Part of 33633. --- src/feature/relay/circuitbuild_relay.c | 36 +- 1 file changed, 27 insertions(+),

[tor-commits] [tor/master] relay: Check for NULL arguments in circuitbuild

2020-04-09 Thread nickm
commit 4f9f56be473d9bc4d24075a82b981425470ff5b4 Author: teor Date: Wed Apr 1 22:25:10 2020 +1000 relay: Check for NULL arguments in circuitbuild Part of 33633. --- src/feature/relay/circuitbuild_relay.c | 63 ++ 1 file changed, 63 insertions(+)

[tor-commits] [tor/master] relay: End circuitbuild logs with "."

2020-04-09 Thread nickm
commit ec632b01db69dbaac04542837cfe9dd9c9323e6b Author: teor Date: Fri Apr 3 14:31:45 2020 +1000 relay: End circuitbuild logs with "." Consistent logs make testing easier. Part of 33633. --- src/feature/relay/circuitbuild_relay.c | 10 +- 1 file changed, 5

[tor-commits] [tor/master] relay: Move inform_testing_rechability() to relay

2020-04-09 Thread nickm
commit fdba6ff0c0f27b9948101e63efd5acb965a2f6a3 Author: teor Date: Tue Mar 17 16:16:05 2020 +1000 relay: Move inform_testing_rechability() to relay Move inform_testing_rechability() to the relay module, and disable it when the relay module is disabled. Part of 33633.

[tor-commits] [tor/master] test/circuitbuild: Add tests for open_connection_for_extend

2020-04-09 Thread nickm
commit 7bc34133225c38b8ababbf9ff4c220285e65b1ef Author: teor Date: Fri Apr 3 19:02:26 2020 +1000 test/circuitbuild: Add tests for open_connection_for_extend Part of 33633. --- src/test/test_circuitbuild.c | 157 +++ 1 file changed, 157

[tor-commits] [tor/master] relay: Split out relay-only circuit building

2020-04-09 Thread nickm
commit 81687f5bc975842bb4d251881b04e19092ab336e Author: teor Date: Tue Mar 17 17:18:40 2020 +1000 relay: Split out relay-only circuit building Move the relay-only circuit building functions into a new file. Part of 33633. --- src/core/mainloop/cpuworker.c | 2

[tor-commits] [tor/master] nodelist: Make some functions mockable

2020-04-09 Thread nickm
commit f8fef609f6335e53f4a9be58a10330d3ff5e7a3f Author: teor Date: Thu Apr 2 13:38:49 2020 +1000 nodelist: Make some functions mockable Part of 33633. --- src/feature/nodelist/nodelist.c | 10 +- src/feature/nodelist/nodelist.h | 8 +--- 2 files changed, 10

[tor-commits] [tor/master] relay: Re-order selftest header

2020-04-09 Thread nickm
commit 07280c567e4afa9a74f203fbd22cc2cfcc34f875 Author: teor Date: Tue Mar 17 16:10:49 2020 +1000 relay: Re-order selftest header The selftest header declares functions, and stubs for when the relay module is disabled. Put the functions and stubs in the same order.

[tor-commits] [tor/master] relay: Split link specifier checks from circuit_extend()

2020-04-09 Thread nickm
commit 5cb2bbea7d7e6bebe797a9d59cd8b98d41b201ba Author: teor Date: Wed Mar 18 18:44:42 2020 +1000 relay: Split link specifier checks from circuit_extend() Part of 33633. --- src/feature/relay/circuitbuild_relay.c | 136 + 1 file changed, 87

[tor-commits] [tor/master] relay: Refactor some long lines from circuit_extend()

2020-04-09 Thread nickm
commit 2640030b10038ed0e6fc4a4a9628745708be9d83 Author: teor Date: Wed Mar 18 18:48:01 2020 +1000 relay: Refactor some long lines from circuit_extend() Part of 33633. --- src/feature/relay/circuitbuild_relay.c | 9 - 1 file changed, 4 insertions(+), 5 deletions(-) diff

[tor-commits] [tor/master] test/circuitbuild: Refactor test case array

2020-04-09 Thread nickm
commit 3334f63516e8461e287fafa1a80e5ff893c8c70e Author: teor Date: Wed Apr 1 21:14:51 2020 +1000 test/circuitbuild: Refactor test case array Avoid repeating test names. Part of 33633. --- src/test/test_circuitbuild.c | 17 +++-- 1 file changed, 11

[tor-commits] [tor/master] test/circuitbuild: Add tests for circuit_extend()

2020-04-09 Thread nickm
commit 6d75f3244f04735c7670b732a2e38e2b6f0ef307 Author: teor Date: Mon Apr 6 19:20:14 2020 +1000 test/circuitbuild: Add tests for circuit_extend() Part of 33633. --- src/test/test_circuitbuild.c | 314 +++ 1 file changed, 314 insertions(+)

[tor-commits] [tor/master] test/circuitbuild: Tests for adding ed25519 keys

2020-04-09 Thread nickm
commit cbfb8265139aa21cda82ec6a73bf054f1138b0b2 Author: teor Date: Thu Apr 2 13:39:17 2020 +1000 test/circuitbuild: Tests for adding ed25519 keys Add tests for circuit_extend_add_ed25519_helper(). Part of 33633. --- src/test/test_circuitbuild.c | 206

[tor-commits] [tor/master] test/circuitbuild: Make some tests fork

2020-04-09 Thread nickm
commit 327688b968ff93e92d1d949ba623ce116dfb904f Author: teor Date: Fri Apr 3 14:35:46 2020 +1000 test/circuitbuild: Make some tests fork Since we're testing IF_BUG_ONCE(), we need to fork. Part of 33633. --- src/test/test_circuitbuild.c | 4 ++-- 1 file changed, 2

[tor-commits] [translation/support-portal] https://gitweb.torproject.org/translation.git/commit/?h=support-portal

2020-04-09 Thread translation
commit c024030a3fc81cfbdc2c0c3a4e19cc06eba97ffd Author: Translation commit bot Date: Thu Apr 9 15:53:56 2020 + https://gitweb.torproject.org/translation.git/commit/?h=support-portal --- contents+hr.po | 19 +++ 1 file changed, 19 insertions(+) diff --git

[tor-commits] [translation/bridgedb] https://gitweb.torproject.org/translation.git/commit/?h=bridgedb

2020-04-09 Thread translation
commit bd271ad290859af6125af443eaf5b75d421daa58 Author: Translation commit bot Date: Thu Apr 9 15:45:17 2020 + https://gitweb.torproject.org/translation.git/commit/?h=bridgedb --- ar/LC_MESSAGES/bridgedb.po | 7 --- it/LC_MESSAGES/bridgedb.po | 6 +++--- 2 files changed, 7

[tor-commits] [translation/bridgedb_completed] https://gitweb.torproject.org/translation.git/commit/?h=bridgedb_completed

2020-04-09 Thread translation
commit d5ca44ab9e42dc0e01c71fd01570975796699704 Author: Translation commit bot Date: Thu Apr 9 15:45:23 2020 + https://gitweb.torproject.org/translation.git/commit/?h=bridgedb_completed --- it/LC_MESSAGES/bridgedb.po | 157 ++--- 1 file changed,

[tor-commits] [translation/torbutton-torbuttonproperties] https://gitweb.torproject.org/translation.git/commit/?h=torbutton-torbuttonproperties

2020-04-09 Thread translation
commit d5539dd8ec1340a6ef74c4c379dc10c2b4598add Author: Translation commit bot Date: Thu Apr 9 15:21:47 2020 + https://gitweb.torproject.org/translation.git/commit/?h=torbutton-torbuttonproperties --- it/torbutton.properties | 8 1 file changed, 4 insertions(+), 4

[tor-commits] [translation/bridgedb] https://gitweb.torproject.org/translation.git/commit/?h=bridgedb

2020-04-09 Thread translation
commit 1c05840f11793d7af0e51e65a83fe89534053920 Author: Translation commit bot Date: Thu Apr 9 15:15:13 2020 + https://gitweb.torproject.org/translation.git/commit/?h=bridgedb --- it/LC_MESSAGES/bridgedb.po | 14 +++--- 1 file changed, 7 insertions(+), 7 deletions(-) diff

[tor-commits] [translation/torbutton-torbuttonproperties] https://gitweb.torproject.org/translation.git/commit/?h=torbutton-torbuttonproperties

2020-04-09 Thread translation
commit 2bf168df1d2d4e69a3d857612a61a9af506cc24d Author: Translation commit bot Date: Thu Apr 9 13:22:28 2020 + https://gitweb.torproject.org/translation.git/commit/?h=torbutton-torbuttonproperties --- pl/torbutton.properties | 16 1 file changed, 8 insertions(+), 8

[tor-commits] [translation/bridgedb] https://gitweb.torproject.org/translation.git/commit/?h=bridgedb

2020-04-09 Thread translation
commit f3692ab9f89333ad3c6e288ecb162d0b0e4faee1 Author: Translation commit bot Date: Thu Apr 9 13:15:21 2020 + https://gitweb.torproject.org/translation.git/commit/?h=bridgedb --- hr/LC_MESSAGES/bridgedb.po | 14 +++--- pl/LC_MESSAGES/bridgedb.po | 7 --- 2 files changed,

[tor-commits] [translation/abouttor-homepage_completed] https://gitweb.torproject.org/translation.git/commit/?h=abouttor-homepage_completed

2020-04-09 Thread translation
commit 3ebc038a9dc824e1391c669e3008eb248bf096e5 Author: Translation commit bot Date: Thu Apr 9 13:15:13 2020 + https://gitweb.torproject.org/translation.git/commit/?h=abouttor-homepage_completed --- pl/aboutTor.dtd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git

[tor-commits] [translation/abouttor-homepage] https://gitweb.torproject.org/translation.git/commit/?h=abouttor-homepage

2020-04-09 Thread translation
commit eae2f9a3d868d52781ea96a814ac86e5af5587e2 Author: Translation commit bot Date: Thu Apr 9 13:15:06 2020 + https://gitweb.torproject.org/translation.git/commit/?h=abouttor-homepage --- pl/aboutTor.dtd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git

[tor-commits] [translation/support-portal] https://gitweb.torproject.org/translation.git/commit/?h=support-portal

2020-04-09 Thread translation
commit b793e59b051296041a689f2cb89ae1442bc749f4 Author: Translation commit bot Date: Thu Apr 9 12:54:09 2020 + https://gitweb.torproject.org/translation.git/commit/?h=support-portal --- contents+pl.po | 7 +-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git

[tor-commits] [translation/tpo-web] https://gitweb.torproject.org/translation.git/commit/?h=tpo-web

2020-04-09 Thread translation
commit 0bbf7fe98c468e7718924598c95046b3a31f0db8 Author: Translation commit bot Date: Thu Apr 9 12:53:32 2020 + https://gitweb.torproject.org/translation.git/commit/?h=tpo-web --- contents+pl.po | 32 +--- 1 file changed, 21 insertions(+), 11 deletions(-)

[tor-commits] [translation/tor-launcher-network-settings] https://gitweb.torproject.org/translation.git/commit/?h=tor-launcher-network-settings

2020-04-09 Thread translation
commit a5e580c5c5942e20effd7877d223feb0b74d182d Author: Translation commit bot Date: Thu Apr 9 12:53:12 2020 + https://gitweb.torproject.org/translation.git/commit/?h=tor-launcher-network-settings --- pl/network-settings.dtd | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)

[tor-commits] [tor/release-0.4.3] Start changelog for 0.4.3.4-rc.

2020-04-09 Thread nickm
commit 36ca7ea377b22d7164cd8b04ca223db03c997285 Author: Nick Mathewson Date: Thu Apr 9 08:45:04 2020 -0400 Start changelog for 0.4.3.4-rc. --- ChangeLog | 96 +++ changes/bug31669 | 4 -- changes/bug33032 | 6

[tor-commits] [translation/communitytpo-contentspot] https://gitweb.torproject.org/translation.git/commit/?h=communitytpo-contentspot

2020-04-09 Thread translation
commit 0c0512ad27768c595e0f9e31c4a7baca3009eef8 Author: Translation commit bot Date: Thu Apr 9 12:45:30 2020 + https://gitweb.torproject.org/translation.git/commit/?h=communitytpo-contentspot --- contents+pl.po | 11 +++ 1 file changed, 7 insertions(+), 4 deletions(-) diff

[tor-commits] [translation/donatepages-messagespot] https://gitweb.torproject.org/translation.git/commit/?h=donatepages-messagespot

2020-04-09 Thread translation
commit 40898e784703521b5b4f9a1c90f6260499a2 Author: Translation commit bot Date: Thu Apr 9 12:45:43 2020 + https://gitweb.torproject.org/translation.git/commit/?h=donatepages-messagespot --- locale/pl/LC_MESSAGES/messages.po | 4 ++-- 1 file changed, 2 insertions(+), 2

[tor-commits] [tor/master] bump to 0.4.3.4-rc

2020-04-09 Thread nickm
commit bfea7a7326143702e688d9bd8cccedde69a45bb6 Author: Nick Mathewson Date: Thu Apr 9 08:38:41 2020 -0400 bump to 0.4.3.4-rc --- configure.ac| 4 ++-- contrib/win32build/tor-mingw.nsi.in | 2 +- src/win32/orconfig.h| 2 +- 3 files changed, 4

[tor-commits] [tor/master] Merge branch 'maint-0.4.3'

2020-04-09 Thread nickm
commit 11fbd1f064751e38ccd79e7823adb688b1293e59 Merge: 25729910a bfea7a732 Author: Nick Mathewson Date: Thu Apr 9 08:38:59 2020 -0400 Merge branch 'maint-0.4.3' "ours" to avoid version bump ___ tor-commits mailing list

[tor-commits] [tor/maint-0.4.3] bump to 0.4.3.4-rc

2020-04-09 Thread nickm
commit bfea7a7326143702e688d9bd8cccedde69a45bb6 Author: Nick Mathewson Date: Thu Apr 9 08:38:41 2020 -0400 bump to 0.4.3.4-rc --- configure.ac| 4 ++-- contrib/win32build/tor-mingw.nsi.in | 2 +- src/win32/orconfig.h| 2 +- 3 files changed, 4

[tor-commits] [tor/release-0.4.3] Merge branch 'maint-0.4.3' into release-0.4.3

2020-04-09 Thread nickm
commit b5e0abe18604e1f73ba9a709d505f15fbb9a5f90 Merge: 7aa1e9b61 bfea7a732 Author: Nick Mathewson Date: Thu Apr 9 08:39:16 2020 -0400 Merge branch 'maint-0.4.3' into release-0.4.3 configure.ac| 4 ++-- contrib/win32build/tor-mingw.nsi.in | 2 +-

[tor-commits] [tor/release-0.4.3] bump to 0.4.3.4-rc

2020-04-09 Thread nickm
commit bfea7a7326143702e688d9bd8cccedde69a45bb6 Author: Nick Mathewson Date: Thu Apr 9 08:38:41 2020 -0400 bump to 0.4.3.4-rc --- configure.ac| 4 ++-- contrib/win32build/tor-mingw.nsi.in | 2 +- src/win32/orconfig.h| 2 +- 3 files changed, 4

[tor-commits] [tor/master] Merge remote-tracking branch 'tor-github/pr/1723/head' into maint-0.4.3

2020-04-09 Thread nickm
commit c2aea6134abbace155f37fcabf8a5b4e2744 Merge: 1ae0839ef e849881d3 Author: Nick Mathewson Date: Thu Apr 9 08:30:14 2020 -0400 Merge remote-tracking branch 'tor-github/pr/1723/head' into maint-0.4.3 changes/bug33087 | 7 ++ configure.ac | 1 +

[tor-commits] [tor/release-0.4.3] Merge branch 'bug33087_041' into bug33087_042

2020-04-09 Thread nickm
commit b6d1f99cb2ef422bb47d67acf7f8d982decb429b Merge: ff5220536 2c0dfb093 Author: teor Date: Wed Feb 12 19:19:43 2020 +1000 Merge branch 'bug33087_041' into bug33087_042 changes/bug33087 | 4 src/lib/err/torerr.c | 31 ++-

[tor-commits] [tor/release-0.4.3] Add fsync to list of syscalls permitted by sandbox

2020-04-09 Thread nickm
commit c4da0a5094e21241db8ce0d8b12c2e4272fa49ef Author: Nick Mathewson Date: Thu Apr 9 08:33:11 2020 -0400 Add fsync to list of syscalls permitted by sandbox (Our fix for 33087 requires this, I believe.) --- src/lib/sandbox/sandbox.c | 1 + 1 file changed, 1 insertion(+) diff

[tor-commits] [tor/maint-0.4.3] Merge remote-tracking branch 'tor-github/pr/1723/head' into maint-0.4.3

2020-04-09 Thread nickm
commit c2aea6134abbace155f37fcabf8a5b4e2744 Merge: 1ae0839ef e849881d3 Author: Nick Mathewson Date: Thu Apr 9 08:30:14 2020 -0400 Merge remote-tracking branch 'tor-github/pr/1723/head' into maint-0.4.3 changes/bug33087 | 7 ++ configure.ac | 1 +

[tor-commits] [tor/release-0.4.3] Merge remote-tracking branch 'tor-github/pr/1723/head' into maint-0.4.3

2020-04-09 Thread nickm
commit c2aea6134abbace155f37fcabf8a5b4e2744 Merge: 1ae0839ef e849881d3 Author: Nick Mathewson Date: Thu Apr 9 08:30:14 2020 -0400 Merge remote-tracking branch 'tor-github/pr/1723/head' into maint-0.4.3 changes/bug33087 | 7 ++ configure.ac | 1 +

[tor-commits] [tor/maint-0.4.3] Merge branch 'bug33087_042' into bug33087_043

2020-04-09 Thread nickm
commit 4f533ed28b831eb794f562dac9add1dbf37f6335 Merge: 8a23393ed b6d1f99cb Author: teor Date: Thu Feb 13 00:02:11 2020 +1000 Merge branch 'bug33087_042' into bug33087_043 "ours" merge, because the 0.4.2 backport deletes the close functions. But the 0.4.3 bug fix replaces them

[tor-commits] [tor/release-0.4.3] err/log: Stop closing stderr and stdout during shutdown

2020-04-09 Thread nickm
commit c8242e4c0ae838121ed00d5a38cf0dae052e9d13 Author: teor Date: Wed Feb 12 12:47:15 2020 +1000 err/log: Stop closing stderr and stdout during shutdown Closing these file descriptors can hide sanitiser logs. Fixes bug 33087; bugfix on 0.4.1.6. --- changes/bug33087

[tor-commits] [tor/maint-0.4.3] err/log: Stop closing stderr and stdout during shutdown

2020-04-09 Thread nickm
commit c8242e4c0ae838121ed00d5a38cf0dae052e9d13 Author: teor Date: Wed Feb 12 12:47:15 2020 +1000 err/log: Stop closing stderr and stdout during shutdown Closing these file descriptors can hide sanitiser logs. Fixes bug 33087; bugfix on 0.4.1.6. --- changes/bug33087

[tor-commits] [tor/release-0.4.3] log: Stop duplicating error file fds

2020-04-09 Thread nickm
commit 8a23393eda00c7b7448b4d84157c5d06ba40c01c Author: teor Date: Wed Feb 12 13:11:57 2020 +1000 log: Stop duplicating error file fds Since we're not closing these fds, they don't need to be duplicated any more. Cleanup after 33087. --- src/lib/log/log.c | 41

[tor-commits] [tor/master] Add fsync to list of syscalls permitted by sandbox

2020-04-09 Thread nickm
commit c4da0a5094e21241db8ce0d8b12c2e4272fa49ef Author: Nick Mathewson Date: Thu Apr 9 08:33:11 2020 -0400 Add fsync to list of syscalls permitted by sandbox (Our fix for 33087 requires this, I believe.) --- src/lib/sandbox/sandbox.c | 1 + 1 file changed, 1 insertion(+) diff

[tor-commits] [tor/maint-0.4.3] Add fsync to list of syscalls permitted by sandbox

2020-04-09 Thread nickm
commit c4da0a5094e21241db8ce0d8b12c2e4272fa49ef Author: Nick Mathewson Date: Thu Apr 9 08:33:11 2020 -0400 Add fsync to list of syscalls permitted by sandbox (Our fix for 33087 requires this, I believe.) --- src/lib/sandbox/sandbox.c | 1 + 1 file changed, 1 insertion(+) diff

[tor-commits] [tor/maint-0.4.3] Run "make autostyle"

2020-04-09 Thread nickm
commit e849881d3ad80e46bc4297d2cf9651f3f7d039cc Author: teor Date: Thu Feb 13 09:28:21 2020 +1000 Run "make autostyle" But only take the changes that were caused by the rest of the 33087 branch. Part of 33087. --- src/lib/err/torerr.c | 2 +- src/lib/log/log.c| 2

[tor-commits] [tor/maint-0.4.3] log: Stop duplicating error file fds

2020-04-09 Thread nickm
commit 8a23393eda00c7b7448b4d84157c5d06ba40c01c Author: teor Date: Wed Feb 12 13:11:57 2020 +1000 log: Stop duplicating error file fds Since we're not closing these fds, they don't need to be duplicated any more. Cleanup after 33087. --- src/lib/log/log.c | 41

[tor-commits] [tor/release-0.4.3] Merge branch 'maint-0.4.1' into bug33087_041

2020-04-09 Thread nickm
commit 2c0dfb093e2afb2bd5a06c2f5441d55237729de4 Merge: c8242e4c0 5298113da Author: teor Date: Wed Feb 12 19:19:38 2020 +1000 Merge branch 'maint-0.4.1' into bug33087_041 .travis.yml| 2 -- changes/bug32753 | 3 +++ changes/ticket33075| 4

[tor-commits] [tor/maint-0.4.3] err/log: Stop closing stderr and stdout during shutdown

2020-04-09 Thread nickm
commit 3d1ef3b6f89e760b4340ba77e0b3db1246dc5c80 Author: teor Date: Wed Feb 12 12:47:15 2020 +1000 err/log: Stop closing stderr and stdout during shutdown Closing these file descriptors can hide sanitiser logs. Instead, flush the logs before tor exits, using fsync().

[tor-commits] [tor/maint-0.4.3] Merge branch 'maint-0.4.1' into bug33087_041

2020-04-09 Thread nickm
commit 2c0dfb093e2afb2bd5a06c2f5441d55237729de4 Merge: c8242e4c0 5298113da Author: teor Date: Wed Feb 12 19:19:38 2020 +1000 Merge branch 'maint-0.4.1' into bug33087_041 .travis.yml| 2 -- changes/bug32753 | 3 +++ changes/ticket33075| 4

[tor-commits] [tor/release-0.4.3] Run "make autostyle"

2020-04-09 Thread nickm
commit e849881d3ad80e46bc4297d2cf9651f3f7d039cc Author: teor Date: Thu Feb 13 09:28:21 2020 +1000 Run "make autostyle" But only take the changes that were caused by the rest of the 33087 branch. Part of 33087. --- src/lib/err/torerr.c | 2 +- src/lib/log/log.c| 2

[tor-commits] [tor/maint-0.4.3] Merge branch 'bug33087_041' into bug33087_042

2020-04-09 Thread nickm
commit b6d1f99cb2ef422bb47d67acf7f8d982decb429b Merge: ff5220536 2c0dfb093 Author: teor Date: Wed Feb 12 19:19:43 2020 +1000 Merge branch 'bug33087_041' into bug33087_042 changes/bug33087 | 4 src/lib/err/torerr.c | 31 ++-

[tor-commits] [tor/release-0.4.3] Merge branch 'maint-0.4.3' into release-0.4.3

2020-04-09 Thread nickm
commit 7aa1e9b61b07324ff370ef0875d0d4a3bb821520 Merge: c502ce076 c4da0a509 Author: Nick Mathewson Date: Thu Apr 9 08:33:36 2020 -0400 Merge branch 'maint-0.4.3' into release-0.4.3 changes/bug33087 | 7 ++ configure.ac | 1 + src/lib/err/torerr.c | 26

[tor-commits] [tor/release-0.4.3] err/log: Stop closing stderr and stdout during shutdown

2020-04-09 Thread nickm
commit 3d1ef3b6f89e760b4340ba77e0b3db1246dc5c80 Author: teor Date: Wed Feb 12 12:47:15 2020 +1000 err/log: Stop closing stderr and stdout during shutdown Closing these file descriptors can hide sanitiser logs. Instead, flush the logs before tor exits, using fsync().

[tor-commits] [tor/master] Merge branch 'maint-0.4.3'

2020-04-09 Thread nickm
commit 25729910af31266f74e55f4a00ee86be188f92c3 Merge: 29693b83b c4da0a509 Author: Nick Mathewson Date: Thu Apr 9 08:33:36 2020 -0400 Merge branch 'maint-0.4.3' src/lib/sandbox/sandbox.c | 1 + 1 file changed, 1 insertion(+) ___ tor-commits

[tor-commits] [tor/release-0.4.3] Merge branch 'bug33087_042' into bug33087_043

2020-04-09 Thread nickm
commit 4f533ed28b831eb794f562dac9add1dbf37f6335 Merge: 8a23393ed b6d1f99cb Author: teor Date: Thu Feb 13 00:02:11 2020 +1000 Merge branch 'bug33087_042' into bug33087_043 "ours" merge, because the 0.4.2 backport deletes the close functions. But the 0.4.3 bug fix replaces them

[tor-commits] [translation/tpo-web] https://gitweb.torproject.org/translation.git/commit/?h=tpo-web

2020-04-09 Thread translation
commit 819348f1c46e3de2674d97c1e487711d55d3a88e Author: Translation commit bot Date: Thu Apr 9 12:23:39 2020 + https://gitweb.torproject.org/translation.git/commit/?h=tpo-web --- contents+pl.po | 31 +-- 1 file changed, 21 insertions(+), 10 deletions(-)

[tor-commits] [tor/master] Make sure that we free 'addr' at the end of a pair of addr tests

2020-04-09 Thread nickm
commit 29693b83bcfef517469d3afe7a54195adf7f378f Author: Nick Mathewson Date: Thu Apr 9 07:54:23 2020 -0400 Make sure that we free 'addr' at the end of a pair of addr tests Fixes a couple of Coverity warnings about possible memory leaks. Bug not in any released Tor. ---

[tor-commits] [tor/master] hs-v3: Several fixes after #32542 review

2020-04-09 Thread asn
commit cca9e1c803161e41df418498e267605d855b7ac5 Author: David Goulet Date: Wed Apr 8 09:58:17 2020 -0400 hs-v3: Several fixes after #32542 review asn: Accidentally left this commit out when merging #32542, so cherry-picking it now. Signed-off-by: David Goulet ---

[tor-commits] [tor/release-0.4.2] Merge branch 'maint-0.4.2' into release-0.4.2

2020-04-09 Thread teor
commit 71e72ce9caa5e7ed07f475a8ed1b40fce46c86d5 Merge: 958f6eb5c 2d34d4d1a Author: teor Date: Thu Apr 9 19:43:24 2020 +1000 Merge branch 'maint-0.4.2' into release-0.4.2 Makefile.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ___

[tor-commits] [tor/release-0.4.2] remove practracker from check-local (0.4.2 and 0.4.3 only)

2020-04-09 Thread teor
commit 2d34d4d1af5395885780ee96fbedb0bf17fb0f44 Author: Nick Mathewson Date: Wed Jun 19 14:29:08 2019 -0400 remove practracker from check-local (0.4.2 and 0.4.3 only) practracker shouldn't be running in release or maint branches. --- Makefile.am | 2 +- 1 file changed, 1

[tor-commits] [tor/release-0.4.3] Merge branch 'maint-0.4.3' into release-0.4.3

2020-04-09 Thread teor
commit c502ce0762e1680503f6e6dc64c82852ccd19738 Merge: 456337a8d 1ae0839ef Author: teor Date: Thu Apr 9 19:43:28 2020 +1000 Merge branch 'maint-0.4.3' into release-0.4.3 Makefile.am | 1 - 1 file changed, 1 deletion(-) ___ tor-commits mailing

[tor-commits] [tor/release-0.4.3] Merge branch 'maint-0.4.2' into maint-0.4.3

2020-04-09 Thread teor
commit 1ae0839ef24d303f77cec165df5223a66131567c Merge: f6efb3a18 2d34d4d1a Author: teor Date: Thu Apr 9 19:41:19 2020 +1000 Merge branch 'maint-0.4.2' into maint-0.4.3 Remove check-best-practices from check-local in maint-0.4.3. (The check-local jobs are all on separate lines

[tor-commits] [tor/release-0.4.3] remove practracker from check-local (0.4.2 and 0.4.3 only)

2020-04-09 Thread teor
commit 2d34d4d1af5395885780ee96fbedb0bf17fb0f44 Author: Nick Mathewson Date: Wed Jun 19 14:29:08 2019 -0400 remove practracker from check-local (0.4.2 and 0.4.3 only) practracker shouldn't be running in release or maint branches. --- Makefile.am | 2 +- 1 file changed, 1

[tor-commits] [tor/maint-0.4.3] Merge branch 'maint-0.4.2' into maint-0.4.3

2020-04-09 Thread teor
commit 1ae0839ef24d303f77cec165df5223a66131567c Merge: f6efb3a18 2d34d4d1a Author: teor Date: Thu Apr 9 19:41:19 2020 +1000 Merge branch 'maint-0.4.2' into maint-0.4.3 Remove check-best-practices from check-local in maint-0.4.3. (The check-local jobs are all on separate lines

[tor-commits] [tor/maint-0.4.3] remove practracker from check-local (0.4.2 and 0.4.3 only)

2020-04-09 Thread teor
commit 2d34d4d1af5395885780ee96fbedb0bf17fb0f44 Author: Nick Mathewson Date: Wed Jun 19 14:29:08 2019 -0400 remove practracker from check-local (0.4.2 and 0.4.3 only) practracker shouldn't be running in release or maint branches. --- Makefile.am | 2 +- 1 file changed, 1

[tor-commits] [tor/maint-0.4.2] remove practracker from check-local (0.4.2 and 0.4.3 only)

2020-04-09 Thread teor
commit 2d34d4d1af5395885780ee96fbedb0bf17fb0f44 Author: Nick Mathewson Date: Wed Jun 19 14:29:08 2019 -0400 remove practracker from check-local (0.4.2 and 0.4.3 only) practracker shouldn't be running in release or maint branches. --- Makefile.am | 2 +- 1 file changed, 1

[tor-commits] [tor/master] Merge branch 'maint-0.4.3'

2020-04-09 Thread teor
commit f431b78465ca8f1339598aa81b85300528c29de3 Merge: 4e3a17fac 1ae0839ef Author: teor Date: Thu Apr 9 19:42:36 2020 +1000 Merge branch 'maint-0.4.3' "ours" merge, because we only want to remove check-best-practices from check-local in 0.4.2 and 0.4.3.

[tor-commits] [tor/master] Merge branch 'maint-0.4.2' into maint-0.4.3

2020-04-09 Thread teor
commit 1ae0839ef24d303f77cec165df5223a66131567c Merge: f6efb3a18 2d34d4d1a Author: teor Date: Thu Apr 9 19:41:19 2020 +1000 Merge branch 'maint-0.4.2' into maint-0.4.3 Remove check-best-practices from check-local in maint-0.4.3. (The check-local jobs are all on separate lines

[tor-commits] [tor/master] remove practracker from check-local (0.4.2 and 0.4.3 only)

2020-04-09 Thread teor
commit 2d34d4d1af5395885780ee96fbedb0bf17fb0f44 Author: Nick Mathewson Date: Wed Jun 19 14:29:08 2019 -0400 remove practracker from check-local (0.4.2 and 0.4.3 only) practracker shouldn't be running in release or maint branches. --- Makefile.am | 2 +- 1 file changed, 1

[tor-commits] [translation/support-portal] https://gitweb.torproject.org/translation.git/commit/?h=support-portal

2020-04-09 Thread translation
commit 7967b1c5a70a09105e133e8e2aca7cf9642f73a4 Author: Translation commit bot Date: Thu Apr 9 08:54:09 2020 + https://gitweb.torproject.org/translation.git/commit/?h=support-portal --- contents+de.po | 14 ++ 1 file changed, 10 insertions(+), 4 deletions(-) diff --git

[tor-commits] [translation/support-portal] https://gitweb.torproject.org/translation.git/commit/?h=support-portal

2020-04-09 Thread translation
commit a7c6164b22de0e5c6a577c059d6d56ea78612998 Author: Translation commit bot Date: Thu Apr 9 08:23:56 2020 + https://gitweb.torproject.org/translation.git/commit/?h=support-portal --- contents+de.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git

[tor-commits] [stem/master] Jenkins uses 'dist-packages' for installation test

2020-04-09 Thread atagar
commit d38feee00e6a9c684f9ea779a7dca86ea620f991 Author: Damian Johnson Date: Thu Apr 9 01:04:29 2020 -0700 Jenkins uses 'dist-packages' for installation test Ah. Our installation test creates the following path on the jenkins server...

[tor-commits] [translation/tails-misc_release] https://gitweb.torproject.org/translation.git/commit/?h=tails-misc_release

2020-04-09 Thread translation
commit 6f47e674eb22963c3509707802469f022d2eb210 Author: Translation commit bot Date: Thu Apr 9 07:18:26 2020 + https://gitweb.torproject.org/translation.git/commit/?h=tails-misc_release --- zh_CN.po | 172 +++ 1 file changed,

[tor-commits] [translation/tails-misc] https://gitweb.torproject.org/translation.git/commit/?h=tails-misc

2020-04-09 Thread translation
commit 634064ffd0bd239c00a9ff93c6ad7cbc939abec5 Author: Translation commit bot Date: Thu Apr 9 07:17:16 2020 + https://gitweb.torproject.org/translation.git/commit/?h=tails-misc --- zh_CN.po | 100 +++ 1 file changed, 50

[tor-commits] [translation/support-portal] https://gitweb.torproject.org/translation.git/commit/?h=support-portal

2020-04-09 Thread translation
commit 0d55b971d489b397a4bdb15ccb62869fbda3674c Author: Translation commit bot Date: Thu Apr 9 06:53:49 2020 + https://gitweb.torproject.org/translation.git/commit/?h=support-portal --- contents+zh-CN.po | 87 +++ 1 file changed, 43

<    1   2