Makefile.am 14 KB

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