Andres Amaya Garcia | 4c1e2ec | 2018-01-10 11:03:45 +0000 | [diff] [blame] | 1 | #! /usr/bin/env sh |
Manuel Pégourié-Gonnard | b3b8e43 | 2015-02-13 14:52:19 +0000 | [diff] [blame] | 2 | |
Bence Szépkúti | 1e14827 | 2020-08-07 13:07:28 +0200 | [diff] [blame] | 3 | # Copyright The Mbed TLS Contributors |
Dave Rodgman | 16799db | 2023-11-02 19:47:20 +0000 | [diff] [blame] | 4 | # SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later |
Bence Szépkúti | c7da1fe | 2020-05-26 01:54:15 +0200 | [diff] [blame] | 5 | # |
Andres Amaya Garcia | 4c1e2ec | 2018-01-10 11:03:45 +0000 | [diff] [blame] | 6 | # Purpose |
| 7 | # |
| 8 | # Check if generated files are up-to-date. |
Manuel Pégourié-Gonnard | b3b8e43 | 2015-02-13 14:52:19 +0000 | [diff] [blame] | 9 | |
| 10 | set -eu |
| 11 | |
Manuel Pégourié-Gonnard | 2774fc4 | 2020-07-16 10:40:13 +0200 | [diff] [blame] | 12 | if [ $# -ne 0 ] && [ "$1" = "--help" ]; then |
| 13 | cat <<EOF |
Gilles Peskine | 1fe01ac | 2021-07-01 11:13:29 +0200 | [diff] [blame] | 14 | $0 [-l | -u] |
Manuel Pégourié-Gonnard | 2774fc4 | 2020-07-16 10:40:13 +0200 | [diff] [blame] | 15 | This script checks that all generated file are up-to-date. If some aren't, by |
| 16 | default the scripts reports it and exits in error; with the -u option, it just |
| 17 | updates them instead. |
| 18 | |
| 19 | -u Update the files rather than return an error for out-of-date files. |
Gilles Peskine | 1fe01ac | 2021-07-01 11:13:29 +0200 | [diff] [blame] | 20 | -l List generated files, but do not update them. |
Manuel Pégourié-Gonnard | 2774fc4 | 2020-07-16 10:40:13 +0200 | [diff] [blame] | 21 | EOF |
| 22 | exit |
| 23 | fi |
| 24 | |
Thomas Daubney | c9f8386 | 2023-11-13 10:03:56 +0000 | [diff] [blame] | 25 | IN_MBEDTLS=0 |
| 26 | if [ -d library -a -d include -a -d tests ]; then |
| 27 | IN_MBEDTLS=1 |
| 28 | elif [ -d core -a -d include -a -d tests ]; then :; |
| 29 | else |
| 30 | echo "Must be run from Mbed TLS root or TF-PSA-Crypto root" >&2 |
Manuel Pégourié-Gonnard | b3b8e43 | 2015-02-13 14:52:19 +0000 | [diff] [blame] | 31 | exit 1 |
| 32 | fi |
| 33 | |
Manuel Pégourié-Gonnard | 2774fc4 | 2020-07-16 10:40:13 +0200 | [diff] [blame] | 34 | UPDATE= |
Gilles Peskine | 1fe01ac | 2021-07-01 11:13:29 +0200 | [diff] [blame] | 35 | LIST= |
| 36 | while getopts lu OPTLET; do |
| 37 | case $OPTLET in |
| 38 | l) LIST=1;; |
| 39 | u) UPDATE=1;; |
| 40 | esac |
| 41 | done |
Manuel Pégourié-Gonnard | 2774fc4 | 2020-07-16 10:40:13 +0200 | [diff] [blame] | 42 | |
Gilles Peskine | ae4c460 | 2021-04-21 16:11:50 +0200 | [diff] [blame] | 43 | # check SCRIPT FILENAME[...] |
| 44 | # check SCRIPT DIRECTORY |
| 45 | # Run SCRIPT and check that it does not modify any of the specified files. |
| 46 | # In the first form, there can be any number of FILENAMEs, which must be |
| 47 | # regular files. |
| 48 | # In the second form, there must be a single DIRECTORY, standing for the |
| 49 | # list of files in the directory. Running SCRIPT must not modify any file |
| 50 | # in the directory and must not add or remove files either. |
| 51 | # If $UPDATE is empty, abort with an error status if a file is modified. |
Manuel Pégourié-Gonnard | b3b8e43 | 2015-02-13 14:52:19 +0000 | [diff] [blame] | 52 | check() |
| 53 | { |
Andres Amaya Garcia | 4c1e2ec | 2018-01-10 11:03:45 +0000 | [diff] [blame] | 54 | SCRIPT=$1 |
Gilles Peskine | ae4c460 | 2021-04-21 16:11:50 +0200 | [diff] [blame] | 55 | shift |
Manuel Pégourié-Gonnard | b3b8e43 | 2015-02-13 14:52:19 +0000 | [diff] [blame] | 56 | |
Gilles Peskine | 1fe01ac | 2021-07-01 11:13:29 +0200 | [diff] [blame] | 57 | if [ -n "$LIST" ]; then |
| 58 | printf '%s\n' "$@" |
| 59 | return |
| 60 | fi |
| 61 | |
Gilles Peskine | ae4c460 | 2021-04-21 16:11:50 +0200 | [diff] [blame] | 62 | directory= |
| 63 | if [ -d "$1" ]; then |
| 64 | directory="$1" |
| 65 | rm -f "$directory"/*.bak |
| 66 | set -- "$1"/* |
Andres Amaya Garcia | 4c1e2ec | 2018-01-10 11:03:45 +0000 | [diff] [blame] | 67 | fi |
| 68 | |
Gilles Peskine | ae4c460 | 2021-04-21 16:11:50 +0200 | [diff] [blame] | 69 | for FILE in "$@"; do |
Gilles Peskine | b32966d | 2021-05-18 14:58:09 +0200 | [diff] [blame] | 70 | if [ -e "$FILE" ]; then |
Gilles Peskine | ebfee6e | 2022-04-05 14:08:09 +0200 | [diff] [blame] | 71 | cp -p "$FILE" "$FILE.bak" |
Gilles Peskine | b32966d | 2021-05-18 14:58:09 +0200 | [diff] [blame] | 72 | else |
| 73 | rm -f "$FILE.bak" |
| 74 | fi |
Andres Amaya Garcia | 4c1e2ec | 2018-01-10 11:03:45 +0000 | [diff] [blame] | 75 | done |
| 76 | |
Gilles Peskine | ae4c460 | 2021-04-21 16:11:50 +0200 | [diff] [blame] | 77 | "$SCRIPT" |
Andres Amaya Garcia | 4c1e2ec | 2018-01-10 11:03:45 +0000 | [diff] [blame] | 78 | |
| 79 | # Compare the script output to the old files and remove backups |
Gilles Peskine | ae4c460 | 2021-04-21 16:11:50 +0200 | [diff] [blame] | 80 | for FILE in "$@"; do |
Gilles Peskine | ebfee6e | 2022-04-05 14:08:09 +0200 | [diff] [blame] | 81 | if diff "$FILE" "$FILE.bak" >/dev/null 2>&1; then |
| 82 | # Move the original file back so that $FILE's timestamp doesn't |
| 83 | # change (avoids spurious rebuilds with make). |
| 84 | mv "$FILE.bak" "$FILE" |
| 85 | else |
Andres Amaya Garcia | 4c1e2ec | 2018-01-10 11:03:45 +0000 | [diff] [blame] | 86 | echo "'$FILE' was either modified or deleted by '$SCRIPT'" |
Manuel Pégourié-Gonnard | 2774fc4 | 2020-07-16 10:40:13 +0200 | [diff] [blame] | 87 | if [ -z "$UPDATE" ]; then |
| 88 | exit 1 |
Gilles Peskine | ebfee6e | 2022-04-05 14:08:09 +0200 | [diff] [blame] | 89 | else |
| 90 | rm -f "$FILE.bak" |
Manuel Pégourié-Gonnard | 2774fc4 | 2020-07-16 10:40:13 +0200 | [diff] [blame] | 91 | fi |
Andres Amaya Garcia | 4c1e2ec | 2018-01-10 11:03:45 +0000 | [diff] [blame] | 92 | fi |
Andres Amaya Garcia | 4c1e2ec | 2018-01-10 11:03:45 +0000 | [diff] [blame] | 93 | done |
| 94 | |
Gilles Peskine | ae4c460 | 2021-04-21 16:11:50 +0200 | [diff] [blame] | 95 | if [ -n "$directory" ]; then |
| 96 | old_list="$*" |
| 97 | set -- "$directory"/* |
| 98 | new_list="$*" |
Andres Amaya Garcia | 4c1e2ec | 2018-01-10 11:03:45 +0000 | [diff] [blame] | 99 | # Check if there are any new files |
Gilles Peskine | ae4c460 | 2021-04-21 16:11:50 +0200 | [diff] [blame] | 100 | if [ "$old_list" != "$new_list" ]; then |
| 101 | echo "Files were deleted or created by '$SCRIPT'" |
| 102 | echo "Before: $old_list" |
| 103 | echo "After: $new_list" |
Manuel Pégourié-Gonnard | 2774fc4 | 2020-07-16 10:40:13 +0200 | [diff] [blame] | 104 | if [ -z "$UPDATE" ]; then |
| 105 | exit 1 |
| 106 | fi |
Andres Amaya Garcia | 4c1e2ec | 2018-01-10 11:03:45 +0000 | [diff] [blame] | 107 | fi |
| 108 | fi |
Manuel Pégourié-Gonnard | b3b8e43 | 2015-02-13 14:52:19 +0000 | [diff] [blame] | 109 | } |
| 110 | |
Gilles Peskine | 9a3771e | 2022-12-19 00:48:58 +0100 | [diff] [blame] | 111 | # Note: if the format of calls to the "check" function changes, update |
| 112 | # scripts/code_style.py accordingly. For generated C source files (*.h or *.c), |
| 113 | # the format must be "check SCRIPT FILENAME...". For other source files, |
| 114 | # any shell syntax is permitted (including e.g. command substitution). |
| 115 | |
Gilles Peskine | 3b56d29 | 2022-12-19 00:56:44 +0100 | [diff] [blame] | 116 | # Note: Instructions to generate those files are replicated in: |
| 117 | # - **/Makefile (to (re)build them with make) |
| 118 | # - **/CMakeLists.txt (to (re)build them with cmake) |
| 119 | # - scripts/make_generated_files.bat (to generate them under Windows) |
| 120 | |
Thomas Daubney | c9f8386 | 2023-11-13 10:03:56 +0000 | [diff] [blame] | 121 | # These checks are common to Mbed TLS and TF PSA Crypto |
Cameron Nemo | e18d09d | 2020-09-22 10:37:26 -0700 | [diff] [blame] | 122 | check scripts/generate_psa_constants.py programs/psa/psa_constant_names_generated.c |
Werner Lewis | 8b2df74 | 2022-07-08 13:54:57 +0100 | [diff] [blame] | 123 | check tests/scripts/generate_bignum_tests.py $(tests/scripts/generate_bignum_tests.py --list) |
Gabor Mezei | 95ecaaf | 2023-01-16 16:53:29 +0100 | [diff] [blame] | 124 | check tests/scripts/generate_ecp_tests.py $(tests/scripts/generate_ecp_tests.py --list) |
Gilles Peskine | 0298bda | 2021-03-10 02:34:37 +0100 | [diff] [blame] | 125 | check tests/scripts/generate_psa_tests.py $(tests/scripts/generate_psa_tests.py --list) |
Thomas Daubney | c9f8386 | 2023-11-13 10:03:56 +0000 | [diff] [blame] | 126 | |
| 127 | # Additional checks for Mbed TLS only |
| 128 | if [ $IN_MBEDTLS -eq 1 ]; then |
| 129 | check scripts/generate_errors.pl library/error.c |
| 130 | check scripts/generate_query_config.pl programs/test/query_config.c |
| 131 | check scripts/generate_driver_wrappers.py library/psa_crypto_driver_wrappers.h library/psa_crypto_driver_wrappers_no_static.c |
| 132 | check scripts/generate_features.pl library/version_features.c |
| 133 | check scripts/generate_ssl_debug_helpers.py library/ssl_debug_helpers_generated.c |
| 134 | # generate_visualc_files enumerates source files (library/*.c). It doesn't |
| 135 | # care about their content, but the files must exist. So it must run after |
| 136 | # the step that creates or updates these files. |
| 137 | check scripts/generate_visualc_files.pl visualc/VS2013 |
| 138 | fi |