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 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174
|
// 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) 2012- OpenVPN Inc.
//
// SPDX-License-Identifier: MPL-2.0 OR AGPL-3.0-only WITH openvpn3-openssl-exception
//
// Wrap an OpenSSL X509 object
#pragma once
#include <string>
#include <vector>
#include <openssl/ssl.h>
#include <openssl/bio.h>
#include <openvpn/common/size.hpp>
#include <openvpn/common/numeric_cast.hpp>
#include <openvpn/common/exception.hpp>
#include <openvpn/openssl/util/error.hpp>
namespace openvpn::OpenSSLPKI {
class X509
{
using X509_unique_ptr = std::unique_ptr<::X509, decltype(&::X509_free)>;
public:
X509() = default;
X509(const std::string &cert_txt, const std::string &title)
{
parse_pem(cert_txt, title);
}
explicit X509(::X509 *x509, const bool create = true)
{
if (create)
x509_ = {x509, ::X509_free};
else
x509_ = {dup(x509), ::X509_free};
}
X509(const X509 &other)
: x509_{dup(other.x509_.get()), ::X509_free}
{
}
X509(X509 &&other) noexcept
: x509_(std::move(other.x509_))
{
}
X509 &operator=(const X509 &other)
{
if (this != &other)
{
x509_ = dup(other.x509_);
}
return *this;
}
X509 &operator=(X509 &&other) noexcept
{
if (this != &other)
{
x509_ = std::move(other.x509_);
}
return *this;
}
bool defined() const
{
return static_cast<bool>(x509_);
}
::X509 *obj() const
{
return x509_.get();
}
[[nodiscard]] ::X509 *obj_dup() const
{
return dup(x509_.get());
}
void parse_pem(const std::string &cert_txt, const std::string &title)
{
BIO *bio = ::BIO_new_mem_buf(const_cast<char *>(cert_txt.c_str()), numeric_cast<int>(cert_txt.length()));
if (!bio)
throw OpenSSLException();
::X509 *cert = ::PEM_read_bio_X509(bio, nullptr, nullptr, nullptr);
::BIO_free(bio);
if (!cert)
throw OpenSSLException(std::string("X509::parse_pem: error in ") + title + std::string(":"));
x509_ = {cert, X509_free};
}
[[nodiscard]] std::string render_pem() const
{
if (x509_)
{
BIO *bio = ::BIO_new(BIO_s_mem());
const int ret = ::PEM_write_bio_X509(bio, x509_.get());
if (ret == 0)
{
::BIO_free(bio);
throw OpenSSLException("X509::render_pem");
}
{
char *temp;
const auto buf_len = ::BIO_get_mem_data(bio, &temp);
std::string ret = std::string(temp, buf_len);
::BIO_free(bio);
return ret;
}
}
else
return "";
}
private:
static X509_unique_ptr dup(const X509_unique_ptr &x509)
{
if (x509)
{
::X509 *dup = ::X509_dup(const_cast<::X509 *>(x509.get()));
return {dup, ::X509_free};
}
else
{
return {nullptr, ::X509_free};
}
}
static ::X509 *dup(const ::X509 *x509)
{
if (x509)
return ::X509_dup(const_cast<::X509 *>(x509));
else
return nullptr;
}
X509_unique_ptr x509_{nullptr, ::X509_free};
};
class X509List : public std::vector<X509>
{
public:
typedef X509 Item;
bool defined() const
{
return !empty();
}
std::string render_pem() const
{
std::string ret;
for (const auto &e : *this)
ret += e.render_pem();
return ret;
}
};
} // namespace openvpn::OpenSSLPKI
|