source: libabac/abac_attribute.c @ afcafea

abac0-leakabac0-meitvf-new-xml
Last change on this file since afcafea was afcafea, checked in by Ted Faber <faber@…>, 11 years ago

Outputs names with bake(Context)

  • Property mode set to 100644
File size: 13.9 KB
Line 
1
2/* abac_attribute.c */
3
4#define _GNU_SOURCE
5#include <stdio.h>
6#include <assert.h>
7#include <ctype.h>
8#include <string.h>
9#include <time.h>
10
11#include "libabac_common.h"
12#include "abac_list.h"
13#include "abac_util.h"
14#include "abac_xml.h"
15
16#define ROLE_SEPARATOR " <- "
17#define INTERSECTION_SEP " & "
18#define SHA1_LENGTH 40
19
20#define DEFAULT_OUTPUT_FORMAT "GENIv1.1"
21
22static int debug=0;
23
24// a GENI XML attribute chunk might contain multiple
25// attribute rules. It will be translate into multiple
26// abac_attribute structures but with cert ptr pointing
27// to the same xml chunk
28// issuer can be missing but then it won't be bakable
29// unless it is baked just for creddy's roles call
30struct _abac_attribute_t {
31    abac_id_t *issuer_id; 
32    char *role;
33    long validity;
34    int ntails;
35
36    char *head_string;
37    char **tail_strings;
38    char *output_format;
39    abac_keyid_map_t *keymap;
40
41    abac_chunk_t cert; // the XML chunk
42};
43
44char *abac_attribute_role_string(abac_attribute_t *attr);
45extern abac_id_t *abac_verifier_lookup_id(abac_list_t*, char *keyid);
46static char *_validate_principal(char *keyid);
47
48/************************************************************/
49abac_chunk_t abac_attribute_cert(abac_attribute_t *ptr)
50{
51    assert(ptr);
52    return ptr->cert;
53}
54
55abac_id_t *abac_attribute_issuer_id(abac_attribute_t *ptr)
56{
57    assert(ptr);
58    return ptr->issuer_id;
59}
60
61/* Get the format for this attribute to be output in.  This is NULL if the
62 * attribute has been read from a file. */
63char *abac_attribute_get_output_format(abac_attribute_t *a) {
64    return a->output_format;
65}
66
67/* Set the format for this attribute to be output in.  Valid formats are:
68 * GENIv1.0
69 * GENIv1.1
70 */
71void abac_attribute_set_output_format(abac_attribute_t *a, char *fmt) {
72    if (a->output_format) 
73        free(a->output_format);
74    a->output_format = abac_xstrdup(fmt);
75}
76
77
78// validity is measured in seconds (as of 0.2.0)
79// Acme.customer
80int abac_attribute_create(abac_attribute_t **ret, abac_id_t *issuer_id, char *role, long validity) {
81    libabac_init();
82    if (!abac_id_has_privkey(issuer_id))
83        return ABAC_ATTRIBUTE_ISSUER_NOKEY;
84    if (!abac_clean_name(role))
85        return ABAC_ATTRIBUTE_INVALID_ROLE;
86    if (validity < 0)
87        return ABAC_ATTRIBUTE_INVALID_VALIDITY;
88    if (!abac_id_still_valid(issuer_id))
89        return ABAC_ATTRIBUTE_INVALID_ISSUER;
90
91    if(validity == 0) validity = (long)(60*60*24*(365));
92
93    abac_attribute_t *attr = abac_xmalloc(sizeof(abac_attribute_t));
94    if(issuer_id) attr->issuer_id = abac_id_dup(issuer_id);
95        else attr->issuer_id = NULL;
96    attr->role = abac_xstrdup(role);
97    attr->validity = validity;
98
99    attr->head_string = NULL;
100    asprintf(&attr->head_string,"%s.%s",abac_id_keyid(issuer_id),role);
101    attr->ntails = 0;
102    attr->tail_strings = NULL;
103    attr->keymap = NULL;
104
105    attr->output_format = abac_xstrdup(DEFAULT_OUTPUT_FORMAT);
106
107    // NULL until baked
108    attr->cert.ptr=NULL;
109    attr->cert.len=0;
110
111    *ret = attr;
112    return ABAC_SUCCESS;
113}
114
115/**
116 * Get the validity period.(xml module returns the diff from expire time - now()
117 */
118int abac_attribute_validity(abac_attribute_t *attr,struct tm *not_before,struct tm *not_after) {
119    assert(attr);
120    memset(not_before, 0, sizeof(struct tm));
121    memset(not_after, 0, sizeof(struct tm));
122
123    time_t now;
124    time(&now);
125    gmtime_r(&now, not_before);
126    char *xml=(char *)attr->cert.ptr;
127    long validity=get_validity_from_xml(xml);
128
129    time_t etime = now + validity;
130    gmtime_r(&etime, not_after);
131
132    if(debug) fprintf(stderr,"validity from the xml blob is %ld\n",validity);
133    if(validity == 0)
134        return ABAC_FAILURE;
135    return ABAC_SUCCESS;
136}
137
138int abac_attribute_still_valid(abac_attribute_t *attr)
139{
140    assert(attr);
141    assert(attr->cert.ptr);
142    long v=get_validity_from_xml((char *)attr->cert.ptr);
143    if (v > 0.0)
144        return 1;
145    else return 0;
146}
147
148int abac_attribute_add_tail(abac_attribute_t *attr, char *string) {
149    assert(attr);
150
151    char **old_tail = attr->tail_strings;
152    int newsize = (attr->ntails+1)*sizeof(char *);
153
154    if ( !(attr->tail_strings = realloc(attr->tail_strings, newsize))) {
155        attr->tail_strings = old_tail;
156        return 0;
157    }
158    attr->tail_strings[attr->ntails++] = abac_xstrdup(string);
159    return 1;
160}
161
162
163void abac_attribute_set_head(abac_attribute_t *attr, char *string)
164{
165    assert(attr);
166    attr->head_string=string;
167}
168
169char *abac_attribute_get_head(abac_attribute_t *attr)
170{
171    assert(attr);
172    return attr->head_string;
173}
174
175/*
176 * Return the number of tail strings
177 */
178int abac_attribute_get_ntails(abac_attribute_t *attr) {
179    assert(attr);
180    return attr->ntails;
181}
182
183/*
184 * Return the nth tail string or NULL if it is undefined
185 */
186
187char *abac_attribute_get_tail_n(abac_attribute_t *attr, int n) {
188    assert(attr);
189    if ( n < 0 || n > attr->ntails) return NULL;
190    return attr->tail_strings[n];
191}
192
193
194/* A.b->C, return copy of a A */
195char *abac_attribute_get_principal(abac_attribute_t *attr)
196{
197    char *role_string=abac_attribute_role_string(attr);
198    /* make an copy */
199    char *tmp=strdup(role_string);
200    char *head_tail[2];
201    int ret = 2;
202    abac_split(tmp, "<-", head_tail, &ret);
203    if (ret != 2) goto err;
204    abac_split(head_tail[0], ".", head_tail, &ret);
205    if (ret != 2) goto err;
206    char *prin=strdup(head_tail[0]);
207    free(tmp);
208    return prin;
209
210err:     
211     free(tmp);
212     return NULL;
213}
214
215int abac_attribute_principal(abac_attribute_t *attr, char *keyid) {
216    char *copy = _validate_principal(keyid);
217    if (copy == NULL)
218        return 0;
219
220    return abac_attribute_add_tail(attr,copy);
221}
222
223int abac_attribute_role(abac_attribute_t *attr, char *keyid, char *role) {
224    if (!abac_clean_name(role))
225        return 0;
226
227    char *copy = _validate_principal(keyid);
228    char *newcopy=NULL;
229    if (copy == NULL)
230        return 0;
231
232    asprintf(&newcopy,"%s.%s", copy,role);
233    free(copy);
234    return abac_attribute_add_tail(attr, newcopy);
235}
236
237int abac_attribute_linking_role(abac_attribute_t *attr, char *keyid, char *role, char *linked) {
238    if (!abac_clean_name(role) || !abac_clean_name(linked))
239        return 0;
240
241    char *copy = _validate_principal(keyid);
242    if (copy == NULL)
243        return 0;
244
245    char *newcopy=NULL;
246    asprintf(&newcopy,"%s.%s.%s", copy,role,linked);
247    free(copy);
248    return abac_attribute_add_tail(attr, newcopy);
249}
250
251
252
253// 0 for fail to bake, 1 is baked okay
254int abac_attribute_bake_context(abac_attribute_t *attr, abac_context_t *ctxt) {
255    assert(attr);
256    assert(attr->head_string);
257    assert(attr->tail_strings);
258    abac_keyid_map_t *km = NULL;
259
260    abac_chunk_t id_chunk = { NULL, 0 };
261    int ret=abac_id_PEM(attr->issuer_id, &id_chunk);
262    if(ret != ABAC_CERT_SUCCESS)
263        return 0; 
264
265    if ( ctxt && (km = abac_context_get_keyid_map(ctxt))) {
266        if (attr->keymap) abac_keyid_map_free(attr->keymap);
267        attr->keymap = abac_keyid_map_dup(km);
268    }
269
270    /* Make an new GENI abac credential with the rt0 rule that expires secs
271     * from now.  cert is the PEM encoded X.509 of the issuer's certificate as
272     * a string.  certlen is the length of cert.  Returns the XML. Caller is
273     * responsible for freeing it. */
274    char *attr_cert=make_credential(attr, attr->validity, 
275            (char *)id_chunk.ptr, id_chunk.len);
276
277    if (attr_cert == NULL)
278        return 0;
279
280    attr->cert.ptr = (unsigned char *)attr_cert;
281    attr->cert.len = strlen(attr_cert);
282
283    /* free(role_string); */
284    return 1;
285}
286// 0 for fail to bake, 1 is baked okay
287int abac_attribute_bake(abac_attribute_t *attr) {
288    return abac_attribute_bake_context(attr, NULL);
289}
290
291// make an explicit copy
292abac_chunk_t abac_attribute_cert_chunk(abac_attribute_t *attr) {
293    abac_chunk_t chunk= {NULL,0};
294
295    if (attr->cert.ptr == NULL)
296        return chunk;
297
298    /* return the xml chunk */
299    chunk.ptr= (unsigned char *)abac_xstrdup((char *)attr->cert.ptr);
300    chunk.len=attr->cert.len;
301    return chunk;
302}
303
304int abac_attribute_baked(abac_attribute_t *attr) {
305    return (attr->cert.ptr != NULL);
306}
307
308
309static abac_attribute_t *_load_attr(abac_list_t *id_certs,char *rstring, char *xml, abac_keyid_map_t *km)
310{
311    /* make a copy of rle_string */
312    char *role_string=abac_xstrdup(rstring);
313
314    if(debug) fprintf(stderr,"loading -> %s \n", role_string);
315
316    char *head_tail[2];
317    char *role_rest[2];
318    int ret = 2;
319    abac_split(role_string, "<-", head_tail, &ret);
320    if (ret != 2) return NULL; 
321
322    char *keyid=get_keyid_from_xml(xml);
323    abac_id_t *issuer_id=abac_verifier_lookup_id(id_certs,keyid);
324
325    long validity=get_validity_from_xml(xml);
326   
327    abac_attribute_t *attr = abac_xmalloc(sizeof(abac_attribute_t));
328    if(issuer_id)
329        attr->issuer_id = abac_id_dup(issuer_id);
330    else attr->issuer_id=NULL;
331    attr->validity = validity;
332    attr->ntails = 0;
333    attr->tail_strings = NULL;
334
335    /* If there is a keymap, make a reference to it. */
336    if ( km ) attr->keymap = abac_keyid_map_dup(km);
337    else attr->keymap = NULL;
338
339
340    attr->head_string = abac_xstrdup(head_tail[0]);
341    do {
342        ret = 2;
343        abac_split(head_tail[1], " & ", role_rest, &ret);
344        abac_attribute_add_tail(attr, abac_xstrdup(role_rest[0]));
345        head_tail[1] =role_rest[1];
346    } while (ret == 2);
347
348    char *tmp=strstr(attr->head_string,".");
349    attr->role =abac_xstrdup(tmp+1);
350
351    attr->cert.ptr=(unsigned char *)abac_xstrdup(xml);
352    attr->cert.len=strlen(xml);
353    attr->output_format = NULL;
354
355    return attr;
356}
357
358abac_list_t *abac_attribute_certs_from_file(abac_list_t *id_certs,char *filename)
359{
360    libabac_init();
361    abac_list_t *alist=abac_list_new();
362    char *xml=NULL;
363    char *rt0=NULL;
364    abac_keyid_map_t *km = abac_keyid_map_new();
365
366    char **rt0s=read_credential((void *)id_certs,filename, &xml, km);
367    if(rt0s == NULL) return alist;
368    if(xml == NULL || strlen(xml)==0) return alist;
369
370    abac_attribute_t *attr;
371
372    int i=0;
373    do {
374        rt0 = rt0s[i]; 
375        if(rt0 == NULL) break;
376        attr=_load_attr(id_certs,rt0, xml, km);
377        if(attr)
378            abac_list_add(alist, attr);
379        free(rt0);
380        i++;
381    } while (rt0s[i] !=NULL);
382    abac_keyid_map_free(km);
383
384    free(rt0s);
385    free(xml);
386
387    return alist;
388}
389
390abac_list_t *abac_attribute_certs_from_chunk(abac_list_t *id_certs,abac_chunk_t chunk) {
391    libabac_init();
392
393    abac_list_t *alist=abac_list_new();
394    char *xml=(char *)chunk.ptr;
395    abac_keyid_map_t *km = abac_keyid_map_new();
396
397    if(chunk.len==0) return alist;
398
399    char **rt0s=get_rt0_from_xml((void *) id_certs, xml, km);
400    char *rt0=NULL;
401    if(rt0s==NULL) return alist;
402
403    abac_attribute_t *attr;
404    int i=0;
405    do {
406        rt0 = rt0s[i]; 
407        if(rt0 == NULL) break;
408        attr=_load_attr(id_certs,rt0, xml, km);
409        if(attr)
410            abac_list_add(alist, attr);
411        free(rt0);
412        i++;
413    } while (rt0s[i] !=NULL);
414    abac_keyid_map_free(km);
415
416    free(rt0s);
417    return alist;
418}
419
420// returns ABAC_FAILURE if the cert hasn't been baked
421int abac_attribute_write(abac_attribute_t *attr, FILE *out) {
422    assert(attr != NULL);
423
424    if (attr->cert.ptr == NULL)
425        return ABAC_FAILURE;
426
427    // write to file
428    fwrite(attr->cert.ptr, attr->cert.len, 1, out);
429
430    return ABAC_SUCCESS;
431}
432
433// returns ABAC_FAILURE if the cert hasn't been baked
434int abac_attribute_write_file(abac_attribute_t *attr, const char *fname) {
435    if (attr->cert.ptr == NULL)
436        return ABAC_FAILURE;
437
438    FILE *fp=fopen(fname,"w+");
439    if(fp) {
440         // write to file
441         fwrite(attr->cert.ptr, attr->cert.len, 1, fp);
442    } else return ABAC_FAILURE;
443    fclose(fp);
444
445    return ABAC_SUCCESS;
446}
447
448/* return a copy of the local name mappings, if any.  The returned value is not
449 * reference counted, so callers will need to call abac_keyid_map_dup on it if
450 * they need to keep a copy of the pointer.
451 */
452abac_keyid_map_t *abac_attribute_get_keyid_map(abac_attribute_t *attr) {
453    return attr->keymap;
454}
455
456
457void abac_attribute_free(abac_attribute_t *attr) {
458
459if(debug) fprintf(stderr,"calling abac_attribute_free on %s\n", attr->head_string);
460    int i = 0;
461
462    if (attr == NULL)
463        return;
464
465    if(attr->issuer_id) abac_id_free(attr->issuer_id);
466
467    free(attr->role);
468    free(attr->head_string);
469    for (i=0; i < attr->ntails; i++) 
470        free(attr->tail_strings[i]);
471    free(attr->tail_strings);
472    if ( attr->output_format ) 
473        free(attr->output_format);
474
475    if ( attr->keymap ) abac_keyid_map_free(attr->keymap);
476
477/* XXX this can not be free as if it is a char string
478    free(attr->cert.ptr);
479*/
480
481    free(attr);
482}
483
484//
485// Helper functions below
486//
487
488// validate a princpal's name
489// makes sure it's a valid SHA1 identifier
490// return values:
491//  success: malloc'd copy with all hex digits lowercase
492//  fail: NULL
493static char *_validate_principal(char *keyid) {
494    int i;
495    char *copy = NULL;
496
497    if (strlen(keyid) != SHA1_LENGTH)
498        return NULL;
499
500    copy = abac_xstrdup(keyid);
501    for (i = 0; i < SHA1_LENGTH; ++i) {
502        copy[i] = tolower(copy[i]);
503        if (!isxdigit(copy[i]))
504            goto error;
505    }
506
507    return copy;
508
509error:
510    free(copy);
511    return NULL;
512}
513
514static int abac_attribute_role_string_size(abac_attribute_t *attr) {
515    int sz = 3; /* Start with the end of string character and <-*/
516    int i;      /* Scratch */
517
518    if ( !attr) return sz;
519    if ( attr->head_string) 
520        sz += strlen(attr->head_string);
521    for (i = 0; i < attr->ntails; i++) 
522        if ( attr->tail_strings[i]) 
523            sz += strlen(attr->tail_strings[i]);
524    /* " & " between each pair of tails */
525    sz += 3 * (attr->ntails-1);
526    return sz;
527}
528
529// combine up the attribute's rule string, explicit copy
530char *abac_attribute_role_string(abac_attribute_t *attr) {
531    assert(attr);
532
533    int sz = abac_attribute_role_string_size(attr);
534    char *role_string=abac_xmalloc(sz);
535    int i;
536
537    if ( !role_string) return NULL;
538
539    sz -= snprintf(role_string, sz, "%s<-", attr->head_string);
540    for ( i = 0 ; i < attr->ntails; i++ ) {
541        if ( i > 0 ) {
542            strncat(role_string, " & ", 3);
543            sz -= 3;
544        }
545        strncat(role_string,attr->tail_strings[i], sz); 
546
547        sz -= strlen(attr->tail_strings[i]);
548        if (sz < 0 ) return NULL;
549    }
550    return role_string;
551}
Note: See TracBrowser for help on using the repository browser.