Makefile.am 13 KB

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