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

91 lines
3.3 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 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 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_fail(g_handle, nullptr);
integration::verify(bsl::errc_failure == ret);
ret = syscall::bf_callback_op_register_fail(g_handle, &fail_entry);
integration::verify(bsl::errc_success == ret);
ret = syscall::bf_callback_op_register_fail(g_handle, &fail_entry);
integration::verify(bsl::errc_failure == ret);
/// TODO:
/// - When multiple extensions are supported, an extra test needs
/// to be added for when two extensions try to register for this
/// callback as that is not allowed
///
return integration::early();
}
}