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