2015-10-22 20:26:28 +02:00
|
|
|
#! /bin/sh
|
2018-05-03 09:30:11 +02:00
|
|
|
# SPDX-License-Identifier: BSD-3-Clause
|
2015-10-22 20:26:28 +02:00
|
|
|
# Copyright 2015 6WIND S.A.
|
|
|
|
|
|
|
|
# Load config options:
|
|
|
|
# - DPDK_CHECKPATCH_PATH
|
2019-03-04 14:07:15 -05:00
|
|
|
# - DPDK_CHECKPATCH_CODESPELL
|
2015-10-22 20:26:28 +02:00
|
|
|
# - DPDK_CHECKPATCH_LINE_LENGTH
|
2016-08-03 16:59:00 +02:00
|
|
|
. $(dirname $(readlink -e $0))/load-devel-config
|
2015-10-22 20:26:28 +02:00
|
|
|
|
2018-06-27 14:01:01 -04:00
|
|
|
VALIDATE_NEW_API=$(dirname $(readlink -e $0))/check-symbol-change.sh
|
|
|
|
|
2019-03-04 14:07:15 -05:00
|
|
|
# Enable codespell by default. This can be overwritten from a config file.
|
|
|
|
# Codespell can also be enabled by setting DPDK_CHECKPATCH_CODESPELL to a valid path
|
|
|
|
# to a dictionary.txt file if dictionary.txt is not in the default location.
|
|
|
|
codespell=${DPDK_CHECKPATCH_CODESPELL:-enable}
|
2015-10-22 20:26:28 +02:00
|
|
|
length=${DPDK_CHECKPATCH_LINE_LENGTH:-80}
|
|
|
|
|
|
|
|
# override default Linux options
|
|
|
|
options="--no-tree"
|
2019-03-04 14:07:15 -05:00
|
|
|
if [ "$codespell" = "enable" ] ; then
|
|
|
|
options="$options --codespell"
|
|
|
|
elif [ -f "$codespell" ] ; then
|
|
|
|
options="$options --codespell"
|
|
|
|
options="$options --codespellfile $codespell"
|
|
|
|
fi
|
2015-10-22 20:26:28 +02:00
|
|
|
options="$options --max-line-length=$length"
|
|
|
|
options="$options --show-types"
|
2018-01-05 12:33:20 +01:00
|
|
|
options="$options --ignore=LINUX_VERSION_CODE,\
|
2018-04-17 14:49:19 -07:00
|
|
|
FILE_PATH_CHANGES,MAINTAINERS_STYLE,SPDX_LICENSE_TAG,\
|
2016-11-04 16:27:38 +01:00
|
|
|
VOLATILE,PREFER_PACKED,PREFER_ALIGNED,PREFER_PRINTF,\
|
|
|
|
PREFER_KERNEL_TYPES,BIT_MACRO,CONST_STRUCT,\
|
2017-03-01 12:44:19 -05:00
|
|
|
SPLIT_STRING,LONG_LINE_STRING,\
|
|
|
|
LINE_SPACING,PARENTHESIS_ALIGNMENT,NETWORKING_BLOCK_COMMENT_STYLE,\
|
2015-10-22 20:26:28 +02:00
|
|
|
NEW_TYPEDEFS,COMPARISON_TO_NULL"
|
|
|
|
|
2018-06-27 14:01:01 -04:00
|
|
|
clean_tmp_files() {
|
|
|
|
if echo $tmpinput | grep -q '^checkpatches\.' ; then
|
2018-07-20 13:34:52 +02:00
|
|
|
rm -f "$tmpinput"
|
2018-06-27 14:01:01 -04:00
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
2018-08-01 13:22:57 +08:00
|
|
|
trap "clean_tmp_files" INT
|
2018-06-27 14:01:01 -04:00
|
|
|
|
2015-10-22 20:26:28 +02:00
|
|
|
print_usage () {
|
2016-02-16 15:36:54 +01:00
|
|
|
cat <<- END_OF_HELP
|
2016-06-02 11:13:15 +02:00
|
|
|
usage: $(basename $0) [-q] [-v] [-nX|patch1 [patch2] ...]]
|
2016-02-16 15:36:54 +01:00
|
|
|
|
|
|
|
Run Linux kernel checkpatch.pl with DPDK options.
|
|
|
|
The environment variable DPDK_CHECKPATCH_PATH must be set.
|
2016-09-09 13:01:51 +02:00
|
|
|
|
2016-11-02 15:39:45 +01:00
|
|
|
The patches to check can be from stdin, files specified on the command line,
|
2016-09-09 13:01:51 +02:00
|
|
|
or latest git commits limited with -n option (default limit: origin/master).
|
2016-02-16 15:36:54 +01:00
|
|
|
END_OF_HELP
|
2015-10-22 20:26:28 +02:00
|
|
|
}
|
|
|
|
|
2018-10-31 17:28:42 +01:00
|
|
|
check_forbidden_additions() { # <patch>
|
2018-12-18 17:19:00 +02:00
|
|
|
res=0
|
|
|
|
|
2018-07-27 01:10:58 +03:00
|
|
|
# refrain from new additions of rte_panic() and rte_exit()
|
|
|
|
# multiple folders and expressions are separated by spaces
|
|
|
|
awk -v FOLDERS="lib drivers" \
|
|
|
|
-v EXPRESSIONS="rte_panic\\\( rte_exit\\\(" \
|
|
|
|
-v RET_ON_FAIL=1 \
|
2018-11-02 12:52:21 +02:00
|
|
|
-v MESSAGE='Using rte_panic/rte_exit' \
|
2018-10-31 17:28:42 +01:00
|
|
|
-f $(dirname $(readlink -e $0))/check-forbidden-tokens.awk \
|
2018-12-18 17:19:00 +02:00
|
|
|
"$1" || res=1
|
|
|
|
|
2018-10-31 17:28:42 +01:00
|
|
|
# svg figures must be included with wildcard extension
|
|
|
|
# because of png conversion for pdf docs
|
|
|
|
awk -v FOLDERS='doc' \
|
|
|
|
-v EXPRESSIONS='::[[:space:]]*[^[:space:]]*\\.svg' \
|
|
|
|
-v RET_ON_FAIL=1 \
|
2018-11-02 12:52:21 +02:00
|
|
|
-v MESSAGE='Using explicit .svg extension instead of .*' \
|
2018-10-31 17:28:42 +01:00
|
|
|
-f $(dirname $(readlink -e $0))/check-forbidden-tokens.awk \
|
2019-03-04 14:07:16 -05:00
|
|
|
"$1" || res=1
|
2018-12-18 17:19:00 +02:00
|
|
|
|
|
|
|
return $res
|
2018-07-27 01:10:58 +03:00
|
|
|
}
|
|
|
|
|
2016-06-02 11:13:15 +02:00
|
|
|
number=0
|
2015-10-22 20:26:28 +02:00
|
|
|
quiet=false
|
|
|
|
verbose=false
|
2016-06-02 11:13:15 +02:00
|
|
|
while getopts hn:qv ARG ; do
|
2015-10-22 20:26:28 +02:00
|
|
|
case $ARG in
|
2016-06-02 11:13:15 +02:00
|
|
|
n ) number=$OPTARG ;;
|
2016-11-02 15:22:30 +01:00
|
|
|
q ) quiet=true ;;
|
2015-10-22 20:26:28 +02:00
|
|
|
v ) verbose=true ;;
|
|
|
|
h ) print_usage ; exit 0 ;;
|
|
|
|
? ) print_usage ; exit 1 ;;
|
|
|
|
esac
|
|
|
|
done
|
|
|
|
shift $(($OPTIND - 1))
|
|
|
|
|
2018-04-19 15:00:02 +03:00
|
|
|
if [ ! -f "$DPDK_CHECKPATCH_PATH" ] || [ ! -x "$DPDK_CHECKPATCH_PATH" ] ; then
|
2016-02-16 15:36:54 +01:00
|
|
|
print_usage >&2
|
|
|
|
echo
|
|
|
|
echo 'Cannot execute DPDK_CHECKPATCH_PATH' >&2
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
2018-10-01 22:38:13 +02:00
|
|
|
print_headline() { # <title>
|
|
|
|
printf '\n### %s\n\n' "$1"
|
|
|
|
headline_printed=true
|
|
|
|
}
|
|
|
|
|
2016-06-02 11:13:15 +02:00
|
|
|
total=0
|
2015-10-22 20:26:28 +02:00
|
|
|
status=0
|
2016-06-02 11:13:15 +02:00
|
|
|
|
|
|
|
check () { # <patch> <commit> <title>
|
2018-06-27 14:01:01 -04:00
|
|
|
local ret=0
|
2018-10-01 22:38:13 +02:00
|
|
|
headline_printed=false
|
2018-06-27 14:01:01 -04:00
|
|
|
|
2016-06-02 11:13:15 +02:00
|
|
|
total=$(($total + 1))
|
2018-10-01 22:38:13 +02:00
|
|
|
! $verbose || print_headline "$3"
|
2016-06-02 11:13:15 +02:00
|
|
|
if [ -n "$1" ] ; then
|
2018-06-27 14:01:01 -04:00
|
|
|
tmpinput=$1
|
2016-06-02 11:13:15 +02:00
|
|
|
elif [ -n "$2" ] ; then
|
2018-09-19 19:16:29 +02:00
|
|
|
tmpinput=$(mktemp -t dpdk.checkpatches.XXXXXX)
|
2018-06-27 14:01:01 -04:00
|
|
|
git format-patch --find-renames \
|
2018-07-20 13:34:52 +02:00
|
|
|
--no-stat --stdout -1 $commit > "$tmpinput"
|
2016-11-02 15:39:45 +01:00
|
|
|
else
|
2018-09-19 19:16:29 +02:00
|
|
|
tmpinput=$(mktemp -t dpdk.checkpatches.XXXXXX)
|
2018-07-20 13:34:52 +02:00
|
|
|
cat > "$tmpinput"
|
2016-06-02 11:13:15 +02:00
|
|
|
fi
|
2018-06-27 14:01:01 -04:00
|
|
|
|
2018-10-01 22:38:13 +02:00
|
|
|
! $verbose || printf 'Running checkpatch.pl:\n'
|
2018-07-20 13:34:52 +02:00
|
|
|
report=$($DPDK_CHECKPATCH_PATH $options "$tmpinput" 2>/dev/null)
|
2018-06-27 14:01:01 -04:00
|
|
|
if [ $? -ne 0 ] ; then
|
2018-10-01 22:38:13 +02:00
|
|
|
$headline_printed || print_headline "$3"
|
2018-06-27 14:01:01 -04:00
|
|
|
printf '%s\n' "$report" | sed -n '1,/^total:.*lines checked$/p'
|
|
|
|
ret=1
|
|
|
|
fi
|
|
|
|
|
|
|
|
! $verbose || printf '\nChecking API additions/removals:\n'
|
|
|
|
report=$($VALIDATE_NEW_API "$tmpinput")
|
|
|
|
if [ $? -ne 0 ] ; then
|
2018-10-01 22:38:13 +02:00
|
|
|
$headline_printed || print_headline "$3"
|
2018-07-27 01:10:58 +03:00
|
|
|
printf '%s\n' "$report"
|
|
|
|
ret=1
|
|
|
|
fi
|
|
|
|
|
|
|
|
! $verbose || printf '\nChecking forbidden tokens additions:\n'
|
2018-10-31 17:28:42 +01:00
|
|
|
report=$(check_forbidden_additions "$tmpinput")
|
2018-07-27 01:10:58 +03:00
|
|
|
if [ $? -ne 0 ] ; then
|
2018-10-01 22:38:13 +02:00
|
|
|
$headline_printed || print_headline "$3"
|
2018-06-27 14:01:01 -04:00
|
|
|
printf '%s\n' "$report"
|
|
|
|
ret=1
|
|
|
|
fi
|
|
|
|
|
|
|
|
clean_tmp_files
|
|
|
|
[ $ret -eq 0 ] && return 0
|
|
|
|
|
2015-10-22 20:26:28 +02:00
|
|
|
status=$(($status + 1))
|
2016-06-02 11:13:15 +02:00
|
|
|
}
|
|
|
|
|
2016-11-02 15:39:45 +01:00
|
|
|
if [ -n "$1" ] ; then
|
|
|
|
for patch in "$@" ; do
|
2016-11-03 09:12:33 +01:00
|
|
|
# Subject can be on 2 lines
|
|
|
|
subject=$(sed '/^Subject: */!d;s///;N;s,\n[[:space:]]\+, ,;s,\n.*,,;q' "$patch")
|
2016-11-02 15:39:45 +01:00
|
|
|
check "$patch" '' "$subject"
|
|
|
|
done
|
|
|
|
elif [ ! -t 0 ] ; then # stdin
|
|
|
|
subject=$(while read header value ; do
|
|
|
|
if [ "$header" = 'Subject:' ] ; then
|
2016-11-03 09:12:33 +01:00
|
|
|
IFS= read next
|
|
|
|
continuation=$(echo "$next" | sed -n 's,^[[:space:]]\+, ,p')
|
|
|
|
echo $value$continuation
|
2016-11-02 15:39:45 +01:00
|
|
|
break
|
|
|
|
fi
|
|
|
|
done)
|
|
|
|
check '' '' "$subject"
|
|
|
|
else
|
2016-06-02 11:13:15 +02:00
|
|
|
if [ $number -eq 0 ] ; then
|
2016-09-09 13:01:51 +02:00
|
|
|
commits=$(git rev-list --reverse origin/master..)
|
2016-06-02 11:13:15 +02:00
|
|
|
else
|
2016-09-09 13:01:51 +02:00
|
|
|
commits=$(git rev-list --reverse --max-count=$number HEAD)
|
2016-06-02 11:13:15 +02:00
|
|
|
fi
|
|
|
|
for commit in $commits ; do
|
|
|
|
subject=$(git log --format='%s' -1 $commit)
|
|
|
|
check '' $commit "$subject"
|
|
|
|
done
|
|
|
|
fi
|
|
|
|
pass=$(($total - $status))
|
2016-08-29 10:55:38 +02:00
|
|
|
$quiet || printf '\n%d/%d valid patch' $pass $total
|
2015-10-22 20:26:28 +02:00
|
|
|
$quiet || [ $pass -le 1 ] || printf 'es'
|
|
|
|
$quiet || printf '\n'
|
|
|
|
exit $status
|