Tue, 12 Sep 2023 18:08:11 +0200
update uwproj
51 | 1 | /* |
2 | * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER. | |
3 | * | |
4 | * Copyright 2013 Olaf Wintermann. All rights reserved. | |
5 | * | |
6 | * Redistribution and use in source and binary forms, with or without | |
7 | * modification, are permitted provided that the following conditions are met: | |
8 | * | |
9 | * 1. Redistributions of source code must retain the above copyright | |
10 | * notice, this list of conditions and the following disclaimer. | |
11 | * | |
12 | * 2. Redistributions in binary form must reproduce the above copyright | |
13 | * notice, this list of conditions and the following disclaimer in the | |
14 | * documentation and/or other materials provided with the distribution. | |
15 | * | |
16 | * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" | |
17 | * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | |
18 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE | |
19 | * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE | |
20 | * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR | |
21 | * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF | |
22 | * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS | |
23 | * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN | |
24 | * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) | |
25 | * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE | |
26 | * POSSIBILITY OF SUCH DAMAGE. | |
27 | */ | |
28 | ||
29 | #include <stdio.h> | |
30 | #include <stdlib.h> | |
91 | 31 | #include <string.h> |
51 | 32 | |
33 | #include "acl.h" | |
453
4586d534f9b5
fix build on macos
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
415
diff
changeset
|
34 | #include "logging.h" |
51 | 35 | |
415
d938228c382e
switch from ucx 2 to 3
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
115
diff
changeset
|
36 | ACLFile* load_acl_file(const char *file) { |
51 | 37 | FILE *in = fopen(file, "r"); |
38 | if(in == NULL) { | |
39 | return NULL; | |
40 | } | |
41 | ||
42 | ACLFile *conf = malloc(sizeof(ACLFile)); | |
43 | conf->parser.parse = acl_parse; | |
490 | 44 | conf->namedACLs = cxLinkedListCreate(cxDefaultAllocator, NULL, CX_STORE_POINTERS); |
45 | conf->uriACLs = cxLinkedListCreate(cxDefaultAllocator, NULL, CX_STORE_POINTERS); | |
46 | conf->pathACLs = cxLinkedListCreate(cxDefaultAllocator, NULL, CX_STORE_POINTERS); | |
51 | 47 | |
48 | int r = cfg_parse_basic_file((ConfigParser*)conf, in); | |
49 | if(r != 0) { | |
50 | free_acl_file(conf); | |
51 | return NULL; | |
52 | } | |
79
f48cea237ec3
fixed some memory leaks
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
62
diff
changeset
|
53 | |
62
c47e081b6c0f
added keyfile based authentication
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
56
diff
changeset
|
54 | fclose(in); |
51 | 55 | |
56 | return conf; | |
57 | } | |
58 | ||
79
f48cea237ec3
fixed some memory leaks
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
62
diff
changeset
|
59 | void free_acl_file(ACLFile *conf) { |
415
d938228c382e
switch from ucx 2 to 3
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
115
diff
changeset
|
60 | //ucx_mempool_destroy(conf->parser.mp->pool); |
79
f48cea237ec3
fixed some memory leaks
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
62
diff
changeset
|
61 | free(conf); |
51 | 62 | } |
63 | ||
415
d938228c382e
switch from ucx 2 to 3
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
115
diff
changeset
|
64 | int acl_parse(void *p, ConfigLine *begin, ConfigLine *end, cxmutstr line) { |
51 | 65 | ACLFile *aclf = p; |
415
d938228c382e
switch from ucx 2 to 3
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
115
diff
changeset
|
66 | CxAllocator *mp = aclf->parser.mp; |
51 | 67 | |
415
d938228c382e
switch from ucx 2 to 3
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
115
diff
changeset
|
68 | if(cx_strprefix(cx_strcast(line), cx_str("ACL "))) { |
d938228c382e
switch from ucx 2 to 3
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
115
diff
changeset
|
69 | cxmutstr param = cx_strsubs_m(line, 4); |
d938228c382e
switch from ucx 2 to 3
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
115
diff
changeset
|
70 | ConfigParam *plist = cfg_param_list(param, mp); |
51 | 71 | ACLConfig *acl = OBJ_NEW(mp, ACLConfig); |
72 | acl->type.ptr = NULL; | |
73 | acl->authparam = NULL; | |
74 | acl->entries = NULL; | |
75 | aclf->cur = acl; | |
76 | ||
415
d938228c382e
switch from ucx 2 to 3
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
115
diff
changeset
|
77 | cxmutstr type = cfg_param_get(plist, cx_str("type")); |
d938228c382e
switch from ucx 2 to 3
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
115
diff
changeset
|
78 | cxmutstr name = cfg_param_get(plist, cx_str("name")); |
d938228c382e
switch from ucx 2 to 3
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
115
diff
changeset
|
79 | cxmutstr path = cfg_param_get(plist, cx_str("path")); |
d938228c382e
switch from ucx 2 to 3
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
115
diff
changeset
|
80 | cxmutstr uri = cfg_param_get(plist, cx_str("uri")); |
51 | 81 | |
82 | if(name.ptr) { | |
83 | acl->id = name; | |
415
d938228c382e
switch from ucx 2 to 3
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
115
diff
changeset
|
84 | cxListAdd(aclf->namedACLs, acl); |
51 | 85 | } else if(path.ptr) { |
86 | acl->id = path; | |
415
d938228c382e
switch from ucx 2 to 3
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
115
diff
changeset
|
87 | cxListAdd(aclf->pathACLs, acl); |
51 | 88 | } else if(uri.ptr) { |
89 | acl->id = uri; | |
415
d938228c382e
switch from ucx 2 to 3
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
115
diff
changeset
|
90 | cxListAdd(aclf->uriACLs, acl); |
51 | 91 | } |
92 | ||
93 | if(type.ptr) { | |
94 | acl->type = type; | |
95 | } | |
415
d938228c382e
switch from ucx 2 to 3
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
115
diff
changeset
|
96 | } else if(cx_strprefix(cx_strcast(line), cx_str("Authenticate "))) { |
d938228c382e
switch from ucx 2 to 3
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
115
diff
changeset
|
97 | cxmutstr param = cx_strsubs_m(line, 13); |
d938228c382e
switch from ucx 2 to 3
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
115
diff
changeset
|
98 | ConfigParam *plist = cfg_param_list(param, mp); |
51 | 99 | aclf->cur->authparam = plist; |
100 | } else { | |
101 | if(parse_ace(aclf, line)) { | |
102 | // TODO: error | |
103 | return 1; | |
104 | } | |
105 | } | |
106 | ||
107 | return 0; | |
108 | } | |
109 | ||
415
d938228c382e
switch from ucx 2 to 3
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
115
diff
changeset
|
110 | #define ACE_MAX_TOKENS 2048 |
d938228c382e
switch from ucx 2 to 3
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
115
diff
changeset
|
111 | |
d938228c382e
switch from ucx 2 to 3
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
115
diff
changeset
|
112 | int parse_ace(ACLFile *f, cxmutstr line) { |
51 | 113 | ACLConfig *cur = f->cur; |
415
d938228c382e
switch from ucx 2 to 3
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
115
diff
changeset
|
114 | CxAllocator *mp = f->parser.mp; |
51 | 115 | |
415
d938228c382e
switch from ucx 2 to 3
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
115
diff
changeset
|
116 | cxstring *tk = NULL; |
d938228c382e
switch from ucx 2 to 3
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
115
diff
changeset
|
117 | ssize_t tkn = cx_strsplit_a(mp, cx_strcast(line), cx_str(":"), ACE_MAX_TOKENS, &tk); |
51 | 118 | if(!tk || tkn < 3) { |
453
4586d534f9b5
fix build on macos
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
415
diff
changeset
|
119 | ws_cfg_log(LOG_FAILURE, "parse_ace: to few tokens: %.*s", (int)line.length, line.ptr); |
51 | 120 | return 1; |
121 | } | |
122 | ||
123 | ACEConfig *ace = OBJ_NEW(mp, ACEConfig); | |
124 | memset(ace, 0, sizeof(ACEConfig)); | |
125 | ||
126 | /* | |
127 | * first step: determine who is affected by this ace | |
128 | */ | |
129 | int n = 0; | |
415
d938228c382e
switch from ucx 2 to 3
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
115
diff
changeset
|
130 | cxstring s = tk[0]; |
51 | 131 | |
415
d938228c382e
switch from ucx 2 to 3
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
115
diff
changeset
|
132 | if(!cx_strcmp(s, cx_str("user"))) { |
51 | 133 | // next token is the user name |
134 | s = tk[1]; | |
135 | n++; | |
415
d938228c382e
switch from ucx 2 to 3
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
115
diff
changeset
|
136 | ace->who = cx_strdup_a(mp, s); |
d938228c382e
switch from ucx 2 to 3
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
115
diff
changeset
|
137 | } else if(!cx_strcmp(s, cx_str("group"))) { |
51 | 138 | // next token is the group name |
139 | s = tk[1]; | |
140 | n++; | |
415
d938228c382e
switch from ucx 2 to 3
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
115
diff
changeset
|
141 | ace->who = cx_strdup_a(mp, s); |
51 | 142 | ace->flags = ACLCFG_IDENTIFIER_GROUP; |
415
d938228c382e
switch from ucx 2 to 3
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
115
diff
changeset
|
143 | } else if(!cx_strcmp(s, cx_str("owner@"))) { |
51 | 144 | ace->flags = ACLCFG_OWNER; |
415
d938228c382e
switch from ucx 2 to 3
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
115
diff
changeset
|
145 | } else if(!cx_strcmp(s, cx_str("group@"))) { |
51 | 146 | ace->flags = ACLCFG_GROUP; |
415
d938228c382e
switch from ucx 2 to 3
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
115
diff
changeset
|
147 | } else if(!cx_strcmp(s, cx_str("everyone@"))) { |
51 | 148 | ace->flags = ACLCFG_EVERYONE; |
149 | } else { | |
150 | // you can specify only the user name in the ace | |
415
d938228c382e
switch from ucx 2 to 3
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
115
diff
changeset
|
151 | ace->who = cx_strdup_a(mp, s); |
51 | 152 | } |
153 | ||
154 | n++; //next token | |
155 | ||
156 | /* | |
157 | * get the access mask | |
158 | */ | |
159 | ||
160 | if(n >= tkn) { | |
161 | // to few tokens | |
453
4586d534f9b5
fix build on macos
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
415
diff
changeset
|
162 | ws_cfg_log(LOG_FAILURE, "parse_ace: ace incomplete"); |
51 | 163 | return 1; |
164 | } | |
165 | s = tk[n]; | |
166 | ||
415
d938228c382e
switch from ucx 2 to 3
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
115
diff
changeset
|
167 | cxstring *accessmask = NULL; |
d938228c382e
switch from ucx 2 to 3
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
115
diff
changeset
|
168 | ssize_t maskn = cx_strsplit_a(mp, s, cx_str(","), ACE_MAX_TOKENS, &accessmask); |
51 | 169 | for(int i=0;i<maskn;i++) { |
415
d938228c382e
switch from ucx 2 to 3
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
115
diff
changeset
|
170 | cxstring access = accessmask[i]; |
52
aced2245fb1c
new pathcheck saf and code cleanup
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
51
diff
changeset
|
171 | ace->access_mask = ace->access_mask | accstr2int(access); |
51 | 172 | } |
415
d938228c382e
switch from ucx 2 to 3
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
115
diff
changeset
|
173 | cxFree(mp, accessmask); |
51 | 174 | n++; // next token |
175 | ||
176 | /* | |
177 | * get flags (optional) and ace type | |
178 | */ | |
179 | ||
180 | int complete = 0; | |
181 | while(n < tkn) { | |
182 | s = tk[n]; | |
415
d938228c382e
switch from ucx 2 to 3
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
115
diff
changeset
|
183 | if(!cx_strcmp(s, cx_str("allow"))) { |
51 | 184 | ace->type = ACLCFG_TYPE_ALLOWED; |
185 | complete = 1; | |
186 | break; | |
415
d938228c382e
switch from ucx 2 to 3
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
115
diff
changeset
|
187 | } else if(!cx_strcmp(s, cx_str("deny"))) { |
51 | 188 | ace->type = ACLCFG_TYPE_DENIED; |
189 | complete = 1; | |
190 | break; | |
415
d938228c382e
switch from ucx 2 to 3
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
115
diff
changeset
|
191 | } else if(!cx_strcmp(s, cx_str("audit"))) { |
51 | 192 | ace->type = ACLCFG_TYPE_AUDIT; |
193 | complete = 1; | |
194 | break; | |
415
d938228c382e
switch from ucx 2 to 3
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
115
diff
changeset
|
195 | } else if(!cx_strcmp(s, cx_str("alarm"))) { |
51 | 196 | ace->type = ACLCFG_TYPE_ALARM; |
197 | complete = 1; | |
198 | break; | |
199 | } else { | |
200 | // set flags | |
415
d938228c382e
switch from ucx 2 to 3
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
115
diff
changeset
|
201 | cxstring *flags = NULL; |
d938228c382e
switch from ucx 2 to 3
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
115
diff
changeset
|
202 | ssize_t fln = cx_strsplit_a(mp, s, cx_str(","), ACE_MAX_TOKENS, &flags); |
51 | 203 | for(int i=0;i<fln;i++) { |
415
d938228c382e
switch from ucx 2 to 3
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
115
diff
changeset
|
204 | cxstring flag = flags[i]; |
d938228c382e
switch from ucx 2 to 3
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
115
diff
changeset
|
205 | if(!cx_strcmp(flag, cx_str("successful_access_flag"))) { |
51 | 206 | ace->flags = ace->flags | ACLCFG_SUCCESSFUL_ACCESS_FLAG; |
415
d938228c382e
switch from ucx 2 to 3
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
115
diff
changeset
|
207 | } else if(!cx_strcmp(flag, cx_str("failed_access_flag"))) { |
51 | 208 | ace->flags = ace->flags | ACLCFG_FAILED_ACCESS_ACE_FLAG; |
209 | } | |
210 | // TODO: other flags | |
211 | } | |
212 | free(flags); | |
213 | } | |
214 | n++; | |
215 | } | |
216 | ||
217 | if(!complete) { | |
453
4586d534f9b5
fix build on macos
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
415
diff
changeset
|
218 | ws_cfg_log(LOG_FAILURE, "parse_ace: ace incomplete"); |
51 | 219 | return 1; |
220 | } | |
221 | ||
415
d938228c382e
switch from ucx 2 to 3
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
115
diff
changeset
|
222 | CFG_ACE_ADD(&cur->entries, ace); |
51 | 223 | |
224 | return 0; | |
225 | } | |
52
aced2245fb1c
new pathcheck saf and code cleanup
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
51
diff
changeset
|
226 | |
415
d938228c382e
switch from ucx 2 to 3
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
115
diff
changeset
|
227 | uint32_t accstr2int(cxstring access) { |
52
aced2245fb1c
new pathcheck saf and code cleanup
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
51
diff
changeset
|
228 | uint32_t val = 0; |
415
d938228c382e
switch from ucx 2 to 3
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
115
diff
changeset
|
229 | if(!cx_strcmp(access, cx_str("read"))) { |
52
aced2245fb1c
new pathcheck saf and code cleanup
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
51
diff
changeset
|
230 | val = ACLCFG_READ; |
415
d938228c382e
switch from ucx 2 to 3
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
115
diff
changeset
|
231 | } else if(!cx_strcmp(access, cx_str("write"))) { |
52
aced2245fb1c
new pathcheck saf and code cleanup
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
51
diff
changeset
|
232 | val = ACLCFG_WRITE; |
415
d938228c382e
switch from ucx 2 to 3
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
115
diff
changeset
|
233 | } else if(!cx_strcmp(access, cx_str("read_data"))) { |
52
aced2245fb1c
new pathcheck saf and code cleanup
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
51
diff
changeset
|
234 | val = ACLCFG_READ_DATA; |
415
d938228c382e
switch from ucx 2 to 3
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
115
diff
changeset
|
235 | } else if(!cx_strcmp(access, cx_str("write_data"))) { |
52
aced2245fb1c
new pathcheck saf and code cleanup
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
51
diff
changeset
|
236 | val = ACLCFG_WRITE_DATA; |
415
d938228c382e
switch from ucx 2 to 3
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
115
diff
changeset
|
237 | } else if(!cx_strcmp(access, cx_str("append"))) { |
52
aced2245fb1c
new pathcheck saf and code cleanup
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
51
diff
changeset
|
238 | val = ACLCFG_APPEND; |
415
d938228c382e
switch from ucx 2 to 3
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
115
diff
changeset
|
239 | } else if(!cx_strcmp(access, cx_str("add"))) { |
56
c6cf20b09043
added vfs_mkdir and vfs_unlink
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
52
diff
changeset
|
240 | val = ACLCFG_ADD_FILE; |
415
d938228c382e
switch from ucx 2 to 3
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
115
diff
changeset
|
241 | } else if(!cx_strcmp(access, cx_str("add_file"))) { |
52
aced2245fb1c
new pathcheck saf and code cleanup
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
51
diff
changeset
|
242 | val = ACLCFG_ADD_FILE; |
415
d938228c382e
switch from ucx 2 to 3
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
115
diff
changeset
|
243 | } else if(!cx_strcmp(access, cx_str("add_subdirectory"))) { |
52
aced2245fb1c
new pathcheck saf and code cleanup
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
51
diff
changeset
|
244 | val = ACLCFG_ADD_SUBDIRECTORY; |
415
d938228c382e
switch from ucx 2 to 3
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
115
diff
changeset
|
245 | } else if(!cx_strcmp(access, cx_str("read_xattr"))) { |
52
aced2245fb1c
new pathcheck saf and code cleanup
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
51
diff
changeset
|
246 | val = ACLCFG_READ_XATTR; |
415
d938228c382e
switch from ucx 2 to 3
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
115
diff
changeset
|
247 | } else if(!cx_strcmp(access, cx_str("write_xattr"))) { |
52
aced2245fb1c
new pathcheck saf and code cleanup
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
51
diff
changeset
|
248 | val = ACLCFG_WRITE_XATTR; |
415
d938228c382e
switch from ucx 2 to 3
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
115
diff
changeset
|
249 | } else if(!cx_strcmp(access, cx_str("execute"))) { |
52
aced2245fb1c
new pathcheck saf and code cleanup
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
51
diff
changeset
|
250 | val = ACLCFG_EXECUTE; |
415
d938228c382e
switch from ucx 2 to 3
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
115
diff
changeset
|
251 | } else if(!cx_strcmp(access, cx_str("delete_child"))) { |
52
aced2245fb1c
new pathcheck saf and code cleanup
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
51
diff
changeset
|
252 | val = ACLCFG_DELETE_CHILD; |
415
d938228c382e
switch from ucx 2 to 3
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
115
diff
changeset
|
253 | } else if(!cx_strcmp(access, cx_str("delete"))) { |
52
aced2245fb1c
new pathcheck saf and code cleanup
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
51
diff
changeset
|
254 | val = ACLCFG_DELETE; |
415
d938228c382e
switch from ucx 2 to 3
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
115
diff
changeset
|
255 | } else if(!cx_strcmp(access, cx_str("read_attributes"))) { |
52
aced2245fb1c
new pathcheck saf and code cleanup
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
51
diff
changeset
|
256 | val = ACLCFG_READ_ATTRIBUTES; |
415
d938228c382e
switch from ucx 2 to 3
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
115
diff
changeset
|
257 | } else if(!cx_strcmp(access, cx_str("write_attributes"))) { |
52
aced2245fb1c
new pathcheck saf and code cleanup
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
51
diff
changeset
|
258 | val = ACLCFG_WRITE_ATTRIBUTES; |
415
d938228c382e
switch from ucx 2 to 3
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
115
diff
changeset
|
259 | } else if(!cx_strcmp(access, cx_str("list"))) { |
52
aced2245fb1c
new pathcheck saf and code cleanup
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
51
diff
changeset
|
260 | val = ACLCFG_LIST; |
415
d938228c382e
switch from ucx 2 to 3
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
115
diff
changeset
|
261 | } else if(!cx_strcmp(access, cx_str("read_acl"))) { |
52
aced2245fb1c
new pathcheck saf and code cleanup
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
51
diff
changeset
|
262 | val = ACLCFG_READ_ACL; |
415
d938228c382e
switch from ucx 2 to 3
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
115
diff
changeset
|
263 | } else if(!cx_strcmp(access, cx_str("write_acl"))) { |
52
aced2245fb1c
new pathcheck saf and code cleanup
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
51
diff
changeset
|
264 | val = ACLCFG_WRITE_ACL; |
415
d938228c382e
switch from ucx 2 to 3
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
115
diff
changeset
|
265 | } else if(!cx_strcmp(access, cx_str("write_owner"))) { |
52
aced2245fb1c
new pathcheck saf and code cleanup
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
51
diff
changeset
|
266 | val = ACLCFG_WRITE_OWNER; |
415
d938228c382e
switch from ucx 2 to 3
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
115
diff
changeset
|
267 | } else if(!cx_strcmp(access, cx_str("synchronize"))) { |
52
aced2245fb1c
new pathcheck saf and code cleanup
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
51
diff
changeset
|
268 | val = ACLCFG_SYNCHRONIZE; |
aced2245fb1c
new pathcheck saf and code cleanup
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
51
diff
changeset
|
269 | } |
aced2245fb1c
new pathcheck saf and code cleanup
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
51
diff
changeset
|
270 | return val; |
aced2245fb1c
new pathcheck saf and code cleanup
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
51
diff
changeset
|
271 | } |