251 lines
4.9 KiB
C
251 lines
4.9 KiB
C
/*
|
|
* Copyright (C) 2008 Martin Willi
|
|
* Hochschule fuer Technik Rapperswil
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify it
|
|
* under the terms of the GNU General Public License as published by the
|
|
* Free Software Foundation; either version 2 of the License, or (at your
|
|
* option) any later version. See <http://www.fsf.org/copyleft/gpl.txt>.
|
|
*
|
|
* This program is distributed in the hope that it will be useful, but
|
|
* WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
|
|
* or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
|
* for more details.
|
|
*/
|
|
|
|
#include "pubkey_cert.h"
|
|
|
|
#include <debug.h>
|
|
|
|
typedef struct private_pubkey_cert_t private_pubkey_cert_t;
|
|
|
|
/**
|
|
* private data of pubkey_cert
|
|
*/
|
|
struct private_pubkey_cert_t {
|
|
|
|
/**
|
|
* public functions
|
|
*/
|
|
pubkey_cert_t public;
|
|
|
|
/**
|
|
* wrapped public key
|
|
*/
|
|
public_key_t *key;
|
|
|
|
/**
|
|
* dummy issuer id, ID_ANY
|
|
*/
|
|
identification_t *issuer;
|
|
|
|
/**
|
|
* subject, ID_KEY_ID of the public key
|
|
*/
|
|
identification_t *subject;
|
|
|
|
/**
|
|
* reference count
|
|
*/
|
|
refcount_t ref;
|
|
};
|
|
|
|
METHOD(certificate_t, get_type, certificate_type_t,
|
|
private_pubkey_cert_t *this)
|
|
{
|
|
return CERT_TRUSTED_PUBKEY;
|
|
}
|
|
|
|
METHOD(certificate_t, get_subject, identification_t*,
|
|
private_pubkey_cert_t *this)
|
|
{
|
|
return this->subject;
|
|
}
|
|
|
|
METHOD(certificate_t, get_issuer, identification_t*,
|
|
private_pubkey_cert_t *this)
|
|
{
|
|
return this->issuer;
|
|
}
|
|
|
|
METHOD(certificate_t, has_subject, id_match_t,
|
|
private_pubkey_cert_t *this, identification_t *subject)
|
|
{
|
|
if (subject->get_type(subject) == ID_KEY_ID)
|
|
{
|
|
cred_encoding_type_t type;
|
|
chunk_t fingerprint;
|
|
|
|
for (type = 0; type < CRED_ENCODING_MAX; type++)
|
|
{
|
|
if (this->key->get_fingerprint(this->key, type, &fingerprint) &&
|
|
chunk_equals(fingerprint, subject->get_encoding(subject)))
|
|
{
|
|
return ID_MATCH_PERFECT;
|
|
}
|
|
}
|
|
}
|
|
return ID_MATCH_NONE;
|
|
}
|
|
|
|
METHOD(certificate_t, has_issuer, id_match_t,
|
|
private_pubkey_cert_t *this, identification_t *issuer)
|
|
{
|
|
return ID_MATCH_NONE;
|
|
}
|
|
|
|
METHOD(certificate_t, equals, bool,
|
|
private_pubkey_cert_t *this, certificate_t *other)
|
|
{
|
|
public_key_t *other_key;
|
|
|
|
other_key = other->get_public_key(other);
|
|
if (other_key)
|
|
{
|
|
if (public_key_equals(this->key, other_key))
|
|
{
|
|
other_key->destroy(other_key);
|
|
return TRUE;
|
|
}
|
|
other_key->destroy(other_key);
|
|
}
|
|
return FALSE;
|
|
}
|
|
|
|
METHOD(certificate_t, issued_by, bool,
|
|
private_pubkey_cert_t *this, certificate_t *issuer)
|
|
{
|
|
return equals(this, issuer);
|
|
}
|
|
|
|
METHOD(certificate_t, get_public_key, public_key_t*,
|
|
private_pubkey_cert_t *this)
|
|
{
|
|
this->key->get_ref(this->key);
|
|
return this->key;
|
|
}
|
|
|
|
METHOD(certificate_t, get_validity, bool,
|
|
private_pubkey_cert_t *this, time_t *when, time_t *not_before,
|
|
time_t *not_after)
|
|
{
|
|
if (not_before)
|
|
{
|
|
*not_before = 0;
|
|
}
|
|
if (not_after)
|
|
{
|
|
*not_after = ~0;
|
|
}
|
|
return TRUE;
|
|
}
|
|
|
|
METHOD(certificate_t, get_encoding, bool,
|
|
private_pubkey_cert_t *this, cred_encoding_type_t type, chunk_t *encoding)
|
|
{
|
|
return this->key->get_encoding(this->key, type, encoding);
|
|
}
|
|
|
|
METHOD(certificate_t, get_ref, certificate_t*,
|
|
private_pubkey_cert_t *this)
|
|
{
|
|
ref_get(&this->ref);
|
|
return &this->public.interface;
|
|
}
|
|
|
|
METHOD(certificate_t, destroy, void,
|
|
private_pubkey_cert_t *this)
|
|
{
|
|
if (ref_put(&this->ref))
|
|
{
|
|
this->subject->destroy(this->subject);
|
|
this->issuer->destroy(this->issuer);
|
|
this->key->destroy(this->key);
|
|
free(this);
|
|
}
|
|
}
|
|
|
|
/*
|
|
* see header file
|
|
*/
|
|
static pubkey_cert_t *pubkey_cert_create(public_key_t *key)
|
|
{
|
|
private_pubkey_cert_t *this;
|
|
chunk_t fingerprint;
|
|
|
|
INIT(this,
|
|
.public = {
|
|
.interface = {
|
|
.get_type = _get_type,
|
|
.get_subject = _get_subject,
|
|
.get_issuer = _get_issuer,
|
|
.has_subject = _has_subject,
|
|
.has_issuer = _has_issuer,
|
|
.issued_by = _issued_by,
|
|
.get_public_key = _get_public_key,
|
|
.get_validity = _get_validity,
|
|
.get_encoding = _get_encoding,
|
|
.equals = _equals,
|
|
.get_ref = _get_ref,
|
|
.destroy = _destroy,
|
|
},
|
|
},
|
|
.ref = 1,
|
|
.key = key,
|
|
.issuer = identification_create_from_encoding(ID_ANY, chunk_empty),
|
|
);
|
|
|
|
if (key->get_fingerprint(key, KEYID_PUBKEY_INFO_SHA1, &fingerprint))
|
|
{
|
|
this->subject = identification_create_from_encoding(ID_KEY_ID, fingerprint);
|
|
}
|
|
else
|
|
{
|
|
this->subject = identification_create_from_encoding(ID_ANY, chunk_empty);
|
|
}
|
|
|
|
return &this->public;
|
|
}
|
|
|
|
/**
|
|
* See header.
|
|
*/
|
|
pubkey_cert_t *pubkey_cert_wrap(certificate_type_t type, va_list args)
|
|
{
|
|
public_key_t *key = NULL;
|
|
chunk_t blob = chunk_empty;
|
|
|
|
while (TRUE)
|
|
{
|
|
switch (va_arg(args, builder_part_t))
|
|
{
|
|
case BUILD_BLOB_ASN1_DER:
|
|
blob = va_arg(args, chunk_t);
|
|
continue;
|
|
case BUILD_PUBLIC_KEY:
|
|
key = va_arg(args, public_key_t*);
|
|
continue;
|
|
case BUILD_END:
|
|
break;
|
|
default:
|
|
return NULL;
|
|
}
|
|
break;
|
|
}
|
|
if (key)
|
|
{
|
|
key->get_ref(key);
|
|
}
|
|
else if (blob.ptr)
|
|
{
|
|
key = lib->creds->create(lib->creds, CRED_PUBLIC_KEY, KEY_ANY,
|
|
BUILD_BLOB_ASN1_DER, blob, BUILD_END);
|
|
}
|
|
if (key)
|
|
{
|
|
return pubkey_cert_create(key);
|
|
}
|
|
return NULL;
|
|
}
|
|
|