2021-10-19 15:05:36 +02:00
|
|
|
#!/usr/bin/env python3
|
2021-12-21 06:14:10 +01:00
|
|
|
"""Run the PSA Crypto API compliance test suite.
|
2021-11-02 13:41:14 +01:00
|
|
|
Clone the repo and check out the commit specified by PSA_ARCH_TEST_REPO and PSA_ARCH_TEST_REF,
|
2022-12-04 18:19:59 +01:00
|
|
|
then compile and run the test suite. The clone is stored at <Mbed TLS root>/psa-arch-tests.
|
2021-11-02 13:41:14 +01:00
|
|
|
Known defects in either the test suite or mbedtls - identified by their test number - are ignored,
|
|
|
|
while unexpected failures AND successes are reported as errors,
|
|
|
|
to help keep the list of known defects as up to date as possible.
|
|
|
|
"""
|
2021-11-02 14:01:08 +01:00
|
|
|
|
|
|
|
# Copyright The Mbed TLS Contributors
|
|
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
#
|
|
|
|
# Licensed under the Apache License, Version 2.0 (the "License"); you may
|
|
|
|
# not use this file except in compliance with the License.
|
|
|
|
# You may obtain a copy of the License at
|
|
|
|
#
|
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
#
|
|
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
|
|
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
|
|
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
# See the License for the specific language governing permissions and
|
|
|
|
# limitations under the License.
|
|
|
|
|
2021-10-19 15:05:36 +02:00
|
|
|
import os
|
|
|
|
import re
|
|
|
|
import shutil
|
|
|
|
import subprocess
|
|
|
|
import sys
|
|
|
|
|
2021-11-09 21:30:43 +01:00
|
|
|
# PSA Compliance tests we expect to fail due to known defects in Mbed TLS (or the test suite)
|
|
|
|
# The test numbers correspond to the numbers used by the console output of the test suite.
|
|
|
|
# Test number 2xx corresponds to the files in the folder
|
|
|
|
# psa-arch-tests/api-tests/dev_apis/crypto/test_c0xx
|
2021-10-19 15:05:36 +02:00
|
|
|
EXPECTED_FAILURES = {
|
2021-11-09 21:30:43 +01:00
|
|
|
# psa_hash_suspend() and psa_hash_resume() are not supported.
|
|
|
|
# - Tracked in issue #3274
|
|
|
|
262, 263
|
2021-10-19 15:05:36 +02:00
|
|
|
}
|
2021-11-09 17:33:57 +01:00
|
|
|
|
|
|
|
# We currently use a fork of ARM-software/psa-arch-tests, with a couple of downstream patches
|
|
|
|
# that allow it to build with MbedTLS 3, and fixes a couple of issues in the compliance test suite.
|
|
|
|
# These fixes allow the tests numbered 216, 248 and 249 to complete successfully.
|
|
|
|
#
|
|
|
|
# Once all the fixes are upstreamed, this fork should be replaced with an upstream commit/tag.
|
2021-11-09 22:13:46 +01:00
|
|
|
# - Tracked in issue #5145
|
2021-11-09 17:33:57 +01:00
|
|
|
#
|
|
|
|
# Web URL: https://github.com/bensze01/psa-arch-tests/tree/fixes-for-mbedtls-3
|
|
|
|
PSA_ARCH_TESTS_REPO = 'https://github.com/bensze01/psa-arch-tests.git'
|
2022-05-17 17:23:09 +02:00
|
|
|
PSA_ARCH_TESTS_REF = 'fix-pr-5736'
|
2021-10-19 15:05:36 +02:00
|
|
|
|
2021-11-02 13:48:39 +01:00
|
|
|
#pylint: disable=too-many-branches,too-many-statements
|
2021-10-19 15:05:36 +02:00
|
|
|
def main():
|
|
|
|
mbedtls_dir = os.getcwd()
|
|
|
|
|
2021-10-25 19:29:07 +02:00
|
|
|
if not os.path.exists('library/libmbedcrypto.a'):
|
|
|
|
subprocess.check_call(['make', '-C', 'library', 'libmbedcrypto.a'])
|
2021-10-19 15:05:36 +02:00
|
|
|
|
|
|
|
psa_arch_tests_dir = 'psa-arch-tests'
|
2021-11-02 14:06:40 +01:00
|
|
|
os.makedirs(psa_arch_tests_dir, exist_ok=True)
|
2021-11-02 13:48:39 +01:00
|
|
|
try:
|
|
|
|
os.chdir(psa_arch_tests_dir)
|
2021-10-19 15:05:36 +02:00
|
|
|
|
2021-11-03 11:32:51 +01:00
|
|
|
# Reuse existing local clone
|
2021-11-02 13:48:39 +01:00
|
|
|
subprocess.check_call(['git', 'init'])
|
|
|
|
subprocess.check_call(['git', 'fetch', PSA_ARCH_TESTS_REPO, PSA_ARCH_TESTS_REF])
|
|
|
|
subprocess.check_call(['git', 'checkout', 'FETCH_HEAD'])
|
2021-10-19 15:05:36 +02:00
|
|
|
|
2021-11-02 13:48:39 +01:00
|
|
|
build_dir = 'api-tests/build'
|
|
|
|
try:
|
|
|
|
shutil.rmtree(build_dir)
|
|
|
|
except FileNotFoundError:
|
|
|
|
pass
|
|
|
|
os.mkdir(build_dir)
|
|
|
|
os.chdir(build_dir)
|
2021-10-19 15:05:36 +02:00
|
|
|
|
2021-11-02 13:48:39 +01:00
|
|
|
#pylint: disable=bad-continuation
|
|
|
|
subprocess.check_call([
|
|
|
|
'cmake', '..',
|
|
|
|
'-GUnix Makefiles',
|
|
|
|
'-DTARGET=tgt_dev_apis_stdc',
|
|
|
|
'-DTOOLCHAIN=HOST_GCC',
|
|
|
|
'-DSUITE=CRYPTO',
|
|
|
|
'-DPSA_CRYPTO_LIB_FILENAME={}/library/libmbedcrypto.a'.format(mbedtls_dir),
|
|
|
|
'-DPSA_INCLUDE_PATHS={}/include'.format(mbedtls_dir)
|
|
|
|
])
|
|
|
|
subprocess.check_call(['cmake', '--build', '.'])
|
2021-10-19 15:05:36 +02:00
|
|
|
|
2021-11-02 13:48:39 +01:00
|
|
|
proc = subprocess.Popen(['./psa-arch-tests-crypto'],
|
|
|
|
bufsize=1, stdout=subprocess.PIPE, universal_newlines=True)
|
2021-10-19 15:05:36 +02:00
|
|
|
|
2021-11-02 13:48:39 +01:00
|
|
|
test_re = re.compile(
|
|
|
|
'^TEST: (?P<test_num>[0-9]*)|'
|
|
|
|
'^TEST RESULT: (?P<test_result>FAILED|PASSED)'
|
|
|
|
)
|
|
|
|
test = -1
|
|
|
|
unexpected_successes = set(EXPECTED_FAILURES)
|
|
|
|
expected_failures = []
|
|
|
|
unexpected_failures = []
|
|
|
|
for line in proc.stdout:
|
|
|
|
print(line, end='')
|
|
|
|
match = test_re.match(line)
|
|
|
|
if match is not None:
|
|
|
|
groupdict = match.groupdict()
|
|
|
|
test_num = groupdict['test_num']
|
|
|
|
if test_num is not None:
|
|
|
|
test = int(test_num)
|
|
|
|
elif groupdict['test_result'] == 'FAILED':
|
|
|
|
try:
|
|
|
|
unexpected_successes.remove(test)
|
|
|
|
expected_failures.append(test)
|
|
|
|
print('Expected failure, ignoring')
|
|
|
|
except KeyError:
|
|
|
|
unexpected_failures.append(test)
|
|
|
|
print('ERROR: Unexpected failure')
|
|
|
|
elif test in unexpected_successes:
|
|
|
|
print('ERROR: Unexpected success')
|
|
|
|
proc.wait()
|
2021-10-19 15:05:36 +02:00
|
|
|
|
2021-11-02 13:48:39 +01:00
|
|
|
print()
|
|
|
|
print('***** test_psa_compliance.py report ******')
|
|
|
|
print()
|
|
|
|
print('Expected failures:', ', '.join(str(i) for i in expected_failures))
|
|
|
|
print('Unexpected failures:', ', '.join(str(i) for i in unexpected_failures))
|
|
|
|
print('Unexpected successes:', ', '.join(str(i) for i in sorted(unexpected_successes)))
|
|
|
|
print()
|
|
|
|
if unexpected_successes or unexpected_failures:
|
|
|
|
if unexpected_successes:
|
|
|
|
print('Unexpected successes encountered.')
|
|
|
|
print('Please remove the corresponding tests from '
|
|
|
|
'EXPECTED_FAILURES in tests/scripts/compliance_test.py')
|
|
|
|
print()
|
|
|
|
print('FAILED')
|
|
|
|
return 1
|
|
|
|
else:
|
|
|
|
print('SUCCESS')
|
|
|
|
return 0
|
|
|
|
finally:
|
2021-10-19 15:05:36 +02:00
|
|
|
os.chdir(mbedtls_dir)
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
2021-11-02 13:48:39 +01:00
|
|
|
sys.exit(main())
|