Makefile.am 14 KB

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