blob: bce3fca0a3c6de2c53a9a5f23064b024fb080baa [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úti44bfbe32020-08-19 16:54:51 +02003# Copyright The Mbed TLS Contributors
Bence Szépkúti4e9f7122020-06-05 13:02:18 +02004# SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later
5#
6# This file is provided under the Apache License 2.0, or the
7# GNU General Public License v2.0 or later.
8#
9# **********
10# Apache License 2.0:
Bence Szépkúti09b4f192020-05-26 01:54:15 +020011#
12# Licensed under the Apache License, Version 2.0 (the "License"); you may
13# not use this file except in compliance with the License.
14# You may obtain a copy of the License at
15#
16# http://www.apache.org/licenses/LICENSE-2.0
17#
18# Unless required by applicable law or agreed to in writing, software
19# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
20# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
21# See the License for the specific language governing permissions and
22# limitations under the License.
23#
Bence Szépkúti4e9f7122020-06-05 13:02:18 +020024# **********
25#
26# **********
27# GNU General Public License v2.0 or later:
28#
29# This program is free software; you can redistribute it and/or modify
30# it under the terms of the GNU General Public License as published by
31# the Free Software Foundation; either version 2 of the License, or
32# (at your option) any later version.
33#
34# This program is distributed in the hope that it will be useful,
35# but WITHOUT ANY WARRANTY; without even the implied warranty of
36# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
37# GNU General Public License for more details.
38#
39# You should have received a copy of the GNU General Public License along
40# with this program; if not, write to the Free Software Foundation, Inc.,
41# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
42#
43# **********
Gilles Peskine017adc72019-05-22 18:22:45 +020044
Manuel Pégourié-Gonnarde137ea62015-04-09 10:47:44 +020045set -eu
46
Gilles Peskine017adc72019-05-22 18:22:45 +020047if [ $# -ne 0 ] && [ "$1" = "--help" ]; then
48 cat <<EOF
49$0 [-v]
50This script confirms that the naming of all symbols and identifiers in mbed
51TLS are consistent with the house style and are also self-consistent.
52
53 -v If the script fails unexpectedly, print a command trace.
54EOF
55 exit
56fi
57
Simon Butcher71ebc582016-06-23 20:02:07 +010058if grep --version|head -n1|grep GNU >/dev/null; then :; else
Ron Eldorbf007d22016-12-15 14:42:37 +020059 echo "This script requires GNU grep.">&2
Simon Butcher71ebc582016-06-23 20:02:07 +010060 exit 1
61fi
62
Gilles Peskineef39c492019-05-15 17:29:15 +020063trace=
64if [ $# -ne 0 ] && [ "$1" = "-v" ]; then
65 shift
66 trace='-x'
67 exec 2>check-names.err
68 trap 'echo "FAILED UNEXPECTEDLY, status=$?";
69 cat check-names.err' EXIT
70 set -x
71fi
72
Simon Butcher71ebc582016-06-23 20:02:07 +010073printf "Analysing source code...\n"
74
Gilles Peskineef39c492019-05-15 17:29:15 +020075sh $trace tests/scripts/list-macros.sh
Manuel Pégourié-Gonnarde137ea62015-04-09 10:47:44 +020076tests/scripts/list-enum-consts.pl
Gilles Peskineef39c492019-05-15 17:29:15 +020077sh $trace tests/scripts/list-identifiers.sh
78sh $trace tests/scripts/list-symbols.sh
Manuel Pégourié-Gonnarde137ea62015-04-09 10:47:44 +020079
80FAIL=0
81
Simon Butcher71ebc582016-06-23 20:02:07 +010082printf "\nExported symbols declared in header: "
Manuel Pégourié-Gonnarde137ea62015-04-09 10:47:44 +020083UNDECLARED=$( diff exported-symbols identifiers | sed -n -e 's/^< //p' )
Manuel Pégourié-Gonnard9afdc832015-08-04 17:15:13 +020084if [ "x$UNDECLARED" = "x" ]; then
Manuel Pégourié-Gonnarde137ea62015-04-09 10:47:44 +020085 echo "PASS"
86else
87 echo "FAIL"
88 echo "$UNDECLARED"
89 FAIL=1
90fi
91
92diff macros identifiers | sed -n -e 's/< //p' > actual-macros
93
94for THING in actual-macros enum-consts; do
95 printf "Names of $THING: "
96 test -r $THING
Simon Butcher71ebc582016-06-23 20:02:07 +010097 BAD=$( grep -v '^MBEDTLS_[0-9A-Z_]*[0-9A-Z]$\|^YOTTA_[0-9A-Z_]*[0-9A-Z]$' $THING || true )
Manuel Pégourié-Gonnarde137ea62015-04-09 10:47:44 +020098 if [ "x$BAD" = "x" ]; then
99 echo "PASS"
100 else
101 echo "FAIL"
102 echo "$BAD"
103 FAIL=1
104 fi
105done
106
107for THING in identifiers; do
108 printf "Names of $THING: "
109 test -r $THING
110 BAD=$( grep -v '^mbedtls_[0-9a-z_]*[0-9a-z]$' $THING || true )
111 if [ "x$BAD" = "x" ]; then
112 echo "PASS"
113 else
114 echo "FAIL"
115 echo "$BAD"
116 FAIL=1
117 fi
118done
119
Manuel Pégourié-Gonnardf9aae832015-04-09 12:20:53 +0200120printf "Likely typos: "
121sort -u actual-macros enum-consts > _caps
122HEADERS=$( ls include/mbedtls/*.h | egrep -v 'compat-1\.3\.h' )
123NL='
124'
Manuel Pégourié-Gonnard6ad5d352015-05-28 15:08:28 +0200125sed -n 's/MBED..._[A-Z0-9_]*/\'"$NL"'&\'"$NL"/gp \
Manuel Pégourié-Gonnardf9aae832015-04-09 12:20:53 +0200126 $HEADERS library/*.c \
127 | grep MBEDTLS | sort -u > _MBEDTLS_XXX
128TYPOS=$( diff _caps _MBEDTLS_XXX | sed -n 's/^> //p' \
Manuel Pégourié-Gonnard32da9f62015-07-31 15:52:30 +0200129 | egrep -v 'XXX|__|_$|^MBEDTLS_.*CONFIG_FILE$' || true )
Manuel Pégourié-Gonnardf9aae832015-04-09 12:20:53 +0200130rm _MBEDTLS_XXX _caps
Manuel Pégourié-Gonnard9afdc832015-08-04 17:15:13 +0200131if [ "x$TYPOS" = "x" ]; then
Manuel Pégourié-Gonnardf9aae832015-04-09 12:20:53 +0200132 echo "PASS"
133else
134 echo "FAIL"
135 echo "$TYPOS"
136 FAIL=1
137fi
138
Gilles Peskineef39c492019-05-15 17:29:15 +0200139if [ -n "$trace" ]; then
140 set +x
141 trap - EXIT
142 rm check-names.err
143fi
144
Simon Butcher71ebc582016-06-23 20:02:07 +0100145printf "\nOverall: "
Manuel Pégourié-Gonnarde137ea62015-04-09 10:47:44 +0200146if [ "$FAIL" -eq 0 ]; then
147 rm macros actual-macros enum-consts identifiers exported-symbols
148 echo "PASSED"
149 exit 0
150else
151 echo "FAILED"
152 exit 1
153fi