1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87
|
// OpenVPN -- An application to securely tunnel IP networks
// over a single port, with support for SSL/TLS-based
// session authentication and key exchange,
// packet encryption, packet authentication, and
// packet compression.
//
// Copyright (C) 2023- OpenVPN Inc.
//
// SPDX-License-Identifier: MPL-2.0 OR AGPL-3.0-only WITH openvpn3-openssl-exception
//
#pragma once
#include "numeric_util.hpp"
#include <stdexcept>
#include <cstdint>
#include <openvpn/common/exception.hpp> // For OPENVPN_EXCEPTION_INHERIT
/***
* @brief Exception type for numeric conversion failures
*/
OPENVPN_EXCEPTION_INHERIT(std::range_error, numeric_out_of_range);
namespace openvpn::numeric_util {
/* ============================================================================================================= */
// numeric_cast
/* ============================================================================================================= */
/**
* @brief Tests attempted casts to ensure the input value does not exceed the capacity of the output type
*
* If the types are the same, or the range of the output type equals or exceeds the range of the input type
* we just cast and return the value which should ideally optimize away completely. Otherwise we do appropriate
* range checks and if those succeed we cast, otherwise the failure exception openvpn::numeric_out_of_range
* is thrown.
*
* Example:
*
* int64_t s64 = std::numeric_limits<int64_t>::max();
* EXPECT_THROW(numeric_cast<int16_t>(s64), numeric_out_of_range);
*
* @param inVal The value to be converted.
* @return The safely converted inVal.
* @tparam InT Source (input) type, inferred from 'inVal'
* @tparam OutT Desired result type
* @throws numeric_out_of_range if the conversion is not safe
*/
template <typename OutT, typename InT>
OutT numeric_cast(InT inVal)
{
if constexpr (!numeric_util::is_int_rangesafe<OutT, InT>() && numeric_util::is_int_u2s<OutT, InT>())
{
// Conversion to uintmax_t should be safe for ::max() in all integral cases
if (static_cast<uintmax_t>(inVal) > static_cast<uintmax_t>(std::numeric_limits<OutT>::max()))
{
throw numeric_out_of_range("Range exceeded for unsigned --> signed integer conversion");
}
}
else if constexpr (!numeric_util::is_int_rangesafe<OutT, InT>() && numeric_util::is_int_s2u<OutT, InT>())
{
// This is certainly bad
if (inVal < 0)
throw numeric_out_of_range("Cannot store negative value for signed --> unsigned integer conversion");
// Is it possibly unsafe? If so do the runtime positive val range test
if constexpr (std::numeric_limits<OutT>::digits - 1 < std::numeric_limits<InT>::digits)
if (static_cast<uintmax_t>(inVal) > static_cast<uintmax_t>(std::numeric_limits<OutT>::max()))
throw numeric_out_of_range("Range exceeded for signed --> unsigned integer conversion");
}
else if constexpr (!numeric_util::is_int_rangesafe<OutT, InT>())
{
// We already know the in and out are sign compatible
if (std::numeric_limits<OutT>::min() > inVal || std::numeric_limits<OutT>::max() < inVal)
{
throw numeric_out_of_range("Range exceeded for integer conversion");
}
}
return static_cast<OutT>(inVal);
}
} // namespace openvpn::numeric_util
|