Makefile.am 8.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232
  1. # Copyright (c) 2001-2004, Roger Dingledine
  2. # Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson
  3. # Copyright (c) 2007-2017, 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. AM_CFLAGS=@TOR_SYSTEMD_CFLAGS@ @CFLAGS_BUGTRAP@
  18. SHELL=@SHELL@
  19. if COVERAGE_ENABLED
  20. TESTING_TOR_BINARY=$(top_builddir)/src/or/tor-cov$(EXEEXT)
  21. else
  22. TESTING_TOR_BINARY=$(top_builddir)/src/or/tor$(EXEEXT)
  23. endif
  24. include src/include.am
  25. include doc/include.am
  26. include contrib/include.am
  27. EXTRA_DIST+= \
  28. ChangeLog \
  29. INSTALL \
  30. LICENSE \
  31. Makefile.nmake \
  32. README \
  33. ReleaseNotes \
  34. scripts/maint/checkSpace.pl
  35. ## This tells etags how to find mockable function definitions.
  36. AM_ETAGSFLAGS=--regex='{c}/MOCK_IMPL([^,]+,\W*\([a-zA-Z0-9_]+\)\W*,/\1/s'
  37. if COVERAGE_ENABLED
  38. TEST_CFLAGS=-fno-inline -fprofile-arcs -ftest-coverage
  39. if DISABLE_ASSERTS_IN_UNIT_TESTS
  40. TEST_CPPFLAGS=-DTOR_UNIT_TESTS -DTOR_COVERAGE -DDISABLE_ASSERTS_IN_UNIT_TESTS
  41. else
  42. TEST_CPPFLAGS=-DTOR_UNIT_TESTS -DTOR_COVERAGE
  43. endif
  44. TEST_NETWORK_FLAGS=--coverage --hs-multi-client 1
  45. else
  46. TEST_CFLAGS=
  47. TEST_CPPFLAGS=-DTOR_UNIT_TESTS
  48. TEST_NETWORK_FLAGS=--hs-multi-client 1
  49. endif
  50. TEST_NETWORK_WARNING_FLAGS=--quiet --only-warnings
  51. if LIBFUZZER_ENABLED
  52. TEST_CFLAGS += -fsanitize-coverage=trace-pc-guard,trace-cmp,trace-div
  53. # not "edge"
  54. endif
  55. TEST_NETWORK_ALL_LOG_DIR=$(top_builddir)/test_network_log
  56. TEST_NETWORK_ALL_DRIVER_FLAGS=--color-tests yes
  57. #install-data-local:
  58. # $(INSTALL) -m 755 -d $(LOCALSTATEDIR)/lib/tor
  59. # Allows to override rpmbuild with rpmbuild-md5 from fedora-packager so that
  60. # building for EL5 won't fail on https://bugzilla.redhat.com/show_bug.cgi?id=490613
  61. RPMBUILD ?= rpmbuild
  62. # Use automake's dist-gzip target to build the tarball
  63. dist-rpm: dist-gzip
  64. TIMESTAMP=$$(date +"%Y-%m-%d_%H.%M.%S"); \
  65. RPM_BUILD_DIR=$$(mktemp -d "/tmp/tor-rpm-build-$$TIMESTAMP-XXXX"); \
  66. mkdir -p "$$RPM_BUILD_DIR"/{BUILD,RPMS,SOURCES/"tor-$(VERSION)",SPECS,SRPMS}; \
  67. cp -fa "$(distdir).tar.gz" "$$RPM_BUILD_DIR"/SOURCES/; \
  68. LIBS=-lrt $(RPMBUILD) -ba --define "_topdir $$RPM_BUILD_DIR" tor.spec; \
  69. cp -fa "$$RPM_BUILD_DIR"/SRPMS/* .; \
  70. cp -fa "$$RPM_BUILD_DIR"/RPMS/* .; \
  71. rm -rf "$$RPM_BUILD_DIR"; \
  72. echo "RPM build finished"; \
  73. #end of dist-rpm
  74. doxygen:
  75. doxygen && cd doc/doxygen/latex && make
  76. test: all
  77. $(top_builddir)/src/test/test
  78. check-local: check-spaces
  79. need-chutney-path:
  80. @if test ! -d "$$CHUTNEY_PATH"; then \
  81. echo '$$CHUTNEY_PATH was not set.'; \
  82. if test -d $(top_srcdir)/../chutney -a -x $(top_srcdir)/../chutney/chutney; then \
  83. echo "Assuming test-network.sh will find" $(top_srcdir)/../chutney; \
  84. else \
  85. echo; \
  86. echo "To run these tests, git clone https://git.torproject.org/chutney.git ; export CHUTNEY_PATH=\`pwd\`/chutney"; \
  87. exit 1; \
  88. fi \
  89. fi
  90. # Note that test-network requires a copy of Chutney in $CHUTNEY_PATH.
  91. # Chutney can be cloned from https://git.torproject.org/chutney.git .
  92. test-network: need-chutney-path $(TESTING_TOR_BINARY) src/tools/tor-gencert
  93. $(top_srcdir)/src/test/test-network.sh $(TEST_NETWORK_FLAGS)
  94. # Run all available tests using automake's test-driver
  95. # only run IPv6 tests if we can ping6 ::1 (localhost)
  96. # some IPv6 tests will fail without an IPv6 DNS server (see #16971 and #17011)
  97. # only run mixed tests if we have a tor-stable binary
  98. # Try both the BSD and the Linux ping6 syntax, because they're incompatible
  99. test-network-all: need-chutney-path test-driver $(TESTING_TOR_BINARY) src/tools/tor-gencert
  100. mkdir -p $(TEST_NETWORK_ALL_LOG_DIR)
  101. @flavors="$(TEST_CHUTNEY_FLAVORS)"; \
  102. if ping6 -q -c 1 -o ::1 >/dev/null 2>&1 || ping6 -q -c 1 -W 1 ::1 >/dev/null 2>&1; then \
  103. echo "ping6 ::1 succeeded, running IPv6 flavors: $(TEST_CHUTNEY_FLAVORS_IPV6)."; \
  104. flavors="$$flavors $(TEST_CHUTNEY_FLAVORS_IPV6)"; \
  105. else \
  106. echo "ping6 ::1 failed, skipping IPv6 flavors: $(TEST_CHUTNEY_FLAVORS_IPV6)."; \
  107. skip_flavors="$$skip_flavors $(TEST_CHUTNEY_FLAVORS_IPV6)"; \
  108. fi; \
  109. if command -v tor-stable >/dev/null 2>&1; then \
  110. echo "tor-stable found, running mixed flavors: $(TEST_CHUTNEY_FLAVORS_MIXED)."; \
  111. flavors="$$flavors $(TEST_CHUTNEY_FLAVORS_MIXED)"; \
  112. else \
  113. echo "tor-stable not found, skipping mixed flavors: $(TEST_CHUTNEY_FLAVORS_MIXED)."; \
  114. skip_flavors="$$skip_flavors $(TEST_CHUTNEY_FLAVORS_MIXED)"; \
  115. fi; \
  116. for f in $$skip_flavors; do \
  117. echo "SKIP: $$f"; \
  118. done; \
  119. for f in $$flavors; do \
  120. $(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); \
  121. $(top_srcdir)/src/test/test-network.sh $(TEST_NETWORK_WARNING_FLAGS); \
  122. done; \
  123. echo "Log and result files are available in $(TEST_NETWORK_ALL_LOG_DIR)."; \
  124. ! grep -q FAIL test_network_log/*.trs
  125. need-stem-path:
  126. @if test ! -d "$$STEM_SOURCE_DIR"; then \
  127. echo '$$STEM_SOURCE_DIR was not set.'; echo; \
  128. echo "To run these tests, git clone https://git.torproject.org/stem.git/ ; export STEM_SOURCE_DIR=\`pwd\`/stem"; \
  129. exit 1; \
  130. fi
  131. test-stem: need-stem-path $(TESTING_TOR_BINARY)
  132. @$(PYTHON) "$$STEM_SOURCE_DIR"/run_tests.py --tor "$(TESTING_TOR_BINARY)" --all --log notice --target RUN_ALL;
  133. test-stem-full: need-stem-path $(TESTING_TOR_BINARY)
  134. @$(PYTHON) "$$STEM_SOURCE_DIR"/run_tests.py --tor "$(TESTING_TOR_BINARY)" --all --log notice --target RUN_ALL,ONLINE -v;
  135. test-full: need-stem-path need-chutney-path check test-network test-stem
  136. test-full-online: need-stem-path need-chutney-path check test-network test-stem-full
  137. reset-gcov:
  138. rm -f $(top_builddir)/src/*/*.gcda $(top_builddir)/src/*/*/*.gcda
  139. HTML_COVER_DIR=$(top_builddir)/coverage_html
  140. coverage-html: all
  141. if COVERAGE_ENABLED
  142. test -e "`which lcov`" || (echo "lcov must be installed. See <http://ltp.sourceforge.net/coverage/lcov.php>." && false)
  143. test -d "$(HTML_COVER_DIR)" || $(MKDIR_P) "$(HTML_COVER_DIR)"
  144. lcov --rc lcov_branch_coverage=1 --directory $(top_builddir)/src --zerocounters
  145. $(MAKE) reset-gcov
  146. $(MAKE) check
  147. lcov --capture --rc lcov_branch_coverage=1 --no-external --directory $(top_builddir) --base-directory $(top_srcdir) --output-file "$(HTML_COVER_DIR)/lcov.tmp"
  148. lcov --remove "$(HTML_COVER_DIR)/lcov.tmp" --rc lcov_branch_coverage=1 'test/*' 'ext/tinytest*' '/usr/*' --output-file "$(HTML_COVER_DIR)/lcov.info"
  149. genhtml --branch-coverage -o "$(HTML_COVER_DIR)" "$(HTML_COVER_DIR)/lcov.info"
  150. else
  151. @printf "Not configured with --enable-coverage, run ./configure --enable-coverage\n"
  152. endif
  153. coverage-html-full: all
  154. test -e "`which lcov`" || (echo "lcov must be installed. See <http://ltp.sourceforge.net/coverage/lcov.php>." && false)
  155. test -d "$(HTML_COVER_DIR)" || mkdir -p "$(HTML_COVER_DIR)"
  156. lcov --rc lcov_branch_coverage=1 --directory ./src --zerocounters
  157. $(MAKE) reset-gcov
  158. $(MAKE) check
  159. $(MAKE) test-stem-full
  160. CHUTNEY_TOR=tor-cov CHUTNEY_TOR_GENCERT=tor-cov-gencert $(top_srcdir)/src/test/test-network.sh
  161. CHUTNEY_TOR=tor-cov CHUTNEY_TOR_GENCERT=tor-cov-gencert $(top_srcdir)/src/test/test-network.sh --flavor hs
  162. lcov --capture --rc lcov_branch_coverage=1 --no-external --directory . --output-file "$(HTML_COVER_DIR)/lcov.tmp"
  163. lcov --remove "$(HTML_COVER_DIR)/lcov.tmp" --rc lcov_branch_coverage=1 'test/*' 'ext/tinytest*' '/usr/*' --output-file "$(HTML_COVER_DIR)/lcov.info"
  164. genhtml --branch-coverage -o "$(HTML_COVER_DIR)" "$(HTML_COVER_DIR)/lcov.info"
  165. # Avoid strlcpy.c, strlcat.c, aes.c, OpenBSD_malloc_Linux.c, sha256.c,
  166. # tinytest*.[ch]
  167. check-spaces:
  168. if USE_PERL
  169. $(PERL) $(top_srcdir)/scripts/maint/checkSpace.pl -C \
  170. $(top_srcdir)/src/common/*.[ch] \
  171. $(top_srcdir)/src/or/*.[ch] \
  172. $(top_srcdir)/src/test/*.[ch] \
  173. $(top_srcdir)/src/test/*/*.[ch] \
  174. $(top_srcdir)/src/tools/*.[ch]
  175. endif
  176. check-docs: all
  177. $(PERL) $(top_builddir)/scripts/maint/checkOptionDocs.pl
  178. check-logs:
  179. $(top_srcdir)/scripts/maint/checkLogs.pl \
  180. $(top_srcdir)/src/*/*.[ch] | sort -n
  181. .PHONY: check-changes
  182. check-changes:
  183. @if test -d "$(top_srcdir)/changes"; then \
  184. $(PYTHON) $(top_srcdir)/scripts/maint/lintChanges.py $(top_srcdir)/changes/*; \
  185. fi
  186. .PHONY: update-versions
  187. update-versions:
  188. $(PERL) $(top_builddir)/scripts/maint/updateVersions.pl
  189. version:
  190. @echo "Tor @VERSION@"
  191. @if test -d "$(top_srcdir)/.git" && test -x "`which git 2>&1;true`"; then \
  192. echo -n "git: " ;\
  193. (cd "$(top_srcdir)" && git rev-parse --short=16 HEAD); \
  194. fi
  195. mostlyclean-local:
  196. rm -f $(top_builddir)/src/*/*.gc{da,no} $(top_builddir)/src/*/*/*.gc{da,no}
  197. rm -rf $(HTML_COVER_DIR)
  198. rm -rf $(top_builddir)/doc/doxygen
  199. rm -rf $(TEST_NETWORK_ALL_LOG_DIR)