Makefile.am 11 KB

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