blob: 14c92b2214d09f29ad78c6168b7e639328bf4819 [file] [log] [blame]
Manuel Pégourié-Gonnard902bb6a2017-06-06 12:42:41 +02001#!/usr/bin/perl
2
3# depends-pkalgs.pl
4#
5# Copyright (c) 2017, ARM Limited, All Rights Reserved
6#
7# Purpose
8#
Manuel Pégourié-Gonnard562df402017-08-08 18:09:14 +02009# To test the code dependencies on individual PK algs (those that can be used
10# from the PK layer, so currently signature and encryption but not key
11# exchange) in each test suite. This is a verification step to ensure we don't
12# ship test suites that do not work for some build options.
Manuel Pégourié-Gonnard902bb6a2017-06-06 12:42:41 +020013#
14# The process is:
15# for each possible PK alg
16# build the library and test suites with that alg disabled
17# execute the test suites
18#
19# And any test suite with the wrong dependencies will fail.
20#
21# Usage: tests/scripts/depends-pkalgs.pl
22#
23# This script should be executed from the root of the project directory.
24#
25# For best effect, run either with cmake disabled, or cmake enabled in a mode
26# that includes -Werror.
27
28use warnings;
29use strict;
30
31-d 'library' && -d 'include' && -d 'tests' or die "Must be run from root\n";
32
33my $config_h = 'include/mbedtls/config.h';
34
Manuel Pégourié-Gonnard562df402017-08-08 18:09:14 +020035# Some algorithms can't be disabled on their own as others depend on them, so
36# we list those reverse-dependencies here to keep check_config.h happy.
Manuel Pégourié-Gonnard902bb6a2017-06-06 12:42:41 +020037my %algs = (
Gert van Dijk25d124d2017-09-05 14:25:52 +020038 'MBEDTLS_ECDSA_C' => ['MBEDTLS_KEY_EXCHANGE_ECDHE_ECDSA_ENABLED'],
39 'MBEDTLS_ECP_C' => ['MBEDTLS_ECDSA_C',
40 'MBEDTLS_ECDH_C',
41 'MBEDTLS_ECJPAKE_C',
42 'MBEDTLS_KEY_EXCHANGE_ECDH_ECDSA_ENABLED',
43 'MBEDTLS_KEY_EXCHANGE_ECDH_RSA_ENABLED',
44 'MBEDTLS_KEY_EXCHANGE_ECDHE_PSK_ENABLED',
45 'MBEDTLS_KEY_EXCHANGE_ECDHE_RSA_ENABLED',
46 'MBEDTLS_KEY_EXCHANGE_ECDHE_ECDSA_ENABLED'],
Manuel Pégourié-Gonnard902bb6a2017-06-06 12:42:41 +020047 'MBEDTLS_X509_RSASSA_PSS_SUPPORT' => [],
48 'MBEDTLS_PKCS1_V21' => ['MBEDTLS_X509_RSASSA_PSS_SUPPORT'],
Gert van Dijk25d124d2017-09-05 14:25:52 +020049 'MBEDTLS_PKCS1_V15' => ['MBEDTLS_KEY_EXCHANGE_DHE_RSA_ENABLED',
50 'MBEDTLS_KEY_EXCHANGE_ECDHE_RSA_ENABLED',
51 'MBEDTLS_KEY_EXCHANGE_RSA_PSK_ENABLED',
52 'MBEDTLS_KEY_EXCHANGE_RSA_ENABLED'],
53 'MBEDTLS_RSA_C' => ['MBEDTLS_X509_RSASSA_PSS_SUPPORT',
54 'MBEDTLS_KEY_EXCHANGE_DHE_RSA_ENABLED',
55 'MBEDTLS_KEY_EXCHANGE_ECDHE_RSA_ENABLED',
56 'MBEDTLS_KEY_EXCHANGE_RSA_PSK_ENABLED',
57 'MBEDTLS_KEY_EXCHANGE_RSA_ENABLED'],
Manuel Pégourié-Gonnard902bb6a2017-06-06 12:42:41 +020058);
59
60system( "cp $config_h $config_h.bak" ) and die;
61sub abort {
62 system( "mv $config_h.bak $config_h" ) and warn "$config_h not restored\n";
Manuel Pégourié-Gonnard254eec82017-10-26 09:47:36 +020063 # use an exit code between 1 and 124 for git bisect (die returns 255)
Manuel Pégourié-Gonnarda7c4c8a2017-07-12 12:15:24 +020064 warn $_[0];
65 exit 1;
Manuel Pégourié-Gonnard902bb6a2017-06-06 12:42:41 +020066}
67
68while( my ($alg, $extras) = each %algs ) {
69 system( "cp $config_h.bak $config_h" ) and die "$config_h not restored\n";
70 system( "make clean" ) and die;
71
72 print "\n******************************************\n";
73 print "* Testing without alg: $alg\n";
74 print "******************************************\n";
75
76 system( "scripts/config.pl unset $alg" )
77 and abort "Failed to disable $alg\n";
78 for my $opt (@$extras) {
79 system( "scripts/config.pl unset $opt" )
80 and abort "Failed to disable $opt\n";
81 }
82
Manuel Pégourié-Gonnard902bb6a2017-06-06 12:42:41 +020083 system( "CFLAGS='-Werror -Wall -Wextra' make lib" )
84 and abort "Failed to build lib: $alg\n";
85 system( "cd tests && make" ) and abort "Failed to build tests: $alg\n";
86 system( "make test" ) and abort "Failed test suite: $alg\n";
87}
88
89system( "mv $config_h.bak $config_h" ) and die "$config_h not restored\n";
90system( "make clean" ) and die;
91exit 0;