source: libabac/abac_verifier.c @ 0779c99

abac0-leakabac0-meicompt_changesgec13mei-idmei-rt0-nmei_rt0mei_rt2mei_rt2_fix_1meiyap-rt1meiyap1rt2tvf-new-xml
Last change on this file since 0779c99 was 0779c99, checked in by Mike Ryan <mikeryan@…>, 14 years ago

return meaningful error codes when loading certificates

  • Property mode set to 100644
File size: 8.2 KB
Line 
1#include <assert.h>
2
3#include <library.h>
4#include <credentials/certificates/certificate.h>
5#include <credentials/certificates/x509.h>
6#include <credentials/certificates/ac.h>
7
8#include "abac_verifier.h"
9
10#include "abac_util.h"
11
12typedef struct _abac_id_cert_t {
13    char *keyid;
14    certificate_t *cert;
15
16    UT_hash_handle hh;
17} abac_id_cert_t;
18
19struct _abac_credential_t {
20    abac_role_t *head;
21    abac_role_t *tail;
22    certificate_t *cert;
23    certificate_t *issuer;
24};
25
26abac_id_cert_t *id_certs = NULL;
27
28// convert a chunk to a lowercase binary string
29// malloc's the string
30static char *_chunk_to_string(chunk_t chunk) {
31    int i;
32
33    char *ret = abac_xmalloc(chunk.len * 2 + 1);
34
35    for (i = 0; i < chunk.len; ++i)
36        sprintf(ret + 2 * i, "%02x", chunk.ptr[i]);
37
38    return ret;
39}
40
41// verify that cert was issued by issuer
42// cert and issuer can be the same, in which case the self-sig is validated
43static int _verify_signature(certificate_t *issuer, certificate_t *cert) {
44    // XXX make sure this checks signature
45    if (cert->issued_by(cert, issuer))
46        if (cert->get_validity(cert, NULL, NULL, NULL))
47            return 1;
48    return 0;
49}
50
51/**
52 * Init the verifier subsystem.
53 */
54void abac_verifier_init(void) {
55    atexit(library_deinit);
56
57    if (!library_init(NULL))
58        exit(SS_RC_LIBSTRONGSWAN_INTEGRITY);
59
60    if (!lib->plugins->load(lib->plugins, NULL,
61            lib->settings->get_str(lib->settings, "pki.load", PLUGINS)))
62        exit(SS_RC_INITIALIZATION_FAILED);
63}
64
65/**
66 * Uninitialize the system, free up any allocated memory.
67 */
68void abac_verifier_deinit(void) {
69    abac_id_cert_t *id;
70
71    while ((id = id_certs) != NULL) {
72        HASH_DEL(id_certs, id);
73
74        free(id->keyid);
75        id->cert->destroy(id->cert);
76        free(id);
77    }
78}
79
80/**
81 * Load an ID certificate.
82 */
83static int _load_id(certificate_t *cert) {
84    public_key_t *public = NULL;
85    char *keyid = NULL;
86    chunk_t id;
87    int ret;
88
89    assert(cert != NULL);
90
91    // get the cert's pub key
92    public = cert->get_public_key(cert);
93    if (public == NULL) {
94        ret = ABAC_CERT_INVALID;
95        goto error;
96    }
97
98    // get the pubkey's fingerprint
99    ret = public->get_fingerprint(
100        public,
101        KEY_ID_PUBKEY_INFO_SHA1, &id
102    );
103    if (!ret) {
104        ret = ABAC_CERT_INVALID;
105        goto error;
106    }
107
108    // validate sig
109    ret = _verify_signature(cert, cert);
110    if (!ret) {
111        ret = ABAC_CERT_BAD_SIG;
112        goto error;
113    }
114
115    keyid = _chunk_to_string(id);
116
117    // success, add the key to the map of certificates
118    abac_id_cert_t *id_cert = abac_xmalloc(sizeof(abac_id_cert_t));
119    id_cert->keyid = keyid;
120    id_cert->cert = cert;
121    HASH_ADD_KEYPTR(hh, id_certs, id_cert->keyid, strlen(id_cert->keyid), id_cert);
122
123    public->destroy(public);
124
125    return ABAC_CERT_SUCCESS;
126
127error:
128    if (public != NULL) public->destroy(public);
129
130    return ret;
131}
132
133/**
134 * Load an ID cert from a file.
135 */
136int abac_verifier_load_id_file(char *filename) {
137    // load the cert
138    certificate_t *cert = lib->creds->create(
139        lib->creds, CRED_CERTIFICATE, CERT_X509,
140        BUILD_FROM_FILE, filename,
141        BUILD_X509_FLAG, X509_AA, // attribute authority, dumb
142        BUILD_END
143    );
144    if (cert == NULL)
145        return ABAC_CERT_INVALID;
146    return _load_id(cert);
147}
148
149/**
150 * Load an ID cert from a chunk.
151 */
152int abac_verifier_load_id_chunk(chunk_t chunk) {
153    // load the cert
154    certificate_t *cert = lib->creds->create(
155        lib->creds, CRED_CERTIFICATE, CERT_X509,
156        BUILD_BLOB_ASN1_DER, chunk,
157        BUILD_X509_FLAG, X509_AA, // attribute authority, dumb
158        BUILD_END
159    );
160    if (cert == NULL)
161        return ABAC_CERT_INVALID;
162    return _load_id(cert);
163}
164
165/**
166 * Load an attribute cert.
167 * Returns true only if the certificate is valid and is issued by the proper
168 * authority.
169 */
170static int _load_attribute_cert(certificate_t *cert, abac_credential_t **cred_ret) {
171    ietf_attributes_t *attr_cert = NULL;
172    abac_role_t *head_role = NULL;
173    abac_role_t *tail_role = NULL;
174    abac_id_cert_t *issuer;
175    int ret;
176
177    // get the attr
178    ac_t *ac = (ac_t *)cert;
179    attr_cert = ac->get_groups(ac);
180    if (attr_cert == NULL) {
181        ret = ABAC_CERT_INVALID;
182        goto error;
183    }
184
185    char *attr_string = attr_cert->get_string(attr_cert);
186    if (attr_string == NULL) {
187        ret = ABAC_CERT_INVALID;
188        goto error;
189    }
190
191    // split into head/tail parts
192    char head[256], tail[256];
193    ret = sscanf(attr_string, "%255s <- %255s", head, tail);
194    if (ret != 2) {
195        ret = ABAC_CERT_INVALID;
196        goto error;
197    }
198
199    // must be a role
200    head_role = abac_role_from_string(head);
201    if (head_role == NULL) goto error;
202    if (!abac_role_is_role(head_role)) {
203        ret = ABAC_CERT_INVALID;
204        goto error;
205    }
206
207    // make sure the tail role is valid
208    tail_role = abac_role_from_string(tail);
209    if (tail_role == NULL) {
210        ret = ABAC_CERT_INVALID;
211        goto error;
212    }
213
214    // get the issuer based on keyid
215    char *principal = abac_role_principal(head_role);
216    HASH_FIND_STR(id_certs, principal, issuer);
217    if (issuer == NULL) {
218        ret = ABAC_CERT_MISSING_ISSUER;
219        goto error;
220    }
221
222    // make sure the issuer's signed it
223    ret = _verify_signature(issuer->cert, cert);
224    if (!ret) {
225        ret = ABAC_CERT_BAD_SIG;
226        goto error;
227    }
228
229    // at this point we know we have a good attribute cert
230    abac_credential_t *cred = abac_xmalloc(sizeof(abac_credential_t));
231    cred->head = head_role;
232    cred->tail = tail_role;
233    cred->cert = cert;
234    cred->issuer = issuer->cert->get_ref(issuer->cert);
235    *cred_ret = cred;
236
237    // free up some crap
238    attr_cert->destroy(attr_cert);
239
240    return ABAC_CERT_SUCCESS;
241
242error:
243    if (cert != NULL) cert->destroy(cert);
244    if (attr_cert != NULL) attr_cert->destroy(attr_cert);
245    if (head_role != NULL) abac_role_free(head_role);
246    if (tail_role != NULL) abac_role_free(tail_role);
247
248    return ret;
249}
250
251/**
252 * Load an attribute cert from a file.
253 */
254int abac_verifier_load_attribute_cert_file(char *filename, abac_credential_t **cred) {
255    // load the cert
256    certificate_t *cert = lib->creds->create(
257        lib->creds, CRED_CERTIFICATE, CERT_X509_AC,
258        BUILD_FROM_FILE, filename,
259        BUILD_END
260    );
261    if (cert == NULL)
262        return ABAC_CERT_INVALID;
263    return _load_attribute_cert(cert, cred);
264}
265
266/**
267 * Load an attribute cert from a chunk.
268 */
269int abac_verifier_load_attribute_cert_chunk(chunk_t chunk, abac_credential_t **cred) {
270    // load the cert
271    certificate_t *cert = lib->creds->create(
272        lib->creds, CRED_CERTIFICATE, CERT_X509_AC,
273        BUILD_BLOB_ASN1_DER, chunk,
274        BUILD_END
275    );
276    if (cert == NULL)
277        return ABAC_CERT_INVALID;
278    return _load_attribute_cert(cert, cred);
279}
280
281/**
282 * Return the head role.
283 */
284abac_role_t *abac_credential_head(abac_credential_t *cred) {
285    return cred->head;
286}
287
288/**
289 * Return the tail role.
290 */
291abac_role_t *abac_credential_tail(abac_credential_t *cred) {
292    return cred->tail;
293}
294
295/**
296 * Return the encoding of the attribute cert.
297 */
298abac_chunk_t abac_credential_attribute_cert(abac_credential_t *cred) {
299    chunk_t encoding = cred->cert->get_encoding(cred->cert);
300    abac_chunk_t ret = { encoding.ptr, encoding.len };
301    return ret;
302}
303
304/**
305 * Return the encoding of the issuer cert.
306 */
307abac_chunk_t abac_credential_issuer_cert(abac_credential_t *cred) {
308    chunk_t encoding = cred->issuer->get_encoding(cred->issuer);
309    abac_chunk_t ret = { encoding.ptr, encoding.len };
310    return ret;
311}
312
313/**
314 * Copy a credential.
315 */
316abac_credential_t *abac_credential_dup(abac_credential_t *cred) {
317    assert(cred != NULL);
318
319    abac_credential_t *clone = abac_xmalloc(sizeof(abac_credential_t));
320
321    clone->head = abac_role_dup(cred->head);
322    clone->tail = abac_role_dup(cred->tail);
323    clone->cert = cred->cert->get_ref(cred->cert);
324    clone->issuer = cred->issuer->get_ref(cred->issuer);
325
326    return clone;
327}
328
329/**
330 * Free a credential.
331 */
332void abac_credential_free(abac_credential_t *cred) {
333    if (cred == NULL)
334        return;
335
336    abac_role_free(cred->head);
337    abac_role_free(cred->tail);
338    cred->cert->destroy(cred->cert);
339    cred->issuer->destroy(cred->issuer); // reference counted
340
341    free(cred);
342}
Note: See TracBrowser for help on using the repository browser.