Makefile.am 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377
  1. # Copyright (c) 2001-2004, Roger Dingledine
  2. # Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson
  3. # Copyright (c) 2007-2018, The Tor Project, Inc.
  4. # See LICENSE for licensing information
  5. ACLOCAL_AMFLAGS = -I m4
  6. noinst_LIBRARIES=
  7. EXTRA_DIST=
  8. noinst_HEADERS=
  9. bin_PROGRAMS=
  10. EXTRA_PROGRAMS=
  11. CLEANFILES=
  12. TESTS=
  13. noinst_PROGRAMS=
  14. DISTCLEANFILES=
  15. bin_SCRIPTS=
  16. AM_CPPFLAGS=\
  17. -I$(top_srcdir)/src \
  18. -I$(top_srcdir)/src/ext \
  19. -I$(top_srcdir)/src/ext/trunnel \
  20. -I$(top_srcdir)/src/trunnel
  21. AM_CFLAGS=@TOR_SYSTEMD_CFLAGS@ @CFLAGS_BUGTRAP@ @TOR_LZMA_CFLAGS@ @TOR_ZSTD_CFLAGS@
  22. SHELL=@SHELL@
  23. if COVERAGE_ENABLED
  24. TESTING_TOR_BINARY=$(top_builddir)/src/or/tor-cov$(EXEEXT)
  25. else
  26. TESTING_TOR_BINARY=$(top_builddir)/src/or/tor$(EXEEXT)
  27. endif
  28. if USE_RUST
  29. rust_ldadd=$(top_builddir)/src/rust/target/release/@TOR_RUST_STATIC_NAME@ \
  30. @TOR_RUST_EXTRA_LIBS@
  31. else
  32. rust_ldadd=
  33. endif
  34. # "Common" libraries used to link tor's utility code.
  35. TOR_UTIL_LIBS = \
  36. src/common/libor.a \
  37. src/lib/libtor-log.a \
  38. src/lib/libtor-lock.a \
  39. src/lib/libtor-container.a \
  40. src/lib/libtor-string.a \
  41. src/lib/libtor-malloc.a \
  42. src/lib/libtor-wallclock.a \
  43. src/lib/libtor-err.a \
  44. src/lib/libtor-intmath.a \
  45. src/lib/libtor-ctime.a
  46. # Variants of the above for linking the testing variant of tor (for coverage
  47. # and tests)
  48. TOR_UTIL_TESTING_LIBS = \
  49. src/common/libor-testing.a \
  50. src/lib/libtor-log-testing.a \
  51. src/lib/libtor-lock-testing.a \
  52. src/lib/libtor-container-testing.a \
  53. src/lib/libtor-string-testing.a \
  54. src/lib/libtor-malloc-testing.a \
  55. src/lib/libtor-wallclock-testing.a \
  56. src/lib/libtor-err-testing.a \
  57. src/lib/libtor-intmath.a \
  58. src/lib/libtor-ctime-testing.a
  59. # Internal crypto libraries used in Tor
  60. TOR_CRYPTO_LIBS = \
  61. src/lib/libtor-tls.a \
  62. src/lib/libtor-crypt-ops.a \
  63. $(LIBKECCAK_TINY) \
  64. $(LIBDONNA)
  65. # Variants of the above for linking the testing variant of tor (for coverage
  66. # and tests)
  67. TOR_CRYPTO_TESTING_LIBS = \
  68. src/lib/libtor-tls-testing.a \
  69. src/lib/libtor-crypt-ops-testing.a \
  70. $(LIBKECCAK_TINY) \
  71. $(LIBDONNA)
  72. # All static libraries used to link tor.
  73. TOR_INTERNAL_LIBS = \
  74. src/or/libtor-app.a \
  75. src/lib/libtor-compress.a \
  76. $(TOR_CRYPTO_LIBS) \
  77. $(TOR_UTIL_LIBS) \
  78. src/common/libor-event.a \
  79. src/trunnel/libor-trunnel.a \
  80. src/lib/libtor-trace.a
  81. # Variants of the above for linking the testing variant of tor (for coverage
  82. # and tests)
  83. TOR_INTERNAL_TESTING_LIBS = \
  84. src/or/libtor-app-testing.a \
  85. src/lib/libtor-compress-testing.a \
  86. $(TOR_CRYPTO_TESTING_LIBS) \
  87. $(TOR_UTIL_TESTING_LIBS) \
  88. src/common/libor-event-testing.a \
  89. src/trunnel/libor-trunnel-testing.a \
  90. src/lib/libtor-trace.a
  91. # All libraries used to link tor-cov
  92. include src/include.am
  93. include doc/include.am
  94. include contrib/include.am
  95. EXTRA_DIST+= \
  96. ChangeLog \
  97. CONTRIBUTING \
  98. INSTALL \
  99. LICENSE \
  100. Makefile.nmake \
  101. README \
  102. ReleaseNotes \
  103. scripts/maint/checkIncludes.py \
  104. scripts/maint/checkSpace.pl
  105. ## This tells etags how to find mockable function definitions.
  106. AM_ETAGSFLAGS=--regex='{c}/MOCK_IMPL([^,]+,\W*\([a-zA-Z0-9_]+\)\W*,/\1/s'
  107. if COVERAGE_ENABLED
  108. TEST_CFLAGS=-fno-inline -fprofile-arcs -ftest-coverage
  109. if DISABLE_ASSERTS_IN_UNIT_TESTS
  110. TEST_CPPFLAGS=-DTOR_UNIT_TESTS -DTOR_COVERAGE -DDISABLE_ASSERTS_IN_UNIT_TESTS @TOR_MODULES_ALL_ENABLED@
  111. else
  112. TEST_CPPFLAGS=-DTOR_UNIT_TESTS -DTOR_COVERAGE @TOR_MODULES_ALL_ENABLED@
  113. endif
  114. TEST_NETWORK_FLAGS=--coverage --hs-multi-client 1
  115. else
  116. TEST_CFLAGS=
  117. TEST_CPPFLAGS=-DTOR_UNIT_TESTS @TOR_MODULES_ALL_ENABLED@
  118. TEST_NETWORK_FLAGS=--hs-multi-client 1
  119. endif
  120. TEST_NETWORK_WARNING_FLAGS=--quiet --only-warnings
  121. if LIBFUZZER_ENABLED
  122. TEST_CFLAGS += -fsanitize-coverage=trace-pc-guard,trace-cmp,trace-div
  123. # not "edge"
  124. endif
  125. TEST_NETWORK_ALL_LOG_DIR=$(top_builddir)/test_network_log
  126. TEST_NETWORK_ALL_DRIVER_FLAGS=--color-tests yes
  127. #install-data-local:
  128. # $(INSTALL) -m 755 -d $(LOCALSTATEDIR)/lib/tor
  129. # Allows to override rpmbuild with rpmbuild-md5 from fedora-packager so that
  130. # building for EL5 won't fail on https://bugzilla.redhat.com/show_bug.cgi?id=490613
  131. RPMBUILD ?= rpmbuild
  132. # Use automake's dist-gzip target to build the tarball
  133. dist-rpm: dist-gzip
  134. TIMESTAMP=$$(date +"%Y-%m-%d_%H.%M.%S"); \
  135. RPM_BUILD_DIR=$$(mktemp -d "/tmp/tor-rpm-build-$$TIMESTAMP-XXXX"); \
  136. mkdir -p "$$RPM_BUILD_DIR"/{BUILD,RPMS,SOURCES/"tor-$(VERSION)",SPECS,SRPMS}; \
  137. cp -fa "$(distdir).tar.gz" "$$RPM_BUILD_DIR"/SOURCES/; \
  138. LIBS=-lrt $(RPMBUILD) -ba --define "_topdir $$RPM_BUILD_DIR" tor.spec; \
  139. cp -fa "$$RPM_BUILD_DIR"/SRPMS/* .; \
  140. cp -fa "$$RPM_BUILD_DIR"/RPMS/* .; \
  141. rm -rf "$$RPM_BUILD_DIR"; \
  142. echo "RPM build finished"; \
  143. #end of dist-rpm
  144. doxygen:
  145. doxygen && cd doc/doxygen/latex && make
  146. test: all
  147. $(top_builddir)/src/test/test
  148. check-local: check-spaces check-changes
  149. need-chutney-path:
  150. @if test ! -d "$$CHUTNEY_PATH"; then \
  151. echo '$$CHUTNEY_PATH was not set.'; \
  152. if test -d $(top_srcdir)/../chutney -a -x $(top_srcdir)/../chutney/chutney; then \
  153. echo "Assuming test-network.sh will find" $(top_srcdir)/../chutney; \
  154. else \
  155. echo; \
  156. echo "To run these tests, git clone https://git.torproject.org/chutney.git ; export CHUTNEY_PATH=\`pwd\`/chutney"; \
  157. exit 1; \
  158. fi \
  159. fi
  160. # Note that test-network requires a copy of Chutney in $CHUTNEY_PATH.
  161. # Chutney can be cloned from https://git.torproject.org/chutney.git .
  162. test-network: need-chutney-path $(TESTING_TOR_BINARY) src/tools/tor-gencert
  163. $(top_srcdir)/src/test/test-network.sh $(TEST_NETWORK_FLAGS)
  164. # Run all available tests using automake's test-driver
  165. # only run IPv6 tests if we can ping6 ::1 (localhost)
  166. # only run IPv6 tests if we can ping ::1 (localhost)
  167. # some IPv6 tests will fail without an IPv6 DNS server (see #16971 and #17011)
  168. # only run mixed tests if we have a tor-stable binary
  169. # Try the syntax for BSD ping6, Linux ping6, and Linux ping -6,
  170. # because they're incompatible
  171. test-network-all: need-chutney-path test-driver $(TESTING_TOR_BINARY) src/tools/tor-gencert
  172. mkdir -p $(TEST_NETWORK_ALL_LOG_DIR)
  173. @flavors="$(TEST_CHUTNEY_FLAVORS)"; \
  174. if ping6 -q -c 1 -o ::1 >/dev/null 2>&1 || ping6 -q -c 1 -W 1 ::1 >/dev/null 2>&1 || ping -6 -c 1 -W 1 ::1 >/dev/null 2>&1; then \
  175. echo "ping6 ::1 or ping ::1 succeeded, running IPv6 flavors: $(TEST_CHUTNEY_FLAVORS_IPV6)."; \
  176. flavors="$$flavors $(TEST_CHUTNEY_FLAVORS_IPV6)"; \
  177. else \
  178. echo "ping6 ::1 and ping ::1 failed, skipping IPv6 flavors: $(TEST_CHUTNEY_FLAVORS_IPV6)."; \
  179. skip_flavors="$$skip_flavors $(TEST_CHUTNEY_FLAVORS_IPV6)"; \
  180. fi; \
  181. if command -v tor-stable >/dev/null 2>&1; then \
  182. echo "tor-stable found, running mixed flavors: $(TEST_CHUTNEY_FLAVORS_MIXED)."; \
  183. flavors="$$flavors $(TEST_CHUTNEY_FLAVORS_MIXED)"; \
  184. else \
  185. echo "tor-stable not found, skipping mixed flavors: $(TEST_CHUTNEY_FLAVORS_MIXED)."; \
  186. skip_flavors="$$skip_flavors $(TEST_CHUTNEY_FLAVORS_MIXED)"; \
  187. fi; \
  188. for f in $$skip_flavors; do \
  189. echo "SKIP: $$f"; \
  190. done; \
  191. for f in $$flavors; do \
  192. $(SHELL) $(top_srcdir)/test-driver --test-name $$f --log-file $(TEST_NETWORK_ALL_LOG_DIR)/$$f.log --trs-file $(TEST_NETWORK_ALL_LOG_DIR)/$$f.trs $(TEST_NETWORK_ALL_DRIVER_FLAGS) $(top_srcdir)/src/test/test-network.sh --flavor $$f $(TEST_NETWORK_FLAGS); \
  193. $(top_srcdir)/src/test/test-network.sh $(TEST_NETWORK_WARNING_FLAGS); \
  194. done; \
  195. echo "Log and result files are available in $(TEST_NETWORK_ALL_LOG_DIR)."; \
  196. ! grep -q FAIL test_network_log/*.trs
  197. need-stem-path:
  198. @if test ! -d "$$STEM_SOURCE_DIR"; then \
  199. echo '$$STEM_SOURCE_DIR was not set.'; echo; \
  200. echo "To run these tests, git clone https://git.torproject.org/stem.git/ ; export STEM_SOURCE_DIR=\`pwd\`/stem"; \
  201. exit 1; \
  202. fi
  203. test-stem: need-stem-path $(TESTING_TOR_BINARY)
  204. @$(PYTHON) "$$STEM_SOURCE_DIR"/run_tests.py --tor "$(TESTING_TOR_BINARY)" --all --log notice --target RUN_ALL;
  205. test-stem-full: need-stem-path $(TESTING_TOR_BINARY)
  206. @$(PYTHON) "$$STEM_SOURCE_DIR"/run_tests.py --tor "$(TESTING_TOR_BINARY)" --all --log notice --target RUN_ALL,ONLINE -v;
  207. test-full: need-stem-path need-chutney-path check test-network test-stem
  208. test-full-online: need-stem-path need-chutney-path check test-network test-stem-full
  209. reset-gcov:
  210. rm -f $(top_builddir)/src/*/*.gcda $(top_builddir)/src/*/*/*.gcda
  211. HTML_COVER_DIR=$(top_builddir)/coverage_html
  212. coverage-html: all
  213. if COVERAGE_ENABLED
  214. test -e "`which lcov`" || (echo "lcov must be installed. See <http://ltp.sourceforge.net/coverage/lcov.php>." && false)
  215. test -d "$(HTML_COVER_DIR)" || $(MKDIR_P) "$(HTML_COVER_DIR)"
  216. lcov --rc lcov_branch_coverage=1 --directory $(top_builddir)/src --zerocounters
  217. $(MAKE) reset-gcov
  218. $(MAKE) check
  219. lcov --capture --rc lcov_branch_coverage=1 --no-external --directory $(top_builddir) --base-directory $(top_srcdir) --output-file "$(HTML_COVER_DIR)/lcov.tmp"
  220. lcov --remove "$(HTML_COVER_DIR)/lcov.tmp" --rc lcov_branch_coverage=1 'test/*' 'ext/tinytest*' '/usr/*' --output-file "$(HTML_COVER_DIR)/lcov.info"
  221. genhtml --branch-coverage -o "$(HTML_COVER_DIR)" "$(HTML_COVER_DIR)/lcov.info"
  222. else
  223. @printf "Not configured with --enable-coverage, run ./configure --enable-coverage\n"
  224. endif
  225. coverage-html-full: all
  226. test -e "`which lcov`" || (echo "lcov must be installed. See <http://ltp.sourceforge.net/coverage/lcov.php>." && false)
  227. test -d "$(HTML_COVER_DIR)" || mkdir -p "$(HTML_COVER_DIR)"
  228. lcov --rc lcov_branch_coverage=1 --directory ./src --zerocounters
  229. $(MAKE) reset-gcov
  230. $(MAKE) check
  231. $(MAKE) test-stem-full
  232. CHUTNEY_TOR=tor-cov CHUTNEY_TOR_GENCERT=tor-cov-gencert $(top_srcdir)/src/test/test-network.sh
  233. CHUTNEY_TOR=tor-cov CHUTNEY_TOR_GENCERT=tor-cov-gencert $(top_srcdir)/src/test/test-network.sh --flavor hs
  234. lcov --capture --rc lcov_branch_coverage=1 --no-external --directory . --output-file "$(HTML_COVER_DIR)/lcov.tmp"
  235. lcov --remove "$(HTML_COVER_DIR)/lcov.tmp" --rc lcov_branch_coverage=1 'test/*' 'ext/tinytest*' '/usr/*' --output-file "$(HTML_COVER_DIR)/lcov.info"
  236. genhtml --branch-coverage -o "$(HTML_COVER_DIR)" "$(HTML_COVER_DIR)/lcov.info"
  237. # Avoid strlcpy.c, strlcat.c, aes.c, OpenBSD_malloc_Linux.c, sha256.c,
  238. # tinytest*.[ch]
  239. check-spaces:
  240. if USE_PERL
  241. $(PERL) $(top_srcdir)/scripts/maint/checkSpace.pl -C \
  242. $(top_srcdir)/src/common/*.[ch] \
  243. $(top_srcdir)/src/lib/*/*.[ch] \
  244. $(top_srcdir)/src/or/*.[ch] \
  245. $(top_srcdir)/src/or/*/*.[ch] \
  246. $(top_srcdir)/src/test/*.[ch] \
  247. $(top_srcdir)/src/test/*/*.[ch] \
  248. $(top_srcdir)/src/tools/*.[ch]
  249. endif
  250. check-includes:
  251. if USEPYTHON
  252. $(top_srcdir)/scripts/maint/checkIncludes.py
  253. endif
  254. check-docs: all
  255. $(PERL) $(top_builddir)/scripts/maint/checkOptionDocs.pl
  256. check-logs:
  257. $(top_srcdir)/scripts/maint/checkLogs.pl \
  258. $(top_srcdir)/src/*/*.[ch] | sort -n
  259. .PHONY: check-typos
  260. check-typos:
  261. @if test -x "`which misspell 2>&1;true`"; then \
  262. echo "Checking for Typos ..."; \
  263. (misspell \
  264. $(top_srcdir)/src/[^e]*/*.[ch] \
  265. $(top_srcdir)/doc \
  266. $(top_srcdir)/contrib \
  267. $(top_srcdir)/scripts \
  268. $(top_srcdir)/README \
  269. $(top_srcdir)/ChangeLog \
  270. $(top_srcdir)/INSTALL \
  271. $(top_srcdir)/ReleaseNotes \
  272. $(top_srcdir)/LICENSE); \
  273. else \
  274. echo "Tor can use misspell to check for typos."; \
  275. echo "It seems that you don't have misspell installed."; \
  276. echo "You can install the latest version of misspell here: https://github.com/client9/misspell#install"; \
  277. fi
  278. .PHONY: clippy
  279. clippy:
  280. if USE_RUST
  281. @if test -x "`which cargo-clippy 2>&1;true`"; then \
  282. echo "Running cargo clippy ..."; \
  283. echo "Prepare yourself for the onslaught of suggestions ..."; \
  284. (cd "$(top_srcdir)/src/rust" && cargo clippy); \
  285. else \
  286. echo "Tor can use clippy to lint Rust code."; \
  287. echo "However, it seems that you don't have clippy installed."; \
  288. echo "You can install the latest version of clippy by following the directions here: https://github.com/rust-lang-nursery/rust-clippy"; \
  289. fi
  290. endif
  291. .PHONY: check-changes
  292. check-changes:
  293. if USEPYTHON
  294. @if test -d "$(top_srcdir)/changes"; then \
  295. $(PYTHON) $(top_srcdir)/scripts/maint/lintChanges.py $(top_srcdir)/changes; \
  296. fi
  297. endif
  298. .PHONY: update-versions
  299. update-versions:
  300. $(PERL) $(top_builddir)/scripts/maint/updateVersions.pl
  301. .PHONY: callgraph
  302. callgraph:
  303. $(top_builddir)/scripts/maint/run_calltool.sh
  304. version:
  305. @echo "Tor @VERSION@"
  306. @if test -d "$(top_srcdir)/.git" && test -x "`which git 2>&1;true`"; then \
  307. echo -n "git: " ;\
  308. (cd "$(top_srcdir)" && git rev-parse --short=16 HEAD); \
  309. fi
  310. mostlyclean-local:
  311. rm -f $(top_builddir)/src/*/*.gc{da,no} $(top_builddir)/src/*/*/*.gc{da,no}
  312. rm -rf $(HTML_COVER_DIR)
  313. rm -rf $(top_builddir)/doc/doxygen
  314. rm -rf $(TEST_NETWORK_ALL_LOG_DIR)
  315. clean-local:
  316. rm -rf $(top_builddir)/src/rust/target
  317. rm -rf $(top_builddir)/src/rust/.cargo/registry
  318. if USE_RUST
  319. distclean-local: distclean-rust
  320. endif
  321. # This relies on some internal details of how automake implements
  322. # distcheck. We check two directories because automake-1.15 changed
  323. # from $(distdir)/_build to $(distdir)/_build/sub.
  324. show-distdir-testlog:
  325. @if test -d "$(distdir)/_build/sub"; then \
  326. cat $(distdir)/_build/sub/$(TEST_SUITE_LOG); \
  327. else \
  328. cat $(distdir)/_build/$(TEST_SUITE_LOG); fi