2020-12-08 18:23:35 +03:00
|
|
|
#!/bin/sh
|
|
|
|
|
2023-02-21 16:38:22 +03:00
|
|
|
# This comment is used to simplify checking local copies of the script. Bump
|
|
|
|
# this number every time a significant change is made to this script.
|
|
|
|
#
|
2024-08-20 18:38:04 +03:00
|
|
|
# AdGuard-Project-Version: 8
|
2023-02-21 16:38:22 +03:00
|
|
|
|
2020-12-30 18:26:25 +03:00
|
|
|
verbose="${VERBOSE:-0}"
|
2023-02-21 16:38:22 +03:00
|
|
|
readonly verbose
|
2020-12-30 18:26:25 +03:00
|
|
|
|
|
|
|
if [ "$verbose" -gt '0' ]
|
|
|
|
then
|
|
|
|
set -x
|
|
|
|
fi
|
|
|
|
|
|
|
|
# Set $EXIT_ON_ERROR to zero to see all errors.
|
2021-05-19 20:31:20 +03:00
|
|
|
if [ "${EXIT_ON_ERROR:-1}" -eq '0' ]
|
2020-12-30 18:26:25 +03:00
|
|
|
then
|
|
|
|
set +e
|
|
|
|
else
|
|
|
|
set -e
|
|
|
|
fi
|
2020-12-08 18:23:35 +03:00
|
|
|
|
|
|
|
set -f -u
|
|
|
|
|
2021-02-04 14:15:34 +03:00
|
|
|
|
|
|
|
|
2023-02-21 16:38:22 +03:00
|
|
|
# Source the common helpers, including not_found and run_linter.
|
|
|
|
. ./scripts/make/helper.sh
|
2020-12-10 14:35:07 +03:00
|
|
|
|
2021-02-04 14:15:34 +03:00
|
|
|
|
|
|
|
|
2023-02-21 16:38:22 +03:00
|
|
|
# Simple analyzers
|
2021-02-04 14:15:34 +03:00
|
|
|
|
2021-07-29 17:40:31 +03:00
|
|
|
# blocklist_imports is a simple check against unwanted packages. The following
|
|
|
|
# packages are banned:
|
|
|
|
#
|
2024-08-20 18:38:04 +03:00
|
|
|
# * Package errors is replaced by our own package in the
|
2021-07-29 17:40:31 +03:00
|
|
|
# github.com/AdguardTeam/golibs module.
|
|
|
|
#
|
2024-08-20 18:38:04 +03:00
|
|
|
# * Packages golang.org/x/exp/slices and golang.org/x/net/context have been
|
|
|
|
# moved into stdlib.
|
|
|
|
#
|
2022-01-19 15:06:23 +03:00
|
|
|
# * Package io/ioutil is soft-deprecated.
|
|
|
|
#
|
2021-07-29 17:40:31 +03:00
|
|
|
# * Package reflect is often an overkill, and for deep comparisons there are
|
|
|
|
# much better functions in module github.com/google/go-cmp. Which is
|
|
|
|
# already our indirect dependency and which may or may not enter the stdlib
|
|
|
|
# at some point.
|
|
|
|
#
|
|
|
|
# See https://github.com/golang/go/issues/45200.
|
|
|
|
#
|
2024-02-08 20:39:18 +03:00
|
|
|
# * Package sort is replaced by package slices.
|
2023-02-21 16:38:22 +03:00
|
|
|
#
|
2021-07-29 17:40:31 +03:00
|
|
|
# * Package unsafe is… unsafe.
|
|
|
|
#
|
2024-10-29 14:28:59 +03:00
|
|
|
# If your project needs more exceptions, add and document them. Currently,
|
|
|
|
# there are only two standard exceptions:
|
|
|
|
#
|
|
|
|
# * Files generated from protobuf schemas, which use package reflect.
|
|
|
|
#
|
|
|
|
# * Windows-specific code caused by golang.org/x/sys/windows API design.
|
2023-06-13 13:41:13 +03:00
|
|
|
#
|
2024-02-13 18:30:14 +03:00
|
|
|
# TODO(a.garipov): Add golibs/log.
|
2024-02-08 20:39:18 +03:00
|
|
|
#
|
|
|
|
# TODO(a.garipov): Add deprecated package golang.org/x/exp/maps once all
|
2024-08-20 18:38:04 +03:00
|
|
|
# projects switch to Go 1.23.
|
2020-12-10 14:35:07 +03:00
|
|
|
blocklist_imports() {
|
2021-07-29 17:40:31 +03:00
|
|
|
git grep\
|
|
|
|
-e '[[:space:]]"errors"$'\
|
2024-08-20 18:38:04 +03:00
|
|
|
-e '[[:space:]]"golang.org/x/exp/slices"$'\
|
|
|
|
-e '[[:space:]]"golang.org/x/net/context"$'\
|
2021-07-29 17:40:31 +03:00
|
|
|
-e '[[:space:]]"io/ioutil"$'\
|
|
|
|
-e '[[:space:]]"log"$'\
|
|
|
|
-e '[[:space:]]"reflect"$'\
|
2023-02-21 16:38:22 +03:00
|
|
|
-e '[[:space:]]"sort"$'\
|
2021-07-29 17:40:31 +03:00
|
|
|
-e '[[:space:]]"unsafe"$'\
|
2022-01-19 15:06:23 +03:00
|
|
|
-n\
|
|
|
|
-- '*.go'\
|
2023-06-13 13:41:13 +03:00
|
|
|
':!*.pb.go'\
|
2024-10-29 14:28:59 +03:00
|
|
|
':!./internal/aghos/permission_windows.go'\
|
2022-01-19 15:06:23 +03:00
|
|
|
| sed -e 's/^\([^[:space:]]\+\)\(.*\)$/\1 blocked import:\2/'\
|
|
|
|
|| exit 0
|
2020-12-08 18:23:35 +03:00
|
|
|
}
|
|
|
|
|
2021-05-19 20:31:20 +03:00
|
|
|
# method_const is a simple check against the usage of some raw strings and
|
|
|
|
# numbers where one should use named constants.
|
2021-02-04 14:15:34 +03:00
|
|
|
method_const() {
|
2022-01-19 15:06:23 +03:00
|
|
|
git grep -F\
|
|
|
|
-e '"DELETE"'\
|
|
|
|
-e '"GET"'\
|
2023-06-13 13:41:13 +03:00
|
|
|
-e '"PATCH"'\
|
2022-01-19 15:06:23 +03:00
|
|
|
-e '"POST"'\
|
|
|
|
-e '"PUT"'\
|
|
|
|
-n\
|
|
|
|
-- '*.go'\
|
|
|
|
| sed -e 's/^\([^[:space:]]\+\)\(.*\)$/\1 http method literal:\2/'\
|
|
|
|
|| exit 0
|
2021-02-04 14:15:34 +03:00
|
|
|
}
|
|
|
|
|
2022-01-19 15:06:23 +03:00
|
|
|
# underscores is a simple check against Go filenames with underscores. Add new
|
|
|
|
# build tags and OS as you go. The main goal of this check is to discourage the
|
|
|
|
# use of filenames like client_manager.go.
|
2020-12-10 14:35:07 +03:00
|
|
|
underscores() {
|
2022-01-19 15:06:23 +03:00
|
|
|
underscore_files="$(
|
|
|
|
git ls-files '*_*.go'\
|
|
|
|
| grep -F\
|
|
|
|
-e '_bsd.go'\
|
|
|
|
-e '_darwin.go'\
|
|
|
|
-e '_freebsd.go'\
|
2024-08-20 18:38:04 +03:00
|
|
|
-e '_generate.go'\
|
2022-01-19 15:06:23 +03:00
|
|
|
-e '_linux.go'\
|
2022-10-04 16:02:55 +03:00
|
|
|
-e '_next.go'\
|
2022-03-31 19:56:50 +03:00
|
|
|
-e '_openbsd.go'\
|
2022-01-19 15:06:23 +03:00
|
|
|
-e '_others.go'\
|
|
|
|
-e '_test.go'\
|
|
|
|
-e '_unix.go'\
|
2023-06-13 13:41:13 +03:00
|
|
|
-e '_windows.go'\
|
2022-01-19 15:06:23 +03:00
|
|
|
-v\
|
|
|
|
| sed -e 's/./\t\0/'
|
|
|
|
)"
|
|
|
|
readonly underscore_files
|
|
|
|
|
|
|
|
if [ "$underscore_files" != '' ]
|
|
|
|
then
|
|
|
|
echo 'found file names with underscores:'
|
|
|
|
echo "$underscore_files"
|
|
|
|
fi
|
2020-12-08 18:23:35 +03:00
|
|
|
}
|
|
|
|
|
2022-08-02 20:48:14 +03:00
|
|
|
# TODO(a.garipov): Add an analyzer to look for `fallthrough`, `goto`, and `new`?
|
2021-05-21 18:30:57 +03:00
|
|
|
|
2021-02-04 14:15:34 +03:00
|
|
|
|
|
|
|
|
|
|
|
# Checks
|
|
|
|
|
2023-02-21 16:38:22 +03:00
|
|
|
run_linter -e blocklist_imports
|
2020-12-08 18:23:35 +03:00
|
|
|
|
2023-02-21 16:38:22 +03:00
|
|
|
run_linter -e method_const
|
2021-02-04 14:15:34 +03:00
|
|
|
|
2023-02-21 16:38:22 +03:00
|
|
|
run_linter -e underscores
|
2020-12-08 18:23:35 +03:00
|
|
|
|
2023-02-21 16:38:22 +03:00
|
|
|
run_linter -e gofumpt --extra -e -l .
|
2020-12-08 18:23:35 +03:00
|
|
|
|
2023-02-21 16:38:22 +03:00
|
|
|
# TODO(a.garipov): golint is deprecated, find a suitable replacement.
|
2020-12-08 18:23:35 +03:00
|
|
|
|
2024-08-20 18:38:04 +03:00
|
|
|
run_linter "${GO:-go}" vet ./...
|
2020-12-08 18:23:35 +03:00
|
|
|
|
2023-02-21 16:38:22 +03:00
|
|
|
run_linter govulncheck ./...
|
2022-09-07 14:01:03 +03:00
|
|
|
|
2023-05-26 12:50:03 +03:00
|
|
|
run_linter gocyclo --over 10 .
|
2023-02-21 16:38:22 +03:00
|
|
|
|
2023-08-21 19:56:08 +03:00
|
|
|
# TODO(a.garipov): Enable 10 for all.
|
2023-09-07 14:10:35 +03:00
|
|
|
run_linter gocognit --over='20'\
|
|
|
|
./internal/querylog/\
|
|
|
|
;
|
|
|
|
|
|
|
|
run_linter gocognit --over='19'\
|
|
|
|
./internal/home/\
|
|
|
|
;
|
|
|
|
|
|
|
|
run_linter gocognit --over='18'\
|
|
|
|
./internal/aghtls/\
|
|
|
|
;
|
|
|
|
|
|
|
|
run_linter gocognit --over='15'\
|
|
|
|
./internal/aghos/\
|
|
|
|
./internal/filtering/\
|
|
|
|
;
|
|
|
|
|
|
|
|
run_linter gocognit --over='14'\
|
|
|
|
./internal/dhcpd\
|
|
|
|
;
|
|
|
|
|
|
|
|
run_linter gocognit --over='13'\
|
|
|
|
./internal/aghnet/\
|
|
|
|
;
|
|
|
|
|
|
|
|
run_linter gocognit --over='12'\
|
|
|
|
./internal/filtering/rewrite/\
|
|
|
|
;
|
|
|
|
|
2023-11-20 18:07:23 +03:00
|
|
|
run_linter gocognit --over='11'\
|
|
|
|
./internal/updater/\
|
|
|
|
;
|
|
|
|
|
2023-09-07 14:10:35 +03:00
|
|
|
run_linter gocognit --over='10'\
|
|
|
|
./internal/aghalg/\
|
|
|
|
./internal/aghhttp/\
|
|
|
|
./internal/aghrenameio/\
|
|
|
|
./internal/aghtest/\
|
|
|
|
./internal/arpdb/\
|
|
|
|
./internal/client/\
|
2023-12-15 20:27:47 +03:00
|
|
|
./internal/configmigrate/\
|
2023-09-07 14:10:35 +03:00
|
|
|
./internal/dhcpsvc\
|
2023-11-20 18:07:23 +03:00
|
|
|
./internal/dnsforward/\
|
2023-09-07 14:10:35 +03:00
|
|
|
./internal/filtering/hashprefix/\
|
|
|
|
./internal/filtering/rulelist/\
|
|
|
|
./internal/filtering/safesearch/\
|
2023-12-06 19:28:56 +03:00
|
|
|
./internal/ipset\
|
2023-09-07 14:10:35 +03:00
|
|
|
./internal/next/\
|
|
|
|
./internal/rdns/\
|
|
|
|
./internal/schedule/\
|
|
|
|
./internal/stats/\
|
|
|
|
./internal/tools/\
|
|
|
|
./internal/version/\
|
|
|
|
./internal/whois/\
|
|
|
|
./scripts/\
|
|
|
|
;
|
2023-07-19 16:57:57 +03:00
|
|
|
|
2023-02-21 16:38:22 +03:00
|
|
|
run_linter ineffassign ./...
|
|
|
|
|
|
|
|
run_linter unparam ./...
|
|
|
|
|
2023-06-13 13:41:13 +03:00
|
|
|
git ls-files -- 'Makefile' '*.conf' '*.go' '*.mod' '*.sh' '*.yaml' '*.yml'\
|
|
|
|
| xargs misspell --error\
|
|
|
|
| sed -e 's/^/misspell: /'
|
2023-02-21 16:38:22 +03:00
|
|
|
|
|
|
|
run_linter nilness ./...
|
|
|
|
|
2023-09-07 15:05:21 +03:00
|
|
|
# TODO(a.garipov): Enable for all.
|
|
|
|
run_linter fieldalignment \
|
|
|
|
./internal/aghalg/\
|
|
|
|
./internal/aghhttp/\
|
|
|
|
./internal/aghos/\
|
|
|
|
./internal/aghrenameio/\
|
|
|
|
./internal/aghtest/\
|
|
|
|
./internal/aghtls/\
|
|
|
|
./internal/arpdb/\
|
|
|
|
./internal/client/\
|
2023-12-15 20:27:47 +03:00
|
|
|
./internal/configmigrate/\
|
2023-09-07 15:05:21 +03:00
|
|
|
./internal/dhcpsvc/\
|
|
|
|
./internal/filtering/hashprefix/\
|
|
|
|
./internal/filtering/rewrite/\
|
|
|
|
./internal/filtering/rulelist/\
|
|
|
|
./internal/filtering/safesearch/\
|
2023-12-06 19:28:56 +03:00
|
|
|
./internal/ipset/\
|
2023-09-07 15:05:21 +03:00
|
|
|
./internal/next/...\
|
|
|
|
./internal/querylog/\
|
|
|
|
./internal/rdns/\
|
2023-12-06 19:28:56 +03:00
|
|
|
./internal/schedule/\
|
2023-09-07 15:05:21 +03:00
|
|
|
./internal/stats/\
|
|
|
|
./internal/updater/\
|
|
|
|
./internal/version/\
|
|
|
|
./internal/whois/\
|
|
|
|
;
|
2023-02-21 16:38:22 +03:00
|
|
|
|
|
|
|
run_linter -e shadow --strict ./...
|
2020-12-08 18:23:35 +03:00
|
|
|
|
2023-06-29 14:34:06 +03:00
|
|
|
# TODO(a.garipov): Enable for all.
|
2024-09-10 15:14:48 +03:00
|
|
|
# TODO(e.burkov): Re-enable G115.
|
|
|
|
run_linter gosec --exclude G115 --quiet\
|
2023-09-07 14:10:35 +03:00
|
|
|
./internal/aghalg/\
|
|
|
|
./internal/aghhttp/\
|
|
|
|
./internal/aghnet/\
|
|
|
|
./internal/aghos/\
|
2023-07-25 17:47:24 +03:00
|
|
|
./internal/aghrenameio/\
|
2023-09-07 14:10:35 +03:00
|
|
|
./internal/aghtest/\
|
|
|
|
./internal/arpdb/\
|
|
|
|
./internal/client/\
|
2023-12-15 20:27:47 +03:00
|
|
|
./internal/configmigrate/\
|
2023-09-07 14:10:35 +03:00
|
|
|
./internal/dhcpd/\
|
|
|
|
./internal/dhcpsvc/\
|
|
|
|
./internal/dnsforward/\
|
2023-07-07 18:27:33 +03:00
|
|
|
./internal/filtering/hashprefix/\
|
2023-09-07 14:10:35 +03:00
|
|
|
./internal/filtering/rewrite/\
|
2023-07-07 18:27:33 +03:00
|
|
|
./internal/filtering/rulelist/\
|
2023-09-07 14:10:35 +03:00
|
|
|
./internal/filtering/safesearch/\
|
2023-12-06 19:28:56 +03:00
|
|
|
./internal/ipset/\
|
2023-09-07 14:10:35 +03:00
|
|
|
./internal/next/\
|
|
|
|
./internal/rdns/\
|
|
|
|
./internal/schedule/\
|
|
|
|
./internal/stats/\
|
|
|
|
./internal/tools/\
|
|
|
|
./internal/version/\
|
|
|
|
./internal/whois/\
|
2023-06-29 14:34:06 +03:00
|
|
|
;
|
2022-01-19 15:06:23 +03:00
|
|
|
|
2023-07-07 18:27:33 +03:00
|
|
|
run_linter errcheck ./...
|
2020-12-08 18:23:35 +03:00
|
|
|
|
2023-06-13 13:41:13 +03:00
|
|
|
staticcheck_matrix='
|
|
|
|
darwin: GOOS=darwin
|
|
|
|
freebsd: GOOS=freebsd
|
|
|
|
linux: GOOS=linux
|
|
|
|
openbsd: GOOS=openbsd
|
|
|
|
windows: GOOS=windows
|
|
|
|
'
|
|
|
|
readonly staticcheck_matrix
|
|
|
|
|
|
|
|
echo "$staticcheck_matrix" | run_linter staticcheck --matrix ./...
|