source: libabac/abac_graph.c @ 15200be

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

move libabac into its own directory

  • Property mode set to 100644
File size: 11.1 KB
RevLine 
[d4cbf71]1#include <assert.h>
[379a53f]2#include <stdlib.h>
[d4cbf71]3
[06293d1]4#include "abac_graph.h"
[cb0f2b2]5
[2fd24c7]6#include "abac_set.h"
[3c251d0]7#include "abac_util.h"
[d4cbf71]8
[f46412c]9#include "uthash.h"
10
11// vertex
[06293d1]12struct _abac_vertex_t {
[1743825]13    abac_role_t *role;
[f46412c]14    char *name;
15
[6d5623e]16    abac_list_t *edges;
[f46412c]17
18    UT_hash_handle hh;
19};
20
[ae72c5d]21// edge
[06293d1]22typedef struct _abac_edge_t {
23    abac_vertex_t *vertex;
[401a054]24    abac_credential_t *credential;
[06293d1]25} abac_edge_t;
[ae72c5d]26
[f46412c]27// derived edge
[06293d1]28typedef struct _abac_derived_key_t {
29    abac_vertex_t *head;
30    abac_edge_t *tail;
31} abac_derived_key_t;
[f46412c]32
[06293d1]33typedef struct _abac_derived_t {
34    abac_derived_key_t key;
[f46412c]35    UT_hash_handle hh;
[06293d1]36} abac_derived_t;
[f46412c]37
38// graph
[06293d1]39struct _abac_graph_t {
40    abac_vertex_t *vertices;
41    abac_derived_t *derived;
[f46412c]42    int dirty;
43};
[0ec9e25]44
45/**
46 * Create a new graph.
47 */
[06293d1]48abac_graph_t *abac_graph_new(void) {
[3c251d0]49    abac_graph_t *graph = abac_xmalloc(sizeof(abac_graph_t));
[82aeefa]50
51    graph->vertices = NULL;
[6188f4e]52    graph->derived = NULL;
[82aeefa]53    graph->dirty = 0;
54
55    return graph;
56}
[d4cbf71]57
[b26942d]58/**
59 * Deep copy a graph.
60 */
[06293d1]61abac_graph_t *abac_graph_dup(abac_graph_t *graph) {
62    abac_vertex_t *vertex;
63    abac_edge_t *edge;
[b26942d]64
[06293d1]65    abac_graph_t *clone = abac_graph_new();
[b26942d]66
67    // copy the vertices edge by edge
68    for (vertex = graph->vertices; vertex != NULL; vertex = vertex->hh.next)
[6d5623e]69        abac_list_foreach(vertex->edges, edge,
[b26942d]70            // only copy non-derived edges
[401a054]71            if (edge->credential != NULL)
72                abac_graph_add_credential(clone, edge->credential);
[b26942d]73        );
74
75    return clone;
76}
77
[d4cbf71]78/**
[401a054]79 * Add a vertex to the graph. Should only be called by abac_graph_add_credential.
[d4cbf71]80 */
[06293d1]81static abac_vertex_t *_get_vertex(abac_graph_t *graph, abac_role_t *role) {
82    abac_vertex_t *vertex;
[c28bd8b]83    char *string;
84   
[dcc1a8e]85    string = abac_role_string(role);
[82aeefa]86    HASH_FIND_STR(graph->vertices, string, vertex);
[c28bd8b]87
88    // add the vertex if it doesn't exist
89    if (vertex == NULL) {
[3c251d0]90        vertex = abac_xmalloc(sizeof(abac_vertex_t));
[dcc1a8e]91        vertex->role = abac_role_dup(role);
92        vertex->name = abac_role_string(vertex->role);
[d4cbf71]93
[379a53f]94        // create the list of edges
[6d5623e]95        vertex->edges = abac_list_new();
[d4cbf71]96
[c28bd8b]97        // add it to the vertices
[82aeefa]98        HASH_ADD_KEYPTR(hh, graph->vertices, vertex->name, strlen(vertex->name), vertex);
[c28bd8b]99    }
[d4cbf71]100
101    return vertex;
102}
103
104/**
[401a054]105 * Add a credential to the credential graph.
[d4cbf71]106 */
[401a054]107int abac_graph_add_credential(abac_graph_t *graph, abac_credential_t *cred) {
[06293d1]108    abac_vertex_t *head_vertex, *tail_vertex;
[d4cbf71]109
[401a054]110    assert(cred != NULL);
[ae72c5d]111
[401a054]112    abac_role_t *head = abac_credential_head(cred);
113    abac_role_t *tail = abac_credential_tail(cred);
[d4cbf71]114
[401a054]115    // a valid credential must have a role for the head
[dcc1a8e]116    if (!abac_role_is_role(head)) return 0;
[d4cbf71]117
[82aeefa]118    head_vertex = _get_vertex(graph, head);
119    tail_vertex = _get_vertex(graph, tail);
[d4cbf71]120
[ae72c5d]121    // create the edge and add it
[3c251d0]122    abac_edge_t *edge = abac_xmalloc(sizeof(abac_edge_t));
[ae72c5d]123    edge->vertex = tail_vertex;
[401a054]124    edge->credential = abac_credential_dup(cred);
[ae72c5d]125
[6d5623e]126    abac_list_add(head_vertex->edges, edge);
[d4cbf71]127
[82aeefa]128    // must re-derive edges
129    graph->dirty = 1;
130
[d4cbf71]131    return 1;
132}
133
[ebde9dd]134// find the principals that have a role
[06293d1]135static abac_set_t *_find_principals(abac_graph_t *graph, abac_vertex_t *start_vertex) {
[2fd24c7]136    abac_set_t *principals = abac_set_new();
[d4cbf71]137
[06293d1]138    abac_list_t *traversal = abac_graph_postorder(graph, start_vertex->role);
139    abac_vertex_t *vertex;
[d4cbf71]140
[6d5623e]141    abac_list_foreach(traversal, vertex,
[dcc1a8e]142        if (abac_role_is_principal(vertex->role))
143            abac_set_add(principals, abac_role_string(vertex->role));
[ebde9dd]144    );
[d4cbf71]145
[6d5623e]146    abac_list_free(traversal);
[ebde9dd]147    return principals;
148}
[d4cbf71]149
[6188f4e]150// remove any derived edges from the graph
[06293d1]151void _clear_derived(abac_graph_t *graph) {
152    abac_derived_t *current;
[6188f4e]153
154    while (graph->derived) {
155        current = graph->derived;
156
157        HASH_DEL(graph->derived, current);
158
[06293d1]159        abac_vertex_t *head = current->key.head;
160        abac_edge_t *tail = current->key.tail;
[401a054]161        assert(tail->credential == NULL);
[6188f4e]162
163        // this can fail, but we assume the data structures are consistent
[6d5623e]164        abac_list_remove(head->edges, tail);
[6188f4e]165
166        free(current);
[186cb75]167        free(tail);
[6188f4e]168    }
169}
170
[06293d1]171void abac_graph_derive_links(abac_graph_t *graph) {
172    abac_vertex_t *vertex;
[d4cbf71]173
[ebde9dd]174    if (!graph->dirty)
175        return;
[379a53f]176
[ebde9dd]177    for (vertex = graph->vertices; vertex != NULL; vertex = vertex->hh.next) {
178        // we only care about linking roles
[dcc1a8e]179        if (!abac_role_is_linking(vertex->role))
[ebde9dd]180            continue;
181
182        // linking roles take the form A.r1.r2
[dcc1a8e]183        char *A_r1 = abac_role_linked_role(vertex->role);
184        char *r2 = abac_role_role_name(vertex->role);
[ebde9dd]185
186        // find the linked role in the graph
[06293d1]187        abac_vertex_t *A_r1_vertex;
[ebde9dd]188        HASH_FIND_STR(graph->vertices, A_r1, A_r1_vertex);
189        if (A_r1_vertex == NULL)
190            continue;
191
192        // find the principals that have A.r1
[2fd24c7]193        abac_set_t *principals = _find_principals(graph, A_r1_vertex);
[ebde9dd]194        char *B;
195
[2fd24c7]196        abac_list_t *elts = abac_set_elements(principals);
[ebde9dd]197
198        // and add a link for each B.r2 to A.r1.r2
[6d5623e]199        abac_list_foreach(elts, B,
[ebde9dd]200            int B_len = strlen(B);
201            int r2_len = strlen(r2);
202
203            // create the string B.r2, thx C
204            char *B_r2 = malloc(B_len + r2_len + 2);
205            memcpy(B_r2, B, B_len);
206            B_r2[B_len] = '.';
207            memcpy(B_r2 + B_len + 1, r2, r2_len);
208            B_r2[B_len + r2_len + 1] = 0;
209
[06293d1]210            abac_vertex_t *B_r2_vertex;
[ebde9dd]211            HASH_FIND_STR(graph->vertices, B_r2, B_r2_vertex);
212
213            // add an edge if the principal's granted it to someone
214            if (B_r2_vertex) {
[dcc1a8e]215                debug_printf("adding edge from %s to %s\n", B_r2, abac_role_string(vertex->role));
[3c251d0]216                abac_edge_t *edge = abac_xmalloc(sizeof(abac_edge_t));
[ae72c5d]217                edge->vertex = B_r2_vertex;
[401a054]218                edge->credential = NULL;
[6d5623e]219                abac_list_add(vertex->edges, edge);
[ebde9dd]220
[6188f4e]221                // add to list of derived edges
[3c251d0]222                abac_derived_t *derived = abac_xmalloc(sizeof(abac_derived_t));
[6188f4e]223                derived->key.head = vertex;
[ae72c5d]224                derived->key.tail = edge;
[06293d1]225                HASH_ADD(hh, graph->derived, key, sizeof(abac_derived_key_t), derived);
[ebde9dd]226            }
227
[dbbf777]228#ifdef DEBUG
[dcc1a8e]229            debug_printf("    incoming edges for %s\n", abac_role_string(vertex->role));
[06293d1]230            abac_edge_t *cur;
[6d5623e]231            abac_list_foreach(vertex->edges, cur,
[dcc1a8e]232                debug_printf("        %s (%s)\n", abac_role_string(cur->vertex->role), cur->vertex->name);
[379a53f]233            );
[dbbf777]234#endif
[d4cbf71]235
[ebde9dd]236            free(B_r2);
237        );
238
[6d5623e]239        abac_list_free(elts);
[2fd24c7]240        abac_set_free(principals);
[ebde9dd]241    }
[6188f4e]242
243    graph->dirty = 0;
[d4cbf71]244}
[cb0f2b2]245
[06293d1]246static void _order_recurse(abac_vertex_t *vertex, abac_set_t *seen, int preorder, abac_list_t *stack) {
247    abac_edge_t *incoming;
[cb0f2b2]248
249    // don't revisit nodes
[dcc1a8e]250    if (!abac_set_add(seen, abac_role_string(vertex->role)))
[cb0f2b2]251        return;
252
253    if (preorder)
[6d5623e]254        abac_list_add(stack, vertex);
[cb0f2b2]255
[9536712]256    // recurse along the incoming vertices
[6d5623e]257    abac_list_foreach(vertex->edges, incoming,
[ae72c5d]258        _order_recurse(incoming->vertex, seen, preorder, stack);
[379a53f]259    );
[cb0f2b2]260
261    if (!preorder)
[6d5623e]262        abac_list_add(stack, vertex);
[cb0f2b2]263}
264
[06293d1]265static abac_list_t *_order(abac_graph_t *graph, abac_role_t *start, int preorder) {
[dcc1a8e]266    debug_printf("%sorder at %s\n", preorder ? "pre" : "post", abac_role_string(start));
[ebde9dd]267
[06293d1]268    abac_vertex_t *start_vertex = _get_vertex(graph, start);
[2fd24c7]269    abac_set_t *seen = abac_set_new();
[cb0f2b2]270
[379a53f]271    // create the return list
[6d5623e]272    abac_list_t *stack = abac_list_new();
[cb0f2b2]273
274    _order_recurse(start_vertex, seen, preorder, stack);
275
[2fd24c7]276    abac_set_free(seen);
[be963dc]277
[cb0f2b2]278    return stack;
279}
280
[06293d1]281abac_list_t *abac_graph_postorder(abac_graph_t *graph, abac_role_t *start) {
[82aeefa]282    return _order(graph, start, 0);
[cb0f2b2]283}
[97a5e13]284
[4e426c9]285/**
286 * Postorder traverse the graph and return all the credentials within.
287 */
288abac_list_t *abac_graph_postorder_credentials(abac_graph_t *graph, char *start) {
289    abac_vertex_t *vertex;
290    abac_edge_t *incoming;
291
292    // get the postorder of vertices
293    abac_role_t *role = abac_role_from_string(start);
294    abac_list_t *order = abac_graph_postorder(graph, role);
295
296    // go through the list and dup all the credentials
297    abac_list_t *credentials = abac_list_new();
298    abac_list_foreach(order, vertex,
299        abac_list_foreach(vertex->edges, incoming,
300            if (incoming->credential != NULL)
301                abac_list_add(credentials, abac_credential_dup(incoming->credential));
302        );
303    );
304
305    abac_role_free(role);
306    abac_list_free(order);
307
308    return credentials;
309}
310
[401a054]311static void _query(abac_graph_t *graph, char *role_name, char *principal, abac_graph_t *return_graph) {
[06293d1]312    abac_vertex_t *vertex;
313    abac_edge_t *incoming;
[97a5e13]314
[401a054]315    abac_role_t *role = abac_role_from_string(role_name);
[dcc1a8e]316    abac_role_t *prin_role = abac_role_from_string(principal);
[97a5e13]317
[2fd24c7]318    abac_set_t *on_path = abac_set_new();
[dcc1a8e]319    abac_set_add(on_path, abac_role_string(prin_role));
[97a5e13]320
[401a054]321    abac_list_t *traversal = abac_graph_postorder(graph, role);
[6d5623e]322    abac_list_foreach(traversal, vertex,
[1743825]323        abac_role_t *role = vertex->role;
[97a5e13]324
[6d5623e]325        abac_list_foreach(vertex->edges, incoming,
[1743825]326            abac_role_t *incoming_role = incoming->vertex->role;
[97a5e13]327
[dcc1a8e]328            if (!abac_set_contains(on_path, abac_role_string(incoming_role)))
[ae72c5d]329                continue;
[97a5e13]330
[dcc1a8e]331            abac_set_add(on_path, abac_role_string(role));
[97a5e13]332
333            // add non-derived edges to the proof graph
[dcc1a8e]334            if (!abac_role_is_linking(role))
[401a054]335                abac_graph_add_credential(return_graph, incoming->credential);
[97a5e13]336
337            // recursively find linked roles
338            else {
[401a054]339                char *linked_role = abac_role_linked_role(role);
[dcc1a8e]340                char *principal = abac_role_principal(incoming_role);
[97a5e13]341
[401a054]342                _query(graph, linked_role, principal, return_graph);
[97a5e13]343            }
344        );
345    );
346
[6d5623e]347    abac_list_free(traversal);
[2fd24c7]348    abac_set_free(on_path);
[401a054]349    abac_role_free(role);
[dcc1a8e]350    abac_role_free(prin_role);
[97a5e13]351}
352
[401a054]353abac_graph_t *abac_graph_query(abac_graph_t *graph, char *role, char *principal) {
[06293d1]354    abac_graph_derive_links(graph);
[97a5e13]355
[06293d1]356    abac_graph_t *return_graph = abac_graph_new();
[401a054]357    _query(graph, role, principal, return_graph);
[06293d1]358    abac_graph_derive_links(return_graph);
[97a5e13]359    return return_graph;
360}
[be963dc]361
[902d079]362/**
[401a054]363 * Get all the credentials (attribute/issuer cert pairs) from the graph.
[902d079]364 */
[401a054]365abac_list_t *abac_graph_credentials(abac_graph_t *graph) {
366    abac_list_t *credentials = abac_list_new();
[902d079]367
[06293d1]368    abac_vertex_t *vertex;
[902d079]369
370    for (vertex = graph->vertices; vertex != NULL; vertex = vertex->hh.next) {
[06293d1]371        abac_edge_t *edge;
[6d5623e]372        abac_list_foreach(vertex->edges, edge,
[401a054]373            if (edge->credential != NULL)
374                abac_list_add(credentials, abac_credential_dup(edge->credential));
[902d079]375        );
376    }
377
[401a054]378    return credentials;
[902d079]379}
380
[06293d1]381void abac_graph_free(abac_graph_t *graph) {
382    abac_vertex_t *vertex;
383    abac_edge_t *edge;
[be963dc]384
385    // kill derived edges
386    _clear_derived(graph);
387
388    // delete vertices
389    while ((vertex = graph->vertices) != NULL) {
390        HASH_DEL(graph->vertices, vertex);
391
[dcc1a8e]392        abac_role_free(vertex->role);
[186cb75]393
[6d5623e]394        abac_list_foreach(vertex->edges, edge,
[401a054]395            if (edge->credential != NULL)
396                abac_credential_free(edge->credential);
[186cb75]397            free(edge);
398        );
[6d5623e]399        abac_list_free(vertex->edges);
[be963dc]400        free(vertex);
401    }
402
403    free(graph);
404}
[f46412c]405
[06293d1]406abac_role_t *abac_vertex_role(abac_vertex_t *vertex) {
[f46412c]407    return vertex->role;
408}
Note: See TracBrowser for help on using the repository browser.