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-07-26 22:10:58 +00:00
|
|
|
check_forbidden_additions() {
|
|
|
|
# This awk script receives a list of expressions to monitor
|
|
|
|
# and a list of folders to search these expressions in
|
|
|
|
# - No search is done inside comments
|
|
|
|
# - Both additions and removals of the expressions are checked
|
|
|
|
# A positive balance of additions fails the check
|
|
|
|
read -d '' awk_script << 'EOF'
|
|
|
|
BEGIN {
|
|
|
|
split(FOLDERS,deny_folders," ");
|
|
|
|
split(EXPRESSIONS,deny_expr," ");
|
|
|
|
in_file=0;
|
|
|
|
in_comment=0;
|
|
|
|
count=0;
|
|
|
|
comment_start="/*"
|
|
|
|
comment_end="*/"
|
|
|
|
}
|
|
|
|
# search for add/remove instances in current file
|
|
|
|
# state machine assumes the comments structure is enforced by
|
|
|
|
# checkpatches.pl
|
|
|
|
(in_file) {
|
|
|
|
# comment start
|
|
|
|
if (index($0,comment_start) > 0) {
|
|
|
|
in_comment = 1
|
|
|
|
}
|
|
|
|
# non comment code
|
|
|
|
if (in_comment == 0) {
|
|
|
|
for (i in deny_expr) {
|
|
|
|
forbidden_added = "^\+.*" deny_expr[i];
|
|
|
|
forbidden_removed="^-.*" deny_expr[i];
|
|
|
|
current = expressions[deny_expr[i]]
|
|
|
|
if ($0 ~ forbidden_added) {
|
|
|
|
count = count + 1;
|
|
|
|
expressions[deny_expr[i]] = current + 1
|
|
|
|
}
|
|
|
|
if ($0 ~ forbidden_removed) {
|
|
|
|
count = count - 1;
|
|
|
|
expressions[deny_expr[i]] = current - 1
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
# comment end
|
|
|
|
if (index($0,comment_end) > 0) {
|
|
|
|
in_comment = 0
|
|
|
|
}
|
|
|
|
}
|
|
|
|
# switch to next file , check if the balance of add/remove
|
|
|
|
# of previous filehad new additions
|
|
|
|
($0 ~ "^\+\+\+ b/") {
|
|
|
|
in_file = 0;
|
|
|
|
if (count > 0) {
|
|
|
|
exit;
|
|
|
|
}
|
|
|
|
for (i in deny_folders) {
|
|
|
|
re = "^\+\+\+ b/" deny_folders[i];
|
|
|
|
if ($0 ~ deny_folders[i]) {
|
|
|
|
in_file = 1
|
|
|
|
last_file = $0
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
END {
|
|
|
|
if (count > 0) {
|
|
|
|
print "Warning in " substr(last_file,6) ":"
|
|
|
|
print "are you sure you want to add the following:"
|
|
|
|
for (key in expressions) {
|
|
|
|
if (expressions[key] > 0) {
|
|
|
|
print key
|
|
|
|
}
|
|
|
|
}
|
|
|
|
exit RET_ON_FAIL
|
|
|
|
}
|
|
|
|
}
|
|
|
|
EOF
|
|
|
|
# ---------------------------------
|
|
|
|
# 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 \
|
|
|
|
"$awk_script" -
|
|
|
|
}
|
|
|
|
|
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
|
|
|
|
|
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
|
|
|
|
|
2016-06-02 09:13:15 +00:00
|
|
|
total=$(($total + 1))
|
|
|
|
! $verbose || printf '\n### %s\n\n' "$3"
|
|
|
|
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-06-27 18:01:01 +00:00
|
|
|
tmpinput=$(mktemp checkpatches.XXXXXX)
|
|
|
|
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-06-27 18:01:01 +00:00
|
|
|
tmpinput=$(mktemp 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-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
|
|
|
|
$verbose || printf '\n### %s\n\n' "$3"
|
|
|
|
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-07-26 22:10:58 +00:00
|
|
|
printf '%s\n' "$report"
|
|
|
|
ret=1
|
|
|
|
fi
|
|
|
|
|
|
|
|
! $verbose || printf '\nChecking forbidden tokens additions:\n'
|
|
|
|
report=$(check_forbidden_additions <"$tmpinput")
|
|
|
|
if [ $? -ne 0 ] ; then
|
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
|