bareflank-hypervisor/bfdriver/tests/test_common_load.cpp

198 lines
5.7 KiB
C++
Raw Permalink Normal View History

//
// Bareflank Hypervisor
// Copyright (C) 2015 Assured Information Security, Inc.
//
// This library is free software; you can redistribute it and/or
// modify it under the terms of the GNU Lesser General Public
// License as published by the Free Software Foundation; either
// version 2.1 of the License, or (at your option) any later version.
//
// This library is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
// Lesser General Public License for more details.
//
// You should have received a copy of the GNU Lesser General Public
// License along with this library; if not, write to the Free Software
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
#include <catch/catch.hpp>
#include <hippomocks.h>
#include <bfdriverinterface.h>
#include <common.h>
#include <test_support.h>
#ifdef _HIPPOMOCKS__ENABLE_CFUNC_MOCKING_SUPPORT
TEST_CASE("common_load_vmm: success")
{
binaries_info info{&g_file, g_filenames_success, false};
for (const auto &binary : info.binaries()) {
REQUIRE(common_add_module(binary.file, binary.file_size) == BF_SUCCESS);
}
CHECK(common_load_vmm() == BF_SUCCESS);
CHECK(common_fini() == BF_SUCCESS);
}
TEST_CASE("common_load_vmm: already loaded")
{
binaries_info info{&g_file, g_filenames_success, false};
for (const auto &binary : info.binaries()) {
REQUIRE(common_add_module(binary.file, binary.file_size) == BF_SUCCESS);
}
CHECK(common_load_vmm() == BF_SUCCESS);
CHECK(common_load_vmm() == BF_SUCCESS);
CHECK(common_fini() == BF_SUCCESS);
}
TEST_CASE("common_load_vmm: already running")
{
binaries_info info{&g_file, g_filenames_success, false};
for (const auto &binary : info.binaries()) {
REQUIRE(common_add_module(binary.file, binary.file_size) == BF_SUCCESS);
}
CHECK(common_load_vmm() == BF_SUCCESS);
CHECK(common_start_vmm() == BF_SUCCESS);
CHECK(common_load_vmm() == BF_ERROR_VMM_INVALID_STATE);
CHECK(common_fini() == BF_SUCCESS);
}
TEST_CASE("common_load_vmm: corrupt")
{
binaries_info info{&g_file, g_filenames_vmm_fini_fails, false};
for (const auto &binary : info.binaries()) {
REQUIRE(common_add_module(binary.file, binary.file_size) == BF_SUCCESS);
}
CHECK(common_load_vmm() == BF_SUCCESS);
CHECK(common_start_vmm() == BF_SUCCESS);
CHECK(common_fini() == BF_ERROR_VMM_CORRUPTED);
CHECK(common_load_vmm() == BF_ERROR_VMM_CORRUPTED);
common_reset();
}
TEST_CASE("common_load_vmm: alloc stack fails")
{
binaries_info info{&g_file, g_filenames_success, false};
for (const auto &binary : info.binaries()) {
REQUIRE(common_add_module(binary.file, binary.file_size) == BF_SUCCESS);
}
MockRepository mocks;
mocks.ExpectCallFunc(platform_alloc_rw).Return(nullptr);
CHECK(common_load_vmm() == BF_ERROR_OUT_OF_MEMORY);
CHECK(common_fini() == BF_SUCCESS);
}
TEST_CASE("common_load_vmm: alloc tss fails")
{
binaries_info info{&g_file, g_filenames_success, false};
for (const auto &binary : info.binaries()) {
REQUIRE(common_add_module(binary.file, binary.file_size) == BF_SUCCESS);
}
MockRepository mocks;
mocks.ExpectCallFunc(platform_alloc_rw).Do(malloc);
mocks.ExpectCallFunc(platform_alloc_rw).Return(nullptr);
CHECK(common_load_vmm() == BF_ERROR_OUT_OF_MEMORY);
CHECK(common_fini() == BF_SUCCESS);
}
TEST_CASE("common_load_vmm: missing symbols")
{
auto filenames = g_filenames_success;
filenames.pop_back();
binaries_info info{&g_file, filenames, false};
for (const auto &binary : info.binaries()) {
REQUIRE(common_add_module(binary.file, binary.file_size) == BF_SUCCESS);
}
CHECK(common_load_vmm() == BFELF_ERROR_NO_SUCH_SYMBOL);
CHECK(common_fini() == BF_SUCCESS);
}
TEST_CASE("common_load_vmm: no modules added")
{
CHECK(common_load_vmm() == BF_ERROR_NO_MODULES_ADDED);
CHECK(common_fini() == BF_SUCCESS);
}
TEST_CASE("common_load_vmm: init fails")
{
binaries_info info{&g_file, g_filenames_init_fails, false};
for (const auto &binary : info.binaries()) {
REQUIRE(common_add_module(binary.file, binary.file_size) == BF_SUCCESS);
}
CHECK(common_load_vmm() == ENTRY_ERROR_UNKNOWN);
CHECK(common_fini() == BF_SUCCESS);
}
TEST_CASE("common_load_vmm: add modules mdl fails")
{
binaries_info info{&g_file, g_filenames_add_mdl_fails, false};
for (const auto &binary : info.binaries()) {
REQUIRE(common_add_module(binary.file, binary.file_size) == BF_SUCCESS);
}
CHECK(common_load_vmm() == ENTRY_ERROR_UNKNOWN);
CHECK(common_fini() == BF_SUCCESS);
}
Build System Bug Fixes (#575) This patch addresses several bugs with the build system: - Lack of Windows support - Clang Tidy was not working properly - Making modifications to the source code would compile, but would not re-link resulting in issues - Removed excess file copying - Make clean now works - Removed unused or confusing folders in the build folder as part of the build process. It is now much easier to traverse the build folder for dependencies - The targets didn't work with extensions. This has been fixed. In addition, the following was also done under this patch - Intrinsics was moved to the top level and out of the VMM - Platform files are now in a folder called "platform" instead of "arch" - All subprojects have the same include/src/tests files structure - All intel specific code is properly organized to match intended namespacing - Removed dead code - A small part of the VMCS was converted to use the delegate pattern - All dependencies are now downloaded at configure time instead of compile time. - The cache directory is now cached by Travis CI - CMake output better matches old build system - Added make rebuild and separate clean targets to remove various parts of the build depending on needs. - Added targets for Clean, Tidy, Rebuild and Format for each subproject - Re-organized the cmake logic so that macros are not spread out - New validation removes unneeded complexity - Removed the need for the compiler wrapper, and in doing so, we now provide a simpilar set of toolchain files - Removed the need for Git repos. All external dependencies are downloaded using a zip or tarball - Libcxx and Libcxxabi are now in their own files. Much similar logic - Unit test CMake files have been greatly simplified - Each subproject is unaware of it's prefix and no long use VMM, USERSPACE or TEST variables in their cmake files - Fixed bugs with the flags - Renamed the varbiables in the default.cmake config to be more consistent and easier to follow in the rest of the code Signed-off-by: “rianquinn” <“rianquinn@gmail.com”>
2018-01-22 12:45:07 -07:00
extern "C" int64_t private_add_modules_mdl(void);
TEST_CASE("common_load_vmm: add tss mdl fails")
{
binaries_info info{&g_file, g_filenames_add_mdl_fails, false};
for (const auto &binary : info.binaries()) {
REQUIRE(common_add_module(binary.file, binary.file_size) == BF_SUCCESS);
}
MockRepository mocks;
Build System Bug Fixes (#575) This patch addresses several bugs with the build system: - Lack of Windows support - Clang Tidy was not working properly - Making modifications to the source code would compile, but would not re-link resulting in issues - Removed excess file copying - Make clean now works - Removed unused or confusing folders in the build folder as part of the build process. It is now much easier to traverse the build folder for dependencies - The targets didn't work with extensions. This has been fixed. In addition, the following was also done under this patch - Intrinsics was moved to the top level and out of the VMM - Platform files are now in a folder called "platform" instead of "arch" - All subprojects have the same include/src/tests files structure - All intel specific code is properly organized to match intended namespacing - Removed dead code - A small part of the VMCS was converted to use the delegate pattern - All dependencies are now downloaded at configure time instead of compile time. - The cache directory is now cached by Travis CI - CMake output better matches old build system - Added make rebuild and separate clean targets to remove various parts of the build depending on needs. - Added targets for Clean, Tidy, Rebuild and Format for each subproject - Re-organized the cmake logic so that macros are not spread out - New validation removes unneeded complexity - Removed the need for the compiler wrapper, and in doing so, we now provide a simpilar set of toolchain files - Removed the need for Git repos. All external dependencies are downloaded using a zip or tarball - Libcxx and Libcxxabi are now in their own files. Much similar logic - Unit test CMake files have been greatly simplified - Each subproject is unaware of it's prefix and no long use VMM, USERSPACE or TEST variables in their cmake files - Fixed bugs with the flags - Renamed the varbiables in the default.cmake config to be more consistent and easier to follow in the rest of the code Signed-off-by: “rianquinn” <“rianquinn@gmail.com”>
2018-01-22 12:45:07 -07:00
mocks.OnCallFunc(private_add_modules_mdl).Return(BF_SUCCESS);
CHECK(common_load_vmm() == ENTRY_ERROR_UNKNOWN);
CHECK(common_fini() == BF_SUCCESS);
}
extern int platform_info_should_fail;
TEST_CASE("common_load_vmm: populate_platform_info fails")
{
auto ___ = gsl::finally([&] {
platform_info_should_fail = 0;
});
platform_info_should_fail = 1;
binaries_info info{&g_file, g_filenames_success, false};
for (const auto &binary : info.binaries()) {
REQUIRE(common_add_module(binary.file, binary.file_size) == BF_SUCCESS);
}
CHECK(common_load_vmm() != BF_SUCCESS);
CHECK(common_fini() == BF_SUCCESS);
}
#endif