Makefile.am 12 KB

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