blob: 428233922191be01b0725257a5eda760b8cb0bf4 [file] [log] [blame]
Andres Amaya Garcia88121a92018-10-16 22:00:13 +01001#! /usr/bin/env perl
2
3# Generate query_config.c
4#
5# The file query_config.c contains a C function that can be used to check if
6# a configuration macro is defined and to retrieve its expansion in string
7# form (if any). This facilitates querying the compile time configuration of
8# the library, for example, for testing.
9#
Ronald Croneab20552023-08-30 17:36:25 +020010# The query_config.c is generated from the default configuration files
11# include/mbedtls/mbedtls_config.h and include/psa/crypto_config.h.
12# The idea is that mbedtls_config.h and crypto_config.h contain ALL the
Andres Amaya Garcia88121a92018-10-16 22:00:13 +010013# compile time configurations available in Mbed TLS (commented or uncommented).
Ronald Croneab20552023-08-30 17:36:25 +020014# This script extracts the configuration macros from the two files and this
Andres Amaya Garcia88121a92018-10-16 22:00:13 +010015# information is used to automatically generate the body of the query_config()
16# function by using the template in scripts/data_files/query_config.fmt.
17#
Manuel Pégourié-Gonnard3a8413d2021-05-14 09:23:57 +020018# Usage: scripts/generate_query_config.pl without arguments, or
Ronald Croneab20552023-08-30 17:36:25 +020019# generate_query_config.pl mbedtls_config_file psa_crypto_config_file template_file output_file
Bence Szépkúti700ee442020-05-26 00:33:31 +020020#
Bence Szépkúti1e148272020-08-07 13:07:28 +020021# Copyright The Mbed TLS Contributors
Bence Szépkútic7da1fe2020-05-26 01:54:15 +020022# SPDX-License-Identifier: Apache-2.0
23#
24# Licensed under the Apache License, Version 2.0 (the "License"); you may
25# not use this file except in compliance with the License.
26# You may obtain a copy of the License at
27#
28# http://www.apache.org/licenses/LICENSE-2.0
29#
30# Unless required by applicable law or agreed to in writing, software
31# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
32# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
33# See the License for the specific language governing permissions and
34# limitations under the License.
Andres Amaya Garcia88121a92018-10-16 22:00:13 +010035
36use strict;
37
Ronald Croneab20552023-08-30 17:36:25 +020038my ($mbedtls_config_file, $psa_crypto_config_file, $query_config_format_file, $query_config_file);
Tom Cosgroveef83b832022-07-25 11:42:38 +010039
40my $default_mbedtls_config_file = "./include/mbedtls/mbedtls_config.h";
Ronald Croneab20552023-08-30 17:36:25 +020041my $default_psa_crypto_config_file = "./include/psa/crypto_config.h";
Tom Cosgroveef83b832022-07-25 11:42:38 +010042my $default_query_config_format_file = "./scripts/data_files/query_config.fmt";
43my $default_query_config_file = "./programs/test/query_config.c";
Andres Amaya Garcia88121a92018-10-16 22:00:13 +010044
Manuel Pégourié-Gonnard3a8413d2021-05-14 09:23:57 +020045if( @ARGV ) {
Ronald Croneab20552023-08-30 17:36:25 +020046 die "Invalid number of arguments - usage: $0 [CONFIG_FILE TEMPLATE_FILE OUTPUT_FILE]" if scalar @ARGV != 4;
47 ($mbedtls_config_file, $psa_crypto_config_file, $query_config_format_file, $query_config_file) = @ARGV;
Andres Amaya Garcia88121a92018-10-16 22:00:13 +010048
Tom Cosgroveef83b832022-07-25 11:42:38 +010049 -f $mbedtls_config_file or die "No such file: $mbedtls_config_file";
Ronald Croneab20552023-08-30 17:36:25 +020050 -f $psa_crypto_config_file or die "No such file: $psa_crypto_config_file";
Manuel Pégourié-Gonnard3a8413d2021-05-14 09:23:57 +020051 -f $query_config_format_file or die "No such file: $query_config_format_file";
52} else {
Tom Cosgroveef83b832022-07-25 11:42:38 +010053 $mbedtls_config_file = $default_mbedtls_config_file;
Ronald Croneab20552023-08-30 17:36:25 +020054 $psa_crypto_config_file = $default_psa_crypto_config_file;
Tom Cosgroveef83b832022-07-25 11:42:38 +010055 $query_config_format_file = $default_query_config_format_file;
56 $query_config_file = $default_query_config_file;
Manuel Pégourié-Gonnard3a8413d2021-05-14 09:23:57 +020057
Tom Cosgroveff3c6c12022-07-25 12:19:35 +010058 unless(-f $mbedtls_config_file && -f $query_config_format_file && -f $psa_crypto_config_file) {
Manuel Pégourié-Gonnard3a8413d2021-05-14 09:23:57 +020059 chdir '..' or die;
Tom Cosgroveff3c6c12022-07-25 12:19:35 +010060 -f $mbedtls_config_file && -f $query_config_format_file && -f $psa_crypto_config_file
David Horstmannd64f4b22021-10-20 12:29:47 +010061 or die "No arguments supplied, must be run from project root or a first-level subdirectory\n";
Manuel Pégourié-Gonnard3a8413d2021-05-14 09:23:57 +020062 }
Gilles Peskinec86f20a2021-04-22 00:20:47 +020063}
64
Andres Amaya Garciaef672f02019-01-03 20:16:43 +000065# Excluded macros from the generated query_config.c. For example, macros that
66# have commas or function-like macros cannot be transformed into strings easily
67# using the preprocessor, so they should be excluded or the preprocessor will
68# throw errors.
69my @excluded = qw(
70MBEDTLS_SSL_CIPHERSUITES
71);
72my $excluded_re = join '|', @excluded;
73
Andres Amaya Garcia88121a92018-10-16 22:00:13 +010074# This variable will contain the string to replace in the CHECK_CONFIG of the
75# format file
76my $config_check = "";
Jerry Yu84e63a72021-12-06 13:40:37 +080077my $list_config = "";
Andres Amaya Garcia88121a92018-10-16 22:00:13 +010078
Tom Cosgroveff3c6c12022-07-25 12:19:35 +010079for my $config_file ($mbedtls_config_file, $psa_crypto_config_file) {
Tom Cosgroveef83b832022-07-25 11:42:38 +010080
Tom Cosgroveff3c6c12022-07-25 12:19:35 +010081 next unless defined($config_file); # we might not have been given a PSA crypto config file
Andres Amaya Garcia88121a92018-10-16 22:00:13 +010082
Tom Cosgroveff3c6c12022-07-25 12:19:35 +010083 open(CONFIG_FILE, "<", $config_file) or die "Opening config file '$config_file': $!";
Andres Amaya Garciaef672f02019-01-03 20:16:43 +000084
Tom Cosgroveff3c6c12022-07-25 12:19:35 +010085 while (my $line = <CONFIG_FILE>) {
86 if ($line =~ /^(\/\/)?\s*#\s*define\s+(MBEDTLS_\w+|PSA_WANT_\w+).*/) {
87 my $name = $2;
88
Tom Cosgrove5900c1d2022-07-27 08:55:03 +010089 # Skip over the macro if it is in the excluded list
Tom Cosgroveff3c6c12022-07-25 12:19:35 +010090 next if $name =~ /$excluded_re/;
91
92 $config_check .= <<EOT;
Tom Cosgroveef83b832022-07-25 11:42:38 +010093#if defined($name)
94 if( strcmp( "$name", config ) == 0 )
95 {
96 MACRO_EXPANSION_TO_STR( $name );
97 return( 0 );
98 }
99#endif /* $name */
Jerry Yu84e63a72021-12-06 13:40:37 +0800100
Tom Cosgroveef83b832022-07-25 11:42:38 +0100101EOT
102
Tom Cosgroveff3c6c12022-07-25 12:19:35 +0100103 $list_config .= <<EOT;
Tom Cosgroveef83b832022-07-25 11:42:38 +0100104#if defined($name)
105 OUTPUT_MACRO_NAME_VALUE($name);
106#endif /* $name */
107
108EOT
Tom Cosgroveff3c6c12022-07-25 12:19:35 +0100109 }
Andres Amaya Garcia88121a92018-10-16 22:00:13 +0100110 }
Andres Amaya Garcia88121a92018-10-16 22:00:13 +0100111
Tom Cosgroveff3c6c12022-07-25 12:19:35 +0100112 close(CONFIG_FILE);
113}
Tom Cosgroveef83b832022-07-25 11:42:38 +0100114
Andres Amaya Garcia109f8b62018-10-23 19:53:14 +0100115# Read the full format file into a string
Andres Amaya Garcia88121a92018-10-16 22:00:13 +0100116local $/;
Tom Cosgroveef83b832022-07-25 11:42:38 +0100117open(FORMAT_FILE, "<", $query_config_format_file) or die "Opening query config format file '$query_config_format_file': $!";
Andres Amaya Garcia88121a92018-10-16 22:00:13 +0100118my $query_config_format = <FORMAT_FILE>;
119close(FORMAT_FILE);
120
121# Replace the body of the query_config() function with the code we just wrote
122$query_config_format =~ s/CHECK_CONFIG/$config_check/g;
Jerry Yu84e63a72021-12-06 13:40:37 +0800123$query_config_format =~ s/LIST_CONFIG/$list_config/g;
Andres Amaya Garcia88121a92018-10-16 22:00:13 +0100124
125# Rewrite the query_config.c file
Tom Cosgroveef83b832022-07-25 11:42:38 +0100126open(QUERY_CONFIG_FILE, ">", $query_config_file) or die "Opening destination file '$query_config_file': $!";
Andres Amaya Garcia88121a92018-10-16 22:00:13 +0100127print QUERY_CONFIG_FILE $query_config_format;
128close(QUERY_CONFIG_FILE);