Pick a date for 0.4.4.3-alpha
[tor.git] / Makefile.am
blob8a26c6403b3062d574e7cc9090e98e4c2b52f2c5
1 # Copyright (c) 2001-2004, Roger Dingledine
2 # Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson
3 # Copyright (c) 2007-2019, The Tor Project, Inc.
4 # See LICENSE for licensing information
6 ACLOCAL_AMFLAGS = -I m4
8 noinst_LIBRARIES=
9 EXTRA_DIST=
10 noinst_HEADERS=
11 bin_PROGRAMS=
12 EXTRA_PROGRAMS=
13 CLEANFILES=
14 TESTS=
15 noinst_PROGRAMS=
16 DISTCLEANFILES=
17 bin_SCRIPTS=
18 AM_CPPFLAGS=\
19         -I$(top_srcdir)/src \
20         -I$(top_srcdir)/src/ext \
21         -I$(top_srcdir)/src/ext/trunnel \
22         -I$(top_srcdir)/src/trunnel
24 AM_CFLAGS=                                      \
25         @TOR_SYSTEMD_CFLAGS@                    \
26         @CFLAGS_BUGTRAP@                        \
27         @TOR_LZMA_CFLAGS@                       \
28         @TOR_ZSTD_CFLAGS@
30 SHELL=@SHELL@
32 if COVERAGE_ENABLED
33 TESTING_TOR_BINARY=$(top_builddir)/src/app/tor-cov$(EXEEXT)
34 else
35 TESTING_TOR_BINARY=$(top_builddir)/src/app/tor$(EXEEXT)
36 endif
38 if USE_RUST
39 rust_ldadd=$(top_builddir)/$(TOR_RUST_LIB_PATH)
40 else
41 rust_ldadd=
42 endif
44 # "Common" libraries used to link tor's utility code.
45 TOR_UTIL_LIBS = \
46         src/lib/libtor-geoip.a \
47         src/lib/libtor-process.a \
48         src/lib/libtor-buf.a \
49         src/lib/libtor-confmgt.a \
50         src/lib/libtor-pubsub.a \
51         src/lib/libtor-dispatch.a \
52         src/lib/libtor-time.a \
53         src/lib/libtor-fs.a \
54         src/lib/libtor-encoding.a \
55         src/lib/libtor-sandbox.a \
56         src/lib/libtor-container.a \
57         src/lib/libtor-net.a \
58         src/lib/libtor-thread.a \
59         src/lib/libtor-memarea.a \
60         src/lib/libtor-math.a \
61         src/lib/libtor-meminfo.a \
62         src/lib/libtor-osinfo.a \
63         src/lib/libtor-log.a \
64         src/lib/libtor-lock.a \
65         src/lib/libtor-fdio.a \
66         src/lib/libtor-string.a \
67         src/lib/libtor-term.a \
68         src/lib/libtor-smartlist-core.a \
69         src/lib/libtor-malloc.a \
70         src/lib/libtor-wallclock.a \
71         src/lib/libtor-err.a \
72         src/lib/libtor-version.a \
73         src/lib/libtor-llharden.a \
74         src/lib/libtor-intmath.a \
75         src/lib/libtor-ctime.a
77 # Variants of the above for linking the testing variant of tor (for coverage
78 # and tests)
79 if UNITTESTS_ENABLED
80 TOR_UTIL_TESTING_LIBS = \
81         src/lib/libtor-geoip-testing.a \
82         src/lib/libtor-process-testing.a \
83         src/lib/libtor-buf-testing.a \
84         src/lib/libtor-confmgt-testing.a \
85         src/lib/libtor-pubsub-testing.a \
86         src/lib/libtor-dispatch-testing.a \
87         src/lib/libtor-time-testing.a \
88         src/lib/libtor-fs-testing.a \
89         src/lib/libtor-encoding-testing.a \
90         src/lib/libtor-sandbox-testing.a \
91         src/lib/libtor-container-testing.a \
92         src/lib/libtor-net-testing.a \
93         src/lib/libtor-thread-testing.a \
94         src/lib/libtor-memarea-testing.a \
95         src/lib/libtor-math-testing.a \
96         src/lib/libtor-meminfo-testing.a \
97         src/lib/libtor-osinfo-testing.a \
98         src/lib/libtor-term-testing.a \
99         src/lib/libtor-log-testing.a \
100         src/lib/libtor-lock-testing.a \
101         src/lib/libtor-fdio-testing.a \
102         src/lib/libtor-string-testing.a \
103         src/lib/libtor-smartlist-core-testing.a \
104         src/lib/libtor-malloc-testing.a \
105         src/lib/libtor-wallclock-testing.a \
106         src/lib/libtor-err-testing.a \
107         src/lib/libtor-version-testing.a \
108         src/lib/libtor-llharden-testing.a \
109         src/lib/libtor-intmath.a \
110         src/lib/libtor-ctime-testing.a
111 endif
113 # Internal crypto libraries used in Tor
114 TOR_CRYPTO_LIBS = \
115         src/lib/libtor-tls.a \
116         src/lib/libtor-crypt-ops.a \
117         $(LIBKECCAK_TINY) \
118         $(LIBDONNA)
120 # Variants of the above for linking the testing variant of tor (for coverage
121 # and tests)
122 if UNITTESTS_ENABLED
123 TOR_CRYPTO_TESTING_LIBS = \
124         src/lib/libtor-tls-testing.a \
125         src/lib/libtor-crypt-ops-testing.a \
126         $(LIBKECCAK_TINY) \
127         $(LIBDONNA)
128 endif
130 # All static libraries used to link tor.
131 TOR_INTERNAL_LIBS = \
132         src/core/libtor-app.a \
133         src/lib/libtor-compress.a \
134         src/lib/libtor-evloop.a \
135         $(TOR_CRYPTO_LIBS) \
136         $(TOR_UTIL_LIBS) \
137         src/trunnel/libor-trunnel.a \
138         src/lib/libtor-trace.a
140 # Variants of the above for linking the testing variant of tor (for coverage
141 # and tests)
142 if UNITTESTS_ENABLED
143 TOR_INTERNAL_TESTING_LIBS = \
144         src/core/libtor-app-testing.a \
145         src/lib/libtor-compress-testing.a \
146         src/lib/libtor-evloop-testing.a \
147         $(TOR_CRYPTO_TESTING_LIBS) \
148         $(TOR_UTIL_TESTING_LIBS) \
149         src/trunnel/libor-trunnel-testing.a \
150         src/lib/libtor-trace.a
151 endif
153 TOR_LDFLAGS_CRYPTLIB=@TOR_LDFLAGS_openssl@
154 TOR_LIBS_CRYPTLIB=@TOR_OPENSSL_LIBS@
155 TOR_CFLAGS_CRYPTLIB=
156 if USE_NSS
157 TOR_CFLAGS_CRYPTLIB+=@NSS_CFLAGS@
158 TOR_LIBS_CRYPTLIB+=@NSS_LIBS@
159 endif
161 # All libraries used to link tor-cov
163 include src/include.am
164 include doc/include.am
165 include contrib/include.am
167 EXTRA_DIST+= \
168         ChangeLog                                                       \
169         CONTRIBUTING                                                    \
170         CODE_OF_CONDUCT                                                 \
171         INSTALL                                                         \
172         LICENSE                                                         \
173         Makefile.nmake                                                  \
174         README                                                          \
175         ReleaseNotes                                                    \
176         scripts/maint/checkIncludes.py                                  \
177         scripts/maint/checkSpace.pl                                     \
178         scripts/maint/checkSpaceTest.sh                                 \
179         scripts/maint/checkspace_tests/dubious.c                        \
180         scripts/maint/checkspace_tests/dubious.h                        \
181         scripts/maint/checkspace_tests/expected.txt                     \
182         scripts/maint/checkspace_tests/good_guard.h                     \
183         scripts/maint/checkspace_tests/same_guard.h                     \
184         scripts/maint/checkspace_tests/subdir/dubious.c                 \
185         scripts/maint/checkShellScripts.sh                              \
186         scripts/maint/practracker/README                                \
187         scripts/maint/practracker/exceptions.txt                        \
188         scripts/maint/practracker/includes.py                           \
189         scripts/maint/practracker/metrics.py                            \
190         scripts/maint/practracker/practracker.py                        \
191         scripts/maint/practracker/practracker_tests.py                  \
192         scripts/maint/practracker/problem.py                            \
193         scripts/maint/practracker/testdata/.may_include                 \
194         scripts/maint/practracker/testdata/a.c                          \
195         scripts/maint/practracker/testdata/b.c                          \
196         scripts/maint/practracker/testdata/ex0-expected.txt             \
197         scripts/maint/practracker/testdata/ex0.txt                      \
198         scripts/maint/practracker/testdata/ex1-expected.txt             \
199         scripts/maint/practracker/testdata/ex1.txt                      \
200         scripts/maint/practracker/testdata/ex1-overbroad-expected.txt   \
201         scripts/maint/practracker/testdata/ex1-regen-expected.txt       \
202         scripts/maint/practracker/testdata/ex1-regen-overbroad-expected.txt \
203         scripts/maint/practracker/testdata/ex.txt                       \
204         scripts/maint/practracker/testdata/header.h                     \
205         scripts/maint/practracker/testdata/not_c_file                   \
206         scripts/maint/practracker/test_practracker.sh                   \
207         scripts/maint/practracker/util.py                               \
208         scripts/coccinelle/apply.sh                                     \
209         scripts/coccinelle/check_cocci_parse.sh                         \
210         scripts/coccinelle/exceptions.txt                               \
211         scripts/coccinelle/test-operator-cleanup                        \
212         scripts/coccinelle/tor-coccinelle.h                             \
213         scripts/coccinelle/try_parse.sh
215 ## This tells etags how to find mockable function definitions.
216 AM_ETAGSFLAGS=--regex='{c}/MOCK_IMPL([^,]+,\W*\([a-zA-Z0-9_]+\)\W*,/\1/s'
218 if COVERAGE_ENABLED
219 TEST_CFLAGS=-fno-inline -fprofile-arcs -ftest-coverage
220 if DISABLE_ASSERTS_IN_UNIT_TESTS
221 TEST_CPPFLAGS=-DTOR_UNIT_TESTS -DTOR_COVERAGE -DDISABLE_ASSERTS_IN_UNIT_TESTS @TOR_MODULES_ALL_ENABLED@
222 else
223 TEST_CPPFLAGS=-DTOR_UNIT_TESTS -DTOR_COVERAGE @TOR_MODULES_ALL_ENABLED@
224 endif
225 TEST_NETWORK_FLAGS=--coverage --hs-multi-client 1
226 else
227 TEST_CFLAGS=
228 TEST_CPPFLAGS=-DTOR_UNIT_TESTS @TOR_MODULES_ALL_ENABLED@
229 TEST_NETWORK_FLAGS=--hs-multi-client 1
230 endif
231 TEST_NETWORK_SHOW_WARNINGS_FOR_LAST_RUN_FLAGS=--quiet --only-warnings
233 if LIBFUZZER_ENABLED
234 TEST_CFLAGS += -fsanitize-coverage=trace-pc-guard,trace-cmp,trace-div
235 # not "edge"
236 endif
238 TEST_NETWORK_ALL_LOG_DIR=$(top_builddir)/test_network_log
239 TEST_NETWORK_ALL_DRIVER_FLAGS=--color-tests yes
241 #install-data-local:
242 #       $(INSTALL) -m 755 -d $(LOCALSTATEDIR)/lib/tor
244 # Allows to override rpmbuild with rpmbuild-md5 from fedora-packager so that
245 # building for EL5 won't fail on https://bugzilla.redhat.com/show_bug.cgi?id=490613
246 RPMBUILD ?= rpmbuild
248 # Use automake's dist-gzip target to build the tarball
249 dist-rpm: dist-gzip
250         TIMESTAMP=$$(date +"%Y-%m-%d_%H.%M.%S");                                \
251         RPM_BUILD_DIR=$$(mktemp -d "/tmp/tor-rpm-build-$$TIMESTAMP-XXXX");      \
252         mkdir -p "$$RPM_BUILD_DIR"/{BUILD,RPMS,SOURCES/"tor-$(VERSION)",SPECS,SRPMS}; \
253         cp -fa "$(distdir).tar.gz" "$$RPM_BUILD_DIR"/SOURCES/;                  \
254         LIBS=-lrt $(RPMBUILD) -ba --define "_topdir $$RPM_BUILD_DIR" tor.spec;  \
255         cp -fa "$$RPM_BUILD_DIR"/SRPMS/* .;                                     \
256         cp -fa "$$RPM_BUILD_DIR"/RPMS/* .;                                      \
257         rm -rf "$$RPM_BUILD_DIR";                                               \
258         echo "RPM build finished";                                              \
259         #end of dist-rpm
261 .PHONY: doxygen
262 doxygen: Doxyfile
263         mkdir -p doc/doxygen
264         (cd "$(top_srcdir)" && doxygen "$(abs_top_builddir)/Doxyfile")
266 test: all
267         $(top_builddir)/src/test/test
269 shellcheck:
270         $(top_srcdir)/scripts/maint/checkShellScripts.sh
272 check-local:                                    \
273         check-spaces                            \
274         check-changes                           \
275         check-includes                          \
276         check-best-practices                    \
277         shellcheck
279 # test-network requires a copy of Chutney in $CHUTNEY_PATH.
280 # Chutney can be cloned from https://git.torproject.org/chutney.git .
281 .PHONY: need-chutney-path
282 need-chutney-path:
283         @if test ! -d "$$CHUTNEY_PATH"; then \
284                 echo '$$CHUTNEY_PATH was not set.'; \
285                 if test -d "$(top_srcdir)/../chutney" && \
286                    test -x "$(top_srcdir)/../chutney/chutney"; then \
287                         echo "Assuming test-network.sh will find" \
288                           "$(top_srcdir)/../chutney"; \
289                 else \
290                         echo; \
291                         echo "To run these tests," \
292                           "git clone" \
293                           "https://git.torproject.org/chutney.git ;" \
294                           "export CHUTNEY_PATH=\`pwd\`/chutney"; \
295                         exit 1; \
296                 fi \
297         fi
299 # Run some basic tests using automake's test-driver
300 .PHONY: test-network
301 # Hide directory path logs from submakes using $(MAKE) -s
302 test-network:
303         @$(MAKE) -s test-network-mkdir
304         @$(MAKE) -s test-network-clean
305         @$(MAKE) -s test-network-run \
306           ipv4_flavors="$(TEST_CHUTNEY_FLAVOR_QUICK)" \
307           ipv6_flavors="$(TEST_CHUTNEY_FLAVOR_QUICK_IPV6)"
308         @$(MAKE) -s test-network-results
310 # Run all available tests using automake's test-driver
311 .PHONY: test-network-all
312 # Hide directory path logs from submakes using $(MAKE) -s
313 test-network-all:
314         @$(MAKE) -s test-network-mkdir
315         @$(MAKE) -s test-network-clean
316         @$(MAKE) -s test-network-run \
317           ipv4_flavors="$(TEST_CHUTNEY_FLAVORS)" \
318           mixed_flavors="$(TEST_CHUTNEY_FLAVORS_MIXED)" \
319           ipv6_flavors="$(TEST_CHUTNEY_FLAVORS_IPV6)" \
320           ipv6_mixed_flavors="$(TEST_CHUTNEY_FLAVORS_IPV6_MIXED)"
321         @$(MAKE) -s test-network-results
323 # Run IPv4 and mixed tests using automake's test-driver
324 .PHONY: test-network-ipv4
325 # Hide directory path logs from submakes using $(MAKE) -s
326 test-network-ipv4:
327         @$(MAKE) -s test-network-mkdir
328         @$(MAKE) -s test-network-clean
329         @$(MAKE) -s test-network-run \
330           ipv4_flavors="$(TEST_CHUTNEY_FLAVORS)" \
331           mixed_flavors="$(TEST_CHUTNEY_FLAVORS_MIXED)"
332         @$(MAKE) -s test-network-results
334 # Run IPv6 tests using automake's test-driver
335 .PHONY: test-network-ipv6
336 # Hide directory path logs from submakes using $(MAKE) -s
337 test-network-ipv6:
338         @$(MAKE) -s test-network-mkdir
339         @$(MAKE) -s test-network-clean
340         @$(MAKE) -s test-network-run \
341           ipv6_flavors="$(TEST_CHUTNEY_FLAVORS_IPV6)" \
342           ipv6_mixed_flavors="$(TEST_CHUTNEY_FLAVORS_IPV6_MIXED)"
343         @$(MAKE) -s test-network-results
345 # Make the test network log directory, if it does not exist
346 .PHONY: test-network-mkdir
347 test-network-mkdir:
348         @mkdir -p "$(TEST_NETWORK_ALL_LOG_DIR)"
350 # Clean the test network log directory
351 .PHONY: test-network-clean
352 # We need to remove all matching files, so we can't quote the glob part of the
353 # rm arguments
354 test-network-clean:
355         rm -f "$(TEST_NETWORK_ALL_LOG_DIR)"/*.log \
356               "$(TEST_NETWORK_ALL_LOG_DIR)"/*.trs
358 # Run tests using automake's test-driver
359 # When checking if a set of test can be run, log the type of test, and the
360 # list of tests that will be run (or skipped).
362 # Run the IPv4 tests in $(ipv4_flavors), unconditionally
363 #   - tor relays and directory authorities require IPv4.
364 # Run the IPv6 tests in $(ipv6_flavors), if IPv6 is available
365 #   - only run IPv6 tests if we can ping6 or ping -6 ::1 (localhost)
366 #     we try the syntax for BSD ping6, Linux ping6, and Linux ping -6,
367 #     because they're incompatible
368 #   - some IPv6 tests may fail without an IPv6 DNS server
369 #     (see #16971 and #17011)
370 # Run the mixed tests in $(mixed_flavors), if a tor-stable binary is available
371 #   - only run mixed tests if we have a tor-stable binary
372 # Run the IPv6 mixed tests in $(ipv6_mixed_flavors), if IPv6 and mixed are run
373 #   - see above for details about IPv6 and mixed
374 .PHONY: test-network-run
375 # We need the word splitting in the "for" lines, so we can't quote
376 # $(skip_flavors) or $(flavors)
377 test-network-run: need-chutney-path test-driver $(TESTING_TOR_BINARY) src/tools/tor-gencert
378         @flavors=""; \
379         skip_flavors=""; \
380         if test -n "$(ipv4_flavors)"; then \
381                 echo "Running IPv4 flavors: $(ipv4_flavors)."; \
382                 flavors="$$flavors $(ipv4_flavors)"; \
383         fi; \
384         test_network_ipv6=false; \
385         if test -n "$(ipv6_flavors)" || \
386            test -n "$(ipv6_mixed_flavors)"; then \
387                 if ping6 -q -c 1 -o   ::1 >/dev/null 2>&1 || \
388                    ping6 -q -c 1 -W 1 ::1 >/dev/null 2>&1 || \
389                    ping  -6 -c 1 -W 1 ::1 >/dev/null 2>&1; then \
390                         test_network_ipv6=true; \
391                 fi; \
392         fi; \
393         if test -n "$(ipv6_flavors)"; then \
394                 if test "$$test_network_ipv6" = "true"; then \
395                         echo "ping6 ::1 or ping ::1 succeeded, running IPv6" \
396                           "flavors: $(ipv6_flavors)."; \
397                         flavors="$$flavors $(ipv6_flavors)"; \
398                 else \
399                         echo "ping6 ::1 and ping ::1 failed, skipping IPv6" \
400                           "flavors: $(ipv6_flavors)."; \
401                         skip_flavors="$$skip_flavors $(ipv6_flavors)"; \
402                 fi; \
403         fi; \
404         test_network_mixed=false; \
405         if test -n "$(mixed_flavors)" || \
406            test -n "$(ipv6_mixed_flavors)"; then \
407                 if command -v tor-stable >/dev/null 2>&1; then \
408                         test_network_mixed=true; \
409                 fi; \
410         fi; \
411         if test -n "$(mixed_flavors)"; then \
412                 if test "$$test_network_mixed" = "true"; then \
413                         echo "tor-stable found, running mixed flavors:" \
414                           "$(mixed_flavors)."; \
415                         flavors="$$flavors $(mixed_flavors)"; \
416                 else \
417                         echo "tor-stable not found, skipping mixed flavors:" \
418                           "$(mixed_flavors)."; \
419                         skip_flavors="$$skip_flavors $(mixed_flavors)"; \
420                 fi; \
421         fi; \
422         if test -n "$(ipv6_mixed_flavors)"; then \
423                 if test "$$test_network_ipv6" = "true" && \
424                    test "$$test_network_mixed" = "true"; then \
425                         echo "Running IPv6 mixed flavors:" \
426                           "$(ipv6_mixed_flavors)."; \
427                         flavors="$$flavors $(ipv6_mixed_flavors)"; \
428                 else \
429                         echo "Skipping IPv6 mixed flavors:" \
430                           "$(ipv6_mixed_flavors)."; \
431                         skip_flavors="$$skip_flavors $(ipv6_mixed_flavors)"; \
432                 fi; \
433         fi; \
434         for f in $$skip_flavors; do \
435                 echo "SKIP: $$f"; \
436         done; \
437         for f in $$flavors; do \
438                 $(SHELL) "$(top_srcdir)/test-driver" --test-name "$$f" \
439                   --log-file "$(TEST_NETWORK_ALL_LOG_DIR)/$$f.log" \
440                   --trs-file "$(TEST_NETWORK_ALL_LOG_DIR)/$$f.trs" \
441                   $(TEST_NETWORK_ALL_DRIVER_FLAGS) \
442                   "$(top_srcdir)/src/test/test-network.sh" \
443                     --flavor "$$f" $(TEST_NETWORK_FLAGS); \
444                 "$(top_srcdir)/src/test/test-network.sh" \
445                   $(TEST_NETWORK_SHOW_WARNINGS_FOR_LAST_RUN_FLAGS); \
446         done
448 # Print the results from automake's test-driver
449 #   - show tor warnings on the console after each network run
450 #     (otherwise, warnings go to the logs, and people don't see them unless
451 #     there is a network failure)
452 .PHONY: test-network-results
453 # We need to grep all matching files, so we can't quote the glob part of the
454 # grep arguments
455 test-network-results:
456         @echo \
457           "Log and result files are available in $(TEST_NETWORK_ALL_LOG_DIR)."
458         @! grep -q FAIL "$(TEST_NETWORK_ALL_LOG_DIR)"/*.trs
460 need-stem-path:
461         @if test ! -d "$$STEM_SOURCE_DIR"; then \
462                 echo '$$STEM_SOURCE_DIR was not set.'; echo; \
463                 echo "To run these tests, git clone https://git.torproject.org/stem.git/ ; export STEM_SOURCE_DIR=\`pwd\`/stem"; \
464                 exit 1; \
465         fi
467 test-stem: need-stem-path $(TESTING_TOR_BINARY)
468         @$(PYTHON) "$$STEM_SOURCE_DIR"/run_tests.py --tor "$(TESTING_TOR_BINARY)" --integ --test control.controller --test control.base_controller --test process --log notice;
470 test-stem-full: need-stem-path $(TESTING_TOR_BINARY)
471         @$(PYTHON) "$$STEM_SOURCE_DIR"/run_tests.py --tor "$(TESTING_TOR_BINARY)" --all --log notice --target RUN_ALL,ONLINE -v;
473 test-full:                                      \
474         need-stem-path                          \
475         need-chutney-path                       \
476         check                                   \
477         test-network                            \
478         test-stem
480 test-full-online:                               \
481         need-stem-path                          \
482         need-chutney-path                       \
483         check                                   \
484         test-network                            \
485         test-stem-full
487 # We can't delete the gcno files, because they are created when tor is compiled
488 reset-gcov:
489         rm -f $(top_builddir)/src/*/*.gcda $(top_builddir)/src/*/*/*.gcda \
490               $(top_builddir)/src/*/*.gcov $(top_builddir)/src/*/*/*.gcov
492 HTML_COVER_DIR=$(top_builddir)/coverage_html
493 coverage-html: all
494 if COVERAGE_ENABLED
495         test -e "`which lcov`" || (echo "lcov must be installed. See <http://ltp.sourceforge.net/coverage/lcov.php>." && false)
496         test -d "$(HTML_COVER_DIR)" || $(MKDIR_P) "$(HTML_COVER_DIR)"
497         lcov --rc lcov_branch_coverage=1 --directory $(top_builddir)/src --zerocounters
498         $(MAKE) reset-gcov
499         $(MAKE) check
500         lcov --capture --rc lcov_branch_coverage=1 --no-external --directory $(top_builddir) --base-directory $(top_srcdir) --output-file "$(HTML_COVER_DIR)/lcov.tmp"
501         lcov --remove "$(HTML_COVER_DIR)/lcov.tmp" --rc lcov_branch_coverage=1 'test/*' 'ext/tinytest*' '/usr/*' --output-file "$(HTML_COVER_DIR)/lcov.info"
502         genhtml --branch-coverage -o "$(HTML_COVER_DIR)" "$(HTML_COVER_DIR)/lcov.info"
503 else
504         @printf "Not configured with --enable-coverage, run ./configure --enable-coverage\n"
505 endif
507 coverage-html-full: all
508         test -e "`which lcov`" || (echo "lcov must be installed. See <http://ltp.sourceforge.net/coverage/lcov.php>." && false)
509         test -d "$(HTML_COVER_DIR)" || mkdir -p "$(HTML_COVER_DIR)"
510         lcov --rc lcov_branch_coverage=1 --directory ./src --zerocounters
511         $(MAKE) reset-gcov
512         $(MAKE) check
513         $(MAKE) test-stem-full
514         CHUTNEY_TOR=tor-cov CHUTNEY_TOR_GENCERT=tor-cov-gencert $(top_srcdir)/src/test/test-network.sh
515         CHUTNEY_TOR=tor-cov CHUTNEY_TOR_GENCERT=tor-cov-gencert $(top_srcdir)/src/test/test-network.sh --flavor hs
516         lcov --capture --rc lcov_branch_coverage=1 --no-external --directory . --output-file "$(HTML_COVER_DIR)/lcov.tmp"
517         lcov --remove "$(HTML_COVER_DIR)/lcov.tmp" --rc lcov_branch_coverage=1 'test/*' 'ext/tinytest*' '/usr/*' --output-file "$(HTML_COVER_DIR)/lcov.info"
518         genhtml --branch-coverage -o "$(HTML_COVER_DIR)" "$(HTML_COVER_DIR)/lcov.info"
520 # For scripts: avoid src/ext and src/trunnel.
521 # Keep these lists consistent:
522 #   - OWNED_TOR_C_FILES in Makefile.am
523 #   - CHECK_FILES in pre-commit.git-hook and pre-push.git-hook
524 #   - try_parse in check_cocci_parse.sh
525 OWNED_TOR_C_FILES=\
526                 $(top_srcdir)/src/lib/*/*.[ch] \
527                 $(top_srcdir)/src/core/*/*.[ch] \
528                 $(top_srcdir)/src/feature/*/*.[ch] \
529                 $(top_srcdir)/src/app/*/*.[ch] \
530                 $(top_srcdir)/src/test/*.[ch] \
531                 $(top_srcdir)/src/test/*/*.[ch] \
532                 $(top_srcdir)/src/tools/*.[ch]
534 check-spaces:
535 if USE_PERL
536         $(PERL) $(top_srcdir)/scripts/maint/checkSpace.pl -C \
537                 $(OWNED_TOR_C_FILES)
538 endif
540 check-includes:
541 if USEPYTHON
542         $(PYTHON) $(top_srcdir)/scripts/maint/practracker/includes.py $(top_srcdir)
543 endif
545 check-best-practices:
546 if USEPYTHON
547         @$(PYTHON) $(top_srcdir)/scripts/maint/practracker/practracker.py $(top_srcdir) $(TOR_PRACTRACKER_OPTIONS)
548 endif
550 check-cocci:
551         VERBOSE=1 $(top_srcdir)/scripts/coccinelle/check_cocci_parse.sh $(OWNED_TOR_C_FILES)
553 practracker-regen:
554         $(PYTHON) $(top_srcdir)/scripts/maint/practracker/practracker.py --regen $(top_srcdir)
556 check-docs: all
557         $(PERL) $(top_builddir)/scripts/maint/checkOptionDocs.pl
559 check-logs:
560         $(top_srcdir)/scripts/maint/checkLogs.pl \
561                 $(top_srcdir)/src/*/*.[ch] | sort -n
563 .PHONY: check-typos
564 check-typos:
565         @if test -x "`which misspell 2>&1;true`"; then \
566                 echo "Checking for Typos ..."; \
567                 (misspell \
568                         $(top_srcdir)/src/[^e]*/*.[ch] \
569                         $(top_srcdir)/doc \
570                         $(top_srcdir)/contrib \
571                         $(top_srcdir)/scripts \
572                         $(top_srcdir)/README \
573                         $(top_srcdir)/ChangeLog \
574                         $(top_srcdir)/INSTALL \
575                         $(top_srcdir)/ReleaseNotes \
576                         $(top_srcdir)/LICENSE); \
577         else \
578                 echo "Tor can use misspell to check for typos."; \
579                 echo "It seems that you don't have misspell installed."; \
580                 echo "You can install the latest version of misspell here: https://github.com/client9/misspell#install"; \
581         fi
583 .PHONY: rustfmt
584 rustfmt:
585 if USE_RUST
586         @if test -x "`which cargo-fmt 2>&1;true`"; then \
587                 echo "Formatting Rust code ..."; \
588                 (cd "$(top_srcdir)/src/rust" && cargo fmt --all --); \
589         else \
590                 echo "Tor uses rustfmt (via cargo-fmt) to format Rust code."; \
591                 echo "However, it seems that you don't have rustfmt installed."; \
592                 printf "You can install rustfmt by following the directions here:"; \
593                 echo " https://github.com/rust-lang-nursery/rustfmt"; \
594         fi
595 endif
597 .PHONY: check-rustfmt
598 check-rustfmt:
599 if USE_RUST
600         @if test -x "`which cargo-fmt 2>&1;true`"; then \
601                 printf "Running rustfmt..."; \
602                 (cd "$(top_srcdir)/src/rust" && cargo fmt --all -- --check && echo "done.") || \
603                 (echo "**************** check-rustfmt failed. ****************"; \
604                  echo "   Run \`make rustfmt\` to apply the above changes."; \
605                  exit 1); \
606         else \
607                 echo "Tor uses rustfmt (via cargo-fmt) to format Rust code."; \
608                 echo "However, it seems that you don't have rustfmt installed."; \
609                 printf "You can install rustfmt by following the directions here:"; \
610                 echo " https://github.com/rust-lang-nursery/rustfmt"; \
611         fi
612 endif
614 .PHONY: clippy
615 clippy:
616 if USE_RUST
617         @if test -x "`which cargo-clippy 2>&1;true`"; then \
618                 echo "Running cargo clippy ..."; \
619                 echo "Prepare yourself for the onslaught of suggestions ..."; \
620                 (cd "$(top_srcdir)/src/rust" && cargo clippy); \
621         else \
622                 echo "Tor can use clippy to lint Rust code."; \
623                 echo "However, it seems that you don't have clippy installed."; \
624                 echo "You can install the latest version of clippy by following the directions here: https://github.com/rust-lang-nursery/rust-clippy"; \
625         fi
626 endif
628 .PHONY: check-changes
629 check-changes:
630 if USEPYTHON
631         @if test -d "$(top_srcdir)/changes"; then \
632                 PACKAGE_VERSION=$(PACKAGE_VERSION) $(PYTHON) $(top_srcdir)/scripts/maint/lintChanges.py $(top_srcdir)/changes; \
633                 fi
634 endif
636 .PHONY: update-versions
637 update-versions:
638         abs_top_srcdir="$(abs_top_srcdir)" $(PYTHON) $(top_srcdir)/scripts/maint/update_versions.py
640 .PHONY: callgraph
641 callgraph:
642         cd $(top_builddir); $(abs_top_srcdir)/scripts/maint/run_calltool.sh
644 version:
645         @echo "Tor @VERSION@"
646         @if test -d "$(top_srcdir)/.git" && test -x "`which git 2>&1;true`"; then \
647            echo -n "git: " ;\
648            (cd "$(top_srcdir)" && git rev-parse --short=16 HEAD); \
649         fi
651 .PHONY: autostyle-ifdefs
652 autostyle-ifdefs:
653         $(PYTHON) $(top_srcdir)/scripts/maint/annotate_ifdef_directives.py $(OWNED_TOR_C_FILES)
655 .PHONY: autostyle-ifdefs
656 autostyle-operators:
657         $(PERL) $(top_srcdir)/scripts/coccinelle/test-operator-cleanup $(OWNED_TOR_C_FILES)
659 .PHONY: rectify-includes
660 rectify-includes:
661         cd $(top_srcdir); $(PYTHON) $(abs_top_srcdir)/scripts/maint/rectify_include_paths.py
663 .PHONY: update-copyright
664 update-copyright:
665         $(PERL) $(top_srcdir)/scripts/maint/updateCopyright.pl $(OWNED_TOR_C_FILES)
667 .PHONY: autostyle
668 autostyle: update-versions rustfmt autostyle-ifdefs rectify-includes
670 mostlyclean-local:
671         rm -f $(top_builddir)/src/*/*.gc{da,no} $(top_builddir)/src/*/*/*.gc{da,no}
672         rm -rf $(HTML_COVER_DIR)
673         rm -rf $(top_builddir)/doc/doxygen
674         rm -rf $(TEST_NETWORK_ALL_LOG_DIR)
676 clean-local:
677         rm -rf $(top_builddir)/src/rust/target
678         rm -rf $(top_builddir)/src/rust/.cargo/registry
680 if USE_RUST
681 distclean-local: distclean-rust
682 endif
684 # This relies on some internal details of how automake implements
685 # distcheck.  We check two directories because automake-1.15 changed
686 # from $(distdir)/_build to $(distdir)/_build/sub.
687 show-distdir-testlog:
688         @if test -d "$(distdir)/_build/sub"; then \
689           cat $(distdir)/_build/sub/$(TEST_SUITE_LOG); \
690         else \
691           cat $(distdir)/_build/$(TEST_SUITE_LOG); fi
693 # Similarly, this relies on automake internals to run file on an
694 # intermittent core file whose provenance is not known to us.  See
695 # ticket 26787.
696 show-distdir-core:
697         @if test -d "$(distdir)/_build/sub"; then \
698           file $(distdir)/_build/sub/core ; \
699         else \
700           file $(distdir)/_build/core; fi
702 show-libs:
703         @echo $(TOR_INTERNAL_LIBS)
705 show-testing-libs:
706         @echo $(TOR_INTERNAL_TESTING_LIBS)