Makefile.am 14 KB

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