
in RFC3280 git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@13494 ec53bebd-3082-4978-b11e-865c3cabbd6b
1891 lines
47 KiB
C
1891 lines
47 KiB
C
/*
|
|
* Copyright (c) 2003 - 2004 Kungliga Tekniska Högskolan
|
|
* (Royal Institute of Technology, Stockholm, Sweden).
|
|
* All rights reserved.
|
|
*
|
|
* Redistribution and use in source and binary forms, with or without
|
|
* modification, are permitted provided that the following conditions
|
|
* are met:
|
|
*
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
* notice, this list of conditions and the following disclaimer.
|
|
*
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
* documentation and/or other materials provided with the distribution.
|
|
*
|
|
* 3. Neither the name of the Institute nor the names of its contributors
|
|
* may be used to endorse or promote products derived from this software
|
|
* without specific prior written permission.
|
|
*
|
|
* THIS SOFTWARE IS PROVIDED BY THE INSTITUTE AND CONTRIBUTORS ``AS IS'' AND
|
|
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE INSTITUTE OR CONTRIBUTORS BE LIABLE
|
|
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
* SUCH DAMAGE.
|
|
*/
|
|
|
|
#include "krb5_locl.h"
|
|
|
|
RCSID("$Id$");
|
|
|
|
#ifdef PKINIT
|
|
|
|
#include <openssl/evp.h>
|
|
#include <openssl/x509.h>
|
|
#include <openssl/pem.h>
|
|
#include <openssl/err.h>
|
|
#include <openssl/dh.h>
|
|
#include <openssl/bn.h>
|
|
|
|
#ifdef HAVE_DIRENT_H
|
|
#include <dirent.h>
|
|
#endif
|
|
|
|
#include "heim_asn1.h"
|
|
#include "rfc2459_asn1.h"
|
|
#include "cms_asn1.h"
|
|
#include "pkinit_asn1.h"
|
|
|
|
#define OPENSSL_ASN1_MALLOC_ENCODE(T, B, BL, S, R) \
|
|
{ \
|
|
unsigned char *p; \
|
|
(BL) = i2d_##T((S), NULL); \
|
|
if ((BL) <= 0) { \
|
|
(R) = EINVAL; \
|
|
} else { \
|
|
(B) = malloc((BL)); \
|
|
if ((B) == NULL) { \
|
|
(R) = ENOMEM; \
|
|
} else { \
|
|
p = (B); \
|
|
(R) = 0; \
|
|
(BL) = i2d_##T((S), &p); \
|
|
if ((BL) <= 0) { \
|
|
free((B)); \
|
|
(R) = ASN1_OVERRUN; \
|
|
} \
|
|
} \
|
|
} \
|
|
}
|
|
|
|
struct krb5_pk_identity {
|
|
EVP_PKEY *private_key;
|
|
STACK_OF(X509) *cert;
|
|
STACK_OF(X509) *trusted_certs;
|
|
STACK_OF(X509_CRL) *crls;
|
|
};
|
|
|
|
struct krb5_pk_cert {
|
|
X509 *cert;
|
|
};
|
|
|
|
struct krb5_pk_init_ctx_data {
|
|
struct krb5_pk_identity *id;
|
|
DH *dh;
|
|
};
|
|
|
|
/* XXX The asn1 compiler should fix this */
|
|
|
|
#define oid_enc(n) { sizeof(n)/sizeof(n[0]), n }
|
|
|
|
static unsigned sha1_num[] =
|
|
{ 1, 3, 14, 3, 2, 26 };
|
|
heim_oid heim_sha1_oid =
|
|
oid_enc(sha1_num);
|
|
static unsigned rsaEncryption_num[] =
|
|
{ 1, 2, 840, 113549, 1, 1, 1 };
|
|
heim_oid heim_rsaEncryption_oid =
|
|
oid_enc(rsaEncryption_num);
|
|
static unsigned md5WithRSAEncryption_num[] =
|
|
{ 1, 2, 840, 113549, 1, 1, 4 };
|
|
heim_oid heim_md5WithRSAEncryption_oid =
|
|
oid_enc(md5WithRSAEncryption_num);
|
|
static unsigned sha1WithRSAEncryption_num[] =
|
|
{ 1, 2, 840, 113549, 1, 1, 5 };
|
|
heim_oid heim_sha1WithRSAEncryption_oid =
|
|
oid_enc(sha1WithRSAEncryption_num);
|
|
static unsigned des_ede3_cbc_num[] =
|
|
{ 1, 2, 840, 113549, 3, 7 };
|
|
heim_oid heim_des_ede3_cbc_oid =
|
|
oid_enc(des_ede3_cbc_num);
|
|
static unsigned pkcs7_data_num[] =
|
|
{ 1, 2, 840, 113549, 1, 7, 1 };
|
|
heim_oid pkcs7_data_oid =
|
|
oid_enc(pkcs7_data_num);
|
|
static unsigned pkcs7_signed_num[] =
|
|
{ 1, 2, 840, 113549, 1, 7, 2 };
|
|
heim_oid pkcs7_signed_oid =
|
|
oid_enc(pkcs7_signed_num);
|
|
static unsigned pkcs7_enveloped_num[] =
|
|
{ 1, 2, 840, 113549, 1, 7, 3 };
|
|
heim_oid pkcs7_enveloped_oid =
|
|
oid_enc(pkcs7_enveloped_num);
|
|
static unsigned pkauthdata_num[] =
|
|
{ 1, 2, 6, 1, 5, 2, 3, 1 };
|
|
heim_oid heim_pkauthdata_oid =
|
|
oid_enc(pkauthdata_num);
|
|
static unsigned pkdhkeydata_num[] =
|
|
{ 1, 3, 6, 1, 5, 2, 3, 2 };
|
|
heim_oid heim_pkdhkeydata_oid =
|
|
oid_enc(pkdhkeydata_num);
|
|
static unsigned pkrkeydata_num[] =
|
|
{ 1, 3, 6, 1, 5, 2, 3, 3 };
|
|
heim_oid heim_pkrkeydata_oid =
|
|
oid_enc(pkrkeydata_num);
|
|
static unsigned dhpublicnumber_num[] =
|
|
{ 1, 2, 840, 10046, 2, 1 };
|
|
heim_oid heim_dhpublicnumber_oid =
|
|
oid_enc(dhpublicnumber_num);
|
|
|
|
void
|
|
_krb5_pk_cert_free(struct krb5_pk_cert *cert)
|
|
{
|
|
if (cert->cert)
|
|
X509_free(cert->cert);
|
|
free(cert);
|
|
}
|
|
|
|
static krb5_error_code
|
|
BN_to_integer(krb5_context context, BIGNUM *bn, heim_integer *integer)
|
|
{
|
|
integer->length = BN_num_bytes(bn);
|
|
integer->data = malloc(integer->length);
|
|
if (integer->data == NULL) {
|
|
krb5_clear_error_string(context);
|
|
return ENOMEM;
|
|
}
|
|
BN_bn2bin(bn, integer->data);
|
|
integer->negative = bn->neg;
|
|
return 0;
|
|
}
|
|
|
|
krb5_error_code
|
|
_krb5_pk_create_sign(krb5_context context,
|
|
const heim_oid *eContentType,
|
|
krb5_data *eContent,
|
|
struct krb5_pk_identity *id,
|
|
krb5_data *sd_data)
|
|
{
|
|
const heim_oid *digest_oid;
|
|
SignerInfo *signer_info;
|
|
X509 *user_cert;
|
|
heim_integer *serial;
|
|
krb5_error_code ret;
|
|
krb5_data buf;
|
|
SignedData sd;
|
|
EVP_MD_CTX md;
|
|
int len, i;
|
|
size_t size;
|
|
|
|
X509_NAME *issuer_name;
|
|
|
|
memset(&sd, 0, sizeof(sd));
|
|
|
|
if (id == NULL)
|
|
return EINVAL; /* XXX */
|
|
if (id->cert == NULL)
|
|
return HEIM_PKINIT_NO_CERTIFICATE;
|
|
if (id->private_key == NULL)
|
|
return HEIM_PKINIT_NO_PRIVATE_KEY;
|
|
|
|
if (sk_X509_num(id->cert) == 0)
|
|
return HEIM_PKINIT_NO_CERTIFICATE;
|
|
|
|
sd.version = 3;
|
|
|
|
sd.digestAlgorithms.len = 0;
|
|
sd.digestAlgorithms.val = NULL;
|
|
copy_oid(eContentType, &sd.encapContentInfo.eContentType);
|
|
ALLOC(sd.encapContentInfo.eContent, 1);
|
|
if (sd.encapContentInfo.eContent == NULL) {
|
|
krb5_clear_error_string(context);
|
|
ret = ENOMEM;
|
|
goto out;
|
|
}
|
|
|
|
ret = krb5_data_copy(&buf, eContent->data, eContent->length);
|
|
if (ret) {
|
|
krb5_clear_error_string(context);
|
|
ret = ENOMEM;
|
|
goto out;
|
|
}
|
|
|
|
sd.encapContentInfo.eContent->data = buf.data;
|
|
sd.encapContentInfo.eContent->length = buf.length;
|
|
|
|
ALLOC_SEQ(&sd.signerInfos, 1);
|
|
if (sd.signerInfos.val == NULL) {
|
|
krb5_set_error_string(context, "malloc: out of memory");
|
|
ret = ENOMEM;
|
|
goto out;
|
|
}
|
|
|
|
signer_info = &sd.signerInfos.val[0];
|
|
|
|
user_cert = sk_X509_value(id->cert, 0);
|
|
if (user_cert == NULL) {
|
|
krb5_set_error_string(context, "pkinit: no user certificate");
|
|
ret = HEIM_PKINIT_NO_CERTIFICATE;
|
|
goto out;
|
|
}
|
|
|
|
signer_info->version = 1;
|
|
|
|
issuer_name = X509_get_issuer_name(user_cert);
|
|
|
|
OPENSSL_ASN1_MALLOC_ENCODE(X509_NAME,
|
|
buf.data,
|
|
buf.length,
|
|
issuer_name,
|
|
ret);
|
|
if (ret) {
|
|
krb5_set_error_string(context, "pkinit: failed encoding name");
|
|
goto out;
|
|
}
|
|
signer_info->sid.element = choice_SignerIdentifier_issuerAndSerialNumber;
|
|
signer_info->sid.u.issuerAndSerialNumber.issuer.data = buf.data;
|
|
signer_info->sid.u.issuerAndSerialNumber.issuer.length = buf.length;
|
|
|
|
serial = &signer_info->sid.u.issuerAndSerialNumber.serialNumber;
|
|
{
|
|
ASN1_INTEGER *isn = X509_get_serialNumber(user_cert);
|
|
BIGNUM *bn = ASN1_INTEGER_to_BN(isn, NULL);
|
|
if (bn == NULL) {
|
|
ret = ENOMEM;
|
|
krb5_set_error_string(context, "pkinit: failed allocating "
|
|
"serial number");
|
|
goto out;
|
|
}
|
|
ret = BN_to_integer(context, bn, serial);
|
|
BN_free(bn);
|
|
if (ret) {
|
|
krb5_set_error_string(context, "pkinit: failed encoding "
|
|
"serial number");
|
|
goto out;
|
|
}
|
|
}
|
|
|
|
if (context->pkinit_flags & KRB5_PKINIT_PACKET_CABLE)
|
|
digest_oid = &heim_sha1_oid;
|
|
else
|
|
digest_oid = &heim_sha1WithRSAEncryption_oid;
|
|
|
|
ret = copy_oid(digest_oid, &signer_info->digestAlgorithm.algorithm);
|
|
signer_info->digestAlgorithm.parameters = NULL;
|
|
if (ret) {
|
|
krb5_set_error_string(context, "malloc: out of memory");
|
|
ret = ENOMEM;
|
|
goto out;
|
|
}
|
|
|
|
/* CMS really requires NULL, but Windows gets unhappy then */
|
|
if ((context->pkinit_flags & KRB5_PKINIT_WIN2K) == 0) {
|
|
|
|
signer_info->digestAlgorithm.parameters =
|
|
malloc(sizeof(*signer_info->digestAlgorithm.parameters));
|
|
if (signer_info->digestAlgorithm.parameters == NULL) {
|
|
krb5_set_error_string(context, "malloc: out of memory");
|
|
ret = ENOMEM;
|
|
goto out;
|
|
}
|
|
signer_info->digestAlgorithm.parameters->data = malloc(2);
|
|
if (signer_info->digestAlgorithm.parameters->data == NULL) {
|
|
krb5_set_error_string(context, "malloc: out of memory");
|
|
ret = ENOMEM;
|
|
goto out;
|
|
}
|
|
memcpy(signer_info->digestAlgorithm.parameters->data, "\x05\x00", 2);
|
|
signer_info->digestAlgorithm.parameters->length = 2;
|
|
}
|
|
|
|
signer_info->signedAttrs = NULL;
|
|
signer_info->unsignedAttrs = NULL;
|
|
|
|
copy_oid(&heim_rsaEncryption_oid,
|
|
&signer_info->signatureAlgorithm.algorithm);
|
|
signer_info->signatureAlgorithm.parameters = NULL;
|
|
|
|
buf.data = malloc(EVP_PKEY_size(id->private_key));
|
|
if (buf.data == NULL) {
|
|
krb5_set_error_string(context, "malloc: out of memory");
|
|
ret = ENOMEM;
|
|
goto out;
|
|
}
|
|
|
|
EVP_SignInit(&md, EVP_sha1());
|
|
EVP_SignUpdate(&md,
|
|
sd.encapContentInfo.eContent->data,
|
|
sd.encapContentInfo.eContent->length);
|
|
ret = EVP_SignFinal(&md, buf.data, &len, id->private_key);
|
|
if (ret != 1) {
|
|
free(buf.data);
|
|
krb5_set_error_string(context, "PKINIT: failed to sign with "
|
|
"private key: %s",
|
|
ERR_error_string(ERR_get_error(), NULL));
|
|
ret = EINVAL;
|
|
goto out;
|
|
}
|
|
|
|
signer_info->signature.data = buf.data;
|
|
signer_info->signature.length = len;
|
|
|
|
ALLOC_SEQ(&sd.digestAlgorithms, 1);
|
|
if (sd.digestAlgorithms.val == NULL) {
|
|
krb5_clear_error_string(context);
|
|
ret = ENOMEM;
|
|
goto out;
|
|
}
|
|
|
|
if (context->pkinit_flags & KRB5_PKINIT_WIN2K)
|
|
digest_oid = &heim_sha1_oid;
|
|
else
|
|
digest_oid = &heim_rsaEncryption_oid;
|
|
|
|
copy_oid(digest_oid, &sd.digestAlgorithms.val[0].algorithm);
|
|
sd.digestAlgorithms.val[0].parameters = NULL;
|
|
|
|
ALLOC(sd.certificates, 1);
|
|
if (sd.certificates == NULL) {
|
|
krb5_clear_error_string(context);
|
|
ret = ENOMEM;
|
|
goto out;
|
|
}
|
|
|
|
sd.certificates->data = NULL;
|
|
sd.certificates->length = 0;
|
|
|
|
for (i = 0; i < sk_X509_num(id->cert); i++) {
|
|
void *data;
|
|
|
|
OPENSSL_ASN1_MALLOC_ENCODE(X509,
|
|
buf.data,
|
|
buf.length,
|
|
sk_X509_value(id->cert, i),
|
|
ret);
|
|
if (ret) {
|
|
krb5_clear_error_string(context);
|
|
goto out;
|
|
}
|
|
data = realloc(sd.certificates->data,
|
|
sd.certificates->length + buf.length);
|
|
if (data == NULL) {
|
|
free(buf.data);
|
|
krb5_clear_error_string(context);
|
|
ret = ENOMEM;
|
|
goto out;
|
|
}
|
|
memcpy(((char *)data) + sd.certificates->length,
|
|
buf.data, buf.length);
|
|
sd.certificates->length += buf.length;
|
|
sd.certificates->data = data;
|
|
free(buf.data);
|
|
}
|
|
|
|
ASN1_MALLOC_ENCODE(SignedData, sd_data->data, sd_data->length,
|
|
&sd, &size, ret);
|
|
if (ret) {
|
|
krb5_set_error_string(context, "SignedData failed %d", ret);
|
|
goto out;
|
|
}
|
|
if (sd_data->length != size)
|
|
krb5_abortx(context, "internal ASN1 encoder error");
|
|
|
|
out:
|
|
free_SignedData(&sd);
|
|
|
|
return ret;
|
|
}
|
|
|
|
static krb5_error_code
|
|
build_auth_pack(krb5_context context,
|
|
unsigned nonce,
|
|
DH *dh,
|
|
const KDC_REQ_BODY *body,
|
|
AuthPack *a)
|
|
{
|
|
size_t buf_size, len;
|
|
krb5_cksumtype cksum;
|
|
krb5_error_code ret;
|
|
void *buf;
|
|
krb5_timestamp sec;
|
|
int32_t usec;
|
|
|
|
#if 0 /* 0.6 of heimdal doesn't support always support sha1 */
|
|
if (context->pkinit_flags & KRB5_PKINIT_PACKET_CABLE)
|
|
cksum = CKSUMTYPE_RSA_MD5;
|
|
else
|
|
cksum = CKSUMTYPE_SHA1;
|
|
#endif
|
|
cksum = CKSUMTYPE_RSA_MD5;
|
|
|
|
krb5_us_timeofday(context, &sec, &usec);
|
|
a->pkAuthenticator.ctime = sec;
|
|
a->pkAuthenticator.nonce = nonce;
|
|
|
|
ASN1_MALLOC_ENCODE(KDC_REQ_BODY, buf, buf_size, body, &len, ret);
|
|
if (ret)
|
|
return ret;
|
|
if (buf_size != len)
|
|
krb5_abortx(context, "internal error in ASN.1 encoder");
|
|
|
|
ret = krb5_create_checksum(context,
|
|
NULL,
|
|
0,
|
|
cksum,
|
|
buf,
|
|
len,
|
|
&a->pkAuthenticator.paChecksum);
|
|
free(buf);
|
|
|
|
if (ret == 0 && dh) {
|
|
DomainParameters dp;
|
|
ASN1_INTEGER *dh_pub_key;
|
|
krb5_data buf;
|
|
size_t size;
|
|
|
|
ALLOC(a->clientPublicValue, 1);
|
|
if (a->clientPublicValue == NULL)
|
|
return ENOMEM;
|
|
ret = copy_oid(&heim_dhpublicnumber_oid,
|
|
&a->clientPublicValue->algorithm.algorithm);
|
|
if (ret)
|
|
return ret;
|
|
|
|
memset(&dp, 0, sizeof(dp));
|
|
|
|
ret = BN_to_integer(context, dh->p, &dp.p);
|
|
if (ret) {
|
|
free_DomainParameters(&dp);
|
|
return ret;
|
|
}
|
|
ret = BN_to_integer(context, dh->g, &dp.g);
|
|
if (ret) {
|
|
free_DomainParameters(&dp);
|
|
return ret;
|
|
}
|
|
ret = BN_to_integer(context, dh->q, &dp.q);
|
|
if (ret) {
|
|
free_DomainParameters(&dp);
|
|
return ret;
|
|
}
|
|
dp.j = NULL;
|
|
dp.validationParms = NULL;
|
|
|
|
ASN1_MALLOC_ENCODE(DomainParameters,
|
|
a->clientPublicValue->algorithm.parameters.data,
|
|
a->clientPublicValue->algorithm.parameters.length,
|
|
&dp, &size, ret);
|
|
free_DomainParameters(&dp);
|
|
if (ret)
|
|
return ret;
|
|
if (size != a->clientPublicValue->algorithm.parameters.length)
|
|
krb5_abortx(context, "Internal ASN1 encoder error");
|
|
|
|
dh_pub_key = BN_to_ASN1_INTEGER(dh->pub_key, NULL);
|
|
if (dh_pub_key == NULL) {
|
|
krb5_set_error_string(context, "BN_to_ASN1_INTEGER() failed (%s)",
|
|
ERR_error_string(ERR_get_error(), NULL));
|
|
return ENOMEM;
|
|
}
|
|
OPENSSL_ASN1_MALLOC_ENCODE(ASN1_INTEGER, buf.data, buf.length,
|
|
dh_pub_key, ret);
|
|
ASN1_INTEGER_free(dh_pub_key);
|
|
if (ret) {
|
|
krb5_set_error_string(context,
|
|
"ASN.1 encoding of ASN1_INTEGER failed (%s)",
|
|
ERR_error_string(ERR_get_error(), NULL));
|
|
return ret;
|
|
}
|
|
a->clientPublicValue->subjectPublicKey.length = buf.length * 8;
|
|
a->clientPublicValue->subjectPublicKey.data = buf.data;
|
|
}
|
|
|
|
return ret;
|
|
}
|
|
|
|
static krb5_error_code
|
|
build_auth_pack_win2k(krb5_context context,
|
|
unsigned nonce,
|
|
const KDC_REQ_BODY *body,
|
|
AuthPack_Win2k *a)
|
|
{
|
|
krb5_error_code ret;
|
|
krb5_timestamp sec;
|
|
int32_t usec;
|
|
|
|
/* fill in PKAuthenticator */
|
|
ret = copy_PrincipalName(body->sname, &a->pkAuthenticator.kdcName);
|
|
if (ret)
|
|
return ret;
|
|
ret = copy_Realm(&body->realm, &a->pkAuthenticator.kdcRealm);
|
|
if (ret)
|
|
return ret;
|
|
|
|
krb5_us_timeofday(context, &sec, &usec);
|
|
a->pkAuthenticator.ctime = sec;
|
|
a->pkAuthenticator.cusec = usec;
|
|
a->pkAuthenticator.nonce = nonce;
|
|
|
|
return 0;
|
|
}
|
|
|
|
krb5_error_code
|
|
_krb5_pk_mk_ContentInfo(krb5_context context,
|
|
const krb5_data *buf,
|
|
const heim_oid *oid,
|
|
struct ContentInfo *content_info)
|
|
{
|
|
krb5_error_code ret;
|
|
|
|
ret = copy_oid(oid, &content_info->contentType);
|
|
if (ret)
|
|
return ret;
|
|
ALLOC(content_info->content, 1);
|
|
if (content_info->content == NULL)
|
|
return ENOMEM;
|
|
content_info->content->data = malloc(buf->length);
|
|
if (content_info->content->data == NULL)
|
|
return ENOMEM;
|
|
memcpy(content_info->content->data, buf->data, buf->length);
|
|
content_info->content->length = buf->length;
|
|
return 0;
|
|
}
|
|
|
|
krb5_error_code
|
|
_krb5_pk_mk_padata(krb5_context context,
|
|
void *c,
|
|
const KDC_REQ_BODY *req_body,
|
|
unsigned nonce,
|
|
METHOD_DATA *md)
|
|
{
|
|
krb5_pk_init_ctx ctx = c;
|
|
krb5_error_code ret;
|
|
const heim_oid *oid;
|
|
PA_PK_AS_REQ req;
|
|
size_t size;
|
|
krb5_data buf, sd_buf;
|
|
int pa_type;
|
|
const char *provisioning_server = NULL;
|
|
|
|
if (context->pkinit_flags & KRB5_PKINIT_PACKET_CABLE) {
|
|
provisioning_server =
|
|
krb5_config_get_string(context, NULL,
|
|
"realms",
|
|
req_body->realm,
|
|
"packet-cable-provisioning-server",
|
|
NULL);
|
|
}
|
|
|
|
krb5_data_zero(&buf);
|
|
krb5_data_zero(&sd_buf);
|
|
memset(&req, 0, sizeof(req));
|
|
|
|
if (context->pkinit_flags & KRB5_PKINIT_WIN2K) {
|
|
AuthPack_Win2k ap;
|
|
|
|
memset(&ap, 0, sizeof(ap));
|
|
|
|
ret = build_auth_pack_win2k(context, nonce, req_body, &ap);
|
|
if (ret) {
|
|
free_AuthPack_Win2k(&ap);
|
|
goto out;
|
|
}
|
|
|
|
ASN1_MALLOC_ENCODE(AuthPack_Win2k, buf.data, buf.length,
|
|
&ap, &size, ret);
|
|
free_AuthPack_Win2k(&ap);
|
|
if (ret) {
|
|
krb5_set_error_string(context, "AuthPack_Win2k: %d", ret);
|
|
goto out;
|
|
}
|
|
if (buf.length != size)
|
|
krb5_abortx(context, "internal ASN1 encoder error");
|
|
|
|
oid = &pkcs7_data_oid;
|
|
} else {
|
|
AuthPack ap;
|
|
|
|
memset(&ap, 0, sizeof(ap));
|
|
|
|
ret = build_auth_pack(context, nonce, ctx->dh, req_body, &ap);
|
|
if (ret) {
|
|
free_AuthPack(&ap);
|
|
goto out;
|
|
}
|
|
|
|
ASN1_MALLOC_ENCODE(AuthPack, buf.data, buf.length, &ap, &size, ret);
|
|
free_AuthPack(&ap);
|
|
if (ret) {
|
|
krb5_set_error_string(context, "AuthPack: %d", ret);
|
|
goto out;
|
|
}
|
|
if (buf.length != size)
|
|
krb5_abortx(context, "internal ASN1 encoder error");
|
|
|
|
oid = &heim_pkauthdata_oid;
|
|
}
|
|
|
|
ret = _krb5_pk_create_sign(context,
|
|
oid,
|
|
&buf,
|
|
ctx->id,
|
|
&sd_buf);
|
|
krb5_data_free(&buf);
|
|
if (ret)
|
|
goto out;
|
|
|
|
ret = _krb5_pk_mk_ContentInfo(context, &sd_buf, &pkcs7_signed_oid,
|
|
&req.signedAuthPack);
|
|
krb5_data_free(&sd_buf);
|
|
if (ret)
|
|
goto out;
|
|
|
|
/* XXX tell the kdc what CAs the client is willing to accept */
|
|
req.trustedCertifiers = NULL;
|
|
req.kdcCert = NULL;
|
|
req.encryptionCert = NULL;
|
|
|
|
if (context->pkinit_flags & KRB5_PKINIT_WIN2K) {
|
|
PA_PK_AS_REQ_Win2k winreq;
|
|
|
|
pa_type = KRB5_PADATA_PK_AS_REQ + 1;
|
|
memset(&winreq, 0, sizeof(winreq));
|
|
|
|
ASN1_MALLOC_ENCODE(ContentInfo,
|
|
winreq.signed_auth_pack.data,
|
|
winreq.signed_auth_pack.length,
|
|
&req.signedAuthPack,
|
|
&size,
|
|
ret);
|
|
if (ret)
|
|
goto out;
|
|
if (winreq.signed_auth_pack.length != size)
|
|
krb5_abortx(context, "Internal ASN1 encoder error");
|
|
|
|
ASN1_MALLOC_ENCODE(PA_PK_AS_REQ_Win2k, buf.data, buf.length,
|
|
&winreq, &size, ret);
|
|
free_PA_PK_AS_REQ_Win2k(&winreq);
|
|
} else {
|
|
pa_type = KRB5_PADATA_PK_AS_REQ;
|
|
ASN1_MALLOC_ENCODE(PA_PK_AS_REQ, buf.data, buf.length,
|
|
&req, &size, ret);
|
|
}
|
|
if (ret) {
|
|
krb5_set_error_string(context, "PA-PK-AS-REQ %d", ret);
|
|
goto out;
|
|
}
|
|
if (buf.length != size)
|
|
krb5_abortx(context, "Internal ASN1 encoder error");
|
|
|
|
ret = krb5_padata_add(context, md, pa_type, buf.data, buf.length);
|
|
if (ret)
|
|
free(buf.data);
|
|
|
|
if (ret == 0 && provisioning_server) {
|
|
/* PacketCable requires the PROV-SRV-LOCATION authenticator */
|
|
const PROV_SRV_LOCATION prov_server = (char *)provisioning_server;
|
|
|
|
ASN1_MALLOC_ENCODE(PROV_SRV_LOCATION, buf.data, buf.length,
|
|
&prov_server, &size, ret);
|
|
if (ret)
|
|
goto out;
|
|
if (buf.length != size)
|
|
krb5_abortx(context, "Internal ASN1 encoder error");
|
|
|
|
/* PacketCable uses -1 (application specific) as the auth data type */
|
|
ret = krb5_padata_add(context, md, -1, buf.data, buf.length);
|
|
if (ret)
|
|
free(buf.data);
|
|
}
|
|
|
|
out:
|
|
free_PA_PK_AS_REQ(&req);
|
|
|
|
return ret;
|
|
}
|
|
|
|
static krb5_boolean
|
|
pk_peer_compare(krb5_context context,
|
|
const SignerIdentifier *peer1,
|
|
X509 *peer2)
|
|
{
|
|
switch (peer1->element) {
|
|
case choice_SignerIdentifier_issuerAndSerialNumber: {
|
|
ASN1_INTEGER *i;
|
|
const heim_integer *serial;
|
|
X509_NAME *name;
|
|
unsigned char *p;
|
|
size_t len;
|
|
|
|
i = X509_get_serialNumber(peer2);
|
|
serial = &peer1->u.issuerAndSerialNumber.serialNumber;
|
|
|
|
if (i->length != serial->length ||
|
|
memcmp(i->data, serial->data, i->length) != 0)
|
|
return FALSE;
|
|
|
|
p = peer1->u.issuerAndSerialNumber.issuer.data;
|
|
len = peer1->u.issuerAndSerialNumber.issuer.length;
|
|
name = d2i_X509_NAME(NULL, &p, len);
|
|
if (name == NULL)
|
|
return FALSE;
|
|
|
|
if (X509_NAME_cmp(name, X509_get_issuer_name(peer2)) != 0) {
|
|
X509_NAME_free(name);
|
|
return FALSE;
|
|
}
|
|
X509_NAME_free(name);
|
|
break;
|
|
}
|
|
case choice_SignerIdentifier_subjectKeyIdentifier:
|
|
return FALSE;
|
|
default:
|
|
return FALSE;
|
|
}
|
|
return TRUE;
|
|
}
|
|
|
|
static krb5_error_code
|
|
pk_decrypt_key(krb5_context context,
|
|
heim_octet_string *encrypted_key,
|
|
EVP_PKEY *priv_key,
|
|
krb5_keyblock *key)
|
|
{
|
|
int ret;
|
|
unsigned char *buf;
|
|
|
|
buf = malloc(EVP_PKEY_size(priv_key));
|
|
if (buf == NULL) {
|
|
krb5_set_error_string(context, "malloc: out of memory");
|
|
return ENOMEM;
|
|
}
|
|
ret = EVP_PKEY_decrypt(buf,
|
|
encrypted_key->data,
|
|
encrypted_key->length,
|
|
priv_key);
|
|
if (ret <= 0) {
|
|
free(buf);
|
|
krb5_set_error_string(context, "Can't decrypt key: %s",
|
|
ERR_error_string(ERR_get_error(), NULL));
|
|
return ENOMEM;
|
|
}
|
|
|
|
key->keytype = 0;
|
|
key->keyvalue.length = ret;
|
|
key->keyvalue.data = malloc(ret);
|
|
if (key->keyvalue.data == NULL) {
|
|
free(buf);
|
|
krb5_set_error_string(context, "malloc: out of memory");
|
|
return ENOMEM;
|
|
}
|
|
memcpy(key->keyvalue.data, buf, ret);
|
|
free(buf);
|
|
return 0;
|
|
}
|
|
|
|
|
|
static krb5_error_code
|
|
pk_verify_chain_standard(krb5_context context,
|
|
struct krb5_pk_identity *id,
|
|
const SignerIdentifier *client,
|
|
STACK_OF(X509) *chain,
|
|
X509 **client_cert)
|
|
{
|
|
X509_STORE *cert_store = NULL;
|
|
X509_STORE_CTX *store_ctx = NULL;
|
|
X509 *cert = NULL;
|
|
int i;
|
|
int ret;
|
|
|
|
ret = KRB5_KDC_ERR_CLIENT_NAME_MISMATCH; /* XXX */
|
|
for (i = 0; i < sk_X509_num(chain); i++) {
|
|
cert = sk_X509_value(chain, i);
|
|
if (pk_peer_compare(context, client, cert) == TRUE) {
|
|
ret = 0;
|
|
break;
|
|
}
|
|
}
|
|
if (ret) {
|
|
krb5_set_error_string(context, "PKINIT: verify chain failed "
|
|
"to find client in chain");
|
|
return ret;
|
|
}
|
|
|
|
cert_store = X509_STORE_new();
|
|
if (cert_store == NULL) {
|
|
ret = ENOMEM;
|
|
krb5_set_error_string(context, "Can't create X509 store: %s",
|
|
ERR_error_string(ERR_get_error(), NULL));
|
|
}
|
|
|
|
store_ctx = X509_STORE_CTX_new();
|
|
if (store_ctx == NULL) {
|
|
ret = ENOMEM;
|
|
krb5_set_error_string(context, "Can't create X509 store ctx: %s",
|
|
ERR_error_string(ERR_get_error(), NULL));
|
|
goto end;
|
|
}
|
|
|
|
X509_STORE_CTX_init(store_ctx, cert_store, cert, chain);
|
|
X509_STORE_CTX_trusted_stack(store_ctx, id->trusted_certs);
|
|
X509_verify_cert(store_ctx);
|
|
/* the last checked certificate is in store_ctx->current_cert */
|
|
switch(store_ctx->error) {
|
|
case X509_V_OK:
|
|
ret = 0;
|
|
break;
|
|
case X509_V_ERR_UNABLE_TO_GET_ISSUER_CERT_LOCALLY:
|
|
ret = KRB5_KDC_ERR_CANT_VERIFY_CERTIFICATE;
|
|
break;
|
|
case X509_V_ERR_UNABLE_TO_DECODE_ISSUER_PUBLIC_KEY:
|
|
case X509_V_ERR_CERT_SIGNATURE_FAILURE:
|
|
case X509_V_ERR_ERROR_IN_CERT_NOT_BEFORE_FIELD:
|
|
case X509_V_ERR_CERT_NOT_YET_VALID:
|
|
case X509_V_ERR_ERROR_IN_CERT_NOT_AFTER_FIELD:
|
|
case X509_V_ERR_CERT_HAS_EXPIRED:
|
|
ret = KRB5_KDC_ERR_INVALID_CERTIFICATE;
|
|
break;
|
|
default:
|
|
ret = KRB5_KDC_ERR_INVALID_CERTIFICATE; /* XXX */
|
|
break;
|
|
}
|
|
if (ret) {
|
|
krb5_clear_error_string(context);
|
|
goto end;
|
|
}
|
|
|
|
/*
|
|
* Since X509_verify_cert() doesn't do CRL checking at all, we have to
|
|
* perform own verification against CRLs
|
|
*/
|
|
#if 0
|
|
ret = pk_verify_crl(context, store_ctx, id->crls);
|
|
if (ret)
|
|
goto end;
|
|
#endif
|
|
|
|
if (client_cert && cert)
|
|
*client_cert = X509_dup(cert);
|
|
|
|
end:
|
|
if (store_ctx)
|
|
X509_STORE_CTX_free(store_ctx);
|
|
return ret;
|
|
}
|
|
|
|
static int
|
|
cert_to_X509(krb5_context context, CertificateSetReal *set,
|
|
STACK_OF(X509_CRL) **certs)
|
|
{
|
|
krb5_error_code ret;
|
|
int i;
|
|
|
|
*certs = sk_X509_new_null();
|
|
|
|
ret = 0;
|
|
for (i = 0; i < set->len; i++) {
|
|
unsigned char *p;
|
|
X509 *cert;
|
|
|
|
p = set->val[i].data;
|
|
cert = d2i_X509(NULL, &p, set->val[i].length);
|
|
if (cert == NULL) {
|
|
ret = ASN1_BAD_FORMAT;
|
|
break;
|
|
}
|
|
sk_X509_insert(*certs, cert, i);
|
|
}
|
|
if (ret) {
|
|
krb5_set_error_string(context, "Failed to decode certificate chain");
|
|
sk_X509_free(*certs);
|
|
*certs = NULL;
|
|
}
|
|
return ret;
|
|
}
|
|
|
|
static krb5_error_code
|
|
any_to_CertificateSet(krb5_context context, heim_any *cert,
|
|
CertificateSetReal *set)
|
|
{
|
|
size_t size, len, length;
|
|
heim_any *val;
|
|
int ret;
|
|
char *p;
|
|
|
|
set->len = 0;
|
|
set->val = NULL;
|
|
|
|
len = 0;
|
|
p = cert->data;
|
|
length = cert->length;
|
|
while (len < cert->length) {
|
|
val = realloc(set->val, (set->len + 1) * sizeof(set->val[0]));
|
|
if (val == NULL) {
|
|
ret = ENOMEM;
|
|
goto out;
|
|
}
|
|
set->val = val;
|
|
ret = decode_heim_any(p, length, &set->val[set->len], &size);
|
|
if (ret)
|
|
goto out;
|
|
set->len++;
|
|
|
|
p += size;
|
|
len += size;
|
|
length -= size;
|
|
}
|
|
return 0;
|
|
out:
|
|
krb5_clear_error_string(context);
|
|
free_CertificateSetReal(set);
|
|
set->val = NULL;
|
|
return ret;
|
|
}
|
|
|
|
krb5_error_code
|
|
_krb5_pk_verify_sign(krb5_context context,
|
|
const char *data,
|
|
size_t length,
|
|
struct krb5_pk_identity *id,
|
|
heim_oid *eContentType,
|
|
krb5_data *eContent,
|
|
struct krb5_pk_cert **signer)
|
|
{
|
|
STACK_OF(X509) *certificates;
|
|
SignerInfo *signer_info;
|
|
const EVP_MD *evp_type;
|
|
EVP_PKEY *public_key;
|
|
krb5_error_code ret;
|
|
CertificateSetReal set;
|
|
EVP_MD_CTX md;
|
|
X509 *cert;
|
|
SignedData sd;
|
|
size_t size;
|
|
|
|
*signer = NULL;
|
|
krb5_data_zero(eContent);
|
|
eContentType->length = 0;
|
|
eContentType->components = NULL;
|
|
|
|
memset(&sd, 0, sizeof(sd));
|
|
|
|
ret = decode_SignedData(data, length, &sd, &size);
|
|
if (ret) {
|
|
krb5_set_error_string(context,
|
|
"PKINIT: decoding failed SignedData: %d",
|
|
ret);
|
|
goto out;
|
|
}
|
|
|
|
if (sd.encapContentInfo.eContent == NULL) {
|
|
krb5_set_error_string(context,
|
|
"PKINIT: signature missing encapContent");
|
|
ret = KRB5KRB_AP_ERR_MSG_TYPE;
|
|
goto out;
|
|
}
|
|
|
|
/* XXX Check CMS version */
|
|
|
|
if (sd.signerInfos.len < 1) {
|
|
free_SignedData(&sd);
|
|
krb5_set_error_string(context,
|
|
"PKINIT: signature information missing from "
|
|
"pkinit response");
|
|
return KRB5_KDC_ERR_INVALID_SIG;
|
|
}
|
|
|
|
signer_info = &sd.signerInfos.val[0];
|
|
|
|
ret = any_to_CertificateSet(context, sd.certificates, &set);
|
|
if (ret) {
|
|
krb5_set_error_string(context,
|
|
"PKINIT: failed to decode CertificateSet");
|
|
free_SignedData(&sd);
|
|
return ret;
|
|
}
|
|
|
|
ret = cert_to_X509(context, &set, &certificates);
|
|
free_CertificateSetReal(&set);
|
|
if (ret) {
|
|
krb5_set_error_string(context,
|
|
"PKINIT: failed to decode Certificates");
|
|
free_SignedData(&sd);
|
|
return ret;
|
|
}
|
|
|
|
ret = pk_verify_chain_standard(context, id,
|
|
&signer_info->sid,
|
|
certificates,
|
|
&cert);
|
|
sk_X509_free(certificates);
|
|
if (ret) {
|
|
free_SignedData(&sd);
|
|
return ret;
|
|
}
|
|
|
|
if (signer_info->signature.length == 0) {
|
|
free_SignedData(&sd);
|
|
X509_free(cert);
|
|
krb5_set_error_string(context, "PKINIT: signature missing from"
|
|
"pkinit response");
|
|
return KRB5_KDC_ERR_INVALID_SIG;
|
|
}
|
|
|
|
public_key = X509_get_pubkey(cert);
|
|
|
|
/* verify signature */
|
|
if (heim_oid_cmp(&signer_info->digestAlgorithm.algorithm,
|
|
&heim_sha1WithRSAEncryption_oid) == 0)
|
|
evp_type = EVP_sha1();
|
|
else if (heim_oid_cmp(&signer_info->digestAlgorithm.algorithm,
|
|
&heim_md5WithRSAEncryption_oid) == 0)
|
|
evp_type = EVP_md5();
|
|
else if (heim_oid_cmp(&signer_info->digestAlgorithm.algorithm,
|
|
&heim_sha1_oid) == 0)
|
|
evp_type = EVP_sha1();
|
|
else {
|
|
X509_free(cert);
|
|
free_SignedData(&sd);
|
|
krb5_set_error_string(context, "The requested digest algorithm is "
|
|
"not supported");
|
|
return KRB5_KDC_ERR_INVALID_SIG;
|
|
}
|
|
|
|
EVP_VerifyInit(&md, evp_type);
|
|
EVP_VerifyUpdate(&md,
|
|
sd.encapContentInfo.eContent->data,
|
|
sd.encapContentInfo.eContent->length);
|
|
ret = EVP_VerifyFinal(&md,
|
|
signer_info->signature.data,
|
|
signer_info->signature.length,
|
|
public_key);
|
|
if (ret != 1) {
|
|
X509_free(cert);
|
|
free_SignedData(&sd);
|
|
krb5_set_error_string(context, "PKINIT: signature didn't verify: %s",
|
|
ERR_error_string(ERR_get_error(), NULL));
|
|
return KRB5_KDC_ERR_INVALID_SIG;
|
|
}
|
|
|
|
ret = copy_oid(&sd.encapContentInfo.eContentType, eContentType);
|
|
if (ret) {
|
|
krb5_clear_error_string(context);
|
|
goto out;
|
|
}
|
|
|
|
eContent->data = malloc(sd.encapContentInfo.eContent->length);
|
|
if (eContent->data == NULL) {
|
|
free_oid(eContentType);
|
|
krb5_clear_error_string(context);
|
|
ret = ENOMEM;
|
|
goto out;
|
|
}
|
|
eContent->length = sd.encapContentInfo.eContent->length;
|
|
memcpy(eContent->data,sd.encapContentInfo.eContent->data,eContent->length);
|
|
|
|
*signer = malloc(sizeof(**signer));
|
|
if (*signer == NULL) {
|
|
krb5_clear_error_string(context);
|
|
ret = ENOMEM;
|
|
goto out;
|
|
}
|
|
(*signer)->cert = cert;
|
|
|
|
out:
|
|
free_SignedData(&sd);
|
|
if (ret) {
|
|
free_oid(eContentType);
|
|
krb5_data_free(eContent);
|
|
}
|
|
return ret;
|
|
}
|
|
|
|
static krb5_error_code
|
|
get_reply_key(krb5_context context,
|
|
const heim_oid *eContentType,
|
|
const krb5_data *eContent,
|
|
unsigned nonce,
|
|
krb5_keyblock **key)
|
|
{
|
|
ReplyKeyPack key_pack;
|
|
krb5_error_code ret;
|
|
size_t size;
|
|
|
|
if (heim_oid_cmp(eContentType, &heim_pkrkeydata_oid) != 0) {
|
|
krb5_set_error_string(context, "PKINIT, reply key, wrong oid");
|
|
return KRB5KRB_AP_ERR_MSG_TYPE;
|
|
}
|
|
|
|
ret = decode_ReplyKeyPack(eContent->data,
|
|
eContent->length,
|
|
&key_pack,
|
|
&size);
|
|
if (ret) {
|
|
krb5_set_error_string(context, "PKINIT decoding reply key failed");
|
|
free_ReplyKeyPack(&key_pack);
|
|
return ret;
|
|
}
|
|
|
|
if (key_pack.nonce != nonce) {
|
|
free_ReplyKeyPack(&key_pack);
|
|
return KRB5KRB_AP_ERR_MODIFIED;
|
|
}
|
|
|
|
*key = malloc (sizeof (**key));
|
|
if (*key == NULL) {
|
|
krb5_set_error_string(context, "PKINIT failed allocating reply key");
|
|
free_ReplyKeyPack(&key_pack);
|
|
krb5_set_error_string(context, "malloc: out of memory");
|
|
return ENOMEM;
|
|
}
|
|
|
|
ret = copy_EncryptionKey(&key_pack.replyKey, *key);
|
|
free_ReplyKeyPack(&key_pack);
|
|
if (ret) {
|
|
krb5_set_error_string(context, "PKINIT failed allocating reply key");
|
|
free(*key);
|
|
}
|
|
|
|
return ret;
|
|
}
|
|
|
|
static krb5_error_code
|
|
pk_verify_host(krb5_context context, struct krb5_pk_cert *host)
|
|
{
|
|
/* XXX */
|
|
return 0;
|
|
}
|
|
|
|
static krb5_error_code
|
|
pk_rd_pa_reply_enckey(krb5_context context,
|
|
ContentInfo *rep,
|
|
krb5_pk_init_ctx ctx,
|
|
krb5_enctype etype,
|
|
unsigned nonce,
|
|
PA_DATA *pa,
|
|
krb5_keyblock **key)
|
|
{
|
|
krb5_error_code ret;
|
|
EnvelopedData ed;
|
|
krb5_keyblock tmp_key;
|
|
krb5_crypto crypto;
|
|
krb5_data plain;
|
|
KeyTransRecipientInfo *ri;
|
|
int length;
|
|
size_t size;
|
|
X509 *user_cert;
|
|
char *p;
|
|
krb5_boolean bret;
|
|
krb5_data eContent;
|
|
heim_oid eContentType = { 0, NULL };
|
|
struct krb5_pk_cert *host = NULL;
|
|
|
|
memset(&tmp_key, 0, sizeof(tmp_key));
|
|
memset(&ed, 0, sizeof(ed));
|
|
krb5_data_zero(&plain);
|
|
krb5_data_zero(&eContent);
|
|
|
|
user_cert = sk_X509_value(ctx->id->cert, 0);
|
|
|
|
if (heim_oid_cmp(&pkcs7_enveloped_oid, &rep->contentType)) {
|
|
krb5_set_error_string(context, "Invalid content type");
|
|
return EINVAL;
|
|
}
|
|
|
|
if (rep->content == NULL) {
|
|
krb5_set_error_string(context, "No content in pkinit reply");
|
|
return EINVAL;
|
|
}
|
|
|
|
ret = decode_EnvelopedData(rep->content->data,
|
|
rep->content->length,
|
|
&ed,
|
|
&size);
|
|
if (ret) {
|
|
free_EnvelopedData(&ed);
|
|
return ret;
|
|
}
|
|
|
|
if (ed.recipientInfos.len != 1) {
|
|
free_EnvelopedData(&ed);
|
|
krb5_set_error_string(context, "Number of recipient infos "
|
|
"not one (%d)",
|
|
ed.recipientInfos.len);
|
|
return EINVAL; /* XXX */
|
|
}
|
|
|
|
ri = &ed.recipientInfos.val[0];
|
|
|
|
/* XXX make SignerIdentifier and RecipientIdentifier the same */
|
|
bret = pk_peer_compare(context, (SignerIdentifier *)&ri->rid, user_cert);
|
|
if (bret == FALSE) {
|
|
ret = KRB5KRB_AP_ERR_BADMATCH; /* XXX */
|
|
goto out;
|
|
}
|
|
|
|
if (heim_oid_cmp(&heim_rsaEncryption_oid,
|
|
&ri->keyEncryptionAlgorithm.algorithm)) {
|
|
krb5_set_error_string(context, "Invalid content type");
|
|
return EINVAL;
|
|
}
|
|
|
|
ret = pk_decrypt_key(context, &ri->encryptedKey,
|
|
ctx->id->private_key, &tmp_key);
|
|
if (ret)
|
|
goto out;
|
|
|
|
|
|
/* verify content type */
|
|
if (context->pkinit_flags & KRB5_PKINIT_WIN2K) {
|
|
if (heim_oid_cmp(&ed.encryptedContentInfo.contentType, &pkcs7_data_oid)) {
|
|
ret = KRB5KRB_AP_ERR_MSG_TYPE;
|
|
goto out;
|
|
}
|
|
} else {
|
|
if (heim_oid_cmp(&ed.encryptedContentInfo.contentType, &pkcs7_signed_oid)) {
|
|
ret = KRB5KRB_AP_ERR_MSG_TYPE;
|
|
goto out;
|
|
}
|
|
}
|
|
|
|
|
|
if (heim_oid_cmp(&ed.encryptedContentInfo.contentEncryptionAlgorithm.algorithm,
|
|
&heim_des_ede3_cbc_oid) == 0) {
|
|
/* use des-ede3-cbc */
|
|
heim_octet_string encryptedContent;
|
|
heim_octet_string *any;
|
|
|
|
if (ed.encryptedContentInfo.encryptedContent == NULL) {
|
|
krb5_set_error_string(context, "OPTIONAL encryptedContent "
|
|
"field not filled in in KDC reply");
|
|
ret = KRB5_BADMSGTYPE;
|
|
goto out;
|
|
}
|
|
|
|
any = ed.encryptedContentInfo.encryptedContent;
|
|
ret = der_get_octet_string(any->data, any->length,
|
|
&encryptedContent, NULL);
|
|
if (ret) {
|
|
krb5_set_error_string(context, "encryptedContent content invalid");
|
|
goto out;
|
|
}
|
|
|
|
tmp_key.keytype = ETYPE_DES3_CBC_NONE;
|
|
ret = krb5_crypto_init(context,
|
|
&tmp_key,
|
|
0,
|
|
&crypto);
|
|
if (ret) {
|
|
free_octet_string(&encryptedContent);
|
|
goto out;
|
|
}
|
|
ret = krb5_decrypt(context, crypto,
|
|
0,
|
|
encryptedContent.data,
|
|
encryptedContent.length,
|
|
&plain);
|
|
krb5_crypto_destroy(context, crypto);
|
|
free_octet_string(&encryptedContent);
|
|
if (ret)
|
|
goto out;
|
|
|
|
} else {
|
|
krb5_set_error_string(context, "PKINIT no support for oid "
|
|
"in contentEncryptionAlgorithm");
|
|
ret = KRB5KRB_AP_ERR_BADKEYVER;
|
|
goto out;
|
|
}
|
|
|
|
p = plain.data;
|
|
length = plain.length;
|
|
|
|
/* win2k uses ContentInfo */
|
|
if (context->pkinit_flags & KRB5_PKINIT_WIN2K) {
|
|
ContentInfo ci;
|
|
size_t size;
|
|
|
|
ret = decode_ContentInfo(p, length, &ci, &size);
|
|
if (ret) {
|
|
krb5_set_error_string(context,
|
|
"decoding failed ContentInfo: %d", ret);
|
|
goto out;
|
|
}
|
|
|
|
if (heim_oid_cmp(&ci.contentType, &pkcs7_signed_oid) == 0) {
|
|
ret = EINVAL; /* XXX */
|
|
krb5_set_error_string(context, "Invalid content type");
|
|
goto out;
|
|
}
|
|
p = ci.content->data;
|
|
length = ci.content->length;
|
|
}
|
|
|
|
ret = _krb5_pk_verify_sign(context,
|
|
p,
|
|
length,
|
|
ctx->id,
|
|
&eContentType,
|
|
&eContent,
|
|
&host);
|
|
if (ret)
|
|
goto out;
|
|
|
|
/* make sure that it is the kdc's certificate */
|
|
ret = pk_verify_host(context, host);
|
|
if (ret) {
|
|
krb5_set_error_string(context, "failed verify host: %d", ret);
|
|
goto out;
|
|
}
|
|
|
|
ret = get_reply_key(context, &eContentType, &eContent, nonce, key);
|
|
if (ret)
|
|
goto out;
|
|
|
|
/* XXX compare given etype with key->etype */
|
|
|
|
out:
|
|
if (host)
|
|
_krb5_pk_cert_free(host);
|
|
free_oid(&eContentType);
|
|
krb5_data_free(&eContent);
|
|
krb5_free_keyblock_contents(context, &tmp_key);
|
|
krb5_data_free(&plain);
|
|
|
|
return ret;
|
|
}
|
|
|
|
static krb5_error_code
|
|
pk_rd_pa_reply_dh(krb5_context context,
|
|
ContentInfo *rep,
|
|
krb5_pk_init_ctx ctx,
|
|
krb5_enctype etype,
|
|
unsigned nonce,
|
|
PA_DATA *pa,
|
|
krb5_keyblock **key)
|
|
{
|
|
unsigned char *p, *dh_gen_key = NULL;
|
|
ASN1_INTEGER *dh_pub_key = NULL;
|
|
struct krb5_pk_cert *host = NULL;
|
|
BIGNUM *kdc_dh_pubkey = NULL;
|
|
KDCDHKeyInfo kdc_dh_info;
|
|
heim_oid eContentType = { 0, NULL };
|
|
krb5_data eContent;
|
|
krb5_error_code ret;
|
|
int dh_gen_keylen;
|
|
size_t size;
|
|
|
|
krb5_data_zero(&eContent);
|
|
memset(&kdc_dh_info, 0, sizeof(kdc_dh_info));
|
|
|
|
if (heim_oid_cmp(&pkcs7_signed_oid, &rep->contentType)) {
|
|
krb5_set_error_string(context, "Invalid content type");
|
|
return EINVAL;
|
|
}
|
|
|
|
if (rep->content == NULL) {
|
|
krb5_set_error_string(context, "No content in pkinit reply");
|
|
return EINVAL;
|
|
}
|
|
|
|
ret = _krb5_pk_verify_sign(context,
|
|
rep->content->data,
|
|
rep->content->length,
|
|
ctx->id,
|
|
&eContentType,
|
|
&eContent,
|
|
&host);
|
|
if (ret)
|
|
goto out;
|
|
|
|
/* make sure that it is the kdc's certificate */
|
|
ret = pk_verify_host(context, host);
|
|
if (ret)
|
|
goto out;
|
|
|
|
if (heim_oid_cmp(&eContentType, &heim_pkdhkeydata_oid)) {
|
|
ret = KRB5KRB_AP_ERR_MSG_TYPE; /* XXX */
|
|
goto out;
|
|
}
|
|
|
|
ret = decode_KDCDHKeyInfo(eContent.data,
|
|
eContent.length,
|
|
&kdc_dh_info,
|
|
&size);
|
|
|
|
if (ret)
|
|
goto out;
|
|
|
|
if (kdc_dh_info.nonce != nonce) {
|
|
ret = KRB5KRB_AP_ERR_MODIFIED;
|
|
goto out;
|
|
}
|
|
|
|
p = kdc_dh_info.subjectPublicKey.data;
|
|
size = (kdc_dh_info.subjectPublicKey.length + 7) / 8;
|
|
dh_pub_key = d2i_ASN1_INTEGER(NULL, &p, size);
|
|
if (dh_pub_key == NULL) {
|
|
krb5_set_error_string(context, "Cannot parse KDC's DH public key");
|
|
ret = KRB5KRB_ERR_GENERIC;
|
|
goto out;
|
|
}
|
|
|
|
kdc_dh_pubkey = ASN1_INTEGER_to_BN(dh_pub_key, NULL);
|
|
if (kdc_dh_pubkey == NULL) {
|
|
krb5_set_error_string(context, "Cannot convert KDC's DH public key");
|
|
ret = KRB5KRB_ERR_GENERIC;
|
|
goto out;
|
|
}
|
|
|
|
dh_gen_key = malloc(DH_size(ctx->dh));
|
|
if (dh_gen_key == NULL) {
|
|
krb5_set_error_string(context, "malloc: out of memory");
|
|
ret = ENOMEM;
|
|
goto out;
|
|
}
|
|
|
|
dh_gen_keylen = DH_compute_key(dh_gen_key, kdc_dh_pubkey, ctx->dh);
|
|
if (dh_gen_keylen == -1) {
|
|
krb5_set_error_string(context,
|
|
"Cannot compute Diffie-Hellman key (%s)",
|
|
ERR_error_string(ERR_get_error(), NULL));
|
|
ret = KRB5KRB_ERR_GENERIC;
|
|
goto out;
|
|
}
|
|
|
|
*key = malloc (sizeof (**key));
|
|
if (*key == NULL) {
|
|
krb5_set_error_string(context, "malloc: out of memory");
|
|
ret = ENOMEM;
|
|
goto out;
|
|
}
|
|
|
|
/* XXX all this stuff only to get the key length ? */
|
|
switch(etype) {
|
|
case ETYPE_DES3_CBC_SHA1:
|
|
case ETYPE_OLD_DES3_CBC_SHA1:
|
|
case ETYPE_DES_CBC_CRC:
|
|
case ETYPE_DES_CBC_MD4:
|
|
case ETYPE_DES_CBC_MD5: {
|
|
DES_cblock *k;
|
|
|
|
ret = krb5_generate_random_keyblock(context, etype, *key);
|
|
if (ret) {
|
|
free(*key);
|
|
*key = NULL;
|
|
goto out;
|
|
}
|
|
|
|
memcpy((*key)->keyvalue.data, dh_gen_key, (*key)->keyvalue.length);
|
|
k = (*key)->keyvalue.data;
|
|
DES_set_odd_parity(&k[0]);
|
|
switch (etype) {
|
|
case ETYPE_OLD_DES3_CBC_SHA1:
|
|
case ETYPE_DES3_CBC_SHA1:
|
|
DES_set_odd_parity(&k[1]);
|
|
DES_set_odd_parity(&k[2]);
|
|
break;
|
|
default:
|
|
break;
|
|
}
|
|
(*key)->keytype = etype;
|
|
break;
|
|
}
|
|
default:
|
|
krb5_set_error_string(context,
|
|
"PKINIT: unsupported enctype %d", etype);
|
|
ret = EINVAL;
|
|
break;
|
|
}
|
|
|
|
out:
|
|
if (kdc_dh_pubkey)
|
|
BN_free(kdc_dh_pubkey);
|
|
if (dh_gen_key) {
|
|
memset(dh_gen_key, 0, DH_size(ctx->dh));
|
|
free(dh_gen_key);
|
|
}
|
|
if (dh_pub_key)
|
|
ASN1_INTEGER_free(dh_pub_key);
|
|
if (host)
|
|
_krb5_pk_cert_free(host);
|
|
if (eContent.data)
|
|
krb5_data_free(&eContent);
|
|
free_KDCDHKeyInfo(&kdc_dh_info);
|
|
|
|
return ret;
|
|
}
|
|
|
|
krb5_error_code
|
|
_krb5_pk_rd_pa_reply(krb5_context context,
|
|
void *c,
|
|
krb5_enctype etype,
|
|
unsigned nonce,
|
|
PA_DATA *pa,
|
|
krb5_keyblock **key)
|
|
{
|
|
krb5_pk_init_ctx ctx = c;
|
|
krb5_error_code ret;
|
|
PA_PK_AS_REP rep;
|
|
size_t size;
|
|
|
|
memset(&rep, 0, sizeof(rep));
|
|
|
|
ret = decode_PA_PK_AS_REP(pa->padata_value.data,
|
|
pa->padata_value.length,
|
|
&rep,
|
|
&size);
|
|
if (ret != 0) {
|
|
PA_PK_AS_REP_Win2k w2krep;
|
|
|
|
free_PA_PK_AS_REP(&rep);
|
|
|
|
ret = decode_PA_PK_AS_REP_Win2k(pa->padata_value.data,
|
|
pa->padata_value.length,
|
|
&w2krep,
|
|
&size);
|
|
if (ret) {
|
|
krb5_set_error_string(context, "Failed decoding windows"
|
|
"pkinit reply %d", ret);
|
|
return ret;
|
|
}
|
|
#if 0
|
|
convert_rep(&w2krep, &rep);
|
|
printf("decoing of win reply succeded\n");
|
|
#endif
|
|
krb5_set_error_string(context, "w2k pkinit support missing");
|
|
free_PA_PK_AS_REP_Win2k(&w2krep);
|
|
return EINVAL;
|
|
}
|
|
|
|
switch(rep.element) {
|
|
case choice_PA_PK_AS_REP_dhSignedData:
|
|
ret = pk_rd_pa_reply_dh(context, &rep.u.dhSignedData, ctx,
|
|
etype, nonce, pa, key);
|
|
break;
|
|
case choice_PA_PK_AS_REP_encKeyPack:
|
|
ret = pk_rd_pa_reply_enckey(context, &rep.u.encKeyPack, ctx,
|
|
etype, nonce, pa, key);
|
|
break;
|
|
default:
|
|
krb5_set_error_string(context, "pkinit reply invalid content type");
|
|
ret = EINVAL;
|
|
break;
|
|
}
|
|
|
|
free_PA_PK_AS_REP(&rep);
|
|
return ret;
|
|
}
|
|
|
|
static int
|
|
ssl_pass_cb(char *buf, int size, int rwflag, void *u)
|
|
{
|
|
krb5_error_code ret;
|
|
krb5_prompt prompt;
|
|
krb5_data password_data;
|
|
|
|
password_data.data = buf;
|
|
password_data.length = size;
|
|
prompt.prompt = "Enter your private key passphrase: ";
|
|
prompt.hidden = 1;
|
|
prompt.reply = &password_data;
|
|
prompt.type = KRB5_PROMPT_TYPE_PASSWORD;
|
|
|
|
ret = krb5_prompter_posix(NULL, NULL, NULL, NULL, 1, &prompt);
|
|
if (ret) {
|
|
memset (buf, 0, size);
|
|
return 0;
|
|
}
|
|
return strlen(buf);
|
|
}
|
|
|
|
|
|
krb5_error_code
|
|
_krb5_pk_load_openssl_id(krb5_context context,
|
|
struct krb5_pk_identity **ret_id,
|
|
const char *cert_file,
|
|
const char *key_file,
|
|
const char *x509_anchors,
|
|
char *password)
|
|
{
|
|
struct krb5_pk_identity *id = NULL;
|
|
STACK_OF(X509) *certificate = NULL, *trusted_certs = NULL;
|
|
EVP_PKEY *private_key = NULL;
|
|
krb5_error_code ret;
|
|
struct dirent *file;
|
|
char *dirname;
|
|
X509 *cert;
|
|
DIR *dir;
|
|
FILE *f;
|
|
|
|
*ret_id = NULL;
|
|
|
|
OpenSSL_add_all_algorithms();
|
|
ERR_load_crypto_strings();
|
|
|
|
if (cert_file == NULL) {
|
|
krb5_set_error_string(context, "certificate file file missing");
|
|
return HEIM_PKINIT_NO_CERTIFICATE;
|
|
}
|
|
if (key_file == NULL) {
|
|
krb5_set_error_string(context, "key file missing");
|
|
return HEIM_PKINIT_NO_PRIVATE_KEY;
|
|
}
|
|
if (x509_anchors == NULL) {
|
|
krb5_set_error_string(context, "No root ca directory given\n");
|
|
return HEIM_PKINIT_NO_VALID_CA;
|
|
}
|
|
|
|
f = fopen(cert_file, "r");
|
|
if (f == NULL) {
|
|
ret = errno;
|
|
krb5_set_error_string(context, "open failed %s: %s",
|
|
cert_file, strerror(ret));
|
|
return ret;
|
|
}
|
|
certificate = sk_X509_new_null();
|
|
while (1) {
|
|
/* see http://www.openssl.org/docs/crypto/pem.html section BUGS */
|
|
cert = PEM_read_X509(f, NULL, NULL, NULL);
|
|
if (cert == NULL) {
|
|
if (ERR_GET_REASON(ERR_peek_error()) == PEM_R_NO_START_LINE) {
|
|
/* End of file reached. no error */
|
|
ERR_clear_error();
|
|
break;
|
|
}
|
|
krb5_set_error_string(context, "Can't read certificate");
|
|
ret = HEIM_PKINIT_CERTIFICATE_INVALID;
|
|
fclose(f);
|
|
goto out;
|
|
}
|
|
sk_X509_insert(certificate, cert, sk_X509_num(certificate));
|
|
}
|
|
fclose(f);
|
|
if (sk_X509_num(certificate) == 0) {
|
|
krb5_set_error_string(context, "No certificate found");
|
|
ret = HEIM_PKINIT_NO_CERTIFICATE;
|
|
goto out;
|
|
}
|
|
/* load private key */
|
|
f = fopen(key_file, "r");
|
|
if (f == NULL) {
|
|
ret = errno;
|
|
krb5_set_error_string(context, "open %s: %s", key_file, strerror(ret));
|
|
goto out;
|
|
}
|
|
private_key = PEM_read_PrivateKey(f, NULL,
|
|
(password == NULL||password[0] == '\0') ?
|
|
ssl_pass_cb : NULL, password);
|
|
fclose(f);
|
|
if (private_key == NULL) {
|
|
krb5_set_error_string(context, "Can't read private key");
|
|
ret = HEIM_PKINIT_PRIVATE_KEY_INVALID;
|
|
goto out;
|
|
}
|
|
ret = X509_check_private_key(sk_X509_value(certificate, 0), private_key);
|
|
if (ret != 1) {
|
|
ret = HEIM_PKINIT_PRIVATE_KEY_INVALID;
|
|
krb5_set_error_string(context,
|
|
"The private key doesn't match the public key "
|
|
"certificate");
|
|
goto out;
|
|
}
|
|
/* read ca certificates */
|
|
dir = opendir(x509_anchors);
|
|
if (dir == NULL) {
|
|
ret = errno;
|
|
krb5_set_error_string(context, "open directory %s: %s",
|
|
x509_anchors, strerror(ret));
|
|
goto out;
|
|
}
|
|
|
|
asprintf(&dirname, "%s%s", x509_anchors,
|
|
x509_anchors[strlen(x509_anchors) - 1] == '/' ? "" : "/");
|
|
|
|
trusted_certs = sk_X509_new_null();
|
|
while ((file = readdir(dir)) != NULL) {
|
|
char *filename;
|
|
|
|
/*
|
|
* Assume the certificate filenames constist of hashed subject
|
|
* name followed by suffix ".0"
|
|
*/
|
|
|
|
if (strlen(file->d_name) == 10 && strcmp(&file->d_name[8],".0") == 0) {
|
|
asprintf(&filename, "%s%s", dirname, file->d_name);
|
|
if (filename == NULL) {
|
|
ret = ENOMEM;
|
|
krb5_set_error_string(context, "out or memory");
|
|
goto out;
|
|
}
|
|
f = fopen(filename, "r");
|
|
if (f == NULL) {
|
|
ret = errno;
|
|
krb5_set_error_string(context, "open %s: %s",
|
|
filename, strerror(ret));
|
|
free(filename);
|
|
closedir(dir);
|
|
goto out;
|
|
}
|
|
cert = PEM_read_X509(f, NULL, NULL, NULL);
|
|
fclose(f);
|
|
if (cert != NULL) {
|
|
/* order of the certs is not important */
|
|
sk_X509_push(trusted_certs, cert);
|
|
}
|
|
free(filename);
|
|
}
|
|
}
|
|
closedir(dir);
|
|
|
|
if (sk_X509_num(trusted_certs) == 0) {
|
|
krb5_set_error_string(context, "No CA certificate(s) found");
|
|
ret = HEIM_PKINIT_NO_VALID_CA;
|
|
goto out;
|
|
}
|
|
|
|
id = malloc(sizeof(*id));
|
|
if (id == NULL) {
|
|
krb5_set_error_string(context, "Out of memory");
|
|
ret = ENOMEM;
|
|
goto out;
|
|
}
|
|
|
|
id->private_key = private_key;
|
|
id->trusted_certs = trusted_certs;
|
|
id->cert = certificate;
|
|
|
|
*ret_id = id;
|
|
|
|
return 0;
|
|
|
|
out:
|
|
if (certificate)
|
|
sk_X509_pop_free(certificate, X509_free);
|
|
if (trusted_certs)
|
|
sk_X509_pop_free(trusted_certs, X509_free);
|
|
if (private_key)
|
|
EVP_PKEY_free(private_key);
|
|
if (id)
|
|
free(id);
|
|
|
|
return ret;
|
|
}
|
|
|
|
#endif /* PKINIT */
|
|
|
|
void
|
|
krb5_get_init_creds_opt_free_pkinit(krb5_get_init_creds_opt *opt)
|
|
{
|
|
#ifdef PKINIT
|
|
krb5_pk_init_ctx ctx;
|
|
|
|
if (opt->private == NULL || opt->private->pk_init_ctx == NULL)
|
|
return;
|
|
ctx = opt->private->pk_init_ctx;
|
|
if (ctx->dh)
|
|
DH_free(ctx->dh);
|
|
if (ctx->id) {
|
|
if (ctx->id->cert)
|
|
sk_X509_pop_free(ctx->id->cert, X509_free);
|
|
if (ctx->id->trusted_certs)
|
|
sk_X509_pop_free(ctx->id->trusted_certs, X509_free);
|
|
if (ctx->id->private_key)
|
|
EVP_PKEY_free(ctx->id->private_key);
|
|
free(ctx->id);
|
|
}
|
|
opt->private->pk_init_ctx = NULL;
|
|
#endif
|
|
}
|
|
|
|
krb5_error_code
|
|
krb5_get_init_creds_opt_set_pkinit(krb5_context context,
|
|
krb5_get_init_creds_opt *opt,
|
|
const char *cert_file,
|
|
const char *key_file,
|
|
const char *x509_anchors,
|
|
int flags,
|
|
char *password)
|
|
{
|
|
#ifdef PKINIT
|
|
krb5_error_code ret;
|
|
|
|
if (opt->private == NULL) {
|
|
krb5_set_error_string(context, "pkinit on non extendable opt");
|
|
return EINVAL;
|
|
}
|
|
|
|
opt->private->pk_init_ctx = malloc(sizeof(*opt->private->pk_init_ctx));
|
|
if (opt->private->pk_init_ctx == NULL) {
|
|
krb5_set_error_string(context, "malloc");
|
|
return ENOMEM;
|
|
}
|
|
opt->private->pk_init_ctx->dh = NULL;
|
|
opt->private->pk_init_ctx->id = NULL;
|
|
ret = _krb5_pk_load_openssl_id(context,
|
|
&opt->private->pk_init_ctx->id,
|
|
cert_file,
|
|
key_file,
|
|
x509_anchors,
|
|
password);
|
|
if (ret) {
|
|
free(opt->private->pk_init_ctx);
|
|
opt->private->pk_init_ctx = NULL;
|
|
}
|
|
|
|
/* XXX */
|
|
if (ret == 0 && (flags & 1) && !(flags & 2)) {
|
|
DH *dh;
|
|
const char *P =
|
|
"FFFFFFFF" "FFFFFFFF" "C90FDAA2" "2168C234" "C4C6628B" "80DC1CD1"
|
|
"29024E08" "8A67CC74" "020BBEA6" "3B139B22" "514A0879" "8E3404DD"
|
|
"EF9519B3" "CD3A431B" "302B0A6D" "F25F1437" "4FE1356D" "6D51C245"
|
|
"E485B576" "625E7EC6" "F44C42E9" "A637ED6B" "0BFF5CB6" "F406B7ED"
|
|
"EE386BFB" "5A899FA5" "AE9F2411" "7C4B1FE6" "49286651" "ECE65381"
|
|
"FFFFFFFF" "FFFFFFFF";
|
|
const char *G = "2";
|
|
const char *Q =
|
|
"7FFFFFFF" "FFFFFFFF" "E487ED51" "10B4611A" "62633145" "C06E0E68"
|
|
"94812704" "4533E63A" "0105DF53" "1D89CD91" "28A5043C" "C71A026E"
|
|
"F7CA8CD9" "E69D218D" "98158536" "F92F8A1B" "A7F09AB6" "B6A8E122"
|
|
"F242DABB" "312F3F63" "7A262174" "D31BF6B5" "85FFAE5B" "7A035BF6"
|
|
"F71C35FD" "AD44CFD2" "D74F9208" "BE258FF3" "24943328" "F67329C0"
|
|
"FFFFFFFF" "FFFFFFFF";
|
|
|
|
dh = DH_new();
|
|
if (dh == NULL) {
|
|
krb5_get_init_creds_opt_free_pkinit(opt);
|
|
return ENOMEM;
|
|
}
|
|
opt->private->pk_init_ctx->dh = dh;
|
|
if (!BN_hex2bn(&dh->p, P)) {
|
|
krb5_get_init_creds_opt_free_pkinit(opt);
|
|
return ENOMEM;
|
|
}
|
|
if (!BN_hex2bn(&dh->g, G)) {
|
|
krb5_get_init_creds_opt_free_pkinit(opt);
|
|
return ENOMEM;
|
|
}
|
|
if (!BN_hex2bn(&dh->q, Q)) {
|
|
krb5_get_init_creds_opt_free_pkinit(opt);
|
|
return ENOMEM;
|
|
}
|
|
/* XXX generate a new key for each request ? */
|
|
if (DH_generate_key(dh) != 1) {
|
|
krb5_get_init_creds_opt_free_pkinit(opt);
|
|
return ENOMEM;
|
|
}
|
|
}
|
|
return ret;
|
|
#else
|
|
krb5_set_error_string(context, "no support for PKINIT compiled in");
|
|
return EINVAL;
|
|
#endif
|
|
}
|