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 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223
|
// 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 EVP_PKEY object
#pragma once
#include <string>
#include <utility>
#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>
#include <openvpn/pki/pktype.hpp>
#include <openvpn/crypto/definitions.hpp>
#include <openvpn/openssl/compat.hpp>
namespace openvpn::OpenSSLPKI {
class PKey
{
public:
PKey()
: pkey_(nullptr)
{
}
PKey(const std::string &pkey_txt, const std::string &title, SSLLib::Ctx ctx)
: pkey_(nullptr)
{
parse_pem(pkey_txt, title, ctx);
}
PKey(const PKey &other)
: pkey_(dup(other.pkey_)),
priv_key_pwd(other.priv_key_pwd)
{
}
PKey(PKey &&other) noexcept
: pkey_(other.pkey_),
priv_key_pwd(std::move(other.priv_key_pwd))
{
other.pkey_ = nullptr;
}
PKey &operator=(const PKey &other)
{
if (this != &other)
{
erase();
pkey_ = dup(other.pkey_);
priv_key_pwd = other.priv_key_pwd;
}
return *this;
}
PKey &operator=(PKey &&other) noexcept
{
if (this != &other)
{
erase();
pkey_ = other.pkey_;
other.pkey_ = nullptr;
priv_key_pwd = std::move(other.priv_key_pwd);
}
return *this;
}
bool defined() const
{
return pkey_ != nullptr;
}
::EVP_PKEY *obj() const
{
return pkey_;
}
PKType::Type key_type() const
{
switch (::EVP_PKEY_id(pkey_))
{
case EVP_PKEY_RSA:
case EVP_PKEY_RSA2:
return PKType::PK_RSA;
case EVP_PKEY_EC:
return PKType::PK_EC;
case EVP_PKEY_DSA:
case EVP_PKEY_DSA1:
case EVP_PKEY_DSA2:
case EVP_PKEY_DSA3:
case EVP_PKEY_DSA4:
return PKType::PK_DSA;
case EVP_PKEY_NONE:
return PKType::PK_NONE;
default:
return PKType::PK_UNKNOWN;
}
}
size_t key_length() const
{
int ret = ::i2d_PrivateKey(pkey_, NULL);
if (ret < 0)
return 0;
/* convert to bits */
return ret * 8;
}
void set_private_key_password(const std::string &pwd)
{
priv_key_pwd = pwd;
}
void parse_pem(const std::string &pkey_txt, const std::string &title, SSLLib::Ctx libctx)
{
BIO *bio = ::BIO_new_mem_buf(const_cast<char *>(pkey_txt.c_str()), numeric_cast<int>(pkey_txt.length()));
if (!bio)
throw OpenSSLException();
::EVP_PKEY *pkey = ::PEM_read_bio_PrivateKey_ex(bio, nullptr, pem_password_callback, this, libctx, nullptr);
::BIO_free(bio);
if (!pkey)
throw OpenSSLException(std::string("PKey::parse_pem: error in ") + title + std::string(":"));
erase();
pkey_ = pkey;
}
std::string render_pem() const
{
if (pkey_)
{
BIO *bio = ::BIO_new(BIO_s_mem());
const int ret = ::PEM_write_bio_PrivateKey(bio, pkey_, nullptr, nullptr, 0, nullptr, nullptr);
if (ret == 0)
{
::BIO_free(bio);
throw OpenSSLException("PKey::render_pem");
}
{
char *temp;
const size_t buf_len = ::BIO_get_mem_data(bio, &temp);
std::string ret = std::string(temp, buf_len);
::BIO_free(bio);
return ret;
}
}
else
return "";
}
~PKey()
{
erase();
}
private:
static int pem_password_callback(char *buf, int size, int rwflag, void *userdata)
{
// get this
const PKey *self = (PKey *)userdata;
if (buf)
{
string::strncpynt(buf, self->priv_key_pwd.c_str(), size);
auto len = std::strlen(buf);
if (is_safe_conversion<int>(len))
return static_cast<int>(len);
}
return 0;
}
void erase()
{
if (pkey_)
::EVP_PKEY_free(pkey_);
}
#if OPENSSL_VERSION_NUMBER < 0x30000000L
static ::EVP_PKEY *dup(const ::EVP_PKEY *pkey)
{
// No OpenSSL EVP_PKEY_dup method so we roll our own
if (pkey)
{
::EVP_PKEY *pDupKey = ::EVP_PKEY_new();
::RSA *pRSA = ::EVP_PKEY_get1_RSA(const_cast<::EVP_PKEY *>(pkey));
::RSA *pRSADupKey = ::RSAPrivateKey_dup(pRSA);
::RSA_free(pRSA);
::EVP_PKEY_set1_RSA(pDupKey, pRSADupKey);
::RSA_free(pRSADupKey);
return pDupKey;
}
else
return nullptr;
}
#else
static ::EVP_PKEY *dup(const ::EVP_PKEY *pkey)
{
if (pkey)
return EVP_PKEY_dup(const_cast<EVP_PKEY *>(pkey));
else
return nullptr;
}
#endif
::EVP_PKEY *pkey_;
std::string priv_key_pwd;
};
} // namespace openvpn::OpenSSLPKI
|