Makefile.am 13 KB

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