54efa1afc0
Dear reader, I must apologize in advance. This CL contains the following: - A new 256-line perlasm file with non-trivial perl bits and a dual-ABI variadic function caller. - C preprocessor gymnastics, with variadic macros and fun facts about __VA_ARGS__'s behavior on empty argument lists. - C++ template gymnastics, including variadic arguments, template specialization, std::enable_if, and machinery to control template argument deduction. Enjoy. This tests that our assembly functions correctly honor platform ABI conventions. Right now this only tests callee-saved registers, but it should be extendable to SEH/CFI unwind testing with single-step debugging APIs. Register-checking does not involve anything funny and should be compatible with SDE. (The future unwind testing is unlikely to be compatible.) This CL adds support for x86_64 SysV and Win64 ABIs. ARM, AArch64, and x86 can be added in the future. The testing is injected in two places. First, all the assembly tests in p256-x86_64-test.cc are now instrumented. This is the intended workflow and should capture all registers. However, we currently do not unit-test our assembly much directly. We should do that as follow-up work[0] but, in the meantime, I've also wrapped all of the GTest main function in an ABI test. This is imperfect as ABI failures may be masked by other stack frames, but it costs nothing[1] and is pretty reliable at catching Win64 xmm register failures. [0] An alternate strategy would be, in debug builds, unconditionally instrument every assembly call in libcrypto. But the CHECK_ABI macro would be difficult to replicate in pure C, and unwind testing may be too invasive for this. Still, something to consider when we C++ libcrypto. [1] When single-stepped unwind testing exists, it won't cost nothing. The gtest_main.cc call will turn unwind testing off. Change-Id: I6643b26445891fd46abfacac52bc024024c8d7f6 Reviewed-on: https://boringssl-review.googlesource.com/c/33764 Reviewed-by: Adam Langley <agl@google.com> Reviewed-by: Adam Langley <alangley@gmail.com> Commit-Queue: David Benjamin <davidben@google.com>
89 lines
2.7 KiB
C++
89 lines
2.7 KiB
C++
/* Copyright (c) 2016, Google Inc.
|
|
*
|
|
* Permission to use, copy, modify, and/or distribute this software for any
|
|
* purpose with or without fee is hereby granted, provided that the above
|
|
* copyright notice and this permission notice appear in all copies.
|
|
*
|
|
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
|
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
|
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
|
|
* SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
|
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION
|
|
* OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
|
|
* CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */
|
|
|
|
#include <stdio.h>
|
|
#include <string.h>
|
|
|
|
#include <gtest/gtest.h>
|
|
|
|
#include <openssl/cpu.h>
|
|
#include <openssl/rand.h>
|
|
|
|
#include "abi_test.h"
|
|
#include "gtest_main.h"
|
|
#include "../internal.h"
|
|
|
|
#if (defined(OPENSSL_ARM) || defined(OPENSSL_AARCH64)) && \
|
|
!defined(OPENSSL_STATIC_ARMCAP)
|
|
#include <openssl/arm_arch.h>
|
|
#define TEST_ARM_CPUS
|
|
#endif
|
|
|
|
|
|
int main(int argc, char **argv) {
|
|
testing::InitGoogleTest(&argc, argv);
|
|
bssl::SetupGoogleTest();
|
|
|
|
#if !defined(OPENSSL_WINDOWS)
|
|
for (int i = 1; i < argc; i++) {
|
|
if (strcmp(argv[i], "--fork_unsafe_buffering") == 0) {
|
|
RAND_enable_fork_unsafe_buffering(-1);
|
|
}
|
|
}
|
|
#endif
|
|
|
|
#if defined(TEST_ARM_CPUS)
|
|
for (int i = 1; i < argc; i++) {
|
|
if (strncmp(argv[i], "--cpu=", 6) == 0) {
|
|
const char *cpu = argv[i] + 6;
|
|
uint32_t armcap;
|
|
if (strcmp(cpu, "none") == 0) {
|
|
armcap = 0;
|
|
} else if (strcmp(cpu, "neon") == 0) {
|
|
armcap = ARMV7_NEON;
|
|
} else if (strcmp(cpu, "crypto") == 0) {
|
|
armcap = ARMV7_NEON | ARMV8_AES | ARMV8_SHA1 | ARMV8_SHA256 | ARMV8_PMULL;
|
|
} else {
|
|
fprintf(stderr, "Unknown CPU: %s\n", cpu);
|
|
exit(1);
|
|
}
|
|
|
|
uint32_t *armcap_ptr = OPENSSL_get_armcap_pointer_for_test();
|
|
if ((armcap & *armcap_ptr) != armcap) {
|
|
fprintf(stderr,
|
|
"Host CPU does not support features for testing CPU '%s'.\n",
|
|
cpu);
|
|
exit(89);
|
|
}
|
|
printf("Simulating CPU '%s'\n", cpu);
|
|
*armcap_ptr = armcap;
|
|
}
|
|
}
|
|
#endif // TEST_ARM_CPUS
|
|
|
|
// Run the entire test suite under an ABI check. This is less effective than
|
|
// testing the individual assembly functions, but will catch issues with
|
|
// rarely-used registers.
|
|
abi_test::Result abi;
|
|
int ret = abi_test::Check(&abi, RUN_ALL_TESTS);
|
|
if (!abi.ok()) {
|
|
fprintf(stderr, "ABI failure in test suite:\n");
|
|
for (const auto &error : abi.errors) {
|
|
fprintf(stderr, " %s\n", error.c_str());
|
|
}
|
|
exit(1);
|
|
}
|
|
return ret;
|
|
}
|