source: libabac/abac_pl_yap.c @ 08b8da7

mei_rt2mei_rt2_fix_1
Last change on this file since 08b8da7 was 08b8da7, checked in by Mei <mei@…>, 12 years ago

1) rework examples directory with Makefile
2) update scaling with plotting scripts
3) add more doc in there

  • Property mode set to 100644
File size: 11.7 KB
RevLine 
[e95d652]1
2/* copied from abac_graph.c
3   implementation of the low level using
4   yap prolog
5*/
6
7#include <err.h>
8#include <stdio.h>
9#include <assert.h>
10#include <stdlib.h>
11#include <string.h>
12#include <Yap/YapInterface.h>
13
[8bd77b5]14#include "abac_internal.h"
[e95d652]15
[8bd77b5]16#include "abac_pl_yap.h"
[e95d652]17#include "abac_util.h"
18
19#include "uthash.h"
20
[da5afdf]21extern abac_list_t *abac_credential_clauses(abac_credential_t *);
[8bd77b5]22extern char *abac_id_clause(abac_id_credential_t *);
23extern abac_aspect_t *abac_yy_get_rule_tail_aspect();
24extern abac_aspect_t *abac_yy_get_rule_head_aspect();
[0d0c3a9]25
[202a7f9]26static int debug=0;
[8bd77b5]27
[d5bbd3e]28/* track constraint's external clause's -unique name id */
[8bd77b5]29
[d5bbd3e]30static int constraint_label_count=0;
31static char *constraint_label="isABAC_constraint";
[e95d652]32
[da5afdf]33// pl -- place holder for now
[e95d652]34struct _abac_pl_t {
35    FILE *fptr;
36    char *fname;
37    char *yap_certs;
38};
39
[d5bbd3e]40/***********************************************************/
41static int _get_next_constraint_label_idx()
42{
43    constraint_label_count++;
44    return constraint_label_count;
45}
46
47static int _get_constraint_label_idx()
48{
49    return constraint_label_count;
50}
51
52/***********************************************************/
53
[53e540d]54static int _insert_clause(char *str)
[e95d652]55{
[202a7f9]56    YAP_Term *eterm;
[53e540d]57    YAP_Term goalArgs=YAP_ReadBuffer(str, eterm);
58    char *tmp=YAP_CompileClause(goalArgs);
59    if (tmp!=NULL) { /* something is wrong */
60        printf("error: result of compile clause (%s)\n", tmp);
61        printf("error: str used (%s)\n", str);
62        return 1;
[e95d652]63    }
[53e540d]64    return 0;
[e95d652]65}
66
[53e540d]67static int _insert_cred_clause(char *cstr)
[e95d652]68{
69    int ret=ABAC_CERT_SUCCESS;
[53e540d]70    int rc=_insert_clause(cstr);
71    if (rc)
72        return ABAC_CERT_BAD_YAP;
73    return ABAC_CERT_SUCCESS;
[e95d652]74}
75
[440ba20]76void show_yap_db(const char *msg)
[e95d652]77{
78    char lstr[]="listing";
[da5afdf]79    YAP_Term *eterm; /* error term */
[e95d652]80
[53e540d]81    printf("\n\n========= yap db (%s)\n",msg);
[e95d652]82    YAP_Term goal=YAP_ReadBuffer(lstr, eterm);
83    int rc =YAP_RunGoal( goal );
84    if (rc) {
85        printf("listing ok.. \n");
86    } else {
87        printf("listing's rc is bad.. \n");
88        YAP_Exit(1);
89    }
[53e540d]90    printf("========= \n\n");
[e95d652]91}
92
[53e540d]93/**
94 * Include some utility routines
95 */
96abac_pl_t *abac_pl_utility(void) {
97/*
98append([],L,L).
99append([X|L1],L2,[X|L3]):-append(L1,L2,L3).
100
101appendL([],[]).
102appendL([H|T], L) :-
103   appendL(T,L2), append(H,L2,L).
104*/
105    if(_insert_clause("append([],L,L)"))
106        YAP_Exit(1);
107    if(_insert_clause("append([X|L1],L2,[X|L3]):-append(L1,L2,L3)"))
108        YAP_Exit(1);
109    if(_insert_clause("appendL([],[])"))
110        YAP_Exit(1);
111    if(_insert_clause("appendL([H|T], L) :- appendL(T,L2), append(H,L2,L)"))
112        YAP_Exit(1);
[e95d652]113}
114
[53e540d]115/**
116 * Create a new yap structure.
117 */
118abac_pl_t *abac_pl_new(void) {
119
120    if (YAP_FastInit(NULL) == YAP_BOOT_ERROR)
121        YAP_Exit(1);
122
123    if (YAP_RunGoal(YAP_MkAtomTerm(YAP_LookupAtom("source")))) {
[2485307]124        if(debug) fprintf(stderr, "calling source..\n");
[53e540d]125        } else {
[2485307]126            if(debug) fprintf(stderr,"calling source failed..\n");
[202a7f9]127            YAP_Exit(1);
[53e540d]128    }
129
130    abac_pl_utility();
131 
132    abac_pl_t *pl = abac_xmalloc(sizeof(abac_pl_t));
133    pl->fptr=NULL;
134    pl->fname=NULL;
135    pl->yap_certs=NULL;
136    return pl;
[e95d652]137}
138
[53e540d]139/**
[5730a10]140 * Add a credential to the db, not duplicating a copy and so
141 * don't try to free it after this call.
[53e540d]142 */
143int abac_pl_add_credential(abac_pl_t *pl, abac_credential_t *cred)
144{
145    int rc=0;
[202a7f9]146    abac_list_t *clauses=abac_credential_clauses(cred);
147    if (clauses != NULL) {
148        char *cur;
149        abac_list_foreach(clauses, cur,
150            if(cur) {
[2485307]151                if(debug) fprintf(stderr,"inserting =>%s\n",cur);
[202a7f9]152                rc=_insert_cred_clause(cur);
153            }
154        );
[53e540d]155    }
156    return rc;
157}
[e95d652]158
[8bd77b5]159int abac_pl_add_type_credential(abac_pl_t *pl, abac_id_credential_t *id_cert)
[202a7f9]160{
161    char *clause=abac_id_clause(id_cert);
162    if (clause != NULL) {
163        int rc=_insert_cred_clause(clause);
164        return rc;
165    }
166    return 0;
167}
168
[d5bbd3e]169/*  string1(S):- S="abc";S="efg";S="ijk" */
[7b548fa]170char *abac_pl_add_range_constraint_clause(char *var, char *tmplist)
[d5bbd3e]171{
172    int i=_get_next_constraint_label_idx();
173    char *tmp=NULL;
174    asprintf(&tmp,"%s_%d(%s) :- %s", constraint_label, i, var, tmplist); 
175    int rc=_insert_cred_clause(tmp);
176    free(tmp);
177    if(rc) 
[7b548fa]178        panic("abac_pl_add_range_constraint_clause, failed to insert");
[d5bbd3e]179    asprintf(&tmp,"%s_%d(%s)", constraint_label, i, var);
180    return tmp;
181}
182
[da5afdf]183/* cases,
[e95d652]184     ['str']
185     ['str1','str2']
186     ([] is not possible, and don't care)
187*/
[202a7f9]188static void _credentials_from_string(abac_stack_t *credentials,char *slist) {
[e95d652]189    char *cptr=slist; /* current ptr */
190    char *sptr; /* string ptr */
191    char *ptr;
[202a7f9]192    int len=0;
[e95d652]193    char *string;
194    abac_credential_t *cred=NULL;
[202a7f9]195    int cnt=0;
196
[e95d652]197    /* find first [' */ 
198    ptr=strstr(cptr,"['");
199    if(ptr == NULL) 
200         return;
201    cptr=ptr+2;
202    sptr=cptr;
203    while (1) {
204        /* find next ',' or '] */
205        ptr=strstr(cptr,"','");
206        if(ptr!=NULL) {
207             cptr=ptr+3;
[202a7f9]208             len=(ptr-sptr);
[e95d652]209             string=strndup(sptr,len);
210             cred=abac_credential_lookup(string);
[202a7f9]211             free(string); 
[e95d652]212             if(cred) {
[7b548fa]213                 int i=abac_stack_unique_push(credentials, cred);
214                 if(i) cnt++;
[e95d652]215                 } else {
[9b43fc3]216                 printf("BAD BAD\n");
[e95d652]217             }
218             sptr=cptr;
219             } else {
220             ptr=strstr(cptr,"']");
221             if(ptr!=NULL) {
[202a7f9]222                 len=(ptr-sptr);
[e95d652]223                 string=strndup(sptr,len);
224                 cred=abac_credential_lookup(string);
[202a7f9]225                 free(string);
[e95d652]226                 if(cred) {
[7b548fa]227                     int i=abac_stack_unique_push(credentials, cred);
228                     if(i) cnt++;
[e95d652]229                     } else {
230                     printf("BAD BAD BAD\n");
231                 }
232                 break;
233             }
234        }
235    }
[202a7f9]236    if(debug)
[2485307]237        fprintf(stderr,"DEBUG:total %d credentials\n", cnt);
238}
239
240/* MAX 1024x1024, double as it goes */
241static int try_again(int sz, char **tptr)
242{
243   int blk=1024*2; /* 2048 */
244   int max=1024*1024;
245   int size;
246   char *tmp = NULL;
247
248   if(sz==0) {
249       size = (sizeof(char) * (blk+1));
250       } else {
251           if (sz>=max) {
252               size=0;
253               *tptr=tmp;
254               return 0;
255           }
256           size=sz*2+1;
257           if(size > max) size=max;
258   }
259
260   tmp = (char *) YAP_AllocSpaceFromYap(size);
261   if(tmp==NULL) {
262       fprintf(stderr,"ERROR: malloc failed !!!\n");
263       YAP_Exit(1);
264   }
265   *tptr=tmp;
266   return size;
[e95d652]267}
268
[9335cfa]269/* make a query and extract just 1 set of result */
[7727f26]270static abac_stack_t *_make_yap_query(char *prin, char *rule, char* estring)
[e95d652]271{
[36b100a]272    YAP_Term *eterm0;
273    YAP_Term *eterm1;
[e95d652]274    YAP_Term arg[3];
[2485307]275
[202a7f9]276    abac_stack_t *cred_list = abac_stack_new();
277
[2485307]278    if(debug) fprintf(stderr," the principal part(%s)\n", prin);
[7727f26]279    if(prin[0]=='\'' || prin[0]=='"') {
280        arg[0]=YAP_ReadBuffer(prin,eterm0);
[36b100a]281        } else {
[7727f26]282            arg[0]=YAP_MkAtomTerm(YAP_LookupAtom(prin)); 
[36b100a]283    }
[2485307]284    if(debug) fprintf(stderr," the role/oset part(%s)\n", estring);
[36b100a]285    arg[1]=YAP_ReadBuffer(estring,eterm1);
286
287    /* var for credential list */
[da5afdf]288    arg[2]=YAP_MkVarTerm();
[36b100a]289
[da5afdf]290    YAP_Atom f = YAP_LookupAtom("isMember");
291    YAP_Functor func = YAP_MkFunctor(f, 3);
292    YAP_Term goal=YAP_MkApplTerm(func, 3, arg);
293
294    int rc =YAP_RunGoal( goal );
295    if (rc) {
296        printf("YAP query succeed\n");
[2485307]297        char *tmp=NULL;
298        int tmp_sz=try_again(0, &tmp);
299        while(1) {
[08b8da7]300            int wrc=YAP_WriteBuffer(arg[2], tmp, tmp_sz,YAP_WRITE_HANDLE_VARS);
301            /* if t is FALSE, then it is error !!! */
302            if( wrc ) {
303                fprintf(stderr," PANIC PANIC\n");
304                /* YAP_Exit(1); */
305            } 
[2485307]306            if(strlen(tmp) > 5 )
307                break;
308            tmp_sz=try_again(tmp_sz,&tmp);
309            if(tmp_sz==0) break;
310        }
[da5afdf]311        /* this is returned as ['string1','string2'] */
[2485307]312        if(debug) fprintf(stderr,"    query answer : %s(%d)\n", tmp, strlen(tmp));
[da5afdf]313        _credentials_from_string(cred_list,tmp); 
[2485307]314        if(abac_stack_size(cred_list)==0) {
315            fprintf(stderr,"CAN NOT retrieve result properly from YAP!!!\n");
316            YAP_Exit(1);
317        }
[b92a620]318        YAP_FreeSpaceFromYap(tmp);
[9335cfa]319/**** XXX
[da5afdf]320        while (YAP_RestartGoal()) {
[2485307]321            if(debug) fprintf(stderr,"another success\n");
[da5afdf]322            YAP_WriteBuffer(arg[2], tmp, 5000,YAP_WRITE_HANDLE_VARS);
[2485307]323        if(debug) fprintf(stderr,"    restart query answer : %s\n", tmp);
[da5afdf]324            _credentials_from_string(cred_list,tmp);
325        }
[9335cfa]326***/
[da5afdf]327    } else {
328        printf("YAP query failed\n");
329        /* YAP_Exit(1); */
330    }
[08b8da7]331/*** MEI ***/
332    YAP_Reset();
[da5afdf]333    return cred_list;
334}
335
336/* 2 types
337      acme.buys_rocket <- coyote (coyote=prin, acme.buys_rocket=role)
338        ==> isMember(coyote,role(acme,buys_rocket), L)
[440ba20]339      acme.buys_rocket <- acme.preferred_customer  -- NOT valid
340*/
[8bd77b5]341static abac_stack_t *_query_with_aspect(abac_pl_t *pl, abac_aspect_t* head, abac_aspect_t* tail)
[da5afdf]342{
343    abac_stack_t *ret=NULL;
[2485307]344    char *tmp=NULL;
[da5afdf]345
[08b8da7]346    if(0)
[440ba20]347        show_yap_db("DEBUG:calling within _query_with_aspect");
[da5afdf]348
[d037f54]349    char *nm;
350    PROLOG(nm=abac_aspect_principal_name(head););
[8bd77b5]351
[da5afdf]352    /* could be obj or principal */
[7727f26]353    char *prin_nm=NULL;
[8bd77b5]354    if(abac_aspect_is_object(tail)) {
355        prin_nm=abac_aspect_object_name(tail);
[da5afdf]356        } else {
[d037f54]357            PROLOG(prin_nm=abac_aspect_principal_name(tail););
[da5afdf]358    }
359
[8bd77b5]360    if(abac_aspect_aspect_name(tail)!=NULL) {
361        printf("fail, a.o <- b.o and a.r <- a.r query is not implemented yet !!!\n");
[da5afdf]362        YAP_Exit(1);
363    }
364
[8bd77b5]365    if (prin_nm == NULL || nm == NULL) {
366        printf("fail, query's call got bad aspect names .. \n");
[da5afdf]367        YAP_Exit(1);
368    }
369
[2485307]370    if(debug) fprintf(stderr,"printing up the yap query ..\n");
[d037f54]371
372    char *pstring;
373    PROLOG(pstring=abac_aspect_aspect_param_string(head););
374
[8bd77b5]375    char *stub=abac_aspect_type_string(head);
[da5afdf]376    if(pstring) {
[2485307]377        asprintf(&tmp,"%s(%s,%s,%s)", stub, nm, abac_aspect_aspect_name(head),pstring);
[da5afdf]378        free(pstring);
379        } else {
[2485307]380            asprintf(&tmp,"%s(%s,%s)", stub, nm, abac_aspect_aspect_name(head));
[da5afdf]381    }
382
[8bd77b5]383    ret=_make_yap_query(prin_nm,nm,tmp);
[da5afdf]384    return ret;
385}
386
387/**
388 * Get all the credentials (attribute/issuer cert pairs) from prolog
389 * (which returns in string form)
390 */
391abac_stack_t *abac_pl_credentials(abac_pl_t *pl)
392{
[8bd77b5]393    abac_stack_t *ret=abac_verifier_dump_creds();
[da5afdf]394    return ret;
395}
396
[5110d42]397abac_stack_t *abac_pl_principals(abac_pl_t *pl)
398{
399    abac_stack_t *ret=abac_verifier_dump_principals();
400    return ret;
401}
402
[e95d652]403/**
404 * Make a query into prolog db
405--role acme.preferred_customer --principal coyote
406--role acme.prefer_customer.buy_rockets --principlal coyote
[da5afdf]407--oset acme.rockets -- object mrx-21
408--oset acme.villans -- principal coyote
[e95d652]409 */
[da5afdf]410abac_stack_t *abac_pl_query(abac_pl_t *pl, char *roleoset, char *prinobj)
[e95d652]411{
[202a7f9]412    abac_stack_t *ret=NULL;
[da5afdf]413    int len=strlen(roleoset)+strlen(prinobj)+5;
414    char* attr_string=(char *) abac_xmalloc(sizeof(char)*len);
415    sprintf(attr_string,"%s<-%s", roleoset, prinobj);
416
417    if(debug)
[2485307]418        fprintf(stderr,"abac_pl_query, query string is (%s)\n",attr_string);
[e95d652]419
[da5afdf]420    /* call into yacc parser */
421    abac_reset_yyfptr(attr_string);
[b5a3da4]422    abac_yy_init();
[da5afdf]423    int rc=yyparse();
424    if (rc) {
425        free(attr_string);
[e95d652]426        return NULL;
427    }
428
[8bd77b5]429    abac_aspect_t *head_aspect = abac_yy_get_rule_head_aspect();
430    abac_aspect_t *tail_aspect = abac_yy_get_rule_tail_aspect();
[2efdff5]431
[8bd77b5]432    ret=_query_with_aspect(pl,head_aspect,tail_aspect);
433
[e95d652]434    return ret;
435}
436
[d9c3886]437abac_stack_t *abac_pl_query_with_structure(abac_pl_t *pl, abac_aspect_t *head_aspect, abac_aspect_t *tail_aspect)
438{
439    abac_stack_t *ret=NULL;
440    ret=_query_with_aspect(pl,head_aspect,tail_aspect);
441
442    return ret;
443}
444
[e95d652]445void abac_pl_free(abac_pl_t *pl) {
446    if(pl->fptr) {
447        fflush(pl->fptr);
448        free(pl->fptr);
449    }
450    if(pl->fname) {
451        unlink(pl->fname);
452        free(pl->fname);
453    }
454    free(pl);
455}
456
Note: See TracBrowser for help on using the repository browser.