Sun, 01 Jun 2025 21:53:40 +0200
fix openssl < 3.0 hash init functions
| 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) { |
| 579 | 60 | cxListFree(conf->namedACLs); |
| 61 | cxListFree(conf->uriACLs); | |
| 62 | cxListFree(conf->pathACLs); | |
| 63 | cxMempoolFree(conf->parser.a->data); // TODO: is there a better way to access the mempool? | |
|
79
f48cea237ec3
fixed some memory leaks
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
62
diff
changeset
|
64 | free(conf); |
| 51 | 65 | } |
| 66 | ||
|
415
d938228c382e
switch from ucx 2 to 3
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
115
diff
changeset
|
67 | int acl_parse(void *p, ConfigLine *begin, ConfigLine *end, cxmutstr line) { |
| 51 | 68 | ACLFile *aclf = p; |
|
576
5c31cc844c68
add more shutdown cleanup: pwbuf, threadpool, logfiles, authdb
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
556
diff
changeset
|
69 | CxAllocator *mp = aclf->parser.a; |
| 51 | 70 | |
|
415
d938228c382e
switch from ucx 2 to 3
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
115
diff
changeset
|
71 | 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
|
72 | cxmutstr param = cx_strsubs_m(line, 4); |
|
d938228c382e
switch from ucx 2 to 3
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
115
diff
changeset
|
73 | ConfigParam *plist = cfg_param_list(param, mp); |
| 51 | 74 | ACLConfig *acl = OBJ_NEW(mp, ACLConfig); |
| 75 | acl->type.ptr = NULL; | |
| 76 | acl->authparam = NULL; | |
| 77 | acl->entries = NULL; | |
| 78 | aclf->cur = acl; | |
| 79 | ||
|
415
d938228c382e
switch from ucx 2 to 3
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
115
diff
changeset
|
80 | 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
|
81 | 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
|
82 | 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
|
83 | cxmutstr uri = cfg_param_get(plist, cx_str("uri")); |
| 51 | 84 | |
| 85 | if(name.ptr) { | |
| 86 | acl->id = name; | |
|
415
d938228c382e
switch from ucx 2 to 3
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
115
diff
changeset
|
87 | cxListAdd(aclf->namedACLs, acl); |
| 51 | 88 | } else if(path.ptr) { |
| 89 | acl->id = path; | |
|
415
d938228c382e
switch from ucx 2 to 3
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
115
diff
changeset
|
90 | cxListAdd(aclf->pathACLs, acl); |
| 51 | 91 | } else if(uri.ptr) { |
| 92 | acl->id = uri; | |
|
415
d938228c382e
switch from ucx 2 to 3
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
115
diff
changeset
|
93 | cxListAdd(aclf->uriACLs, acl); |
| 51 | 94 | } |
| 95 | ||
| 96 | if(type.ptr) { | |
| 97 | acl->type = type; | |
| 98 | } | |
|
415
d938228c382e
switch from ucx 2 to 3
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
115
diff
changeset
|
99 | } 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
|
100 | cxmutstr param = cx_strsubs_m(line, 13); |
|
d938228c382e
switch from ucx 2 to 3
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
115
diff
changeset
|
101 | ConfigParam *plist = cfg_param_list(param, mp); |
| 51 | 102 | aclf->cur->authparam = plist; |
| 103 | } else { | |
| 104 | if(parse_ace(aclf, line)) { | |
| 105 | // TODO: error | |
| 106 | return 1; | |
| 107 | } | |
| 108 | } | |
| 109 | ||
| 110 | return 0; | |
| 111 | } | |
| 112 | ||
|
415
d938228c382e
switch from ucx 2 to 3
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
115
diff
changeset
|
113 | #define ACE_MAX_TOKENS 2048 |
|
d938228c382e
switch from ucx 2 to 3
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
115
diff
changeset
|
114 | |
|
d938228c382e
switch from ucx 2 to 3
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
115
diff
changeset
|
115 | int parse_ace(ACLFile *f, cxmutstr line) { |
| 51 | 116 | ACLConfig *cur = f->cur; |
|
576
5c31cc844c68
add more shutdown cleanup: pwbuf, threadpool, logfiles, authdb
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
556
diff
changeset
|
117 | CxAllocator *mp = f->parser.a; |
| 51 | 118 | |
|
415
d938228c382e
switch from ucx 2 to 3
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
115
diff
changeset
|
119 | cxstring *tk = NULL; |
|
d938228c382e
switch from ucx 2 to 3
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
115
diff
changeset
|
120 | ssize_t tkn = cx_strsplit_a(mp, cx_strcast(line), cx_str(":"), ACE_MAX_TOKENS, &tk); |
| 51 | 121 | if(!tk || tkn < 3) { |
|
453
4586d534f9b5
fix build on macos
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
415
diff
changeset
|
122 | ws_cfg_log(LOG_FAILURE, "parse_ace: to few tokens: %.*s", (int)line.length, line.ptr); |
| 51 | 123 | return 1; |
| 124 | } | |
| 125 | ||
| 126 | ACEConfig *ace = OBJ_NEW(mp, ACEConfig); | |
| 127 | memset(ace, 0, sizeof(ACEConfig)); | |
| 128 | ||
| 129 | /* | |
| 130 | * first step: determine who is affected by this ace | |
| 131 | */ | |
| 132 | int n = 0; | |
|
415
d938228c382e
switch from ucx 2 to 3
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
115
diff
changeset
|
133 | cxstring s = tk[0]; |
| 51 | 134 | |
|
415
d938228c382e
switch from ucx 2 to 3
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
115
diff
changeset
|
135 | if(!cx_strcmp(s, cx_str("user"))) { |
| 51 | 136 | // next token is the user name |
| 137 | s = tk[1]; | |
| 138 | n++; | |
|
415
d938228c382e
switch from ucx 2 to 3
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
115
diff
changeset
|
139 | ace->who = cx_strdup_a(mp, s); |
|
d938228c382e
switch from ucx 2 to 3
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
115
diff
changeset
|
140 | } else if(!cx_strcmp(s, cx_str("group"))) { |
| 51 | 141 | // next token is the group name |
| 142 | s = tk[1]; | |
| 143 | n++; | |
|
415
d938228c382e
switch from ucx 2 to 3
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
115
diff
changeset
|
144 | ace->who = cx_strdup_a(mp, s); |
| 51 | 145 | ace->flags = ACLCFG_IDENTIFIER_GROUP; |
|
415
d938228c382e
switch from ucx 2 to 3
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
115
diff
changeset
|
146 | } else if(!cx_strcmp(s, cx_str("owner@"))) { |
| 51 | 147 | ace->flags = ACLCFG_OWNER; |
|
415
d938228c382e
switch from ucx 2 to 3
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
115
diff
changeset
|
148 | } else if(!cx_strcmp(s, cx_str("group@"))) { |
| 51 | 149 | ace->flags = ACLCFG_GROUP; |
|
415
d938228c382e
switch from ucx 2 to 3
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
115
diff
changeset
|
150 | } else if(!cx_strcmp(s, cx_str("everyone@"))) { |
| 51 | 151 | ace->flags = ACLCFG_EVERYONE; |
| 152 | } else { | |
| 153 | // 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
|
154 | ace->who = cx_strdup_a(mp, s); |
| 51 | 155 | } |
| 156 | ||
| 157 | n++; //next token | |
| 158 | ||
| 159 | /* | |
| 160 | * get the access mask | |
| 161 | */ | |
| 162 | ||
| 163 | if(n >= tkn) { | |
| 164 | // to few tokens | |
|
453
4586d534f9b5
fix build on macos
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
415
diff
changeset
|
165 | ws_cfg_log(LOG_FAILURE, "parse_ace: ace incomplete"); |
| 51 | 166 | return 1; |
| 167 | } | |
| 168 | s = tk[n]; | |
| 169 | ||
|
415
d938228c382e
switch from ucx 2 to 3
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
115
diff
changeset
|
170 | cxstring *accessmask = NULL; |
|
d938228c382e
switch from ucx 2 to 3
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
115
diff
changeset
|
171 | ssize_t maskn = cx_strsplit_a(mp, s, cx_str(","), ACE_MAX_TOKENS, &accessmask); |
| 51 | 172 | 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
|
173 | cxstring access = accessmask[i]; |
|
52
aced2245fb1c
new pathcheck saf and code cleanup
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
51
diff
changeset
|
174 | ace->access_mask = ace->access_mask | accstr2int(access); |
| 51 | 175 | } |
|
415
d938228c382e
switch from ucx 2 to 3
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
115
diff
changeset
|
176 | cxFree(mp, accessmask); |
| 51 | 177 | n++; // next token |
| 178 | ||
| 179 | /* | |
| 180 | * get flags (optional) and ace type | |
| 181 | */ | |
| 182 | ||
| 183 | int complete = 0; | |
| 184 | while(n < tkn) { | |
| 185 | s = tk[n]; | |
|
415
d938228c382e
switch from ucx 2 to 3
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
115
diff
changeset
|
186 | if(!cx_strcmp(s, cx_str("allow"))) { |
| 51 | 187 | ace->type = ACLCFG_TYPE_ALLOWED; |
| 188 | complete = 1; | |
| 189 | break; | |
|
415
d938228c382e
switch from ucx 2 to 3
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
115
diff
changeset
|
190 | } else if(!cx_strcmp(s, cx_str("deny"))) { |
| 51 | 191 | ace->type = ACLCFG_TYPE_DENIED; |
| 192 | complete = 1; | |
| 193 | break; | |
|
415
d938228c382e
switch from ucx 2 to 3
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
115
diff
changeset
|
194 | } else if(!cx_strcmp(s, cx_str("audit"))) { |
| 51 | 195 | ace->type = ACLCFG_TYPE_AUDIT; |
| 196 | complete = 1; | |
| 197 | break; | |
|
415
d938228c382e
switch from ucx 2 to 3
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
115
diff
changeset
|
198 | } else if(!cx_strcmp(s, cx_str("alarm"))) { |
| 51 | 199 | ace->type = ACLCFG_TYPE_ALARM; |
| 200 | complete = 1; | |
| 201 | break; | |
| 202 | } else { | |
| 203 | // set flags | |
|
415
d938228c382e
switch from ucx 2 to 3
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
115
diff
changeset
|
204 | cxstring *flags = NULL; |
|
d938228c382e
switch from ucx 2 to 3
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
115
diff
changeset
|
205 | ssize_t fln = cx_strsplit_a(mp, s, cx_str(","), ACE_MAX_TOKENS, &flags); |
| 51 | 206 | 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
|
207 | cxstring flag = flags[i]; |
|
d938228c382e
switch from ucx 2 to 3
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
115
diff
changeset
|
208 | if(!cx_strcmp(flag, cx_str("successful_access_flag"))) { |
| 51 | 209 | 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
|
210 | } else if(!cx_strcmp(flag, cx_str("failed_access_flag"))) { |
| 51 | 211 | ace->flags = ace->flags | ACLCFG_FAILED_ACCESS_ACE_FLAG; |
| 212 | } | |
| 213 | // TODO: other flags | |
| 214 | } | |
| 215 | free(flags); | |
| 216 | } | |
| 217 | n++; | |
| 218 | } | |
| 219 | ||
| 220 | if(!complete) { | |
|
453
4586d534f9b5
fix build on macos
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
415
diff
changeset
|
221 | ws_cfg_log(LOG_FAILURE, "parse_ace: ace incomplete"); |
| 51 | 222 | return 1; |
| 223 | } | |
| 224 | ||
|
415
d938228c382e
switch from ucx 2 to 3
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
115
diff
changeset
|
225 | CFG_ACE_ADD(&cur->entries, ace); |
| 51 | 226 | |
| 227 | return 0; | |
| 228 | } | |
|
52
aced2245fb1c
new pathcheck saf and code cleanup
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
51
diff
changeset
|
229 | |
|
415
d938228c382e
switch from ucx 2 to 3
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
115
diff
changeset
|
230 | uint32_t accstr2int(cxstring access) { |
|
52
aced2245fb1c
new pathcheck saf and code cleanup
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
51
diff
changeset
|
231 | uint32_t val = 0; |
|
415
d938228c382e
switch from ucx 2 to 3
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
115
diff
changeset
|
232 | 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
|
233 | val = ACLCFG_READ; |
|
415
d938228c382e
switch from ucx 2 to 3
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
115
diff
changeset
|
234 | } 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
|
235 | val = ACLCFG_WRITE; |
|
415
d938228c382e
switch from ucx 2 to 3
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
115
diff
changeset
|
236 | } 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
|
237 | val = ACLCFG_READ_DATA; |
|
415
d938228c382e
switch from ucx 2 to 3
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
115
diff
changeset
|
238 | } 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
|
239 | val = ACLCFG_WRITE_DATA; |
|
415
d938228c382e
switch from ucx 2 to 3
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
115
diff
changeset
|
240 | } 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
|
241 | val = ACLCFG_APPEND; |
|
415
d938228c382e
switch from ucx 2 to 3
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
115
diff
changeset
|
242 | } 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
|
243 | val = ACLCFG_ADD_FILE; |
|
415
d938228c382e
switch from ucx 2 to 3
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
115
diff
changeset
|
244 | } 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
|
245 | val = ACLCFG_ADD_FILE; |
|
415
d938228c382e
switch from ucx 2 to 3
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
115
diff
changeset
|
246 | } 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
|
247 | val = ACLCFG_ADD_SUBDIRECTORY; |
|
415
d938228c382e
switch from ucx 2 to 3
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
115
diff
changeset
|
248 | } 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
|
249 | val = ACLCFG_READ_XATTR; |
|
415
d938228c382e
switch from ucx 2 to 3
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
115
diff
changeset
|
250 | } 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
|
251 | val = ACLCFG_WRITE_XATTR; |
|
415
d938228c382e
switch from ucx 2 to 3
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
115
diff
changeset
|
252 | } 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
|
253 | val = ACLCFG_EXECUTE; |
|
415
d938228c382e
switch from ucx 2 to 3
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
115
diff
changeset
|
254 | } 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
|
255 | val = ACLCFG_DELETE_CHILD; |
|
415
d938228c382e
switch from ucx 2 to 3
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
115
diff
changeset
|
256 | } 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
|
257 | val = ACLCFG_DELETE; |
|
415
d938228c382e
switch from ucx 2 to 3
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
115
diff
changeset
|
258 | } 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
|
259 | val = ACLCFG_READ_ATTRIBUTES; |
|
415
d938228c382e
switch from ucx 2 to 3
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
115
diff
changeset
|
260 | } 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
|
261 | val = ACLCFG_WRITE_ATTRIBUTES; |
|
415
d938228c382e
switch from ucx 2 to 3
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
115
diff
changeset
|
262 | } 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
|
263 | val = ACLCFG_LIST; |
|
415
d938228c382e
switch from ucx 2 to 3
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
115
diff
changeset
|
264 | } 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
|
265 | val = ACLCFG_READ_ACL; |
|
415
d938228c382e
switch from ucx 2 to 3
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
115
diff
changeset
|
266 | } 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
|
267 | val = ACLCFG_WRITE_ACL; |
|
415
d938228c382e
switch from ucx 2 to 3
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
115
diff
changeset
|
268 | } 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
|
269 | val = ACLCFG_WRITE_OWNER; |
|
415
d938228c382e
switch from ucx 2 to 3
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
115
diff
changeset
|
270 | } 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
|
271 | val = ACLCFG_SYNCHRONIZE; |
|
aced2245fb1c
new pathcheck saf and code cleanup
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
51
diff
changeset
|
272 | } |
|
aced2245fb1c
new pathcheck saf and code cleanup
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
51
diff
changeset
|
273 | return val; |
|
aced2245fb1c
new pathcheck saf and code cleanup
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
51
diff
changeset
|
274 | } |