blob: 72c7f4103805e04afc7b7b8223fc4430688a417b [file] [log] [blame]
fbrosson533407a2018-04-04 21:44:29 +00001#!/usr/bin/env perl
Manuel Pégourié-Gonnard902bb6a2017-06-06 12:42:41 +02002
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 = (
Jaeden Amero1c66e482018-11-02 18:15:18 +000038 'MBEDTLS_ECDSA_C' => [],
Gert van Dijk25d124d2017-09-05 14:25:52 +020039 'MBEDTLS_ECP_C' => ['MBEDTLS_ECDSA_C',
40 'MBEDTLS_ECDH_C',
Jaeden Amero1c66e482018-11-02 18:15:18 +000041 'MBEDTLS_ECJPAKE_C'],
Jaeden Amerobb1f7012018-11-02 18:15:18 +000042 'MBEDTLS_PKCS1_V21' => [],
Jaeden Amero1c66e482018-11-02 18:15:18 +000043 'MBEDTLS_PKCS1_V15' => [],
Jaeden Amerobb1f7012018-11-02 18:15:18 +000044 'MBEDTLS_RSA_C' => [],
Manuel Pégourié-Gonnard902bb6a2017-06-06 12:42:41 +020045);
46
47system( "cp $config_h $config_h.bak" ) and die;
48sub abort {
49 system( "mv $config_h.bak $config_h" ) and warn "$config_h not restored\n";
Manuel Pégourié-Gonnard254eec82017-10-26 09:47:36 +020050 # use an exit code between 1 and 124 for git bisect (die returns 255)
Manuel Pégourié-Gonnarda7c4c8a2017-07-12 12:15:24 +020051 warn $_[0];
52 exit 1;
Manuel Pégourié-Gonnard902bb6a2017-06-06 12:42:41 +020053}
54
55while( my ($alg, $extras) = each %algs ) {
56 system( "cp $config_h.bak $config_h" ) and die "$config_h not restored\n";
57 system( "make clean" ) and die;
58
59 print "\n******************************************\n";
60 print "* Testing without alg: $alg\n";
61 print "******************************************\n";
62
63 system( "scripts/config.pl unset $alg" )
64 and abort "Failed to disable $alg\n";
65 for my $opt (@$extras) {
66 system( "scripts/config.pl unset $opt" )
67 and abort "Failed to disable $opt\n";
68 }
69
Manuel Pégourié-Gonnard902bb6a2017-06-06 12:42:41 +020070 system( "CFLAGS='-Werror -Wall -Wextra' make lib" )
71 and abort "Failed to build lib: $alg\n";
72 system( "cd tests && make" ) and abort "Failed to build tests: $alg\n";
73 system( "make test" ) and abort "Failed test suite: $alg\n";
74}
75
76system( "mv $config_h.bak $config_h" ) and die "$config_h not restored\n";
77system( "make clean" ) and die;
78exit 0;