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 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277
|
/**
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
/*
* XSEC
*
* OpenSSLCryptoX509:= OpenSSL based class for handling X509 (V3) certificates
*
* Author(s): Berin Lautenbach
*
* $Id$
*
*/
#include <xsec/framework/XSECDefs.hpp>
#if defined (XSEC_HAVE_OPENSSL)
#include <xsec/dsig/DSIGConstants.hpp>
#include <xsec/framework/XSECError.hpp>
#include <xsec/enc/OpenSSL/OpenSSLCryptoX509.hpp>
#include <xsec/enc/OpenSSL/OpenSSLCryptoKeyDSA.hpp>
#include <xsec/enc/OpenSSL/OpenSSLCryptoKeyEC.hpp>
#include <xsec/enc/OpenSSL/OpenSSLCryptoKeyRSA.hpp>
#include <xsec/enc/OpenSSL/OpenSSLSupport.hpp>
#include <xsec/enc/XSECCryptoException.hpp>
#include <xsec/enc/XSCrypt/XSCryptCryptoBase64.hpp>
#include <xercesc/util/Janitor.hpp>
XSEC_USING_XERCES(ArrayJanitor);
XSEC_USING_XERCES(Janitor);
#include <openssl/evp.h>
OpenSSLCryptoX509::OpenSSLCryptoX509() :
m_DERX509("") {
mp_X509 = NULL;
}
OpenSSLCryptoX509::~OpenSSLCryptoX509() {
if (mp_X509 != NULL)
X509_free(mp_X509);
}
OpenSSLCryptoX509::OpenSSLCryptoX509(X509 * x) {
// Build this from an existing X509 structure
mp_X509 = X509_dup(x);
// Now need to create the DER encoding
BIO * b64 = BIO_new(BIO_f_base64());
BIO * bmem = BIO_new(BIO_s_mem());
BIO_set_mem_eof_return(bmem, 0);
b64 = BIO_push(b64, bmem);
// Translate X509 to Base64
i2d_X509_bio(b64, x);
BIO_flush(b64);
char buf[1024];
unsigned int l;
m_DERX509.sbStrcpyIn("");
while ((l = BIO_read(bmem, buf, 1023)) > 0) {
buf[l] = '\0';
m_DERX509.sbStrcatIn(buf);
}
BIO_free_all(b64);
}
// load functions
void OpenSSLCryptoX509::loadX509Base64Bin(const char * buf, unsigned int len) {
// Free anything currently held.
if (mp_X509 != NULL)
X509_free(mp_X509);
// Have to implement using EVP_Decode routines due to a bug in older
// versions of OpenSSL BIO_f_base64
int bufLen = len;
unsigned char * outBuf;
XSECnew(outBuf, unsigned char[len + 1]);
ArrayJanitor<unsigned char> j_outBuf(outBuf);
/* Had to move to our own Base64 decoder because it handles non-wrapped b64
better. Grrr. */
XSCryptCryptoBase64 *b64;
XSECnew(b64, XSCryptCryptoBase64);
Janitor<XSCryptCryptoBase64> j_b64(b64);
b64->decodeInit();
bufLen = b64->decode((unsigned char *) buf, len, outBuf, len);
bufLen += b64->decodeFinish(&outBuf[bufLen], len-bufLen);
/*
EVP_ENCODE_CTX m_dctx;
EVP_DecodeInit(&m_dctx);
int rc = EVP_DecodeUpdate(&m_dctx,
outBuf,
&bufLen,
(unsigned char *) buf,
len);
if (rc < 0) {
throw XSECCryptoException(XSECCryptoException::Base64Error,
"OpenSSL:Base64 - Error during Base64 Decode of X509 Certificate");
}
int finalLen;
EVP_DecodeFinal(&m_dctx, &outBuf[bufLen], &finalLen);
bufLen += finalLen;
*/
if (bufLen > 0) {
#if defined(XSEC_OPENSSL_D2IX509_CONST_BUFFER)
mp_X509= d2i_X509(NULL, (const unsigned char **) (&outBuf), bufLen);
#else
mp_X509= d2i_X509(NULL, &outBuf, bufLen);
#endif
}
// Check to see if we have a certificate....
if (mp_X509 == NULL) {
throw XSECCryptoException(XSECCryptoException::X509Error,
"OpenSSL:X509 - Error translating Base64 DER encoding into OpenSSL X509 structure");
}
m_DERX509.sbMemcpyIn(buf, len);
m_DERX509[len] = '\0';
}
// Info functions
const XMLCh * OpenSSLCryptoX509::getProviderName() const {
return DSIGConstants::s_unicodeStrPROVOpenSSL;
}
XSECCryptoKey::KeyType OpenSSLCryptoX509::getPublicKeyType() const {
if (mp_X509 == NULL) {
throw XSECCryptoException(XSECCryptoException::X509Error,
"OpenSSL:X509 - getPublicKeyType called before X509 loaded");
}
EVP_PKEY *pkey;
pkey = X509_get_pubkey(mp_X509);
if (pkey == NULL) {
throw XSECCryptoException(XSECCryptoException::X509Error,
"OpenSSL:X509 - cannot retrieve public key from cert");
}
XSECCryptoKey::KeyType ret;
switch (EVP_PKEY_id(pkey)) {
case EVP_PKEY_DSA :
ret = XSECCryptoKey::KEY_DSA_PUBLIC;
break;
case EVP_PKEY_RSA :
ret = XSECCryptoKey::KEY_RSA_PUBLIC;
break;
#if defined(XSEC_OPENSSL_HAVE_EC)
case EVP_PKEY_EC :
ret = XSECCryptoKey::KEY_EC_PUBLIC;
break;
#endif
default :
ret = XSECCryptoKey::KEY_NONE;
}
EVP_PKEY_free (pkey);
return ret;
}
// Get functions
XSECCryptoKey * OpenSSLCryptoX509::clonePublicKey() const {
if (mp_X509 == NULL) {
throw XSECCryptoException(XSECCryptoException::X509Error,
"OpenSSL:X509 - clonePublicKey called before X509 loaded");
}
EVP_PKEY *pkey;
XSECCryptoKey * ret;
pkey = X509_get_pubkey(mp_X509);
if (pkey == NULL) {
throw XSECCryptoException(XSECCryptoException::X509Error,
"OpenSSL:X509 - cannot retrieve public key from cert");
}
switch (EVP_PKEY_id(pkey)) {
case EVP_PKEY_DSA :
ret = new OpenSSLCryptoKeyDSA(pkey);
break;
case EVP_PKEY_RSA :
ret = new OpenSSLCryptoKeyRSA(pkey);
break;
#if defined(XSEC_OPENSSL_HAVE_EC)
case EVP_PKEY_EC :
ret = new OpenSSLCryptoKeyEC(pkey);
break;
#endif
default :
ret = NULL;
}
EVP_PKEY_free (pkey);
return ret;
}
#endif /* XSEC_HAVE_OPENSSL */
|