bareflank-hypervisor/kernel/integration/bf_vm_op_create_vm.cpp
2021-09-10 19:49:09 -06:00

140 lines
4.8 KiB
C++

/// @copyright
/// Copyright (C) 2020 Assured Information Security, Inc.
///
/// @copyright
/// Permission is hereby granted, free of charge, to any person obtaining a copy
/// of this software and associated documentation files (the "Software"), to deal
/// in the Software without restriction, including without limitation the rights
/// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
/// copies of the Software, and to permit persons to whom the Software is
/// furnished to do so, subject to the following conditions:
///
/// @copyright
/// The above copyright notice and this permission notice shall be included in
/// all copies or substantial portions of the Software.
///
/// @copyright
/// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
/// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
/// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
/// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
/// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
/// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
/// SOFTWARE.
#include "integration_utils.hpp"
#include <bf_constants.hpp>
#include <bsl/debug.hpp>
#include <bsl/exit_code.hpp>
#include <bsl/safe_integral.hpp>
#include <bsl/unlikely.hpp>
namespace integration
{
/// @brief stores the handle the extension will use
constinit inline syscall::bf_handle_t g_handle{};
/// <!-- description -->
/// @brief Implements the VMExit entry function.
///
/// <!-- inputs/outputs -->
/// @param vsid the ID of the VS that generated the VMExit
/// @param exit_reason the exit reason associated with the VMExit
///
extern "C" void
vmexit_entry(bsl::uint16 const vsid, bsl::uint64 const exit_reason) noexcept
{
bsl::discard(vsid);
bsl::discard(exit_reason);
syscall::bf_control_op_exit();
}
/// <!-- description -->
/// @brief Implements the fast fail entry function.
///
/// <!-- inputs/outputs -->
/// @param fail_reason the exit reason associated with the fail
///
extern "C" void
fail_entry(syscall::bf_status_t::value_type const fail_reason) noexcept
{
bsl::discard(fail_reason);
syscall::bf_control_op_exit();
}
/// <!-- description -->
/// @brief Implements the bootstrap entry function.
///
/// <!-- inputs/outputs -->
/// @param ppid the physical process to bootstrap
///
extern "C" void
bootstrap_entry(bsl::uint16 const ppid) noexcept
{
bsl::discard(ppid);
bsl::errc_type ret{};
bsl::safe_u16 vmid{};
/// NOTE:
/// - The max number of VMs an extension can create is one less than
/// the provided max because the microkernel creates the Root VM
/// automatically for the extension as it cannot be deleted.
///
constexpr auto one{1_umx};
auto const max_vms{HYPERVISOR_MAX_VMS - one};
// create with invalid handle
ret = syscall::bf_vm_op_create_vm({}, vmid);
integration::verify(bsl::errc_failure == ret);
// create all and prove that creating one more will fail
for (bsl::safe_idx i{}; i < max_vms; ++i) {
ret = syscall::bf_vm_op_create_vm(g_handle, vmid);
integration::verify(bsl::errc_success == ret);
}
ret = syscall::bf_vm_op_create_vm(g_handle, vmid);
integration::verify(bsl::errc_failure == ret);
syscall::bf_control_op_exit();
}
/// <!-- description -->
/// @brief Implements the main entry function for this integration
/// test
///
/// <!-- inputs/outputs -->
/// @param version the version of the spec implemented by the
/// microkernel. This can be used to ensure the extension and the
/// microkernel speak the same ABI.
///
extern "C" void
ext_main_entry(bsl::uint32 const version) noexcept
{
bsl::errc_type ret{};
if (bsl::unlikely(!syscall::bf_is_spec1_supported(version))) {
bsl::error() << "integration test not supported\n" << bsl::here();
return syscall::bf_control_op_exit();
}
ret = syscall::bf_handle_op_open_handle(syscall::BF_SPEC_ID1_VAL, g_handle);
integration::require_success(ret);
ret = syscall::bf_callback_op_register_bootstrap(g_handle, &bootstrap_entry);
integration::require_success(ret);
ret = syscall::bf_callback_op_register_vmexit(g_handle, &vmexit_entry);
integration::require_success(ret);
ret = syscall::bf_callback_op_register_fail(g_handle, &fail_entry);
integration::require_success(ret);
syscall::bf_control_op_wait();
}
}