blob: f15e03a3585354eebd776c4ea9f5e926c0aa457b [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
11# include/mbedtls/config.h. The idea is that the config.h contains ALL the
12# compile time configurations available in Mbed TLS (commented or uncommented).
13# This script extracts the configuration macros from the config.h and this
14# 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#
17# Usage: ./scripts/generate_query_config.pl without arguments
18
19use strict;
20
21my $config_file = "./include/mbedtls/config.h";
22
23my $query_config_format_file = "./scripts/data_files/query_config.fmt";
24my $query_config_file = "./programs/ssl/query_config.c";
25
Andres Amaya Garciaef672f02019-01-03 20:16:43 +000026# Excluded macros from the generated query_config.c. For example, macros that
27# have commas or function-like macros cannot be transformed into strings easily
28# using the preprocessor, so they should be excluded or the preprocessor will
29# throw errors.
30my @excluded = qw(
31MBEDTLS_SSL_CIPHERSUITES
Andres Amaya Garcia8645f732019-01-08 20:02:48 +000032MBEDTLS_PARAM_FAILED
Andres Amaya Garciaef672f02019-01-03 20:16:43 +000033);
34my $excluded_re = join '|', @excluded;
35
Andres Amaya Garcia88121a92018-10-16 22:00:13 +010036open(CONFIG_FILE, "$config_file") or die "Opening config file '$config_file': $!";
37
38# This variable will contain the string to replace in the CHECK_CONFIG of the
39# format file
40my $config_check = "";
41
42while (my $line = <CONFIG_FILE>) {
43 if ($line =~ /^(\/\/)?\s*#\s*define\s+(MBEDTLS_\w+).*/) {
44 my $name = $2;
45
46 # Skip over the macro that prevents multiple inclusion
47 next if "MBEDTLS_CONFIG_H" eq $name;
48
Andres Amaya Garciaef672f02019-01-03 20:16:43 +000049 # Skip over the macro if it is in the ecluded list
50 next if $name =~ /$excluded_re/;
51
Andres Amaya Garcia88121a92018-10-16 22:00:13 +010052 $config_check .= "#if defined($name)\n";
53 $config_check .= " if( strcmp( \"$name\", config ) == 0 )\n";
54 $config_check .= " {\n";
Andres Amaya Garcia27b33722018-12-05 10:47:31 +000055 $config_check .= " MACRO_EXPANSION_TO_STR( $name );\n";
Andres Amaya Garcia88121a92018-10-16 22:00:13 +010056 $config_check .= " return( 0 );\n";
57 $config_check .= " }\n";
58 $config_check .= "#endif /* $name */\n";
59 $config_check .= "\n";
60 }
61}
62
Andres Amaya Garcia109f8b62018-10-23 19:53:14 +010063# Read the full format file into a string
Andres Amaya Garcia88121a92018-10-16 22:00:13 +010064local $/;
65open(FORMAT_FILE, "$query_config_format_file") or die "Opening query config format file '$query_config_format_file': $!";
66my $query_config_format = <FORMAT_FILE>;
67close(FORMAT_FILE);
68
69# Replace the body of the query_config() function with the code we just wrote
70$query_config_format =~ s/CHECK_CONFIG/$config_check/g;
71
72# Rewrite the query_config.c file
73open(QUERY_CONFIG_FILE, ">$query_config_file") or die "Opening destination file '$query_config_file': $!";
74print QUERY_CONFIG_FILE $query_config_format;
75close(QUERY_CONFIG_FILE);