2023-10-20 11:02:21 +00:00
|
|
|
/*
|
|
|
|
* TLS Stream Errors
|
|
|
|
* (C) 2018-2020 Jack Lloyd
|
|
|
|
* 2018-2020 Hannes Rantzsch, Tim Oesterreich, Rene Meusel
|
|
|
|
*
|
|
|
|
* Botan is released under the Simplified BSD License (see license.txt)
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef BOTAN_ASIO_ERROR_H_
|
|
|
|
#define BOTAN_ASIO_ERROR_H_
|
|
|
|
|
2024-04-15 09:25:42 +00:00
|
|
|
#include <botan_all.h>
|
2023-10-20 11:02:21 +00:00
|
|
|
#include <asio/error_code.hpp>
|
|
|
|
|
|
|
|
namespace boost{
|
|
|
|
namespace asio = ::asio;
|
|
|
|
namespace system {
|
|
|
|
template <typename T>
|
|
|
|
struct is_error_code_enum { static const bool value = false; };
|
|
|
|
|
|
|
|
typedef asio::error_category error_category;
|
|
|
|
typedef asio::error_code error_code;
|
|
|
|
}
|
|
|
|
namespace beast {
|
|
|
|
using flat_buffer = asio::streambuf;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
namespace Botan {
|
|
|
|
namespace TLS {
|
|
|
|
|
|
|
|
enum StreamError { StreamTruncated = 1 };
|
|
|
|
|
|
|
|
//! @brief An error category for errors from the TLS::Stream
|
|
|
|
struct StreamCategory : public boost::system::error_category {
|
|
|
|
virtual ~StreamCategory() = default;
|
|
|
|
|
|
|
|
const char* name() const noexcept override { return "Botan TLS Stream"; }
|
|
|
|
|
|
|
|
std::string message(int value) const override {
|
|
|
|
if(value == StreamTruncated) {
|
|
|
|
return "stream truncated";
|
|
|
|
} else {
|
|
|
|
return "generic error";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
inline const StreamCategory& botan_stream_category() {
|
|
|
|
static StreamCategory category;
|
|
|
|
return category;
|
|
|
|
}
|
|
|
|
|
|
|
|
inline boost::system::error_code make_error_code(Botan::TLS::StreamError e) {
|
|
|
|
return boost::system::error_code(static_cast<int>(e), Botan::TLS::botan_stream_category());
|
|
|
|
}
|
|
|
|
|
|
|
|
//! @brief An error category for TLS alerts
|
|
|
|
struct BotanAlertCategory : boost::system::error_category {
|
|
|
|
virtual ~BotanAlertCategory() = default;
|
|
|
|
|
|
|
|
const char* name() const noexcept override { return "Botan TLS Alert"; }
|
|
|
|
|
|
|
|
std::string message(int ev) const override {
|
|
|
|
Botan::TLS::Alert alert(static_cast<Botan::TLS::Alert::Type>(ev));
|
|
|
|
return alert.type_string();
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
inline const BotanAlertCategory& botan_alert_category() noexcept {
|
|
|
|
static BotanAlertCategory category;
|
|
|
|
return category;
|
|
|
|
}
|
|
|
|
|
|
|
|
inline boost::system::error_code make_error_code(Botan::TLS::Alert::Type c) {
|
|
|
|
return boost::system::error_code(static_cast<int>(c), Botan::TLS::botan_alert_category());
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace TLS
|
|
|
|
|
|
|
|
//! @brief An error category for errors from Botan (other than TLS alerts)
|
|
|
|
struct BotanErrorCategory : boost::system::error_category {
|
|
|
|
virtual ~BotanErrorCategory() = default;
|
|
|
|
|
|
|
|
const char* name() const noexcept override { return "Botan"; }
|
|
|
|
|
|
|
|
std::string message(int ev) const override { return Botan::to_string(static_cast<Botan::ErrorType>(ev)); }
|
|
|
|
};
|
|
|
|
|
|
|
|
inline const BotanErrorCategory& botan_category() noexcept {
|
|
|
|
static BotanErrorCategory category;
|
|
|
|
return category;
|
|
|
|
}
|
|
|
|
|
|
|
|
inline boost::system::error_code make_error_code(Botan::ErrorType e) {
|
|
|
|
return boost::system::error_code(static_cast<int>(e), Botan::botan_category());
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace Botan
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Add a template specialization of `is_error_code_enum` for each kind of error to allow automatic conversion to an
|
|
|
|
* error code.
|
|
|
|
*/
|
|
|
|
namespace boost::system {
|
|
|
|
|
|
|
|
template <>
|
|
|
|
struct is_error_code_enum<Botan::TLS::Alert::Type> {
|
|
|
|
static const bool value = true;
|
|
|
|
};
|
|
|
|
|
|
|
|
template <>
|
|
|
|
struct is_error_code_enum<Botan::TLS::StreamError> {
|
|
|
|
static const bool value = true;
|
|
|
|
};
|
|
|
|
|
|
|
|
template <>
|
|
|
|
struct is_error_code_enum<Botan::ErrorType> {
|
|
|
|
static const bool value = true;
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace boost::system
|
|
|
|
|
|
|
|
#endif // BOTAN_ASIO_ERROR_H_
|