]> git.sur5r.net Git - openldap/blob - servers/slapd/aclparse.c
dn_parent(" ") should be NULL.
[openldap] / servers / slapd / aclparse.c
1 /* acl.c - routines to parse and check acl's */
2
3 #include "portable.h"
4
5 #include <stdio.h>
6
7 #include <ac/ctype.h>
8 #include <ac/regex.h>
9 #include <ac/socket.h>
10 #include <ac/string.h>
11 #include <ac/unistd.h>
12
13 #include "slap.h"
14
15 static void             split(char *line, int splitchar, char **left, char **right);
16 static void             acl_append(struct acl **l, struct acl *a);
17 static void             access_append(struct access **l, struct access *a);
18 static void             acl_usage(void);
19 #ifdef LDAP_DEBUG
20 static void             print_acl(struct acl *a);
21 static void             print_access(struct access *b);
22 #endif
23
24 static int
25 regtest(char *fname, int lineno, char *pat) {
26         int e;
27         regex_t re;
28
29         char buf[512];
30         unsigned size;
31
32         char *sp;
33         char *dp;
34         int  flag;
35
36         sp = pat;
37         dp = buf;
38         size = 0;
39         buf[0] = '\0';
40
41         for (size = 0, flag = 0; (size < sizeof(buf)) && *sp; sp++) {
42                 if (flag) {
43                         if (*sp == '$'|| (*sp >= '0' && *sp <= '9')) {
44                                 *dp++ = *sp;
45                                 size++;
46                         }
47                         flag = 0;
48
49                 } else {
50                         if (*sp == '$') {
51                                 flag = 1;
52                         } else {
53                                 *dp++ = *sp;
54                                 size++;
55                         }
56                 }
57         }
58
59         *dp = '\0';
60         if ( size >= (sizeof(buf)-1) ) {
61                 fprintf( stderr,
62                         "%s: line %d: regular expression \"%s\" too large\n",
63                         fname, lineno, pat, 0 );
64                 acl_usage();
65         }
66
67         if ((e = regcomp(&re, buf, REG_EXTENDED|REG_ICASE))) {
68                 char error[512];
69                 regerror(e, &re, error, sizeof(error));
70                 fprintf( stderr,
71                         "%s: line %d: regular expression \"%s\" bad because of %s\n",
72                         fname, lineno, pat, error );
73                 acl_usage();
74                 return(0);
75         }
76         regfree(&re);
77         return(1);
78 }
79
80 void
81 parse_acl(
82     Backend     *be,
83     char        *fname,
84     int         lineno,
85     int         argc,
86     char        **argv
87 )
88 {
89         int             i;
90         char            *e, *left, *right;
91         struct acl      *a;
92         struct access   *b;
93
94         a = NULL;
95         for ( i = 1; i < argc; i++ ) {
96                 /* to clause - select which entries are protected */
97                 if ( strcasecmp( argv[i], "to" ) == 0 ) {
98                         if ( a != NULL ) {
99                                 fprintf( stderr,
100                 "%s: line %d: only one to clause allowed in access line\n",
101                                     fname, lineno );
102                                 acl_usage();
103                         }
104                         a = (struct acl *) ch_calloc( 1, sizeof(struct acl) );
105                         for ( ++i; i < argc; i++ ) {
106                                 if ( strcasecmp( argv[i], "by" ) == 0 ) {
107                                         i--;
108                                         break;
109                                 }
110
111                                 if ( strcasecmp( argv[i], "*" ) == 0 ) {
112                                         int e;
113                                         if ((e = regcomp( &a->acl_dnre, ".*",
114                                                 REG_EXTENDED|REG_ICASE)))
115                                         {
116                                                 char buf[512];
117                                                 regerror(e, &a->acl_dnre, buf, sizeof(buf));
118                                                 fprintf( stderr,
119                                                         "%s: line %d: regular expression \"%s\" bad because of %s\n",
120                                                         fname, lineno, right, buf );
121                                                 acl_usage();
122                                         }
123                                         a->acl_dnpat = ch_strdup( ".*" );
124                                         continue;
125                                 }
126
127                                 split( argv[i], '=', &left, &right );
128                                 if ( right == NULL || *right == '\0' ) {
129                                         fprintf( stderr,
130         "%s: line %d: missing \"=\" in (or value after) \"%s\" in to clause\n",
131                                             fname, lineno, left );
132                                         acl_usage();
133                                 }
134
135                                 if ( strcasecmp( left, "filter" ) == 0 ) {
136                                         if ( (a->acl_filter = str2filter(
137                                             right )) == NULL ) {
138                                                 fprintf( stderr,
139                                 "%s: line %d: bad filter \"%s\" in to clause\n",
140                                                     fname, lineno, right );
141                                                 acl_usage();
142                                         }
143                                 } else if ( strcasecmp( left, "dn" ) == 0 ) {
144                                         int e;
145                                         if ((e = regcomp(&a->acl_dnre, right,
146                                                 REG_EXTENDED|REG_ICASE))) {
147                                                 char buf[512];
148                                                 regerror(e, &a->acl_dnre, buf, sizeof(buf));
149                                                 fprintf( stderr,
150                                 "%s: line %d: regular expression \"%s\" bad because of %s\n",
151                                                         fname, lineno, right, buf );
152                                                 acl_usage();
153
154                                         } else {
155                                                 a->acl_dnpat = dn_upcase(ch_strdup( right ));
156                                         }
157                                 } else if ( strncasecmp( left, "attr", 4 )
158                                     == 0 ) {
159                                         char    **alist;
160
161                                         alist = str2charray( right, "," );
162                                         charray_merge( &a->acl_attrs, alist );
163                                         charray_free( alist );
164                                 } else {
165                                         fprintf( stderr,
166                                                 "%s: line %d: expecting <what> got \"%s\"\n",
167                                             fname, lineno, left );
168                                         acl_usage();
169                                 }
170                         }
171
172                 /* by clause - select who has what access to entries */
173                 } else if ( strcasecmp( argv[i], "by" ) == 0 ) {
174                         if ( a == NULL ) {
175                                 fprintf( stderr,
176                                         "%s: line %d: to clause required before by clause in access line\n",
177                                     fname, lineno );
178                                 acl_usage();
179                         }
180                         /*
181                          * by clause consists of <who> and <access>
182                          */
183
184                         b = (struct access *) ch_calloc( 1,
185                             sizeof(struct access) );
186
187                         if ( ++i == argc ) {
188                                 fprintf( stderr,
189                             "%s: line %d: premature eol: expecting <who>\n",
190                                     fname, lineno );
191                                 acl_usage();
192                         }
193
194                         /* get <who> */
195                         split( argv[i], '=', &left, &right );
196                         if ( strcasecmp( argv[i], "*" ) == 0 ) {
197                                 b->a_dnpat = ch_strdup( ".*" );
198                         } else if ( strcasecmp( argv[i], "self" ) == 0 ) {
199                                 b->a_dnpat = ch_strdup( "self" );
200                         } else if ( strcasecmp( left, "dn" ) == 0 ) {
201                                 regtest(fname, lineno, right);
202                                 b->a_dnpat = dn_upcase( ch_strdup( right ) );
203                         } else if ( strcasecmp( left, "dnattr" ) == 0 ) {
204                                 b->a_dnattr = ch_strdup( right );
205
206 #ifdef SLAPD_ACLGROUPS
207                         } else if ( strcasecmp( left, "group" ) == 0 ) {
208                                 char *name = NULL;
209                                 char *value = NULL;
210                                 regtest(fname, lineno, right);
211
212                                 /* format of string is "group/objectClassValue/groupAttrName"
213                                  */
214                                 if ((value = strchr(right, '/')) != NULL) {
215                                         *value++ = '\0';
216                                         if (value && *value && (name = strchr(value, '/')) != NULL) 
217                                             *name++ = '\0';
218                                 }
219
220                                 b->a_group = dn_upcase(ch_strdup( right ));
221
222                                 if (value && *value) {
223                                         b->a_objectclassvalue = ch_strdup(value);
224                                         *--value = '/';
225                                 }
226                                 else
227                                         b->a_objectclassvalue = ch_strdup("groupOfNames");
228
229                                 if (name && *name) {
230                                         b->a_groupattrname = ch_strdup(name);
231                                         *--name = '/';
232                                 }
233                                 else
234                                         b->a_groupattrname = ch_strdup("member");
235
236
237
238 #endif /* SLAPD_ACLGROUPS */
239                         } else if ( strcasecmp( left, "domain" ) == 0 ) {
240                                 char    *s;
241                                 regtest(fname, lineno, right);
242                                 b->a_domainpat = ch_strdup( right );
243
244                                 /* normalize the domain */
245                                 for ( s = b->a_domainpat; *s; s++ ) {
246                                         *s = TOLOWER( *s );
247                                 }
248                         } else if ( strcasecmp( left, "addr" ) == 0 ) {
249                                 regtest(fname, lineno, right);
250                                 b->a_addrpat = ch_strdup( right );
251                         } else {
252                                 fprintf( stderr,
253                                     "%s: line %d: expecting <who> got \"%s\"\n",
254                                     fname, lineno, left );
255                                 acl_usage();
256                         }
257
258                         if ( ++i == argc ) {
259                                 fprintf( stderr,
260                             "%s: line %d: premature eol: expecting <access>\n",
261                                     fname, lineno );
262                                 acl_usage();
263                         }
264
265                         /* get <access> */
266                         split( argv[i], '=', &left, &right );
267                         if ( (b->a_access = str2access( left )) == -1 ) {
268                                 fprintf( stderr,
269                             "%s: line %d: expecting <access> got \"%s\"\n",
270                                     fname, lineno, left );
271                                 acl_usage();
272                         }
273                         access_append( &a->acl_access, b );
274
275                 } else {
276                         fprintf( stderr,
277                     "%s: line %d: expecting \"to\" or \"by\" got \"%s\"\n",
278                             fname, lineno, argv[i] );
279                         acl_usage();
280                 }
281         }
282
283         /* if we have no real access clause, complain and do nothing */
284         if ( a == NULL ) {
285                         fprintf( stderr,
286                                 "%s: line %d: warning: no access clause(s) specified in access line\n",
287                             fname, lineno );
288
289         } else {
290
291 #ifdef LDAP_DEBUG
292                 if (ldap_debug & LDAP_DEBUG_ACL)
293                     print_acl(a);
294 #endif
295         
296                 if ( a->acl_access == NULL ) {
297                         fprintf( stderr,
298                         "%s: line %d: warning: no by clause(s) specified in access line\n",
299                             fname, lineno );
300                 }
301
302                 if ( be != NULL ) {
303                         acl_append( &be->be_acl, a );
304                 } else {
305                         acl_append( &global_acl, a );
306                 }
307         }
308 }
309
310 char *
311 access2str( int access )
312 {
313         static char     buf[12];
314
315         if ( access & ACL_SELF ) {
316                 strcpy( buf, "self" );
317         } else {
318                 buf[0] = '\0';
319         }
320
321         if ( access & ACL_NONE ) {
322                 strcat( buf, "none" );
323         } else if ( access & ACL_COMPARE ) {
324                 strcat( buf, "compare" );
325         } else if ( access & ACL_SEARCH ) {
326                 strcat( buf, "search" );
327         } else if ( access & ACL_READ ) {
328                 strcat( buf, "read" );
329         } else if ( access & ACL_WRITE ) {
330                 strcat( buf, "write" );
331         } else {
332                 strcat( buf, "unknown" );
333         }
334
335         return( buf );
336 }
337
338 int
339 str2access( char *str )
340 {
341         int     access;
342
343         access = 0;
344         if ( strncasecmp( str, "self", 4 ) == 0 ) {
345                 access |= ACL_SELF;
346                 str += 4;
347         }
348
349         if ( strcasecmp( str, "none" ) == 0 ) {
350                 access |= ACL_NONE;
351         } else if ( strcasecmp( str, "compare" ) == 0 ) {
352                 access |= ACL_COMPARE;
353         } else if ( strcasecmp( str, "search" ) == 0 ) {
354                 access |= ACL_SEARCH;
355         } else if ( strcasecmp( str, "read" ) == 0 ) {
356                 access |= ACL_READ;
357         } else if ( strcasecmp( str, "write" ) == 0 ) {
358                 access |= ACL_WRITE;
359         } else {
360                 access = -1;
361         }
362
363         return( access );
364 }
365
366 static void
367 acl_usage( void )
368 {
369         fprintf( stderr, "\n<access clause> ::= access to <what> [ by <who> <access> ]+ \n" );
370         fprintf( stderr, "<what> ::= * | [dn=<regex>] [filter=<ldapfilter>] [attrs=<attrlist>]\n" );
371         fprintf( stderr, "<attrlist> ::= <attr> | <attr> , <attrlist>\n" );
372         fprintf( stderr, "<attr> ::= <attrname> | entry | children\n" );
373         fprintf( stderr, "<who> ::= * | self | dn=<regex> | addr=<regex> |\n\tdomain=<regex> | dnattr=<dnattrname>\n" );
374         fprintf( stderr, "<access> ::= [self]{none | compare | search | read | write }\n" );
375         exit( 1 );
376 }
377
378 static void
379 split(
380     char        *line,
381     int         splitchar,
382     char        **left,
383     char        **right
384 )
385 {
386         *left = line;
387         if ( (*right = strchr( line, splitchar )) != NULL ) {
388                 *((*right)++) = '\0';
389         }
390 }
391
392 static void
393 access_append( struct access **l, struct access *a )
394 {
395         for ( ; *l != NULL; l = &(*l)->a_next )
396                 ;       /* NULL */
397
398         *l = a;
399 }
400
401 static void
402 acl_append( struct acl **l, struct acl *a )
403 {
404         for ( ; *l != NULL; l = &(*l)->acl_next )
405                 ;       /* NULL */
406
407         *l = a;
408 }
409
410 #ifdef LDAP_DEBUG
411
412 static void
413 print_access( struct access *b )
414 {
415         fprintf( stderr, "\tby" );
416
417         if ( b->a_dnpat != NULL ) {
418                 fprintf( stderr, " dn=%s", b->a_dnpat );
419         } else if ( b->a_addrpat != NULL ) {
420                 fprintf( stderr, " addr=%s", b->a_addrpat );
421         } else if ( b->a_domainpat != NULL ) {
422                 fprintf( stderr, " domain=%s", b->a_domainpat );
423         } else if ( b->a_dnattr != NULL ) {
424                 fprintf( stderr, " dnattr=%s", b->a_dnattr );
425         }
426 #ifdef SLAPD_ACLGROUPS
427         else if ( b->a_group != NULL ) {
428                 fprintf( stderr, " group: %s", b->a_group );
429                 if ( b->a_objectclassvalue )
430                         fprintf( stderr, " objectClassValue: %s", b->a_objectclassvalue );
431                 if ( b->a_groupattrname )
432                         fprintf( stderr, " groupAttrName: %s", b->a_groupattrname );
433         }
434 #endif
435         fprintf( stderr, "\n" );
436 }
437
438 static void
439 print_acl( struct acl *a )
440 {
441         int             i;
442         struct access   *b;
443
444         if ( a == NULL ) {
445                 fprintf( stderr, "NULL\n" );
446         }
447         fprintf( stderr, "ACL: access to" );
448         if ( a->acl_filter != NULL ) {
449                 fprintf(  stderr," filter=" );
450                 filter_print( a->acl_filter );
451         }
452         if ( a->acl_dnpat != NULL ) {
453                 fprintf( stderr, " dn=" );
454                 fprintf( stderr, a->acl_dnpat );
455         }
456         if ( a->acl_attrs != NULL ) {
457                 int     first = 1;
458
459                 fprintf( stderr, "\n attrs=" );
460                 for ( i = 0; a->acl_attrs[i] != NULL; i++ ) {
461                         if ( ! first ) {
462                                 fprintf( stderr, "," );
463                         }
464                         fprintf( stderr, a->acl_attrs[i] );
465                         first = 0;
466                 }
467         }
468         fprintf( stderr, "\n" );
469         for ( b = a->acl_access; b != NULL; b = b->a_next ) {
470                 print_access( b );
471         }
472         fprintf( stderr, "\n" );
473 }
474
475 #endif /* LDAP_DEBUG */