added create_part_enumerator() to indentity, allows to enumerate RDNs etc.

This commit is contained in:
Martin Willi
2009-04-14 14:32:22 +00:00
parent c31687daa7
commit 0bd7ad6cff
5 changed files with 258 additions and 7 deletions
+120 -1
View File
@@ -1,6 +1,6 @@
/*
* Copyright (C) 2009 Tobias Brunner
* Copyright (C) 2005-2008 Martin Willi
* Copyright (C) 2005-2009 Martin Willi
* Copyright (C) 2005 Jan Hutter
* Hochschule fuer Technik Rapperswil
*
@@ -920,6 +920,124 @@ int identification_printf_hook(char *dst, size_t len, printf_hook_spec_t *spec,
return print_in_hook(dst, len, "%*s", spec->width, buf);
}
/**
* Enumerator over RDNs
*/
typedef struct {
/* implements enumerator interface */
enumerator_t public;
/* current RDN */
chunk_t rdn;
/* current attribute */
chunk_t attr;
/** have another RDN? */
bool next;
} rdn_enumerator_t;
/**
* Implementation of rdn_enumerator_t.enumerate
*/
static bool rdn_enumerate(rdn_enumerator_t *this,
id_part_t *type, chunk_t *data)
{
chunk_t oid, value;
asn1_t asn1_type;
while (this->next)
{
if (!get_next_rdn(&this->rdn, &this->attr, &oid,
&value, &asn1_type, &this->next))
{
return FALSE;
}
switch (asn1_known_oid(oid))
{
case OID_COMMON_NAME:
*type = ID_PART_RDN_CN;
break;
case OID_SURNAME:
*type = ID_PART_RDN_S;
break;
case OID_SERIAL_NUMBER:
*type = ID_PART_RDN_SN;
break;
case OID_COUNTRY:
*type = ID_PART_RDN_C;
break;
case OID_LOCALITY:
*type = ID_PART_RDN_L;
break;
case OID_STATE_OR_PROVINCE:
*type = ID_PART_RDN_ST;
break;
case OID_ORGANIZATION:
*type = ID_PART_RDN_O;
break;
case OID_ORGANIZATION_UNIT:
*type = ID_PART_RDN_OU;
break;
case OID_TITLE:
*type = ID_PART_RDN_T;
break;
case OID_DESCRIPTION:
*type = ID_PART_RDN_D;
break;
case OID_NAME:
*type = ID_PART_RDN_N;
break;
case OID_GIVEN_NAME:
*type = ID_PART_RDN_G;
break;
case OID_INITIALS:
*type = ID_PART_RDN_I;
break;
case OID_UNIQUE_IDENTIFIER:
*type = ID_PART_RDN_ID;
break;
case OID_EMAIL_ADDRESS:
*type = ID_PART_RDN_E;
break;
case OID_EMPLOYEE_NUMBER:
*type = ID_PART_RDN_EN;
break;
default:
continue;
}
*data = value;
return TRUE;
}
return FALSE;
}
/**
* Implementation of identification_t.create_part_enumerator
*/
static enumerator_t* create_part_enumerator(private_identification_t *this)
{
switch (this->type)
{
case ID_DER_ASN1_DN:
{
rdn_enumerator_t *e = malloc_thing(rdn_enumerator_t);
e->public.enumerate = (void*)rdn_enumerate;
e->public.destroy = (void*)free;
if (init_rdn(this->encoded, &e->rdn, &e->attr, &e->next))
{
return &e->public;
}
free(e);
/* FALL */
}
case ID_RFC822_ADDR:
/* TODO */
case ID_FQDN:
/* TODO */
default:
return enumerator_create_empty();
}
}
/**
* Implementation of identification_t.clone.
*/
@@ -957,6 +1075,7 @@ static private_identification_t *identification_create(void)
this->public.get_encoding = (chunk_t (*) (identification_t*))get_encoding;
this->public.get_type = (id_type_t (*) (identification_t*))get_type;
this->public.contains_wildcards = (bool (*) (identification_t *this))contains_wildcards;
this->public.create_part_enumerator = (enumerator_t*(*)(identification_t*))create_part_enumerator;
this->public.clone = (identification_t* (*) (identification_t*))clone_;
this->public.destroy = (void (*) (identification_t*))destroy;
/* we use these as defaults, the may be overloaded for special ID types */
+65 -4
View File
@@ -1,6 +1,6 @@
/*
* Copyright (C) 2009 Tobias Brunner
* Copyright (C) 2005-2006 Martin Willi
* Copyright (C) 2005-2009 Martin Willi
* Copyright (C) 2005 Jan Hutter
* Hochschule fuer Technik Rapperswil
*
@@ -29,6 +29,7 @@
typedef enum id_type_t id_type_t;
typedef struct identification_t identification_t;
typedef enum id_match_t id_match_t;
typedef enum id_part_t id_part_t;
#include <library.h>
@@ -155,6 +156,56 @@ enum id_type_t {
*/
extern enum_name_t *id_type_names;
/**
* Type of an ID sub part.
*/
enum id_part_t {
/** Username part of an RFC822_ADDR */
ID_PART_USERNAME,
/** Domain part of an RFC822_ADDR */
ID_PART_DOMAIN,
/** Top-Level domain of a FQDN */
ID_PART_TLD,
/** Second-Level domain of a FQDN */
ID_PART_SLD,
/** Another Level domain of a FQDN */
ID_PART_ALD,
/** Country RDN of a DN */
ID_PART_RDN_C,
/** CommonName RDN of a DN */
ID_PART_RDN_CN,
/** Description RDN of a DN */
ID_PART_RDN_D,
/** Email RDN of a DN */
ID_PART_RDN_E,
/** EmployeeNumber RDN of a DN */
ID_PART_RDN_EN,
/** GivenName RDN of a DN */
ID_PART_RDN_G,
/** Initials RDN of a DN */
ID_PART_RDN_I,
/** UniqueIdentifier RDN of a DN */
ID_PART_RDN_ID,
/** Locality RDN of a DN */
ID_PART_RDN_L,
/** Name RDN of a DN */
ID_PART_RDN_N,
/** Organization RDN of a DN */
ID_PART_RDN_O,
/** OrganizationUnit RDN of a DN */
ID_PART_RDN_OU,
/** Surname RDN of a DN */
ID_PART_RDN_S,
/** SerialNumber RDN of a DN */
ID_PART_RDN_SN,
/** StateOrProvince RDN of a DN */
ID_PART_RDN_ST,
/** Title RDN of a DN */
ID_PART_RDN_T,
};
/**
* Generic identification, such as used in ID payload.
*
@@ -219,6 +270,19 @@ struct identification_t {
*/
bool (*contains_wildcards) (identification_t *this);
/**
* Create an enumerator over subparts of an identity.
*
* Some identities are built from several parts, e.g. an E-Mail consists
* of a username and a domain part, or a DistinguishedName contains several
* RDNs.
* For identity without subtypes (support), an empty enumerator is
* returned.
*
* @return an enumerator over (id_part_t type, chunk_t data)
*/
enumerator_t* (*create_part_enumerator)(identification_t *this);
/**
* Clone a identification_t instance.
*
@@ -262,9 +326,6 @@ identification_t * identification_create_from_string(char *string);
/**
* Creates an identification_t object from an encoded chunk.
*
* In contrast to identification_create_from_string(), this constructor never
* returns NULL, even when the conversion to a string representation fails.
*
* @param type type of this id, such as ID_IPV4_ADDR
* @param encoded encoded bytes, such as from identification_t.get_encoding