17d553d299
This uses the x86 trap flag and libunwind to test CFI works at each instruction. For now, it just uses the system one out of pkg-config and disables unwind tests if unavailable. We'll probably want to stick a copy into //third_party and perhaps try the LLVM one later. This tester caught two bugs in P-256 CFI annotations already: I47b5f9798b3bcee1748e537b21c173d312a14b42 and I9f576d868850312d6c14d1386f8fbfa85021b347 An earlier design used PTRACE_SINGLESTEP with libunwind's remote unwinding features. ptrace is a mess around stop signals (see group-stop discussion in ptrace(2)) and this is 10x faster, so I went with it. The question of which is more future-proof is complex: - There are two libunwinds with the same API, https://www.nongnu.org/libunwind/ and LLVM's. This currently uses the system nongnu.org for convenience. In future, LLVM's should be easier to bundle (less complex build) and appears to even support Windows, but I haven't tested this. Moreover, setting the trap flag keeps the test single-process, which is less complex on Windows. That suggests the trap flag design and switching to LLVM later. However... - Not all architectures have a trap flag settable by userspace. As far as I can tell, ARMv8's PSTATE.SS can only be set from the kernel. If we stick with nongnu.org libunwind, we can use PTRACE_SINGLESTEP and remote unwinding. Or we implement it for LLVM. Another thought is for the ptracer to bounce SIGTRAP back into the process, to share the local unwinding code. - ARMv7 has no trap flag at all and PTRACE_SINGLESTEP fails. Debuggers single-step by injecting breakpoints instead. However, ARMv8's trap flag seems to work in both AArch32 and AArch64 modes, so we may be able to condition it on a 64-bit kernel. Sadly, neither strategy works with Intel SDE. Adding flags to cpucap vectors as we do with ARM would help, but it would not emulate CPUs newer than the host CPU. For now, I've just had SDE tests disable these. Annoyingly, CMake does not allow object libraries to have dependencies, so make test_support a proper static library. Rename the target to test_support_lib to avoid https://gitlab.kitware.com/cmake/cmake/issues/17785 Update-Note: This adds a new optional test dependency, but it's disabled by default (define BORINGSSL_HAVE_LIBUNWIND), so consumers do not need to do anything. We'll probably want to adjust this in the future. Bug: 181 Change-Id: I817263d7907aff0904a9cee83f8b26747262cc0c Reviewed-on: https://boringssl-review.googlesource.com/c/33966 Commit-Queue: David Benjamin <davidben@google.com> Reviewed-by: Adam Langley <agl@google.com>
48 lines
890 B
CMake
48 lines
890 B
CMake
include_directories(../include)
|
|
|
|
add_library(
|
|
decrepit
|
|
|
|
bio/base64_bio.c
|
|
blowfish/blowfish.c
|
|
cast/cast.c
|
|
cast/cast_tables.c
|
|
cfb/cfb.c
|
|
des/cfb64ede.c
|
|
dh/dh_decrepit.c
|
|
dsa/dsa_decrepit.c
|
|
evp/dss1.c
|
|
evp/evp_do_all.c
|
|
obj/obj_decrepit.c
|
|
rc4/rc4_decrepit.c
|
|
ripemd/ripemd.c
|
|
rsa/rsa_decrepit.c
|
|
ssl/ssl_decrepit.c
|
|
x509/x509_decrepit.c
|
|
xts/xts.c
|
|
)
|
|
|
|
add_dependencies(decrepit global_target)
|
|
|
|
target_link_libraries(decrepit crypto ssl)
|
|
|
|
add_executable(
|
|
decrepit_test
|
|
|
|
blowfish/blowfish_test.cc
|
|
cast/cast_test.cc
|
|
cfb/cfb_test.cc
|
|
ripemd/ripemd_test.cc
|
|
|
|
$<TARGET_OBJECTS:boringssl_gtest_main>
|
|
)
|
|
|
|
add_dependencies(decrepit_test global_target)
|
|
|
|
target_link_libraries(decrepit_test test_support_lib boringssl_gtest decrepit
|
|
crypto)
|
|
if(WIN32)
|
|
target_link_libraries(decrepit_test ws2_32)
|
|
endif()
|
|
add_dependencies(all_tests decrepit_test)
|