blob: 2a06adc117870c88fc801762d905a378e190ba34 [file] [log] [blame]
Manuel Pégourié-Gonnarde137ea62015-04-09 10:47:44 +02001#!/bin/sh
Simon Butcher71ebc582016-06-23 20:02:07 +01002#
Bence Szépkúti1e148272020-08-07 13:07:28 +02003# Copyright The Mbed TLS Contributors
Bence Szépkútic7da1fe2020-05-26 01:54:15 +02004# SPDX-License-Identifier: Apache-2.0
5#
6# Licensed under the Apache License, Version 2.0 (the "License"); you may
7# not use this file except in compliance with the License.
8# You may obtain a copy of the License at
9#
10# http://www.apache.org/licenses/LICENSE-2.0
11#
12# Unless required by applicable law or agreed to in writing, software
13# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
14# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15# See the License for the specific language governing permissions and
16# limitations under the License.
Gilles Peskine0c12e302019-05-22 18:22:45 +020017
Manuel Pégourié-Gonnarde137ea62015-04-09 10:47:44 +020018set -eu
19
Gilles Peskine0c12e302019-05-22 18:22:45 +020020if [ $# -ne 0 ] && [ "$1" = "--help" ]; then
21 cat <<EOF
22$0 [-v]
23This script confirms that the naming of all symbols and identifiers in mbed
24TLS are consistent with the house style and are also self-consistent.
25
26 -v If the script fails unexpectedly, print a command trace.
27EOF
28 exit
29fi
30
Gilles Peskine36428d32019-05-15 17:29:15 +020031trace=
32if [ $# -ne 0 ] && [ "$1" = "-v" ]; then
33 shift
34 trace='-x'
35 exec 2>check-names.err
36 trap 'echo "FAILED UNEXPECTEDLY, status=$?";
37 cat check-names.err' EXIT
38 set -x
39fi
40
Simon Butcher71ebc582016-06-23 20:02:07 +010041printf "Analysing source code...\n"
42
Gilles Peskine36428d32019-05-15 17:29:15 +020043sh $trace tests/scripts/list-macros.sh
Manuel Pégourié-Gonnarde137ea62015-04-09 10:47:44 +020044tests/scripts/list-enum-consts.pl
Gilles Peskine36428d32019-05-15 17:29:15 +020045sh $trace tests/scripts/list-identifiers.sh
46sh $trace tests/scripts/list-symbols.sh
Manuel Pégourié-Gonnarde137ea62015-04-09 10:47:44 +020047
48FAIL=0
49
Simon Butcher71ebc582016-06-23 20:02:07 +010050printf "\nExported symbols declared in header: "
Manuel Pégourié-Gonnarde137ea62015-04-09 10:47:44 +020051UNDECLARED=$( diff exported-symbols identifiers | sed -n -e 's/^< //p' )
Manuel Pégourié-Gonnard9afdc832015-08-04 17:15:13 +020052if [ "x$UNDECLARED" = "x" ]; then
Manuel Pégourié-Gonnarde137ea62015-04-09 10:47:44 +020053 echo "PASS"
54else
55 echo "FAIL"
56 echo "$UNDECLARED"
57 FAIL=1
58fi
59
60diff macros identifiers | sed -n -e 's/< //p' > actual-macros
61
62for THING in actual-macros enum-consts; do
Gilles Peskine231befa2020-08-26 20:05:11 +020063 printf 'Names of %s: ' "$THING"
Manuel Pégourié-Gonnarde137ea62015-04-09 10:47:44 +020064 test -r $THING
Nir Sonnenschein03091d12019-01-08 18:15:50 +020065 BAD=$( grep -E -v '^(MBEDTLS|PSA)_[0-9A-Z_]*[0-9A-Z]$' $THING || true )
Unknown712f7a82019-08-21 03:34:00 -040066 UNDERSCORES=$( grep -E '.*__.*' $THING || true )
67
68 if [ "x$BAD" = "x" ] && [ "x$UNDERSCORES" = "x" ]; then
Manuel Pégourié-Gonnarde137ea62015-04-09 10:47:44 +020069 echo "PASS"
70 else
71 echo "FAIL"
72 echo "$BAD"
Unknown712f7a82019-08-21 03:34:00 -040073 echo "$UNDERSCORES"
Manuel Pégourié-Gonnarde137ea62015-04-09 10:47:44 +020074 FAIL=1
75 fi
76done
77
78for THING in identifiers; do
Gilles Peskine231befa2020-08-26 20:05:11 +020079 printf 'Names of %s: ' "$THING"
Manuel Pégourié-Gonnarde137ea62015-04-09 10:47:44 +020080 test -r $THING
Gilles Peskine2d9d6db2018-06-18 23:25:28 +020081 BAD=$( grep -E -v '^(mbedtls|psa)_[0-9a-z_]*[0-9a-z]$' $THING || true )
Manuel Pégourié-Gonnarde137ea62015-04-09 10:47:44 +020082 if [ "x$BAD" = "x" ]; then
83 echo "PASS"
84 else
85 echo "FAIL"
86 echo "$BAD"
87 FAIL=1
88 fi
89done
90
Manuel Pégourié-Gonnardf9aae832015-04-09 12:20:53 +020091printf "Likely typos: "
92sort -u actual-macros enum-consts > _caps
TRodziewicz26371e42021-06-08 16:45:41 +020093HEADERS=$( ls include/mbedtls/*.h include/psa/*.h | egrep -v 'compat-2\.x\.h' )
Manuel Pégourié-Gonnard65a6fa32020-07-09 09:52:17 +020094HEADERS="$HEADERS library/*.h"
Christoph M. Wintersteiger8a0f5bb2018-12-14 15:46:34 +000095HEADERS="$HEADERS 3rdparty/everest/include/everest/everest.h 3rdparty/everest/include/everest/x25519.h"
Gilles Peskine9ab96212020-02-12 21:06:45 +010096LIBRARY="$( ls library/*.c )"
97LIBRARY="$LIBRARY 3rdparty/everest/library/everest.c 3rdparty/everest/library/x25519.c"
Manuel Pégourié-Gonnardf9aae832015-04-09 12:20:53 +020098NL='
99'
Gilles Peskineb6837762021-04-21 18:45:08 +0200100cat $HEADERS $LIBRARY \
101 | grep -v -e '//no-check-names' -e '#error' \
102 | sed -n 's/MBED..._[A-Z0-9_]*/\'"$NL"'&\'"$NL"/gp \
Manuel Pégourié-Gonnardf9aae832015-04-09 12:20:53 +0200103 | grep MBEDTLS | sort -u > _MBEDTLS_XXX
104TYPOS=$( diff _caps _MBEDTLS_XXX | sed -n 's/^> //p' \
Manuel Pégourié-Gonnard32da9f62015-07-31 15:52:30 +0200105 | egrep -v 'XXX|__|_$|^MBEDTLS_.*CONFIG_FILE$' || true )
Manuel Pégourié-Gonnardf9aae832015-04-09 12:20:53 +0200106rm _MBEDTLS_XXX _caps
Manuel Pégourié-Gonnard9afdc832015-08-04 17:15:13 +0200107if [ "x$TYPOS" = "x" ]; then
Manuel Pégourié-Gonnardf9aae832015-04-09 12:20:53 +0200108 echo "PASS"
109else
110 echo "FAIL"
111 echo "$TYPOS"
112 FAIL=1
113fi
114
Gilles Peskine36428d32019-05-15 17:29:15 +0200115if [ -n "$trace" ]; then
116 set +x
117 trap - EXIT
118 rm check-names.err
119fi
120
Simon Butcher71ebc582016-06-23 20:02:07 +0100121printf "\nOverall: "
Manuel Pégourié-Gonnarde137ea62015-04-09 10:47:44 +0200122if [ "$FAIL" -eq 0 ]; then
123 rm macros actual-macros enum-consts identifiers exported-symbols
124 echo "PASSED"
125 exit 0
126else
127 echo "FAILED"
128 exit 1
129fi