-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathgaclexample.c
145 lines (98 loc) · 4.24 KB
/
gaclexample.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
/*
Copyright (c) 2002-7, Andrew McNab, University of Manchester
All rights reserved.
Redistribution and use in source and binary forms, with or
without modification, are permitted provided that the following
conditions are met:
o Redistributions of source code must retain the above
copyright notice, this list of conditions and the following
disclaimer.
o Redistributions in binary form must reproduce the above
copyright notice, this list of conditions and the following
disclaimer in the documentation and/or other materials
provided with the distribution.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND
CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS
BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED
TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
POSSIBILITY OF SUCH DAMAGE.
*/
/*---------------------------------------------------------------*
* For more about GridSite: http://www.gridsite.org/ *
*---------------------------------------------------------------*/
/*
Example program using GACL
Build with:
gcc -o gaclexample gaclexample.c -L. -I. -lgridsite -lxml2 -lz -lm
*/
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <gridsite.h>
int main()
{
GRSTgaclCred *cred, *usercred;
GRSTgaclEntry *entry;
GRSTgaclAcl *acl1, *acl2;
GRSTgaclUser *user;
GRSTgaclPerm perm0, perm1, perm2;
FILE *fp;
/* must initialise GACL before using it */
GRSTgaclInit();
/* build up an ACL, starting with a credential */
cred = GRSTgaclCredCreate("dn:", "/O=Grid/CN=Mr%20Grid%20Person");
/* create an entry to put it in */
entry = GRSTgaclEntryNew();
/* add the credential to it */
GRSTgaclEntryAddCred(entry, cred);
/* add another credential */
cred = GRSTgaclCredCreate("https://example-dn-list", NULL); /* DN List */
GRSTgaclEntryAddCred(entry, cred);
fp = fopen("https%3A%2F%2Fexample-dn-list", "w");
fputs("/O=Grid/CN=Mr Grid Person\n", fp);
fclose(fp);
/* associate some permissions and denials to the credential */
GRSTgaclEntryAllowPerm( entry, GRST_PERM_READ);
GRSTgaclEntryAllowPerm( entry, GRST_PERM_WRITE);
GRSTgaclEntryAllowPerm( entry, GRST_PERM_ADMIN);
GRSTgaclEntryDenyPerm( entry, GRST_PERM_ADMIN);
GRSTgaclEntryDenyPerm( entry, GRST_PERM_LIST);
perm0 = GRST_PERM_READ | GRST_PERM_WRITE;
printf("\n**** perm should be %d in the following tests! ****\n\n", perm0);
/* create a new ACL and add the entry to it */
acl1 = GRSTgaclAclNew();
GRSTgaclAclAddEntry(acl1, entry);
/* create a GRSTgaclUser to compare with the ACL */
/* old style cred creation: use GRSTgaclCredCreate as above now */
usercred = GRSTgaclCredNew("person");
GRSTgaclCredAddValue(usercred, "dn", "/O=Grid/CN=Mr Grid Person");
/* end of old style cred creation */
user = GRSTgaclUserNew(usercred);
GRSTgaclUserSetDNlists(user, getcwd(NULL, 0));
printf("DN Lists dir %s\n", getcwd(NULL, 0));
// putenv("GRST_DN_LISTS=.");
perm1 = GRSTgaclAclTestUser(acl1, user);
printf("test /O=Grid/CN=Mr Grid Person in acl, perm = %d\n", perm1);
/* print and save the whole ACL */
GRSTgaclAclPrint(acl1, stdout);
GRSTgaclAclSave(acl1, "example.gacl");
puts("gridacl.out saved");
puts("");
/* load the ACL back off the disk, print and test it */
acl2 = GRSTgaclAclLoadFile("example.gacl");
puts("gridacl.out loaded");
if (acl2 != NULL) GRSTgaclAclPrint(acl2, stdout); else puts("acl2 is NULL");
perm2 = GRSTgaclAclTestUser(acl2, user);
printf("test /O=Grid/CN=Mr Grid Person in acl, perm = %d\n", perm2);
if (perm1 != perm0) return 1;
if (perm2 != perm0) return 2;
return 0;
}