Makefile.am 14 KB

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