mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-12-06 19:41:15 +01:00
Merge remote-tracking branch 'public/feature15053'
This commit is contained in:
+2
-2
@@ -51,9 +51,9 @@
|
||||
|
||||
#define CRYPTO_PRIVATE
|
||||
#include "crypto.h"
|
||||
#include "../common/torlog.h"
|
||||
#include "torlog.h"
|
||||
#include "aes.h"
|
||||
#include "../common/util.h"
|
||||
#include "util.h"
|
||||
#include "container.h"
|
||||
#include "compat.h"
|
||||
#include "sandbox.h"
|
||||
|
||||
@@ -11,9 +11,7 @@ noinst_LIBRARIES += \
|
||||
src/common/libor-event-testing.a
|
||||
endif
|
||||
|
||||
EXTRA_DIST+= \
|
||||
src/common/common_sha1.i \
|
||||
src/common/Makefile.nmake
|
||||
EXTRA_DIST += src/common/Makefile.nmake
|
||||
|
||||
#CFLAGS = -Wall -Wpointer-arith -O2
|
||||
AM_CPPFLAGS += -I$(srcdir)/src/common -Isrc/common -I$(srcdir)/src/ext/trunnel -I$(srcdir)/src/trunnel
|
||||
@@ -135,7 +133,7 @@ COMMONHEADERS = \
|
||||
|
||||
noinst_HEADERS+= $(COMMONHEADERS)
|
||||
|
||||
DISTCLEANFILES+= src/common/common_sha1.i
|
||||
CLEANFILES+= src/common/common_sha1.i
|
||||
|
||||
src/common/common_sha1.i: $(libor_SOURCES) $(libor_crypto_a_SOURCES) $(COMMONHEADERS)
|
||||
$(AM_V_GEN)if test "@SHA1SUM@" != none; then \
|
||||
|
||||
+2
-2
@@ -789,7 +789,7 @@ const char UNRESTRICTED_SERVER_CIPHER_LIST[] =
|
||||
/** List of ciphers that clients should advertise, omitting items that
|
||||
* our OpenSSL doesn't know about. */
|
||||
static const char CLIENT_CIPHER_LIST[] =
|
||||
#include "./ciphers.inc"
|
||||
#include "ciphers.inc"
|
||||
/* Tell it not to use SSLv2 ciphers, so that it can select an SSLv3 version
|
||||
* of any cipher we say. */
|
||||
"!SSLv2"
|
||||
@@ -804,7 +804,7 @@ typedef struct cipher_info_t { unsigned id; const char *name; } cipher_info_t;
|
||||
static const cipher_info_t CLIENT_CIPHER_INFO_LIST[] = {
|
||||
#define CIPHER(id, name) { id, name },
|
||||
#define XCIPHER(id, name) { id, #name },
|
||||
#include "./ciphers.inc"
|
||||
#include "ciphers.inc"
|
||||
#undef CIPHER
|
||||
#undef XCIPHER
|
||||
};
|
||||
|
||||
+1
-1
@@ -37,7 +37,7 @@
|
||||
*/
|
||||
|
||||
#include "eventdns_tor.h"
|
||||
#include "../common/util.h"
|
||||
#include "util.h"
|
||||
#include <sys/types.h>
|
||||
/* #define NDEBUG */
|
||||
|
||||
|
||||
+2
-2
@@ -20,8 +20,8 @@
|
||||
#include "control.h"
|
||||
#include "reasons.h"
|
||||
#include "ext_orport.h"
|
||||
#include "../common/util.h"
|
||||
#include "../common/torlog.h"
|
||||
#include "util.h"
|
||||
#include "torlog.h"
|
||||
#ifdef HAVE_UNISTD_H
|
||||
#include <unistd.h>
|
||||
#endif
|
||||
|
||||
+1
-1
@@ -24,7 +24,7 @@
|
||||
#include "relay.h"
|
||||
#include "router.h"
|
||||
#include "ht.h"
|
||||
#include "../common/sandbox.h"
|
||||
#include "sandbox.h"
|
||||
#ifdef HAVE_EVENT2_DNS_H
|
||||
#include <event2/event.h>
|
||||
#include <event2/dns.h>
|
||||
|
||||
+23
-20
@@ -15,7 +15,7 @@ else
|
||||
tor_platform_source=
|
||||
endif
|
||||
|
||||
EXTRA_DIST+= src/or/ntmain.c src/or/or_sha1.i src/or/Makefile.nmake
|
||||
EXTRA_DIST+= src/or/ntmain.c src/or/Makefile.nmake
|
||||
|
||||
if USE_EXTERNAL_EVDNS
|
||||
evdns_source=
|
||||
@@ -85,8 +85,9 @@ LIBTOR_A_SOURCES = \
|
||||
src_or_libtor_a_SOURCES = $(LIBTOR_A_SOURCES)
|
||||
src_or_libtor_testing_a_SOURCES = $(LIBTOR_A_SOURCES)
|
||||
|
||||
#libtor_a_LIBADD = ../common/libor.a ../common/libor-crypto.a \
|
||||
# ../common/libor-event.a
|
||||
#libtor_a_LIBADD = $(top_builddir)/common/libor.a \
|
||||
# $(top_builddir)/common/libor-crypto.a \
|
||||
# $(top_builddir)/common/libor-event.a
|
||||
|
||||
|
||||
src_or_tor_SOURCES = src/or/tor_main.c
|
||||
@@ -123,9 +124,9 @@ src_or_tor_cov_LDADD = src/or/libtor-testing.a src/common/libor-testing.a \
|
||||
src/common/libor-event-testing.a \
|
||||
@TOR_ZLIB_LIBS@ @TOR_LIB_MATH@ @TOR_LIBEVENT_LIBS@ @TOR_OPENSSL_LIBS@ \
|
||||
@TOR_LIB_WS32@ @TOR_LIB_GDI@ @CURVE25519_LIBS@ @TOR_SYSTEMD_LIBS@
|
||||
TESTING_TOR_BINARY = ./src/or/tor-cov
|
||||
TESTING_TOR_BINARY = $(top_builddir)/src/or/tor-cov
|
||||
else
|
||||
TESTING_TOR_BINARY = ./src/or/tor
|
||||
TESTING_TOR_BINARY = $(top_builddir)/src/or/tor
|
||||
endif
|
||||
|
||||
ORHEADERS = \
|
||||
@@ -192,20 +193,22 @@ noinst_HEADERS+= $(ORHEADERS) micro-revision.i
|
||||
src/or/config_codedigest.o: src/or/or_sha1.i
|
||||
|
||||
micro-revision.i: FORCE
|
||||
@rm -f micro-revision.tmp; \
|
||||
if test -d "$(top_srcdir)/.git" && \
|
||||
test -x "`which git 2>&1;true`"; then \
|
||||
HASH="`cd "$(top_srcdir)" && git rev-parse --short=16 HEAD`"; \
|
||||
echo \"$$HASH\" > micro-revision.tmp; \
|
||||
fi; \
|
||||
if test ! -f micro-revision.tmp ; then \
|
||||
if test ! -f micro-revision.i ; then \
|
||||
echo '""' > micro-revision.i; \
|
||||
fi; \
|
||||
elif test ! -f micro-revision.i || \
|
||||
test x"`cat micro-revision.tmp`" != x"`cat micro-revision.i`"; then \
|
||||
mv micro-revision.tmp micro-revision.i; \
|
||||
fi; true
|
||||
$(AM_V_GEN)rm -f micro-revision.tmp; \
|
||||
if test -d "$(top_srcdir)/.git" && \
|
||||
test -x "`which git 2>&1;true`"; then \
|
||||
HASH="`cd "$(top_srcdir)" && git rev-parse --short=16 HEAD`"; \
|
||||
echo \"$$HASH\" > micro-revision.tmp; \
|
||||
fi; \
|
||||
if test ! -f micro-revision.tmp; then \
|
||||
if test ! -f micro-revision.i; then \
|
||||
echo '""' > micro-revision.i; \
|
||||
fi; \
|
||||
elif test ! -f micro-revision.i || \
|
||||
test x"`cat micro-revision.tmp`" != x"`cat micro-revision.i`"; then \
|
||||
mv micro-revision.tmp micro-revision.i; \
|
||||
fi; \
|
||||
rm -f micro-revision.tmp; \
|
||||
true
|
||||
|
||||
src/or/or_sha1.i: $(src_or_tor_SOURCES) $(src_or_libtor_a_SOURCES) $(ORHEADERS)
|
||||
$(AM_V_GEN)if test "@SHA1SUM@" != none; then \
|
||||
@@ -219,6 +222,6 @@ src/or/or_sha1.i: $(src_or_tor_SOURCES) $(src_or_libtor_a_SOURCES) $(ORHEADERS)
|
||||
touch src/or/or_sha1.i; \
|
||||
fi
|
||||
|
||||
CLEANFILES+= micro-revision.i src/or/micro-revision.i
|
||||
CLEANFILES+= src/or/or_sha1.i micro-revision.i src/or/micro-revision.i micro-revision.tmp
|
||||
|
||||
FORCE:
|
||||
|
||||
+1
-1
@@ -63,7 +63,7 @@
|
||||
#include <openssl/crypto.h>
|
||||
#endif
|
||||
#include "memarea.h"
|
||||
#include "../common/sandbox.h"
|
||||
#include "sandbox.h"
|
||||
|
||||
#ifdef HAVE_EVENT2_EVENT_H
|
||||
#include <event2/event.h>
|
||||
|
||||
+1
-1
@@ -88,7 +88,7 @@
|
||||
|
||||
#include "crypto.h"
|
||||
#include "tortls.h"
|
||||
#include "../common/torlog.h"
|
||||
#include "torlog.h"
|
||||
#include "container.h"
|
||||
#include "torgzip.h"
|
||||
#include "address.h"
|
||||
|
||||
+1
-1
@@ -37,7 +37,7 @@
|
||||
#include "routerlist.h"
|
||||
#include "routerparse.h"
|
||||
#include "routerset.h"
|
||||
#include "../common/sandbox.h"
|
||||
#include "sandbox.h"
|
||||
// #define DEBUG_ROUTERLIST
|
||||
|
||||
/****************************************************************************/
|
||||
|
||||
+5
-5
@@ -140,9 +140,9 @@ src_test_test_ntor_cl_AM_CPPFLAGS = \
|
||||
NTOR_TEST_DEPS=src/test/test-ntor-cl
|
||||
|
||||
if COVERAGE_ENABLED
|
||||
CMDLINE_TEST_TOR = ./src/or/tor-cov
|
||||
CMDLINE_TEST_TOR = $(top_builddir)/src/or/tor-cov
|
||||
else
|
||||
CMDLINE_TEST_TOR = ./src/or/tor
|
||||
CMDLINE_TEST_TOR = $(top_builddir)/src/or/tor
|
||||
endif
|
||||
|
||||
noinst_PROGRAMS += src/test/test-bt-cl
|
||||
@@ -158,10 +158,10 @@ check-local: $(NTOR_TEST_DEPS) $(CMDLINE_TEST_TOR)
|
||||
if USEPYTHON
|
||||
$(PYTHON) $(top_srcdir)/src/test/ntor_ref.py test-tor
|
||||
$(PYTHON) $(top_srcdir)/src/test/ntor_ref.py self-test
|
||||
./src/test/test-bt-cl assert | $(PYTHON) $(top_srcdir)/src/test/bt_test.py
|
||||
./src/test/test-bt-cl crash | $(PYTHON) $(top_srcdir)/src/test/bt_test.py
|
||||
$(top_builddir)/src/test/test-bt-cl assert | $(PYTHON) $(top_srcdir)/src/test/bt_test.py
|
||||
$(top_builddir)/src/test/test-bt-cl crash | $(PYTHON) $(top_srcdir)/src/test/bt_test.py
|
||||
endif
|
||||
$(top_srcdir)/src/test/zero_length_keys.sh
|
||||
$(SHELL) $(top_srcdir)/src/test/zero_length_keys.sh
|
||||
|
||||
EXTRA_DIST += \
|
||||
src/test/bt_test.py \
|
||||
|
||||
@@ -7,7 +7,7 @@
|
||||
#include <stdlib.h>
|
||||
#include "crypto.h"
|
||||
#include "torlog.h"
|
||||
#include "../common/util.h"
|
||||
#include "util.h"
|
||||
#include "compat.h"
|
||||
#include <openssl/bn.h>
|
||||
#include <openssl/rsa.h>
|
||||
|
||||
@@ -28,8 +28,8 @@
|
||||
#endif
|
||||
|
||||
#include "compat.h"
|
||||
#include "../common/util.h"
|
||||
#include "../common/torlog.h"
|
||||
#include "util.h"
|
||||
#include "torlog.h"
|
||||
#include "crypto.h"
|
||||
#include "address.h"
|
||||
|
||||
|
||||
@@ -5,9 +5,9 @@
|
||||
|
||||
#include "orconfig.h"
|
||||
#include "compat.h"
|
||||
#include "../common/util.h"
|
||||
#include "util.h"
|
||||
#include "address.h"
|
||||
#include "../common/torlog.h"
|
||||
#include "torlog.h"
|
||||
#include "sandbox.h"
|
||||
|
||||
#include <stdio.h>
|
||||
|
||||
Reference in New Issue
Block a user