2 # SPDX-License-Identifier: BSD-3-Clause
3 # Copyright 2015 6WIND S.A.
6 # - DPDK_CHECKPATCH_PATH
7 # - DPDK_CHECKPATCH_LINE_LENGTH
8 . $(dirname $(readlink -e $0))/load-devel-config
10 VALIDATE_NEW_API=$(dirname $(readlink -e $0))/check-symbol-change.sh
12 length=${DPDK_CHECKPATCH_LINE_LENGTH:-80}
14 # override default Linux options
16 options="$options --max-line-length=$length"
17 options="$options --show-types"
18 options="$options --ignore=LINUX_VERSION_CODE,\
19 FILE_PATH_CHANGES,MAINTAINERS_STYLE,SPDX_LICENSE_TAG,\
20 VOLATILE,PREFER_PACKED,PREFER_ALIGNED,PREFER_PRINTF,\
21 PREFER_KERNEL_TYPES,BIT_MACRO,CONST_STRUCT,\
22 SPLIT_STRING,LONG_LINE_STRING,\
23 LINE_SPACING,PARENTHESIS_ALIGNMENT,NETWORKING_BLOCK_COMMENT_STYLE,\
24 NEW_TYPEDEFS,COMPARISON_TO_NULL"
27 if echo $tmpinput | grep -q '^checkpatches\.' ; then
32 trap "clean_tmp_files" INT
36 usage: $(basename $0) [-q] [-v] [-nX|patch1 [patch2] ...]]
38 Run Linux kernel checkpatch.pl with DPDK options.
39 The environment variable DPDK_CHECKPATCH_PATH must be set.
41 The patches to check can be from stdin, files specified on the command line,
42 or latest git commits limited with -n option (default limit: origin/master).
46 check_forbidden_additions() { # <patch>
49 # refrain from new additions of rte_panic() and rte_exit()
50 # multiple folders and expressions are separated by spaces
51 awk -v FOLDERS="lib drivers" \
52 -v EXPRESSIONS="rte_panic\\\( rte_exit\\\(" \
54 -v MESSAGE='Using rte_panic/rte_exit' \
55 -f $(dirname $(readlink -e $0))/check-forbidden-tokens.awk \
58 # svg figures must be included with wildcard extension
59 # because of png conversion for pdf docs
60 awk -v FOLDERS='doc' \
61 -v EXPRESSIONS='::[[:space:]]*[^[:space:]]*\\.svg' \
63 -v MESSAGE='Using explicit .svg extension instead of .*' \
64 -f $(dirname $(readlink -e $0))/check-forbidden-tokens.awk \
73 while getopts hn:qv ARG ; do
78 h ) print_usage ; exit 0 ;;
79 ? ) print_usage ; exit 1 ;;
82 shift $(($OPTIND - 1))
84 if [ ! -f "$DPDK_CHECKPATCH_PATH" ] || [ ! -x "$DPDK_CHECKPATCH_PATH" ] ; then
87 echo 'Cannot execute DPDK_CHECKPATCH_PATH' >&2
91 print_headline() { # <title>
92 printf '\n### %s\n\n' "$1"
99 check () { # <patch> <commit> <title>
101 headline_printed=false
103 total=$(($total + 1))
104 ! $verbose || print_headline "$3"
105 if [ -n "$1" ] ; then
107 elif [ -n "$2" ] ; then
108 tmpinput=$(mktemp -t dpdk.checkpatches.XXXXXX)
109 git format-patch --find-renames \
110 --no-stat --stdout -1 $commit > "$tmpinput"
112 tmpinput=$(mktemp -t dpdk.checkpatches.XXXXXX)
116 ! $verbose || printf 'Running checkpatch.pl:\n'
117 report=$($DPDK_CHECKPATCH_PATH $options "$tmpinput" 2>/dev/null)
118 if [ $? -ne 0 ] ; then
119 $headline_printed || print_headline "$3"
120 printf '%s\n' "$report" | sed -n '1,/^total:.*lines checked$/p'
124 ! $verbose || printf '\nChecking API additions/removals:\n'
125 report=$($VALIDATE_NEW_API "$tmpinput")
126 if [ $? -ne 0 ] ; then
127 $headline_printed || print_headline "$3"
128 printf '%s\n' "$report"
132 ! $verbose || printf '\nChecking forbidden tokens additions:\n'
133 report=$(check_forbidden_additions "$tmpinput")
134 if [ $? -ne 0 ] ; then
135 $headline_printed || print_headline "$3"
136 printf '%s\n' "$report"
141 [ $ret -eq 0 ] && return 0
143 status=$(($status + 1))
146 if [ -n "$1" ] ; then
147 for patch in "$@" ; do
148 # Subject can be on 2 lines
149 subject=$(sed '/^Subject: */!d;s///;N;s,\n[[:space:]]\+, ,;s,\n.*,,;q' "$patch")
150 check "$patch" '' "$subject"
152 elif [ ! -t 0 ] ; then # stdin
153 subject=$(while read header value ; do
154 if [ "$header" = 'Subject:' ] ; then
156 continuation=$(echo "$next" | sed -n 's,^[[:space:]]\+, ,p')
157 echo $value$continuation
161 check '' '' "$subject"
163 if [ $number -eq 0 ] ; then
164 commits=$(git rev-list --reverse origin/master..)
166 commits=$(git rev-list --reverse --max-count=$number HEAD)
168 for commit in $commits ; do
169 subject=$(git log --format='%s' -1 $commit)
170 check '' $commit "$subject"
173 pass=$(($total - $status))
174 $quiet || printf '\n%d/%d valid patch' $pass $total
175 $quiet || [ $pass -le 1 ] || printf 'es'
176 $quiet || printf '\n'