2 # SPDX-License-Identifier: BSD-3-Clause
3 # Copyright 2015 6WIND S.A.
6 # - DPDK_CHECKPATCH_PATH
7 # - DPDK_CHECKPATCH_CODESPELL
8 # - DPDK_CHECKPATCH_LINE_LENGTH
9 # - DPDK_CHECKPATCH_OPTIONS
10 . $(dirname $(readlink -f $0))/load-devel-config
12 VALIDATE_NEW_API=$(dirname $(readlink -f $0))/check-symbol-change.sh
14 # Enable codespell by default. This can be overwritten from a config file.
15 # Codespell can also be enabled by setting DPDK_CHECKPATCH_CODESPELL to a valid path
16 # to a dictionary.txt file if dictionary.txt is not in the default location.
17 codespell=${DPDK_CHECKPATCH_CODESPELL:-enable}
18 length=${DPDK_CHECKPATCH_LINE_LENGTH:-80}
20 # override default Linux options
22 if [ "$codespell" = "enable" ] ; then
23 options="$options --codespell"
24 elif [ -f "$codespell" ] ; then
25 options="$options --codespell"
26 options="$options --codespellfile $codespell"
28 options="$options --max-line-length=$length"
29 options="$options --show-types"
30 options="$options --ignore=LINUX_VERSION_CODE,\
31 FILE_PATH_CHANGES,MAINTAINERS_STYLE,SPDX_LICENSE_TAG,\
32 VOLATILE,PREFER_PACKED,PREFER_ALIGNED,PREFER_PRINTF,\
33 PREFER_KERNEL_TYPES,BIT_MACRO,CONST_STRUCT,\
34 SPLIT_STRING,LONG_LINE_STRING,C99_COMMENT_TOLERANCE,\
35 LINE_SPACING,PARENTHESIS_ALIGNMENT,NETWORKING_BLOCK_COMMENT_STYLE,\
36 NEW_TYPEDEFS,COMPARISON_TO_NULL"
37 options="$options $DPDK_CHECKPATCH_OPTIONS"
41 usage: $(basename $0) [-q] [-v] [-nX|-r range|patch1 [patch2] ...]]
43 Run Linux kernel checkpatch.pl with DPDK options.
44 The environment variable DPDK_CHECKPATCH_PATH must be set.
46 The patches to check can be from stdin, files specified on the command line,
47 latest git commits limited with -n option, or commits in the git range
48 specified with -r option (default: "origin/master..").
52 check_forbidden_additions() { # <patch>
55 # refrain from new additions of rte_panic() and rte_exit()
56 # multiple folders and expressions are separated by spaces
57 awk -v FOLDERS="lib drivers" \
58 -v EXPRESSIONS="rte_panic\\\( rte_exit\\\(" \
60 -v MESSAGE='Using rte_panic/rte_exit' \
61 -f $(dirname $(readlink -f $0))/check-forbidden-tokens.awk \
64 # svg figures must be included with wildcard extension
65 # because of png conversion for pdf docs
66 awk -v FOLDERS='doc' \
67 -v EXPRESSIONS='::[[:space:]]*[^[:space:]]*\\.svg' \
69 -v MESSAGE='Using explicit .svg extension instead of .*' \
70 -f $(dirname $(readlink -f $0))/check-forbidden-tokens.awk \
76 check_experimental_tags() { # <patch>
87 /^+.*__rte_experimental/ {
88 if (current_file ~ ".c$" ) {
89 print "Please only put __rte_experimental tags in " \
90 "headers ("current_file")";
93 if ($1 != "+__rte_experimental" || $2 != "") {
94 print "__rte_experimental must appear alone on the line" \
95 " immediately preceding the return type of a function."
107 range='origin/master..'
110 while getopts hn:qr:v ARG ; do
112 n ) number=$OPTARG ;;
116 h ) print_usage ; exit 0 ;;
117 ? ) print_usage ; exit 1 ;;
120 shift $(($OPTIND - 1))
122 if [ ! -f "$DPDK_CHECKPATCH_PATH" ] || [ ! -x "$DPDK_CHECKPATCH_PATH" ] ; then
125 echo 'Cannot execute DPDK_CHECKPATCH_PATH' >&2
129 print_headline() { # <title>
130 printf '\n### %s\n\n' "$1"
131 headline_printed=true
137 check () { # <patch> <commit> <title>
139 headline_printed=false
141 total=$(($total + 1))
142 ! $verbose || print_headline "$3"
143 if [ -n "$1" ] ; then
146 tmpinput=$(mktemp -t dpdk.checkpatches.XXXXXX)
147 trap "rm -f '$tmpinput'" INT
149 if [ -n "$2" ] ; then
150 git format-patch --find-renames \
151 --no-stat --stdout -1 $commit > "$tmpinput"
157 ! $verbose || printf 'Running checkpatch.pl:\n'
158 report=$($DPDK_CHECKPATCH_PATH $options "$tmpinput" 2>/dev/null)
159 if [ $? -ne 0 ] ; then
160 $headline_printed || print_headline "$3"
161 printf '%s\n' "$report" | sed -n '1,/^total:.*lines checked$/p'
165 ! $verbose || printf '\nChecking API additions/removals:\n'
166 report=$($VALIDATE_NEW_API "$tmpinput")
167 if [ $? -ne 0 ] ; then
168 $headline_printed || print_headline "$3"
169 printf '%s\n' "$report"
173 ! $verbose || printf '\nChecking forbidden tokens additions:\n'
174 report=$(check_forbidden_additions "$tmpinput")
175 if [ $? -ne 0 ] ; then
176 $headline_printed || print_headline "$3"
177 printf '%s\n' "$report"
181 ! $verbose || printf '\nChecking __rte_experimental tags:\n'
182 report=$(check_experimental_tags "$tmpinput")
183 if [ $? -ne 0 ] ; then
184 $headline_printed || print_headline "$3"
185 printf '%s\n' "$report"
189 if [ "$tmpinput" != "$1" ]; then
193 [ $ret -eq 0 ] && return 0
195 status=$(($status + 1))
198 if [ -n "$1" ] ; then
199 for patch in "$@" ; do
200 # Subject can be on 2 lines
201 subject=$(sed '/^Subject: */!d;s///;N;s,\n[[:space:]]\+, ,;s,\n.*,,;q' "$patch")
202 check "$patch" '' "$subject"
204 elif [ ! -t 0 ] ; then # stdin
205 subject=$(while read header value ; do
206 if [ "$header" = 'Subject:' ] ; then
208 continuation=$(echo "$next" | sed -n 's,^[[:space:]]\+, ,p')
209 echo $value$continuation
213 check '' '' "$subject"
215 if [ $number -eq 0 ] ; then
216 commits=$(git rev-list --reverse $range)
218 commits=$(git rev-list --reverse --max-count=$number HEAD)
220 for commit in $commits ; do
221 subject=$(git log --format='%s' -1 $commit)
222 check '' $commit "$subject"
225 pass=$(($total - $status))
226 $quiet || printf '\n%d/%d valid patch' $pass $total
227 $quiet || [ $pass -le 1 ] || printf 'es'
228 $quiet || printf '\n'