blob: 7855c7caa40459572a5fabc882320f0410cd2540 [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#
10# The query_config.c is generated from the current configuration at
Bence Szépkútibb0cfeb2021-05-28 09:42:25 +020011# include/mbedtls/mbedtls_config.h. The idea is that the mbedtls_config.h contains ALL the
Andres Amaya Garcia88121a92018-10-16 22:00:13 +010012# compile time configurations available in Mbed TLS (commented or uncommented).
Bence Szépkútibb0cfeb2021-05-28 09:42:25 +020013# This script extracts the configuration macros from the mbedtls_config.h and this
Andres Amaya Garcia88121a92018-10-16 22:00:13 +010014# information is used to automatically generate the body of the query_config()
15# function by using the template in scripts/data_files/query_config.fmt.
16#
Manuel Pégourié-Gonnard3a8413d2021-05-14 09:23:57 +020017# Usage: scripts/generate_query_config.pl without arguments, or
18# generate_query_config.pl config_file template_file output_file
Bence Szépkúti700ee442020-05-26 00:33:31 +020019#
Bence Szépkúti1e148272020-08-07 13:07:28 +020020# Copyright The Mbed TLS Contributors
Bence Szépkútic7da1fe2020-05-26 01:54:15 +020021# SPDX-License-Identifier: Apache-2.0
22#
23# Licensed under the Apache License, Version 2.0 (the "License"); you may
24# not use this file except in compliance with the License.
25# You may obtain a copy of the License at
26#
27# http://www.apache.org/licenses/LICENSE-2.0
28#
29# Unless required by applicable law or agreed to in writing, software
30# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
31# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
32# See the License for the specific language governing permissions and
33# limitations under the License.
Andres Amaya Garcia88121a92018-10-16 22:00:13 +010034
35use strict;
36
Manuel Pégourié-Gonnard3a8413d2021-05-14 09:23:57 +020037my ($config_file, $query_config_format_file, $query_config_file);
Andres Amaya Garcia88121a92018-10-16 22:00:13 +010038
Manuel Pégourié-Gonnard3a8413d2021-05-14 09:23:57 +020039if( @ARGV ) {
David Horstmannff0a3b32021-10-20 14:04:02 +010040 die "Invalid number of arguments - usage: $0 [CONFIG_FILE TEMPLATE_FILE OUTPUT_FILE]" if scalar @ARGV != 3;
Manuel Pégourié-Gonnard3a8413d2021-05-14 09:23:57 +020041 ($config_file, $query_config_format_file, $query_config_file) = @ARGV;
Andres Amaya Garcia88121a92018-10-16 22:00:13 +010042
Manuel Pégourié-Gonnard3a8413d2021-05-14 09:23:57 +020043 -f $config_file or die "No such file: $config_file";
44 -f $query_config_format_file or die "No such file: $query_config_format_file";
45} else {
46 $config_file = "./include/mbedtls/mbedtls_config.h";
47 $query_config_format_file = "./scripts/data_files/query_config.fmt";
48 $query_config_file = "./programs/test/query_config.c";
49
50 unless( -f $config_file && -f $query_config_format_file ) {
51 chdir '..' or die;
52 -f $config_file && -f $query_config_format_file
David Horstmannd64f4b22021-10-20 12:29:47 +010053 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 +020054 }
Gilles Peskinec86f20a2021-04-22 00:20:47 +020055}
56
Andres Amaya Garciaef672f02019-01-03 20:16:43 +000057# Excluded macros from the generated query_config.c. For example, macros that
58# have commas or function-like macros cannot be transformed into strings easily
59# using the preprocessor, so they should be excluded or the preprocessor will
60# throw errors.
61my @excluded = qw(
62MBEDTLS_SSL_CIPHERSUITES
63);
64my $excluded_re = join '|', @excluded;
65
Andres Amaya Garcia88121a92018-10-16 22:00:13 +010066open(CONFIG_FILE, "$config_file") or die "Opening config file '$config_file': $!";
67
68# This variable will contain the string to replace in the CHECK_CONFIG of the
69# format file
70my $config_check = "";
71
72while (my $line = <CONFIG_FILE>) {
73 if ($line =~ /^(\/\/)?\s*#\s*define\s+(MBEDTLS_\w+).*/) {
74 my $name = $2;
75
Andres Amaya Garciaef672f02019-01-03 20:16:43 +000076 # Skip over the macro if it is in the ecluded list
77 next if $name =~ /$excluded_re/;
78
Andres Amaya Garcia88121a92018-10-16 22:00:13 +010079 $config_check .= "#if defined($name)\n";
80 $config_check .= " if( strcmp( \"$name\", config ) == 0 )\n";
81 $config_check .= " {\n";
Andres Amaya Garcia27b33722018-12-05 10:47:31 +000082 $config_check .= " MACRO_EXPANSION_TO_STR( $name );\n";
Andres Amaya Garcia88121a92018-10-16 22:00:13 +010083 $config_check .= " return( 0 );\n";
84 $config_check .= " }\n";
85 $config_check .= "#endif /* $name */\n";
86 $config_check .= "\n";
87 }
88}
89
Andres Amaya Garcia109f8b62018-10-23 19:53:14 +010090# Read the full format file into a string
Andres Amaya Garcia88121a92018-10-16 22:00:13 +010091local $/;
92open(FORMAT_FILE, "$query_config_format_file") or die "Opening query config format file '$query_config_format_file': $!";
93my $query_config_format = <FORMAT_FILE>;
94close(FORMAT_FILE);
95
96# Replace the body of the query_config() function with the code we just wrote
97$query_config_format =~ s/CHECK_CONFIG/$config_check/g;
98
99# Rewrite the query_config.c file
100open(QUERY_CONFIG_FILE, ">$query_config_file") or die "Opening destination file '$query_config_file': $!";
101print QUERY_CONFIG_FILE $query_config_format;
102close(QUERY_CONFIG_FILE);