]> git.sur5r.net Git - openldap/blob - servers/slapd/aclparse.c
fix typo (ITS#4784)
[openldap] / servers / slapd / aclparse.c
1 /* aclparse.c - routines to parse and check acl's */
2 /* $OpenLDAP$ */
3 /* This work is part of OpenLDAP Software <http://www.openldap.org/>.
4  *
5  * Copyright 1998-2006 The OpenLDAP Foundation.
6  * All rights reserved.
7  *
8  * Redistribution and use in source and binary forms, with or without
9  * modification, are permitted only as authorized by the OpenLDAP
10  * Public License.
11  *
12  * A copy of this license is available in the file LICENSE in the
13  * top-level directory of the distribution or, alternatively, at
14  * <http://www.OpenLDAP.org/license.html>.
15  */
16 /* Portions Copyright (c) 1995 Regents of the University of Michigan.
17  * All rights reserved.
18  *
19  * Redistribution and use in source and binary forms are permitted
20  * provided that this notice is preserved and that due credit is given
21  * to the University of Michigan at Ann Arbor. The name of the University
22  * may not be used to endorse or promote products derived from this
23  * software without specific prior written permission. This software
24  * is provided ``as is'' without express or implied warranty.
25  */
26
27 #include "portable.h"
28
29 #include <stdio.h>
30
31 #include <ac/ctype.h>
32 #include <ac/regex.h>
33 #include <ac/socket.h>
34 #include <ac/string.h>
35 #include <ac/unistd.h>
36
37 #include "slap.h"
38 #include "lber_pvt.h"
39 #include "lutil.h"
40
41 static const char style_base[] = "base";
42 char *style_strings[] = {
43         "regex",
44         "expand",
45         "exact",
46         "one",
47         "subtree",
48         "children",
49         "level",
50         "attrof",
51         "anonymous",
52         "users",
53         "self",
54         "ip",
55         "ipv6",
56         "path",
57         NULL
58 };
59
60 static void             split(char *line, int splitchar, char **left, char **right);
61 static void             access_append(Access **l, Access *a);
62 static void             access_free( Access *a );
63 static int              acl_usage(void);
64
65 static void             acl_regex_normalized_dn(const char *src, struct berval *pat);
66
67 #ifdef LDAP_DEBUG
68 static void             print_acl(Backend *be, AccessControl *a);
69 #endif
70
71 static int              check_scope( BackendDB *be, AccessControl *a );
72
73 #ifdef SLAP_DYNACL
74 static int
75 slap_dynacl_config(
76         const char *fname,
77         int lineno,
78         Access *b,
79         const char *name,
80         const char *opts,
81         slap_style_t sty,
82         const char *right )
83 {
84         slap_dynacl_t   *da, *tmp;
85         int             rc = 0;
86
87         for ( da = b->a_dynacl; da; da = da->da_next ) {
88                 if ( strcasecmp( da->da_name, name ) == 0 ) {
89                         Debug( LDAP_DEBUG_ANY,
90                                 "%s: line %d: dynacl \"%s\" already specified.\n",
91                                 fname, lineno, name );
92                         return acl_usage();
93                 }
94         }
95
96         da = slap_dynacl_get( name );
97         if ( da == NULL ) {
98                 return -1;
99         }
100
101         tmp = ch_malloc( sizeof( slap_dynacl_t ) );
102         *tmp = *da;
103
104         if ( tmp->da_parse ) {
105                 rc = ( *tmp->da_parse )( fname, lineno, opts, sty, right, &tmp->da_private );
106                 if ( rc ) {
107                         ch_free( tmp );
108                         return rc;
109                 }
110         }
111
112         tmp->da_next = b->a_dynacl;
113         b->a_dynacl = tmp;
114
115         return 0;
116 }
117 #endif /* SLAP_DYNACL */
118
119 static void
120 regtest(const char *fname, int lineno, char *pat) {
121         int e;
122         regex_t re;
123
124         char            buf[ SLAP_TEXT_BUFLEN ];
125         unsigned        size;
126
127         char *sp;
128         char *dp;
129         int  flag;
130
131         sp = pat;
132         dp = buf;
133         size = 0;
134         buf[0] = '\0';
135
136         for (size = 0, flag = 0; (size < sizeof(buf)) && *sp; sp++) {
137                 if (flag) {
138                         if (*sp == '$'|| (*sp >= '0' && *sp <= '9')) {
139                                 *dp++ = *sp;
140                                 size++;
141                         }
142                         flag = 0;
143
144                 } else {
145                         if (*sp == '$') {
146                                 flag = 1;
147                         } else {
148                                 *dp++ = *sp;
149                                 size++;
150                         }
151                 }
152         }
153
154         *dp = '\0';
155         if ( size >= (sizeof(buf) - 1) ) {
156                 Debug( LDAP_DEBUG_ANY,
157                         "%s: line %d: regular expression \"%s\" too large\n",
158                         fname, lineno, pat );
159                 (void)acl_usage();
160                 exit( EXIT_FAILURE );
161         }
162
163         if ((e = regcomp(&re, buf, REG_EXTENDED|REG_ICASE))) {
164                 char error[ SLAP_TEXT_BUFLEN ];
165
166                 regerror(e, &re, error, sizeof(error));
167
168                 snprintf( buf, sizeof( buf ),
169                         "regular expression \"%s\" bad because of %s",
170                         pat, error );
171                 Debug( LDAP_DEBUG_ANY,
172                         "%s: line %d: %s\n",
173                         fname, lineno, buf );
174                 acl_usage();
175                 exit( EXIT_FAILURE );
176         }
177         regfree(&re);
178 }
179
180 /*
181  * Experimental
182  *
183  * Check if the pattern of an ACL, if any, matches the scope
184  * of the backend it is defined within.
185  */
186 #define ACL_SCOPE_UNKNOWN       (-2)
187 #define ACL_SCOPE_ERR           (-1)
188 #define ACL_SCOPE_OK            (0)
189 #define ACL_SCOPE_PARTIAL       (1)
190 #define ACL_SCOPE_WARN          (2)
191
192 static int
193 check_scope( BackendDB *be, AccessControl *a )
194 {
195         ber_len_t       patlen;
196         struct berval   dn;
197
198         dn = be->be_nsuffix[0];
199
200         if ( BER_BVISEMPTY( &dn ) ) {
201                 return ACL_SCOPE_OK;
202         }
203
204         if ( !BER_BVISEMPTY( &a->acl_dn_pat ) ||
205                         a->acl_dn_style != ACL_STYLE_REGEX )
206         {
207                 slap_style_t    style = a->acl_dn_style;
208
209                 if ( style == ACL_STYLE_REGEX ) {
210                         char            dnbuf[SLAP_LDAPDN_MAXLEN + 2];
211                         char            rebuf[SLAP_LDAPDN_MAXLEN + 1];
212                         ber_len_t       rebuflen;
213                         regex_t         re;
214                         int             rc;
215                         
216                         /* add trailing '$' to database suffix to form
217                          * a simple trial regex pattern "<suffix>$" */
218                         AC_MEMCPY( dnbuf, be->be_nsuffix[0].bv_val,
219                                 be->be_nsuffix[0].bv_len );
220                         dnbuf[be->be_nsuffix[0].bv_len] = '$';
221                         dnbuf[be->be_nsuffix[0].bv_len + 1] = '\0';
222
223                         if ( regcomp( &re, dnbuf, REG_EXTENDED|REG_ICASE ) ) {
224                                 return ACL_SCOPE_WARN;
225                         }
226
227                         /* remove trailing ')$', if any, from original
228                          * regex pattern */
229                         rebuflen = a->acl_dn_pat.bv_len;
230                         AC_MEMCPY( rebuf, a->acl_dn_pat.bv_val, rebuflen + 1 );
231                         if ( rebuf[rebuflen - 1] == '$' ) {
232                                 rebuf[--rebuflen] = '\0';
233                         }
234                         while ( rebuflen > be->be_nsuffix[0].bv_len && rebuf[rebuflen - 1] == ')' ) {
235                                 rebuf[--rebuflen] = '\0';
236                         }
237                         if ( rebuflen == be->be_nsuffix[0].bv_len ) {
238                                 rc = ACL_SCOPE_WARN;
239                                 goto regex_done;
240                         }
241
242                         /* not a clear indication of scoping error, though */
243                         rc = regexec( &re, rebuf, 0, NULL, 0 )
244                                 ? ACL_SCOPE_WARN : ACL_SCOPE_OK;
245
246 regex_done:;
247                         regfree( &re );
248                         return rc;
249                 }
250
251                 patlen = a->acl_dn_pat.bv_len;
252                 /* If backend suffix is longer than pattern,
253                  * it is a potential mismatch (in the sense
254                  * that a superior naming context could
255                  * match */
256                 if ( dn.bv_len > patlen ) {
257                         /* base is blatantly wrong */
258                         if ( style == ACL_STYLE_BASE ) return ACL_SCOPE_ERR;
259
260                         /* a style of one can be wrong if there is
261                          * more than one level between the suffix
262                          * and the pattern */
263                         if ( style == ACL_STYLE_ONE ) {
264                                 ber_len_t       rdnlen = 0;
265                                 int             sep = 0;
266
267                                 if ( patlen > 0 ) {
268                                         if ( !DN_SEPARATOR( dn.bv_val[dn.bv_len - patlen - 1] )) {
269                                                 return ACL_SCOPE_ERR;
270                                         }
271                                         sep = 1;
272                                 }
273
274                                 rdnlen = dn_rdnlen( NULL, &dn );
275                                 if ( rdnlen != dn.bv_len - patlen - sep )
276                                         return ACL_SCOPE_ERR;
277                         }
278
279                         /* if the trailing part doesn't match,
280                          * then it's an error */
281                         if ( strcmp( a->acl_dn_pat.bv_val,
282                                 &dn.bv_val[dn.bv_len - patlen] ) != 0 )
283                         {
284                                 return ACL_SCOPE_ERR;
285                         }
286
287                         return ACL_SCOPE_PARTIAL;
288                 }
289
290                 switch ( style ) {
291                 case ACL_STYLE_BASE:
292                 case ACL_STYLE_ONE:
293                 case ACL_STYLE_CHILDREN:
294                 case ACL_STYLE_SUBTREE:
295                         break;
296
297                 default:
298                         assert( 0 );
299                         break;
300                 }
301
302                 if ( dn.bv_len < patlen &&
303                         !DN_SEPARATOR( a->acl_dn_pat.bv_val[patlen - dn.bv_len - 1] ))
304                 {
305                         return ACL_SCOPE_ERR;
306                 }
307
308                 if ( strcmp( &a->acl_dn_pat.bv_val[patlen - dn.bv_len], dn.bv_val )
309                         != 0 )
310                 {
311                         return ACL_SCOPE_ERR;
312                 }
313
314                 return ACL_SCOPE_OK;
315         }
316
317         return ACL_SCOPE_UNKNOWN;
318 }
319
320 int
321 parse_acl(
322         Backend *be,
323         const char      *fname,
324         int             lineno,
325         int             argc,
326         char            **argv,
327         int             pos )
328 {
329         int             i;
330         char            *left, *right, *style;
331         struct berval   bv;
332         AccessControl   *a = NULL;
333         Access  *b = NULL;
334         int rc;
335         const char *text;
336
337         for ( i = 1; i < argc; i++ ) {
338                 /* to clause - select which entries are protected */
339                 if ( strcasecmp( argv[i], "to" ) == 0 ) {
340                         if ( a != NULL ) {
341                                 Debug( LDAP_DEBUG_ANY, "%s: line %d: "
342                                         "only one to clause allowed in access line\n",
343                                     fname, lineno, 0 );
344                                 goto fail;
345                         }
346                         a = (AccessControl *) ch_calloc( 1, sizeof(AccessControl) );
347                         for ( ++i; i < argc; i++ ) {
348                                 if ( strcasecmp( argv[i], "by" ) == 0 ) {
349                                         i--;
350                                         break;
351                                 }
352
353                                 if ( strcasecmp( argv[i], "*" ) == 0 ) {
354                                         if ( !BER_BVISEMPTY( &a->acl_dn_pat ) ||
355                                                 a->acl_dn_style != ACL_STYLE_REGEX )
356                                         {
357                                                 Debug( LDAP_DEBUG_ANY,
358                                                         "%s: line %d: dn pattern"
359                                                         " already specified in to clause.\n",
360                                                         fname, lineno, 0 );
361                                                 goto fail;
362                                         }
363
364                                         ber_str2bv( "*", STRLENOF( "*" ), 1, &a->acl_dn_pat );
365                                         continue;
366                                 }
367
368                                 split( argv[i], '=', &left, &right );
369                                 split( left, '.', &left, &style );
370
371                                 if ( right == NULL ) {
372                                         Debug( LDAP_DEBUG_ANY, "%s: line %d: "
373                                                 "missing \"=\" in \"%s\" in to clause\n",
374                                             fname, lineno, left );
375                                         goto fail;
376                                 }
377
378                                 if ( strcasecmp( left, "dn" ) == 0 ) {
379                                         if ( !BER_BVISEMPTY( &a->acl_dn_pat ) ||
380                                                 a->acl_dn_style != ACL_STYLE_REGEX )
381                                         {
382                                                 Debug( LDAP_DEBUG_ANY,
383                                                         "%s: line %d: dn pattern"
384                                                         " already specified in to clause.\n",
385                                                         fname, lineno, 0 );
386                                                 goto fail;
387                                         }
388
389                                         if ( style == NULL || *style == '\0' ||
390                                                 strcasecmp( style, "baseObject" ) == 0 ||
391                                                 strcasecmp( style, "base" ) == 0 ||
392                                                 strcasecmp( style, "exact" ) == 0 )
393                                         {
394                                                 a->acl_dn_style = ACL_STYLE_BASE;
395                                                 ber_str2bv( right, 0, 1, &a->acl_dn_pat );
396
397                                         } else if ( strcasecmp( style, "oneLevel" ) == 0 ||
398                                                 strcasecmp( style, "one" ) == 0 )
399                                         {
400                                                 a->acl_dn_style = ACL_STYLE_ONE;
401                                                 ber_str2bv( right, 0, 1, &a->acl_dn_pat );
402
403                                         } else if ( strcasecmp( style, "subtree" ) == 0 ||
404                                                 strcasecmp( style, "sub" ) == 0 )
405                                         {
406                                                 if( *right == '\0' ) {
407                                                         ber_str2bv( "*", STRLENOF( "*" ), 1, &a->acl_dn_pat );
408
409                                                 } else {
410                                                         a->acl_dn_style = ACL_STYLE_SUBTREE;
411                                                         ber_str2bv( right, 0, 1, &a->acl_dn_pat );
412                                                 }
413
414                                         } else if ( strcasecmp( style, "children" ) == 0 ) {
415                                                 a->acl_dn_style = ACL_STYLE_CHILDREN;
416                                                 ber_str2bv( right, 0, 1, &a->acl_dn_pat );
417
418                                         } else if ( strcasecmp( style, "regex" ) == 0 ) {
419                                                 a->acl_dn_style = ACL_STYLE_REGEX;
420
421                                                 if ( *right == '\0' ) {
422                                                         /* empty regex should match empty DN */
423                                                         a->acl_dn_style = ACL_STYLE_BASE;
424                                                         ber_str2bv( right, 0, 1, &a->acl_dn_pat );
425
426                                                 } else if ( strcmp(right, "*") == 0 
427                                                         || strcmp(right, ".*") == 0 
428                                                         || strcmp(right, ".*$") == 0 
429                                                         || strcmp(right, "^.*") == 0 
430                                                         || strcmp(right, "^.*$") == 0
431                                                         || strcmp(right, ".*$$") == 0 
432                                                         || strcmp(right, "^.*$$") == 0 )
433                                                 {
434                                                         ber_str2bv( "*", STRLENOF("*"), 1, &a->acl_dn_pat );
435
436                                                 } else {
437                                                         acl_regex_normalized_dn( right, &a->acl_dn_pat );
438                                                 }
439
440                                         } else {
441                                                 Debug( LDAP_DEBUG_ANY, "%s: line %d: "
442                                                         "unknown dn style \"%s\" in to clause\n",
443                                                     fname, lineno, style );
444                                                 goto fail;
445                                         }
446
447                                         continue;
448                                 }
449
450                                 if ( strcasecmp( left, "filter" ) == 0 ) {
451                                         if ( (a->acl_filter = str2filter( right )) == NULL ) {
452                                                 Debug( LDAP_DEBUG_ANY,
453                                 "%s: line %d: bad filter \"%s\" in to clause\n",
454                                                     fname, lineno, right );
455                                                 goto fail;
456                                         }
457
458                                 } else if ( strcasecmp( left, "attr" ) == 0             /* TOLERATED */
459                                                 || strcasecmp( left, "attrs" ) == 0 )   /* DOCUMENTED */
460                                 {
461                                         if ( strcasecmp( left, "attr" ) == 0 ) {
462                                                 Debug( LDAP_DEBUG_ANY,
463                                                         "%s: line %d: \"attr\" "
464                                                         "is deprecated (and undocumented); "
465                                                         "use \"attrs\" instead.\n",
466                                                         fname, lineno, 0 );
467                                         }
468
469                                         a->acl_attrs = str2anlist( a->acl_attrs,
470                                                 right, "," );
471                                         if ( a->acl_attrs == NULL ) {
472                                                 Debug( LDAP_DEBUG_ANY,
473                                 "%s: line %d: unknown attr \"%s\" in to clause\n",
474                                                     fname, lineno, right );
475                                                 goto fail;
476                                         }
477
478                                 } else if ( strncasecmp( left, "val", 3 ) == 0 ) {
479                                         struct berval   bv;
480                                         char            *mr;
481                                         
482                                         if ( !BER_BVISEMPTY( &a->acl_attrval ) ) {
483                                                 Debug( LDAP_DEBUG_ANY,
484                                 "%s: line %d: attr val already specified in to clause.\n",
485                                                         fname, lineno, 0 );
486                                                 goto fail;
487                                         }
488                                         if ( a->acl_attrs == NULL || !BER_BVISEMPTY( &a->acl_attrs[1].an_name ) )
489                                         {
490                                                 Debug( LDAP_DEBUG_ANY,
491                                 "%s: line %d: attr val requires a single attribute.\n",
492                                                         fname, lineno, 0 );
493                                                 goto fail;
494                                         }
495
496                                         ber_str2bv( right, 0, 0, &bv );
497                                         a->acl_attrval_style = ACL_STYLE_BASE;
498
499                                         mr = strchr( left, '/' );
500                                         if ( mr != NULL ) {
501                                                 mr[ 0 ] = '\0';
502                                                 mr++;
503
504                                                 a->acl_attrval_mr = mr_find( mr );
505                                                 if ( a->acl_attrval_mr == NULL ) {
506                                                         Debug( LDAP_DEBUG_ANY, "%s: line %d: "
507                                                                 "invalid matching rule \"%s\".\n",
508                                                                 fname, lineno, mr );
509                                                         goto fail;
510                                                 }
511
512                                                 if( !mr_usable_with_at( a->acl_attrval_mr, a->acl_attrs[ 0 ].an_desc->ad_type ) )
513                                                 {
514                                                         char    buf[ SLAP_TEXT_BUFLEN ];
515
516                                                         snprintf( buf, sizeof( buf ),
517                                                                 "matching rule \"%s\" use "
518                                                                 "with attr \"%s\" not appropriate.",
519                                                                 mr, a->acl_attrs[ 0 ].an_name.bv_val );
520                                                                 
521
522                                                         Debug( LDAP_DEBUG_ANY, "%s: line %d: %s\n",
523                                                                 fname, lineno, buf );
524                                                         goto fail;
525                                                 }
526                                         }
527                                         
528                                         if ( style != NULL ) {
529                                                 if ( strcasecmp( style, "regex" ) == 0 ) {
530                                                         int e = regcomp( &a->acl_attrval_re, bv.bv_val,
531                                                                 REG_EXTENDED | REG_ICASE | REG_NOSUB );
532                                                         if ( e ) {
533                                                                 char    err[SLAP_TEXT_BUFLEN],
534                                                                         buf[ SLAP_TEXT_BUFLEN ];
535
536                                                                 regerror( e, &a->acl_attrval_re, err, sizeof( err ) );
537
538                                                                 snprintf( buf, sizeof( buf ),
539                                                                         "regular expression \"%s\" bad because of %s",
540                                                                         right, err );
541
542                                                                 Debug( LDAP_DEBUG_ANY, "%s: line %d: %s\n",
543                                                                         fname, lineno, buf );
544                                                                 goto fail;
545                                                         }
546                                                         a->acl_attrval_style = ACL_STYLE_REGEX;
547
548                                                 } else {
549                                                         /* FIXME: if the attribute has DN syntax, we might
550                                                          * allow one, subtree and children styles as well */
551                                                         if ( !strcasecmp( style, "base" ) ||
552                                                                 !strcasecmp( style, "exact" ) ) {
553                                                                 a->acl_attrval_style = ACL_STYLE_BASE;
554
555                                                         } else if ( a->acl_attrs[0].an_desc->ad_type->
556                                                                 sat_syntax == slap_schema.si_syn_distinguishedName )
557                                                         {
558                                                                 if ( !strcasecmp( style, "baseObject" ) ||
559                                                                         !strcasecmp( style, "base" ) )
560                                                                 {
561                                                                         a->acl_attrval_style = ACL_STYLE_BASE;
562                                                                 } else if ( !strcasecmp( style, "onelevel" ) ||
563                                                                         !strcasecmp( style, "one" ) )
564                                                                 {
565                                                                         a->acl_attrval_style = ACL_STYLE_ONE;
566                                                                 } else if ( !strcasecmp( style, "subtree" ) ||
567                                                                         !strcasecmp( style, "sub" ) )
568                                                                 {
569                                                                         a->acl_attrval_style = ACL_STYLE_SUBTREE;
570                                                                 } else if ( !strcasecmp( style, "children" ) ) {
571                                                                         a->acl_attrval_style = ACL_STYLE_CHILDREN;
572                                                                 } else {
573                                                                         char    buf[ SLAP_TEXT_BUFLEN ];
574
575                                                                         snprintf( buf, sizeof( buf ),
576                                                                                 "unknown val.<style> \"%s\" for attributeType \"%s\" "
577                                                                                         "with DN syntax.",
578                                                                                 style,
579                                                                                 a->acl_attrs[0].an_desc->ad_cname.bv_val );
580
581                                                                         Debug( LDAP_DEBUG_CONFIG | LDAP_DEBUG_ACL, 
582                                                                                 "%s: line %d: %s\n",
583                                                                                 fname, lineno, buf );
584                                                                         goto fail;
585                                                                 }
586
587                                                                 rc = dnNormalize( 0, NULL, NULL, &bv, &a->acl_attrval, NULL );
588                                                                 if ( rc != LDAP_SUCCESS ) {
589                                                                         char    buf[ SLAP_TEXT_BUFLEN ];
590
591                                                                         snprintf( buf, sizeof( buf ),
592                                                                                 "unable to normalize DN \"%s\" "
593                                                                                 "for attributeType \"%s\" (%d).",
594                                                                                 bv.bv_val,
595                                                                                 a->acl_attrs[0].an_desc->ad_cname.bv_val,
596                                                                                 rc );
597                                                                         Debug( LDAP_DEBUG_ANY, 
598                                                                                 "%s: line %d: %s\n",
599                                                                                 fname, lineno, buf );
600                                                                         goto fail;
601                                                                 }
602
603                                                         } else {
604                                                                 char    buf[ SLAP_TEXT_BUFLEN ];
605
606                                                                 snprintf( buf, sizeof( buf ),
607                                                                         "unknown val.<style> \"%s\" for attributeType \"%s\".",
608                                                                         style, a->acl_attrs[0].an_desc->ad_cname.bv_val );
609                                                                 Debug( LDAP_DEBUG_CONFIG | LDAP_DEBUG_ACL, 
610                                                                         "%s: line %d: %s\n",
611                                                                         fname, lineno, buf );
612                                                                 goto fail;
613                                                         }
614                                                 }
615                                         }
616
617                                         /* Check for appropriate matching rule */
618                                         if ( a->acl_attrval_style == ACL_STYLE_REGEX ) {
619                                                 ber_dupbv( &a->acl_attrval, &bv );
620
621                                         } else if ( BER_BVISNULL( &a->acl_attrval ) ) {
622                                                 int             rc;
623                                                 const char      *text;
624
625                                                 if ( a->acl_attrval_mr == NULL ) {
626                                                         a->acl_attrval_mr = a->acl_attrs[ 0 ].an_desc->ad_type->sat_equality;
627                                                 }
628
629                                                 if ( a->acl_attrval_mr == NULL ) {
630                                                         Debug( LDAP_DEBUG_ANY, "%s: line %d: "
631                                                                 "attr \"%s\" does not have an EQUALITY matching rule.\n",
632                                                                 fname, lineno, a->acl_attrs[ 0 ].an_name.bv_val );
633                                                         goto fail;
634                                                 }
635
636                                                 rc = asserted_value_validate_normalize(
637                                                         a->acl_attrs[ 0 ].an_desc,
638                                                         a->acl_attrval_mr,
639                                                         SLAP_MR_EQUALITY|SLAP_MR_VALUE_OF_ASSERTION_SYNTAX,
640                                                         &bv,
641                                                         &a->acl_attrval,
642                                                         &text,
643                                                         NULL );
644                                                 if ( rc != LDAP_SUCCESS ) {
645                                                         char    buf[ SLAP_TEXT_BUFLEN ];
646
647                                                         snprintf( buf, sizeof( buf ), "%s: line %d: "
648                                                                 " attr \"%s\" normalization failed (%d: %s)",
649                                                                 fname, lineno,
650                                                                 a->acl_attrs[ 0 ].an_name.bv_val, rc, text );
651                                                         Debug( LDAP_DEBUG_ANY, "%s: line %d: %s.\n",
652                                                                 fname, lineno, buf );
653                                                         goto fail;
654                                                 }
655                                         }
656
657                                 } else {
658                                         Debug( LDAP_DEBUG_ANY,
659                                                 "%s: line %d: expecting <what> got \"%s\"\n",
660                                             fname, lineno, left );
661                                         goto fail;
662                                 }
663                         }
664
665                         if ( !BER_BVISNULL( &a->acl_dn_pat ) && 
666                                         ber_bvccmp( &a->acl_dn_pat, '*' ) )
667                         {
668                                 free( a->acl_dn_pat.bv_val );
669                                 BER_BVZERO( &a->acl_dn_pat );
670                                 a->acl_dn_style = ACL_STYLE_REGEX;
671                         }
672                         
673                         if ( !BER_BVISEMPTY( &a->acl_dn_pat ) ||
674                                         a->acl_dn_style != ACL_STYLE_REGEX ) 
675                         {
676                                 if ( a->acl_dn_style != ACL_STYLE_REGEX ) {
677                                         struct berval bv;
678                                         rc = dnNormalize( 0, NULL, NULL, &a->acl_dn_pat, &bv, NULL);
679                                         if ( rc != LDAP_SUCCESS ) {
680                                                 Debug( LDAP_DEBUG_ANY,
681                                                         "%s: line %d: bad DN \"%s\" in to DN clause\n",
682                                                         fname, lineno, a->acl_dn_pat.bv_val );
683                                                 goto fail;
684                                         }
685                                         free( a->acl_dn_pat.bv_val );
686                                         a->acl_dn_pat = bv;
687
688                                 } else {
689                                         int e = regcomp( &a->acl_dn_re, a->acl_dn_pat.bv_val,
690                                                 REG_EXTENDED | REG_ICASE );
691                                         if ( e ) {
692                                                 char    err[ SLAP_TEXT_BUFLEN ],
693                                                         buf[ SLAP_TEXT_BUFLEN ];
694
695                                                 regerror( e, &a->acl_dn_re, err, sizeof( err ) );
696                                                 snprintf( buf, sizeof( buf ),
697                                                         "regular expression \"%s\" bad because of %s",
698                                                         right, err );
699                                                 Debug( LDAP_DEBUG_ANY, "%s: line %d: %s\n",
700                                                         fname, lineno, buf );
701                                                 goto fail;
702                                         }
703                                 }
704                         }
705
706                 /* by clause - select who has what access to entries */
707                 } else if ( strcasecmp( argv[i], "by" ) == 0 ) {
708                         if ( a == NULL ) {
709                                 Debug( LDAP_DEBUG_ANY, "%s: line %d: "
710                                         "to clause required before by clause in access line\n",
711                                         fname, lineno, 0 );
712                                 goto fail;
713                         }
714
715                         /*
716                          * by clause consists of <who> and <access>
717                          */
718
719                         if ( ++i == argc ) {
720                                 Debug( LDAP_DEBUG_ANY,
721                                         "%s: line %d: premature EOL: expecting <who>\n",
722                                         fname, lineno, 0 );
723                                 goto fail;
724                         }
725
726                         b = (Access *) ch_calloc( 1, sizeof(Access) );
727
728                         ACL_INVALIDATE( b->a_access_mask );
729
730                         /* get <who> */
731                         for ( ; i < argc; i++ ) {
732                                 slap_style_t    sty = ACL_STYLE_REGEX;
733                                 char            *style_modifier = NULL;
734                                 char            *style_level = NULL;
735                                 int             level = 0;
736                                 int             expand = 0;
737                                 slap_dn_access  *bdn = &b->a_dn;
738                                 int             is_realdn = 0;
739
740                                 split( argv[i], '=', &left, &right );
741                                 split( left, '.', &left, &style );
742                                 if ( style ) {
743                                         split( style, ',', &style, &style_modifier );
744
745                                         if ( strncasecmp( style, "level", STRLENOF( "level" ) ) == 0 ) {
746                                                 split( style, '{', &style, &style_level );
747                                                 if ( style_level != NULL ) {
748                                                         char *p = strchr( style_level, '}' );
749                                                         if ( p == NULL ) {
750                                                                 Debug( LDAP_DEBUG_ANY,
751                                                                         "%s: line %d: premature eol: "
752                                                                         "expecting closing '}' in \"level{n}\"\n",
753                                                                         fname, lineno, 0 );
754                                                                 goto fail;
755                                                         } else if ( p == style_level ) {
756                                                                 Debug( LDAP_DEBUG_ANY,
757                                                                         "%s: line %d: empty level "
758                                                                         "in \"level{n}\"\n",
759                                                                         fname, lineno, 0 );
760                                                                 goto fail;
761                                                         }
762                                                         p[0] = '\0';
763                                                 }
764                                         }
765                                 }
766
767                                 if ( style == NULL || *style == '\0' ||
768                                         strcasecmp( style, "exact" ) == 0 ||
769                                         strcasecmp( style, "baseObject" ) == 0 ||
770                                         strcasecmp( style, "base" ) == 0 )
771                                 {
772                                         sty = ACL_STYLE_BASE;
773
774                                 } else if ( strcasecmp( style, "onelevel" ) == 0 ||
775                                         strcasecmp( style, "one" ) == 0 )
776                                 {
777                                         sty = ACL_STYLE_ONE;
778
779                                 } else if ( strcasecmp( style, "subtree" ) == 0 ||
780                                         strcasecmp( style, "sub" ) == 0 )
781                                 {
782                                         sty = ACL_STYLE_SUBTREE;
783
784                                 } else if ( strcasecmp( style, "children" ) == 0 ) {
785                                         sty = ACL_STYLE_CHILDREN;
786
787                                 } else if ( strcasecmp( style, "level" ) == 0 )
788                                 {
789                                         if ( lutil_atoi( &level, style_level ) != 0 ) {
790                                                 Debug( LDAP_DEBUG_ANY,
791                                                         "%s: line %d: unable to parse level "
792                                                         "in \"level{n}\"\n",
793                                                         fname, lineno, 0 );
794                                                 goto fail;
795                                         }
796
797                                         sty = ACL_STYLE_LEVEL;
798
799                                 } else if ( strcasecmp( style, "regex" ) == 0 ) {
800                                         sty = ACL_STYLE_REGEX;
801
802                                 } else if ( strcasecmp( style, "expand" ) == 0 ) {
803                                         sty = ACL_STYLE_EXPAND;
804
805                                 } else if ( strcasecmp( style, "ip" ) == 0 ) {
806                                         sty = ACL_STYLE_IP;
807
808                                 } else if ( strcasecmp( style, "ipv6" ) == 0 ) {
809 #ifndef LDAP_PF_INET6
810                                         Debug( LDAP_DEBUG_ANY,
811                                                 "%s: line %d: IPv6 not supported\n",
812                                                 fname, lineno, 0 );
813 #endif /* ! LDAP_PF_INET6 */
814                                         sty = ACL_STYLE_IPV6;
815
816                                 } else if ( strcasecmp( style, "path" ) == 0 ) {
817                                         sty = ACL_STYLE_PATH;
818 #ifndef LDAP_PF_LOCAL
819                                         Debug( LDAP_DEBUG_CONFIG | LDAP_DEBUG_ACL,
820                                                 "%s: line %d: "
821                                                 "\"path\" style modifier is useless without local.\n",
822                                                 fname, lineno, 0 );
823                                         goto fail;
824 #endif /* LDAP_PF_LOCAL */
825
826                                 } else {
827                                         Debug( LDAP_DEBUG_ANY,
828                                                 "%s: line %d: unknown style \"%s\" in by clause\n",
829                                                 fname, lineno, style );
830                                         goto fail;
831                                 }
832
833                                 if ( style_modifier &&
834                                         strcasecmp( style_modifier, "expand" ) == 0 )
835                                 {
836                                         switch ( sty ) {
837                                         case ACL_STYLE_REGEX:
838                                                 Debug( LDAP_DEBUG_ANY, "%s: line %d: "
839                                                         "\"regex\" style implies \"expand\" modifier.\n",
840                                                         fname, lineno, 0 );
841                                                 goto fail;
842                                                 break;
843
844                                         case ACL_STYLE_EXPAND:
845                                                 break;
846
847                                         default:
848                                                 /* we'll see later if it's pertinent */
849                                                 expand = 1;
850                                                 break;
851                                         }
852                                 }
853
854                                 /* expand in <who> needs regex in <what> */
855                                 if ( ( sty == ACL_STYLE_EXPAND || expand )
856                                                 && a->acl_dn_style != ACL_STYLE_REGEX )
857                                 {
858                                         Debug( LDAP_DEBUG_CONFIG | LDAP_DEBUG_ACL, "%s: line %d: \"expand\" style "
859                                                 "or modifier used in conjunction with a non-regex <what> clause.\n",
860                                                 fname, lineno, 0 );
861                                                 goto fail;
862                                 }
863
864                                 if ( strncasecmp( left, "real", STRLENOF( "real" ) ) == 0 ) {
865                                         is_realdn = 1;
866                                         bdn = &b->a_realdn;
867                                         left += STRLENOF( "real" );
868                                 }
869
870                                 if ( strcasecmp( left, "*" ) == 0 ) {
871                                         if ( is_realdn ) {
872                                                 goto fail;
873                                         }
874
875                                         ber_str2bv( "*", STRLENOF( "*" ), 1, &bv );
876                                         sty = ACL_STYLE_REGEX;
877
878                                 } else if ( strcasecmp( left, "anonymous" ) == 0 ) {
879                                         ber_str2bv("anonymous", STRLENOF( "anonymous" ), 1, &bv);
880                                         sty = ACL_STYLE_ANONYMOUS;
881
882                                 } else if ( strcasecmp( left, "users" ) == 0 ) {
883                                         ber_str2bv("users", STRLENOF( "users" ), 1, &bv);
884                                         sty = ACL_STYLE_USERS;
885
886                                 } else if ( strcasecmp( left, "self" ) == 0 ) {
887                                         ber_str2bv("self", STRLENOF( "self" ), 1, &bv);
888                                         sty = ACL_STYLE_SELF;
889
890                                 } else if ( strcasecmp( left, "dn" ) == 0 ) {
891                                         if ( sty == ACL_STYLE_REGEX ) {
892                                                 bdn->a_style = ACL_STYLE_REGEX;
893                                                 if ( right == NULL ) {
894                                                         /* no '=' */
895                                                         ber_str2bv("users",
896                                                                 STRLENOF( "users" ),
897                                                                 1, &bv);
898                                                         bdn->a_style = ACL_STYLE_USERS;
899
900                                                 } else if (*right == '\0' ) {
901                                                         /* dn="" */
902                                                         ber_str2bv("anonymous",
903                                                                 STRLENOF( "anonymous" ),
904                                                                 1, &bv);
905                                                         bdn->a_style = ACL_STYLE_ANONYMOUS;
906
907                                                 } else if ( strcmp( right, "*" ) == 0 ) {
908                                                         /* dn=* */
909                                                         /* any or users?  users for now */
910                                                         ber_str2bv("users",
911                                                                 STRLENOF( "users" ),
912                                                                 1, &bv);
913                                                         bdn->a_style = ACL_STYLE_USERS;
914
915                                                 } else if ( strcmp( right, ".+" ) == 0
916                                                         || strcmp( right, "^.+" ) == 0
917                                                         || strcmp( right, ".+$" ) == 0
918                                                         || strcmp( right, "^.+$" ) == 0
919                                                         || strcmp( right, ".+$$" ) == 0
920                                                         || strcmp( right, "^.+$$" ) == 0 )
921                                                 {
922                                                         ber_str2bv("users",
923                                                                 STRLENOF( "users" ),
924                                                                 1, &bv);
925                                                         bdn->a_style = ACL_STYLE_USERS;
926
927                                                 } else if ( strcmp( right, ".*" ) == 0
928                                                         || strcmp( right, "^.*" ) == 0
929                                                         || strcmp( right, ".*$" ) == 0
930                                                         || strcmp( right, "^.*$" ) == 0
931                                                         || strcmp( right, ".*$$" ) == 0
932                                                         || strcmp( right, "^.*$$" ) == 0 )
933                                                 {
934                                                         ber_str2bv("*",
935                                                                 STRLENOF( "*" ),
936                                                                 1, &bv);
937
938                                                 } else {
939                                                         acl_regex_normalized_dn( right, &bv );
940                                                         if ( !ber_bvccmp( &bv, '*' ) ) {
941                                                                 regtest( fname, lineno, bv.bv_val );
942                                                         }
943                                                 }
944
945                                         } else if ( right == NULL || *right == '\0' ) {
946                                                 Debug( LDAP_DEBUG_ANY, "%s: line %d: "
947                                                         "missing \"=\" in (or value after) \"%s\" "
948                                                         "in by clause\n",
949                                                         fname, lineno, left );
950                                                 goto fail;
951
952                                         } else {
953                                                 ber_str2bv( right, 0, 1, &bv );
954                                         }
955
956                                 } else {
957                                         BER_BVZERO( &bv );
958                                 }
959
960                                 if ( !BER_BVISNULL( &bv ) ) {
961                                         if ( !BER_BVISEMPTY( &bdn->a_pat ) ) {
962                                                 Debug( LDAP_DEBUG_ANY,
963                                                         "%s: line %d: dn pattern already specified.\n",
964                                                         fname, lineno, 0 );
965                                                 goto fail;
966                                         }
967
968                                         if ( sty != ACL_STYLE_REGEX &&
969                                                         sty != ACL_STYLE_ANONYMOUS &&
970                                                         sty != ACL_STYLE_USERS &&
971                                                         sty != ACL_STYLE_SELF &&
972                                                         expand == 0 )
973                                         {
974                                                 rc = dnNormalize(0, NULL, NULL,
975                                                         &bv, &bdn->a_pat, NULL);
976                                                 if ( rc != LDAP_SUCCESS ) {
977                                                         Debug( LDAP_DEBUG_ANY,
978                                                                 "%s: line %d: bad DN \"%s\" in by DN clause\n",
979                                                                 fname, lineno, bv.bv_val );
980                                                         goto fail;
981                                                 }
982                                                 free( bv.bv_val );
983                                                 if ( sty == ACL_STYLE_BASE
984                                                         && be != NULL
985                                                         && !BER_BVISNULL( &be->be_rootndn )
986                                                         && dn_match( &bdn->a_pat, &be->be_rootndn ) )
987                                                 {
988                                                         Debug( LDAP_DEBUG_ANY,
989                                                                 "%s: line %d: rootdn is always granted "
990                                                                 "unlimited privileges.\n",
991                                                                 fname, lineno, 0 );
992                                                 }
993
994                                         } else {
995                                                 bdn->a_pat = bv;
996                                         }
997                                         bdn->a_style = sty;
998                                         if ( expand ) {
999                                                 char    *exp;
1000                                                 int     gotit = 0;
1001
1002                                                 for ( exp = strchr( bdn->a_pat.bv_val, '$' );
1003                                                         exp && (ber_len_t)(exp - bdn->a_pat.bv_val)
1004                                                                 < bdn->a_pat.bv_len;
1005                                                         exp = strchr( exp, '$' ) )
1006                                                 {
1007                                                         if ( isdigit( (unsigned char) exp[ 1 ] ) ) {
1008                                                                 gotit = 1;
1009                                                                 break;
1010                                                         }
1011                                                 }
1012
1013                                                 if ( gotit == 1 ) {
1014                                                         bdn->a_expand = expand;
1015
1016                                                 } else {
1017                                                         Debug( LDAP_DEBUG_ANY, "%s: line %d: "
1018                                                                 "\"expand\" used with no expansions in \"pattern\".\n",
1019                                                                 fname, lineno, 0 );
1020                                                         goto fail;
1021                                                 } 
1022                                         }
1023                                         if ( sty == ACL_STYLE_SELF ) {
1024                                                 bdn->a_self_level = level;
1025
1026                                         } else {
1027                                                 if ( level < 0 ) {
1028                                                         Debug( LDAP_DEBUG_ANY,
1029                                                                 "%s: line %d: bad negative level \"%d\" "
1030                                                                 "in by DN clause\n",
1031                                                                 fname, lineno, level );
1032                                                         goto fail;
1033                                                 } else if ( level == 1 ) {
1034                                                         Debug( LDAP_DEBUG_ANY,
1035                                                                 "%s: line %d: \"onelevel\" should be used "
1036                                                                 "instead of \"level{1}\" in by DN clause\n",
1037                                                                 fname, lineno, 0 );
1038                                                 } else if ( level == 0 && sty == ACL_STYLE_LEVEL ) {
1039                                                         Debug( LDAP_DEBUG_ANY,
1040                                                                 "%s: line %d: \"base\" should be used "
1041                                                                 "instead of \"level{0}\" in by DN clause\n",
1042                                                                 fname, lineno, 0 );
1043                                                 }
1044
1045                                                 bdn->a_level = level;
1046                                         }
1047                                         continue;
1048                                 }
1049
1050                                 if ( strcasecmp( left, "dnattr" ) == 0 ) {
1051                                         if ( right == NULL || right[0] == '\0' ) {
1052                                                 Debug( LDAP_DEBUG_ANY, "%s: line %d: "
1053                                                         "missing \"=\" in (or value after) \"%s\" "
1054                                                         "in by clause\n",
1055                                                         fname, lineno, left );
1056                                                 goto fail;
1057                                         }
1058
1059                                         if( bdn->a_at != NULL ) {
1060                                                 Debug( LDAP_DEBUG_ANY,
1061                                                         "%s: line %d: dnattr already specified.\n",
1062                                                         fname, lineno, 0 );
1063                                                 goto fail;
1064                                         }
1065
1066                                         rc = slap_str2ad( right, &bdn->a_at, &text );
1067
1068                                         if( rc != LDAP_SUCCESS ) {
1069                                                 char    buf[ SLAP_TEXT_BUFLEN ];
1070
1071                                                 snprintf( buf, sizeof( buf ),
1072                                                         "dnattr \"%s\": %s",
1073                                                         right, text );
1074                                                 Debug( LDAP_DEBUG_ANY,
1075                                                         "%s: line %d: %s\n",
1076                                                         fname, lineno, buf );
1077                                                 goto fail;
1078                                         }
1079
1080
1081                                         if( !is_at_syntax( bdn->a_at->ad_type,
1082                                                 SLAPD_DN_SYNTAX ) &&
1083                                                 !is_at_syntax( bdn->a_at->ad_type,
1084                                                 SLAPD_NAMEUID_SYNTAX ))
1085                                         {
1086                                                 char    buf[ SLAP_TEXT_BUFLEN ];
1087
1088                                                 snprintf( buf, sizeof( buf ),
1089                                                         "dnattr \"%s\": "
1090                                                         "inappropriate syntax: %s\n",
1091                                                         right,
1092                                                         bdn->a_at->ad_type->sat_syntax_oid );
1093                                                 Debug( LDAP_DEBUG_ANY,
1094                                                         "%s: line %d: %s\n",
1095                                                         fname, lineno, buf );
1096                                                 goto fail;
1097                                         }
1098
1099                                         if( bdn->a_at->ad_type->sat_equality == NULL ) {
1100                                                 Debug( LDAP_DEBUG_ANY,
1101                                                         "%s: line %d: dnattr \"%s\": "
1102                                                         "inappropriate matching (no EQUALITY)\n",
1103                                                         fname, lineno, right );
1104                                                 goto fail;
1105                                         }
1106
1107                                         continue;
1108                                 }
1109
1110                                 if ( strncasecmp( left, "group", STRLENOF( "group" ) ) == 0 ) {
1111                                         char *name = NULL;
1112                                         char *value = NULL;
1113
1114                                         switch ( sty ) {
1115                                         case ACL_STYLE_REGEX:
1116                                                 /* legacy, tolerated */
1117                                                 Debug( LDAP_DEBUG_CONFIG | LDAP_DEBUG_ACL,
1118                                                         "%s: line %d: "
1119                                                         "deprecated group style \"regex\"; "
1120                                                         "use \"expand\" instead.\n",
1121                                                         fname, lineno, 0 );
1122                                                 sty = ACL_STYLE_EXPAND;
1123                                                 break;
1124
1125                                         case ACL_STYLE_BASE:
1126                                                 /* legal, traditional */
1127                                         case ACL_STYLE_EXPAND:
1128                                                 /* legal, substring expansion; supersedes regex */
1129                                                 break;
1130
1131                                         default:
1132                                                 /* unknown */
1133                                                 Debug( LDAP_DEBUG_ANY,
1134                                                         "%s: line %d: "
1135                                                         "inappropriate style \"%s\" in by clause.\n",
1136                                                         fname, lineno, style );
1137                                                 goto fail;
1138                                         }
1139
1140                                         if ( right == NULL || right[0] == '\0' ) {
1141                                                 Debug( LDAP_DEBUG_ANY,
1142                                                         "%s: line %d: "
1143                                                         "missing \"=\" in (or value after) \"%s\" "
1144                                                         "in by clause.\n",
1145                                                         fname, lineno, left );
1146                                                 goto fail;
1147                                         }
1148
1149                                         if ( !BER_BVISEMPTY( &b->a_group_pat ) ) {
1150                                                 Debug( LDAP_DEBUG_ANY,
1151                                                         "%s: line %d: group pattern already specified.\n",
1152                                                         fname, lineno, 0 );
1153                                                 goto fail;
1154                                         }
1155
1156                                         /* format of string is
1157                                                 "group/objectClassValue/groupAttrName" */
1158                                         if ( ( value = strchr(left, '/') ) != NULL ) {
1159                                                 *value++ = '\0';
1160                                                 if ( *value && ( name = strchr( value, '/' ) ) != NULL ) {
1161                                                         *name++ = '\0';
1162                                                 }
1163                                         }
1164
1165                                         b->a_group_style = sty;
1166                                         if ( sty == ACL_STYLE_EXPAND ) {
1167                                                 acl_regex_normalized_dn( right, &bv );
1168                                                 if ( !ber_bvccmp( &bv, '*' ) ) {
1169                                                         regtest( fname, lineno, bv.bv_val );
1170                                                 }
1171                                                 b->a_group_pat = bv;
1172
1173                                         } else {
1174                                                 ber_str2bv( right, 0, 0, &bv );
1175                                                 rc = dnNormalize( 0, NULL, NULL, &bv,
1176                                                         &b->a_group_pat, NULL );
1177                                                 if ( rc != LDAP_SUCCESS ) {
1178                                                         Debug( LDAP_DEBUG_ANY,
1179                                                                 "%s: line %d: bad DN \"%s\".\n",
1180                                                                 fname, lineno, right );
1181                                                         goto fail;
1182                                                 }
1183                                         }
1184
1185                                         if ( value && *value ) {
1186                                                 b->a_group_oc = oc_find( value );
1187                                                 *--value = '/';
1188
1189                                                 if ( b->a_group_oc == NULL ) {
1190                                                         Debug( LDAP_DEBUG_ANY,
1191                                                                 "%s: line %d: group objectclass "
1192                                                                 "\"%s\" unknown.\n",
1193                                                                 fname, lineno, value );
1194                                                         goto fail;
1195                                                 }
1196
1197                                         } else {
1198                                                 b->a_group_oc = oc_find( SLAPD_GROUP_CLASS );
1199
1200                                                 if( b->a_group_oc == NULL ) {
1201                                                         Debug( LDAP_DEBUG_ANY,
1202                                                                 "%s: line %d: group default objectclass "
1203                                                                 "\"%s\" unknown.\n",
1204                                                                 fname, lineno, SLAPD_GROUP_CLASS );
1205                                                         goto fail;
1206                                                 }
1207                                         }
1208
1209                                         if ( is_object_subclass( slap_schema.si_oc_referral,
1210                                                 b->a_group_oc ) )
1211                                         {
1212                                                 Debug( LDAP_DEBUG_ANY,
1213                                                         "%s: line %d: group objectclass \"%s\" "
1214                                                         "is subclass of referral.\n",
1215                                                         fname, lineno, value );
1216                                                 goto fail;
1217                                         }
1218
1219                                         if ( is_object_subclass( slap_schema.si_oc_alias,
1220                                                 b->a_group_oc ) )
1221                                         {
1222                                                 Debug( LDAP_DEBUG_ANY,
1223                                                         "%s: line %d: group objectclass \"%s\" "
1224                                                         "is subclass of alias.\n",
1225                                                         fname, lineno, value );
1226                                                 goto fail;
1227                                         }
1228
1229                                         if ( name && *name ) {
1230                                                 rc = slap_str2ad( name, &b->a_group_at, &text );
1231
1232                                                 if( rc != LDAP_SUCCESS ) {
1233                                                         char    buf[ SLAP_TEXT_BUFLEN ];
1234
1235                                                         snprintf( buf, sizeof( buf ),
1236                                                                 "group \"%s\": %s.",
1237                                                                 right, text );
1238                                                         Debug( LDAP_DEBUG_ANY,
1239                                                                 "%s: line %d: %s\n",
1240                                                                 fname, lineno, buf );
1241                                                         goto fail;
1242                                                 }
1243                                                 *--name = '/';
1244
1245                                         } else {
1246                                                 rc = slap_str2ad( SLAPD_GROUP_ATTR, &b->a_group_at, &text );
1247
1248                                                 if ( rc != LDAP_SUCCESS ) {
1249                                                         char    buf[ SLAP_TEXT_BUFLEN ];
1250
1251                                                         snprintf( buf, sizeof( buf ),
1252                                                                 "group \"%s\": %s.",
1253                                                                 SLAPD_GROUP_ATTR, text );
1254                                                         Debug( LDAP_DEBUG_ANY,
1255                                                                 "%s: line %d: %s\n",
1256                                                                 fname, lineno, buf );
1257                                                         goto fail;
1258                                                 }
1259                                         }
1260
1261                                         if ( !is_at_syntax( b->a_group_at->ad_type,
1262                                                 SLAPD_DN_SYNTAX ) &&
1263                                                 !is_at_syntax( b->a_group_at->ad_type,
1264                                                 SLAPD_NAMEUID_SYNTAX ) &&
1265                                                 !is_at_subtype( b->a_group_at->ad_type, slap_schema.si_ad_labeledURI->ad_type ) )
1266                                         {
1267                                                 char    buf[ SLAP_TEXT_BUFLEN ];
1268
1269                                                 snprintf( buf, sizeof( buf ),
1270                                                         "group \"%s\": inappropriate syntax: %s.",
1271                                                         right,
1272                                                         b->a_group_at->ad_type->sat_syntax_oid );
1273                                                 Debug( LDAP_DEBUG_ANY,
1274                                                         "%s: line %d: %s\n",
1275                                                         fname, lineno, buf );
1276                                                 goto fail;
1277                                         }
1278
1279
1280                                         {
1281                                                 int rc;
1282                                                 ObjectClass *ocs[2];
1283
1284                                                 ocs[0] = b->a_group_oc;
1285                                                 ocs[1] = NULL;
1286
1287                                                 rc = oc_check_allowed( b->a_group_at->ad_type,
1288                                                         ocs, NULL );
1289
1290                                                 if( rc != 0 ) {
1291                                                         char    buf[ SLAP_TEXT_BUFLEN ];
1292
1293                                                         snprintf( buf, sizeof( buf ),
1294                                                                 "group: \"%s\" not allowed by \"%s\".",
1295                                                                 b->a_group_at->ad_cname.bv_val,
1296                                                                 b->a_group_oc->soc_oid );
1297                                                         Debug( LDAP_DEBUG_ANY, "%s: line %d: %s\n",
1298                                                                 fname, lineno, buf );
1299                                                         goto fail;
1300                                                 }
1301                                         }
1302                                         continue;
1303                                 }
1304
1305                                 if ( strcasecmp( left, "peername" ) == 0 ) {
1306                                         switch ( sty ) {
1307                                         case ACL_STYLE_REGEX:
1308                                         case ACL_STYLE_BASE:
1309                                                 /* legal, traditional */
1310                                         case ACL_STYLE_EXPAND:
1311                                                 /* cheap replacement to regex for simple expansion */
1312                                         case ACL_STYLE_IP:
1313                                         case ACL_STYLE_IPV6:
1314                                         case ACL_STYLE_PATH:
1315                                                 /* legal, peername specific */
1316                                                 break;
1317
1318                                         default:
1319                                                 Debug( LDAP_DEBUG_ANY, "%s: line %d: "
1320                                                         "inappropriate style \"%s\" in by clause.\n",
1321                                                     fname, lineno, style );
1322                                                 goto fail;
1323                                         }
1324
1325                                         if ( right == NULL || right[0] == '\0' ) {
1326                                                 Debug( LDAP_DEBUG_ANY, "%s: line %d: "
1327                                                         "missing \"=\" in (or value after) \"%s\" "
1328                                                         "in by clause.\n",
1329                                                         fname, lineno, left );
1330                                                 goto fail;
1331                                         }
1332
1333                                         if ( !BER_BVISEMPTY( &b->a_peername_pat ) ) {
1334                                                 Debug( LDAP_DEBUG_ANY, "%s: line %d: "
1335                                                         "peername pattern already specified.\n",
1336                                                         fname, lineno, 0 );
1337                                                 goto fail;
1338                                         }
1339
1340                                         b->a_peername_style = sty;
1341                                         if ( sty == ACL_STYLE_REGEX ) {
1342                                                 acl_regex_normalized_dn( right, &bv );
1343                                                 if ( !ber_bvccmp( &bv, '*' ) ) {
1344                                                         regtest( fname, lineno, bv.bv_val );
1345                                                 }
1346                                                 b->a_peername_pat = bv;
1347
1348                                         } else {
1349                                                 ber_str2bv( right, 0, 1, &b->a_peername_pat );
1350
1351                                                 if ( sty == ACL_STYLE_IP ) {
1352                                                         char            *addr = NULL,
1353                                                                         *mask = NULL,
1354                                                                         *port = NULL;
1355
1356                                                         split( right, '{', &addr, &port );
1357                                                         split( addr, '%', &addr, &mask );
1358
1359                                                         b->a_peername_addr = inet_addr( addr );
1360                                                         if ( b->a_peername_addr == (unsigned long)(-1) ) {
1361                                                                 /* illegal address */
1362                                                                 Debug( LDAP_DEBUG_ANY, "%s: line %d: "
1363                                                                         "illegal peername address \"%s\".\n",
1364                                                                         fname, lineno, addr );
1365                                                                 goto fail;
1366                                                         }
1367
1368                                                         b->a_peername_mask = (unsigned long)(-1);
1369                                                         if ( mask != NULL ) {
1370                                                                 b->a_peername_mask = inet_addr( mask );
1371                                                                 if ( b->a_peername_mask ==
1372                                                                         (unsigned long)(-1) )
1373                                                                 {
1374                                                                         /* illegal mask */
1375                                                                         Debug( LDAP_DEBUG_ANY, "%s: line %d: "
1376                                                                                 "illegal peername address mask "
1377                                                                                 "\"%s\".\n",
1378                                                                                 fname, lineno, mask );
1379                                                                         goto fail;
1380                                                                 }
1381                                                         } 
1382
1383                                                         b->a_peername_port = -1;
1384                                                         if ( port ) {
1385                                                                 char    *end = NULL;
1386
1387                                                                 b->a_peername_port = strtol( port, &end, 10 );
1388                                                                 if ( end == port || end[0] != '}' ) {
1389                                                                         /* illegal port */
1390                                                                         Debug( LDAP_DEBUG_ANY, "%s: line %d: "
1391                                                                                 "illegal peername port specification "
1392                                                                                 "\"{%s}\".\n",
1393                                                                                 fname, lineno, port );
1394                                                                         goto fail;
1395                                                                 }
1396                                                         }
1397
1398 #ifdef LDAP_PF_INET6
1399                                                 } else if ( sty == ACL_STYLE_IPV6 ) {
1400                                                         char            *addr = NULL,
1401                                                                         *mask = NULL,
1402                                                                         *port = NULL;
1403
1404                                                         split( right, '{', &addr, &port );
1405                                                         split( addr, '%', &addr, &mask );
1406
1407                                                         if ( inet_pton( AF_INET6, addr, &b->a_peername_addr6 ) != 1 ) {
1408                                                                 /* illegal address */
1409                                                                 Debug( LDAP_DEBUG_ANY, "%s: line %d: "
1410                                                                         "illegal peername address \"%s\".\n",
1411                                                                         fname, lineno, addr );
1412                                                                 goto fail;
1413                                                         }
1414
1415                                                         if ( mask == NULL ) {
1416                                                                 mask = "FFFF:FFFF:FFFF:FFFF:FFFF:FFFF:FFFF:FFFF";
1417                                                         }
1418
1419                                                         if ( inet_pton( AF_INET6, mask, &b->a_peername_mask6 ) != 1 ) {
1420                                                                 /* illegal mask */
1421                                                                 Debug( LDAP_DEBUG_ANY, "%s: line %d: "
1422                                                                         "illegal peername address mask "
1423                                                                         "\"%s\".\n",
1424                                                                         fname, lineno, mask );
1425                                                                 goto fail;
1426                                                         }
1427
1428                                                         b->a_peername_port = -1;
1429                                                         if ( port ) {
1430                                                                 char    *end = NULL;
1431
1432                                                                 b->a_peername_port = strtol( port, &end, 10 );
1433                                                                 if ( end == port || end[0] != '}' ) {
1434                                                                         /* illegal port */
1435                                                                         Debug( LDAP_DEBUG_ANY, "%s: line %d: "
1436                                                                                 "illegal peername port specification "
1437                                                                                 "\"{%s}\".\n",
1438                                                                                 fname, lineno, port );
1439                                                                         goto fail;
1440                                                                 }
1441                                                         }
1442 #endif /* LDAP_PF_INET6 */
1443                                                 }
1444                                         }
1445                                         continue;
1446                                 }
1447
1448                                 if ( strcasecmp( left, "sockname" ) == 0 ) {
1449                                         switch ( sty ) {
1450                                         case ACL_STYLE_REGEX:
1451                                         case ACL_STYLE_BASE:
1452                                                 /* legal, traditional */
1453                                         case ACL_STYLE_EXPAND:
1454                                                 /* cheap replacement to regex for simple expansion */
1455                                                 break;
1456
1457                                         default:
1458                                                 /* unknown */
1459                                                 Debug( LDAP_DEBUG_ANY, "%s: line %d: "
1460                                                         "inappropriate style \"%s\" in by clause\n",
1461                                                     fname, lineno, style );
1462                                                 goto fail;
1463                                         }
1464
1465                                         if ( right == NULL || right[0] == '\0' ) {
1466                                                 Debug( LDAP_DEBUG_ANY, "%s: line %d: "
1467                                                         "missing \"=\" in (or value after) \"%s\" "
1468                                                         "in by clause\n",
1469                                                         fname, lineno, left );
1470                                                 goto fail;
1471                                         }
1472
1473                                         if ( !BER_BVISNULL( &b->a_sockname_pat ) ) {
1474                                                 Debug( LDAP_DEBUG_ANY, "%s: line %d: "
1475                                                         "sockname pattern already specified.\n",
1476                                                         fname, lineno, 0 );
1477                                                 goto fail;
1478                                         }
1479
1480                                         b->a_sockname_style = sty;
1481                                         if ( sty == ACL_STYLE_REGEX ) {
1482                                                 acl_regex_normalized_dn( right, &bv );
1483                                                 if ( !ber_bvccmp( &bv, '*' ) ) {
1484                                                         regtest( fname, lineno, bv.bv_val );
1485                                                 }
1486                                                 b->a_sockname_pat = bv;
1487                                                 
1488                                         } else {
1489                                                 ber_str2bv( right, 0, 1, &b->a_sockname_pat );
1490                                         }
1491                                         continue;
1492                                 }
1493
1494                                 if ( strcasecmp( left, "domain" ) == 0 ) {
1495                                         switch ( sty ) {
1496                                         case ACL_STYLE_REGEX:
1497                                         case ACL_STYLE_BASE:
1498                                         case ACL_STYLE_SUBTREE:
1499                                                 /* legal, traditional */
1500                                                 break;
1501
1502                                         case ACL_STYLE_EXPAND:
1503                                                 /* tolerated: means exact,expand */
1504                                                 if ( expand ) {
1505                                                         Debug( LDAP_DEBUG_ANY,
1506                                                                 "%s: line %d: "
1507                                                                 "\"expand\" modifier "
1508                                                                 "with \"expand\" style.\n",
1509                                                                 fname, lineno, 0 );
1510                                                 }
1511                                                 sty = ACL_STYLE_BASE;
1512                                                 expand = 1;
1513                                                 break;
1514
1515                                         default:
1516                                                 /* unknown */
1517                                                 Debug( LDAP_DEBUG_ANY, "%s: line %d: "
1518                                                         "inappropriate style \"%s\" in by clause.\n",
1519                                                     fname, lineno, style );
1520                                                 goto fail;
1521                                         }
1522
1523                                         if ( right == NULL || right[0] == '\0' ) {
1524                                                 Debug( LDAP_DEBUG_ANY, "%s: line %d: "
1525                                                         "missing \"=\" in (or value after) \"%s\" "
1526                                                         "in by clause.\n",
1527                                                         fname, lineno, left );
1528                                                 goto fail;
1529                                         }
1530
1531                                         if ( !BER_BVISEMPTY( &b->a_domain_pat ) ) {
1532                                                 Debug( LDAP_DEBUG_ANY,
1533                                                         "%s: line %d: domain pattern already specified.\n",
1534                                                         fname, lineno, 0 );
1535                                                 goto fail;
1536                                         }
1537
1538                                         b->a_domain_style = sty;
1539                                         b->a_domain_expand = expand;
1540                                         if ( sty == ACL_STYLE_REGEX ) {
1541                                                 acl_regex_normalized_dn( right, &bv );
1542                                                 if ( !ber_bvccmp( &bv, '*' ) ) {
1543                                                         regtest( fname, lineno, bv.bv_val );
1544                                                 }
1545                                                 b->a_domain_pat = bv;
1546
1547                                         } else {
1548                                                 ber_str2bv( right, 0, 1, &b->a_domain_pat );
1549                                         }
1550                                         continue;
1551                                 }
1552
1553                                 if ( strcasecmp( left, "sockurl" ) == 0 ) {
1554                                         switch ( sty ) {
1555                                         case ACL_STYLE_REGEX:
1556                                         case ACL_STYLE_BASE:
1557                                                 /* legal, traditional */
1558                                         case ACL_STYLE_EXPAND:
1559                                                 /* cheap replacement to regex for simple expansion */
1560                                                 break;
1561
1562                                         default:
1563                                                 /* unknown */
1564                                                 Debug( LDAP_DEBUG_ANY, "%s: line %d: "
1565                                                         "inappropriate style \"%s\" in by clause.\n",
1566                                                     fname, lineno, style );
1567                                                 goto fail;
1568                                         }
1569
1570                                         if ( right == NULL || right[0] == '\0' ) {
1571                                                 Debug( LDAP_DEBUG_ANY, "%s: line %d: "
1572                                                         "missing \"=\" in (or value after) \"%s\" "
1573                                                         "in by clause.\n",
1574                                                         fname, lineno, left );
1575                                                 goto fail;
1576                                         }
1577
1578                                         if ( !BER_BVISEMPTY( &b->a_sockurl_pat ) ) {
1579                                                 Debug( LDAP_DEBUG_ANY,
1580                                                         "%s: line %d: sockurl pattern already specified.\n",
1581                                                         fname, lineno, 0 );
1582                                                 goto fail;
1583                                         }
1584
1585                                         b->a_sockurl_style = sty;
1586                                         if ( sty == ACL_STYLE_REGEX ) {
1587                                                 acl_regex_normalized_dn( right, &bv );
1588                                                 if ( !ber_bvccmp( &bv, '*' ) ) {
1589                                                         regtest( fname, lineno, bv.bv_val );
1590                                                 }
1591                                                 b->a_sockurl_pat = bv;
1592                                                 
1593                                         } else {
1594                                                 ber_str2bv( right, 0, 1, &b->a_sockurl_pat );
1595                                         }
1596                                         continue;
1597                                 }
1598
1599                                 if ( strcasecmp( left, "set" ) == 0 ) {
1600                                         switch ( sty ) {
1601                                                 /* deprecated */
1602                                         case ACL_STYLE_REGEX:
1603                                                 Debug( LDAP_DEBUG_CONFIG | LDAP_DEBUG_ACL,
1604                                                         "%s: line %d: "
1605                                                         "deprecated set style "
1606                                                         "\"regex\" in <by> clause; "
1607                                                         "use \"expand\" instead.\n",
1608                                                         fname, lineno, 0 );
1609                                                 sty = ACL_STYLE_EXPAND;
1610                                                 /* FALLTHRU */
1611                                                 
1612                                         case ACL_STYLE_BASE:
1613                                         case ACL_STYLE_EXPAND:
1614                                                 break;
1615
1616                                         default:
1617                                                 Debug( LDAP_DEBUG_ANY, "%s: line %d: "
1618                                                         "inappropriate style \"%s\" in by clause.\n",
1619                                                         fname, lineno, style );
1620                                                 goto fail;
1621                                         }
1622
1623                                         if ( !BER_BVISEMPTY( &b->a_set_pat ) ) {
1624                                                 Debug( LDAP_DEBUG_ANY,
1625                                                         "%s: line %d: set attribute already specified.\n",
1626                                                         fname, lineno, 0 );
1627                                                 goto fail;
1628                                         }
1629
1630                                         if ( right == NULL || *right == '\0' ) {
1631                                                 Debug( LDAP_DEBUG_ANY,
1632                                                         "%s: line %d: no set is defined.\n",
1633                                                         fname, lineno, 0 );
1634                                                 goto fail;
1635                                         }
1636
1637                                         b->a_set_style = sty;
1638                                         ber_str2bv( right, 0, 1, &b->a_set_pat );
1639
1640                                         continue;
1641                                 }
1642
1643 #ifdef SLAP_DYNACL
1644                                 {
1645                                         char            *name = NULL,
1646                                                         *opts = NULL;
1647
1648 #if 1 /* tolerate legacy "aci" <who> */
1649                                         if ( strcasecmp( left, "aci" ) == 0 ) {
1650                                                 Debug( LDAP_DEBUG_ANY, "%s: line %d: "
1651                                                         "undocumented deprecated \"aci\" directive "
1652                                                         "is superseded by \"dynacl/aci\".\n",
1653                                                         fname, lineno, 0 );
1654                                                 name = "aci";
1655                                                 
1656                                         } else
1657 #endif /* tolerate legacy "aci" <who> */
1658                                         if ( strncasecmp( left, "dynacl/", STRLENOF( "dynacl/" ) ) == 0 ) {
1659                                                 name = &left[ STRLENOF( "dynacl/" ) ];
1660                                                 opts = strchr( name, '/' );
1661                                                 if ( opts ) {
1662                                                         opts[ 0 ] = '\0';
1663                                                         opts++;
1664                                                 }
1665                                         }
1666
1667                                         if ( name ) {
1668                                                 if ( slap_dynacl_config( fname, lineno, b, name, opts, sty, right ) ) {
1669                                                         Debug( LDAP_DEBUG_ANY, "%s: line %d: "
1670                                                                 "unable to configure dynacl \"%s\".\n",
1671                                                                 fname, lineno, name );
1672                                                         goto fail;
1673                                                 }
1674
1675                                                 continue;
1676                                         }
1677                                 }
1678 #endif /* SLAP_DYNACL */
1679
1680                                 if ( strcasecmp( left, "ssf" ) == 0 ) {
1681                                         if ( sty != ACL_STYLE_REGEX && sty != ACL_STYLE_BASE ) {
1682                                                 Debug( LDAP_DEBUG_ANY, "%s: line %d: "
1683                                                         "inappropriate style \"%s\" in by clause.\n",
1684                                                     fname, lineno, style );
1685                                                 goto fail;
1686                                         }
1687
1688                                         if ( b->a_authz.sai_ssf ) {
1689                                                 Debug( LDAP_DEBUG_ANY,
1690                                                         "%s: line %d: ssf attribute already specified.\n",
1691                                                         fname, lineno, 0 );
1692                                                 goto fail;
1693                                         }
1694
1695                                         if ( right == NULL || *right == '\0' ) {
1696                                                 Debug( LDAP_DEBUG_ANY,
1697                                                         "%s: line %d: no ssf is defined.\n",
1698                                                         fname, lineno, 0 );
1699                                                 goto fail;
1700                                         }
1701
1702                                         if ( lutil_atou( &b->a_authz.sai_ssf, right ) != 0 ) {
1703                                                 Debug( LDAP_DEBUG_ANY,
1704                                                         "%s: line %d: unable to parse ssf value (%s).\n",
1705                                                         fname, lineno, right );
1706                                                 goto fail;
1707                                         }
1708
1709                                         if ( !b->a_authz.sai_ssf ) {
1710                                                 Debug( LDAP_DEBUG_ANY,
1711                                                         "%s: line %d: invalid ssf value (%s).\n",
1712                                                         fname, lineno, right );
1713                                                 goto fail;
1714                                         }
1715                                         continue;
1716                                 }
1717
1718                                 if ( strcasecmp( left, "transport_ssf" ) == 0 ) {
1719                                         if ( sty != ACL_STYLE_REGEX && sty != ACL_STYLE_BASE ) {
1720                                                 Debug( LDAP_DEBUG_ANY, "%s: line %d: "
1721                                                         "inappropriate style \"%s\" in by clause.\n",
1722                                                         fname, lineno, style );
1723                                                 goto fail;
1724                                         }
1725
1726                                         if ( b->a_authz.sai_transport_ssf ) {
1727                                                 Debug( LDAP_DEBUG_ANY, "%s: line %d: "
1728                                                         "transport_ssf attribute already specified.\n",
1729                                                         fname, lineno, 0 );
1730                                                 goto fail;
1731                                         }
1732
1733                                         if ( right == NULL || *right == '\0' ) {
1734                                                 Debug( LDAP_DEBUG_ANY,
1735                                                         "%s: line %d: no transport_ssf is defined.\n",
1736                                                         fname, lineno, 0 );
1737                                                 goto fail;
1738                                         }
1739
1740                                         if ( lutil_atou( &b->a_authz.sai_transport_ssf, right ) != 0 ) {
1741                                                 Debug( LDAP_DEBUG_ANY, "%s: line %d: "
1742                                                         "unable to parse transport_ssf value (%s).\n",
1743                                                         fname, lineno, right );
1744                                                 goto fail;
1745                                         }
1746
1747                                         if ( !b->a_authz.sai_transport_ssf ) {
1748                                                 Debug( LDAP_DEBUG_ANY,
1749                                                         "%s: line %d: invalid transport_ssf value (%s).\n",
1750                                                         fname, lineno, right );
1751                                                 goto fail;
1752                                         }
1753                                         continue;
1754                                 }
1755
1756                                 if ( strcasecmp( left, "tls_ssf" ) == 0 ) {
1757                                         if ( sty != ACL_STYLE_REGEX && sty != ACL_STYLE_BASE ) {
1758                                                 Debug( LDAP_DEBUG_ANY, "%s: line %d: "
1759                                                         "inappropriate style \"%s\" in by clause.\n",
1760                                                         fname, lineno, style );
1761                                                 goto fail;
1762                                         }
1763
1764                                         if ( b->a_authz.sai_tls_ssf ) {
1765                                                 Debug( LDAP_DEBUG_ANY, "%s: line %d: "
1766                                                         "tls_ssf attribute already specified.\n",
1767                                                         fname, lineno, 0 );
1768                                                 goto fail;
1769                                         }
1770
1771                                         if ( right == NULL || *right == '\0' ) {
1772                                                 Debug( LDAP_DEBUG_ANY,
1773                                                         "%s: line %d: no tls_ssf is defined\n",
1774                                                         fname, lineno, 0 );
1775                                                 goto fail;
1776                                         }
1777
1778                                         if ( lutil_atou( &b->a_authz.sai_tls_ssf, right ) != 0 ) {
1779                                                 Debug( LDAP_DEBUG_ANY, "%s: line %d: "
1780                                                         "unable to parse tls_ssf value (%s).\n",
1781                                                         fname, lineno, right );
1782                                                 goto fail;
1783                                         }
1784
1785                                         if ( !b->a_authz.sai_tls_ssf ) {
1786                                                 Debug( LDAP_DEBUG_ANY,
1787                                                         "%s: line %d: invalid tls_ssf value (%s).\n",
1788                                                         fname, lineno, right );
1789                                                 goto fail;
1790                                         }
1791                                         continue;
1792                                 }
1793
1794                                 if ( strcasecmp( left, "sasl_ssf" ) == 0 ) {
1795                                         if ( sty != ACL_STYLE_REGEX && sty != ACL_STYLE_BASE ) {
1796                                                 Debug( LDAP_DEBUG_ANY, "%s: line %d: "
1797                                                         "inappropriate style \"%s\" in by clause.\n",
1798                                                         fname, lineno, style );
1799                                                 goto fail;
1800                                         }
1801
1802                                         if ( b->a_authz.sai_sasl_ssf ) {
1803                                                 Debug( LDAP_DEBUG_ANY, "%s: line %d: "
1804                                                         "sasl_ssf attribute already specified.\n",
1805                                                         fname, lineno, 0 );
1806                                                 goto fail;
1807                                         }
1808
1809                                         if ( right == NULL || *right == '\0' ) {
1810                                                 Debug( LDAP_DEBUG_ANY,
1811                                                         "%s: line %d: no sasl_ssf is defined.\n",
1812                                                         fname, lineno, 0 );
1813                                                 goto fail;
1814                                         }
1815
1816                                         if ( lutil_atou( &b->a_authz.sai_sasl_ssf, right ) != 0 ) {
1817                                                 Debug( LDAP_DEBUG_ANY, "%s: line %d: "
1818                                                         "unable to parse sasl_ssf value (%s).\n",
1819                                                         fname, lineno, right );
1820                                                 goto fail;
1821                                         }
1822
1823                                         if ( !b->a_authz.sai_sasl_ssf ) {
1824                                                 Debug( LDAP_DEBUG_ANY,
1825                                                         "%s: line %d: invalid sasl_ssf value (%s).\n",
1826                                                         fname, lineno, right );
1827                                                 goto fail;
1828                                         }
1829                                         continue;
1830                                 }
1831
1832                                 if ( right != NULL ) {
1833                                         /* unsplit */
1834                                         right[-1] = '=';
1835                                 }
1836                                 break;
1837                         }
1838
1839                         if ( i == argc || ( strcasecmp( left, "stop" ) == 0 ) ) { 
1840                                 /* out of arguments or plain stop */
1841
1842                                 ACL_PRIV_ASSIGN( b->a_access_mask, ACL_PRIV_ADDITIVE );
1843                                 ACL_PRIV_SET( b->a_access_mask, ACL_PRIV_NONE);
1844                                 b->a_type = ACL_STOP;
1845
1846                                 access_append( &a->acl_access, b );
1847                                 continue;
1848                         }
1849
1850                         if ( strcasecmp( left, "continue" ) == 0 ) {
1851                                 /* plain continue */
1852
1853                                 ACL_PRIV_ASSIGN( b->a_access_mask, ACL_PRIV_ADDITIVE );
1854                                 ACL_PRIV_SET( b->a_access_mask, ACL_PRIV_NONE);
1855                                 b->a_type = ACL_CONTINUE;
1856
1857                                 access_append( &a->acl_access, b );
1858                                 continue;
1859                         }
1860
1861                         if ( strcasecmp( left, "break" ) == 0 ) {
1862                                 /* plain continue */
1863
1864                                 ACL_PRIV_ASSIGN(b->a_access_mask, ACL_PRIV_ADDITIVE);
1865                                 ACL_PRIV_SET( b->a_access_mask, ACL_PRIV_NONE);
1866                                 b->a_type = ACL_BREAK;
1867
1868                                 access_append( &a->acl_access, b );
1869                                 continue;
1870                         }
1871
1872                         if ( strcasecmp( left, "by" ) == 0 ) {
1873                                 /* we've gone too far */
1874                                 --i;
1875                                 ACL_PRIV_ASSIGN( b->a_access_mask, ACL_PRIV_ADDITIVE );
1876                                 ACL_PRIV_SET( b->a_access_mask, ACL_PRIV_NONE);
1877                                 b->a_type = ACL_STOP;
1878
1879                                 access_append( &a->acl_access, b );
1880                                 continue;
1881                         }
1882
1883                         /* get <access> */
1884                         {
1885                                 char    *lleft = left;
1886
1887                                 if ( strncasecmp( left, "self", STRLENOF( "self" ) ) == 0 ) {
1888                                         b->a_dn_self = 1;
1889                                         lleft = &left[ STRLENOF( "self" ) ];
1890
1891                                 } else if ( strncasecmp( left, "realself", STRLENOF( "realself" ) ) == 0 ) {
1892                                         b->a_realdn_self = 1;
1893                                         lleft = &left[ STRLENOF( "realself" ) ];
1894                                 }
1895
1896                                 ACL_PRIV_ASSIGN( b->a_access_mask, str2accessmask( lleft ) );
1897                         }
1898
1899                         if ( ACL_IS_INVALID( b->a_access_mask ) ) {
1900                                 Debug( LDAP_DEBUG_ANY,
1901                                         "%s: line %d: expecting <access> got \"%s\".\n",
1902                                         fname, lineno, left );
1903                                 goto fail;
1904                         }
1905
1906                         b->a_type = ACL_STOP;
1907
1908                         if ( ++i == argc ) {
1909                                 /* out of arguments or plain stop */
1910                                 access_append( &a->acl_access, b );
1911                                 continue;
1912                         }
1913
1914                         if ( strcasecmp( argv[i], "continue" ) == 0 ) {
1915                                 /* plain continue */
1916                                 b->a_type = ACL_CONTINUE;
1917
1918                         } else if ( strcasecmp( argv[i], "break" ) == 0 ) {
1919                                 /* plain continue */
1920                                 b->a_type = ACL_BREAK;
1921
1922                         } else if ( strcasecmp( argv[i], "stop" ) != 0 ) {
1923                                 /* gone to far */
1924                                 i--;
1925                         }
1926
1927                         access_append( &a->acl_access, b );
1928                         b = NULL;
1929
1930                 } else {
1931                         Debug( LDAP_DEBUG_ANY,
1932                                 "%s: line %d: expecting \"to\" "
1933                                 "or \"by\" got \"%s\"\n",
1934                                 fname, lineno, argv[i] );
1935                         goto fail;
1936                 }
1937         }
1938
1939         /* if we have no real access clause, complain and do nothing */
1940         if ( a == NULL ) {
1941                 Debug( LDAP_DEBUG_ANY, "%s: line %d: "
1942                         "warning: no access clause(s) specified in access line.\n",
1943                         fname, lineno, 0 );
1944                 goto fail;
1945
1946         } else {
1947 #ifdef LDAP_DEBUG
1948                 if ( slap_debug & LDAP_DEBUG_ACL ) {
1949                         print_acl( be, a );
1950                 }
1951 #endif
1952         
1953                 if ( a->acl_access == NULL ) {
1954                         Debug( LDAP_DEBUG_ANY, "%s: line %d: "
1955                                 "warning: no by clause(s) specified in access line.\n",
1956                                 fname, lineno, 0 );
1957                         goto fail;
1958                 }
1959
1960                 if ( be != NULL ) {
1961                         if ( be->be_nsuffix == NULL ) {
1962                                 Debug( LDAP_DEBUG_ACL, "%s: line %d: warning: "
1963                                         "scope checking needs suffix before ACLs.\n",
1964                                         fname, lineno, 0 );
1965                                 /* go ahead, since checking is not authoritative */
1966                         } else if ( !BER_BVISNULL( &be->be_nsuffix[ 1 ] ) ) {
1967                                 Debug( LDAP_DEBUG_ACL, "%s: line %d: warning: "
1968                                         "scope checking only applies to single-valued "
1969                                         "suffix databases\n",
1970                                         fname, lineno, 0 );
1971                                 /* go ahead, since checking is not authoritative */
1972                         } else {
1973                                 switch ( check_scope( be, a ) ) {
1974                                 case ACL_SCOPE_UNKNOWN:
1975                                         Debug( LDAP_DEBUG_ACL, "%s: line %d: warning: "
1976                                                 "cannot assess the validity of the ACL scope within "
1977                                                 "backend naming context\n",
1978                                                 fname, lineno, 0 );
1979                                         break;
1980
1981                                 case ACL_SCOPE_WARN:
1982                                         Debug( LDAP_DEBUG_ACL, "%s: line %d: warning: "
1983                                                 "ACL could be out of scope within backend naming context\n",
1984                                                 fname, lineno, 0 );
1985                                         break;
1986
1987                                 case ACL_SCOPE_PARTIAL:
1988                                         Debug( LDAP_DEBUG_ACL, "%s: line %d: warning: "
1989                                                 "ACL appears to be partially out of scope within "
1990                                                 "backend naming context\n",
1991                                                 fname, lineno, 0 );
1992                                         break;
1993         
1994                                 case ACL_SCOPE_ERR:
1995                                         Debug( LDAP_DEBUG_ACL, "%s: line %d: warning: "
1996                                                 "ACL appears to be out of scope within "
1997                                                 "backend naming context\n",
1998                                                 fname, lineno, 0 );
1999                                         break;
2000
2001                                 default:
2002                                         break;
2003                                 }
2004                         }
2005                         acl_append( &be->be_acl, a, pos );
2006
2007                 } else {
2008                         acl_append( &frontendDB->be_acl, a, pos );
2009                 }
2010         }
2011
2012         return 0;
2013
2014 fail:
2015         if ( b ) access_free( b );
2016         if ( a ) acl_free( a );
2017         return acl_usage();
2018 }
2019
2020 char *
2021 accessmask2str( slap_mask_t mask, char *buf, int debug )
2022 {
2023         int     none = 1;
2024         char    *ptr = buf;
2025
2026         assert( buf != NULL );
2027
2028         if ( ACL_IS_INVALID( mask ) ) {
2029                 return "invalid";
2030         }
2031
2032         buf[0] = '\0';
2033
2034         if ( ACL_IS_LEVEL( mask ) ) {
2035                 if ( ACL_LVL_IS_NONE(mask) ) {
2036                         ptr = lutil_strcopy( ptr, "none" );
2037
2038                 } else if ( ACL_LVL_IS_DISCLOSE(mask) ) {
2039                         ptr = lutil_strcopy( ptr, "disclose" );
2040
2041                 } else if ( ACL_LVL_IS_AUTH(mask) ) {
2042                         ptr = lutil_strcopy( ptr, "auth" );
2043
2044                 } else if ( ACL_LVL_IS_COMPARE(mask) ) {
2045                         ptr = lutil_strcopy( ptr, "compare" );
2046
2047                 } else if ( ACL_LVL_IS_SEARCH(mask) ) {
2048                         ptr = lutil_strcopy( ptr, "search" );
2049
2050                 } else if ( ACL_LVL_IS_READ(mask) ) {
2051                         ptr = lutil_strcopy( ptr, "read" );
2052
2053                 } else if ( ACL_LVL_IS_WRITE(mask) ) {
2054                         ptr = lutil_strcopy( ptr, "write" );
2055
2056                 } else if ( ACL_LVL_IS_WADD(mask) ) {
2057                         ptr = lutil_strcopy( ptr, "add" );
2058
2059                 } else if ( ACL_LVL_IS_WDEL(mask) ) {
2060                         ptr = lutil_strcopy( ptr, "delete" );
2061
2062                 } else if ( ACL_LVL_IS_MANAGE(mask) ) {
2063                         ptr = lutil_strcopy( ptr, "manage" );
2064
2065                 } else {
2066                         ptr = lutil_strcopy( ptr, "unknown" );
2067                 }
2068                 
2069                 if ( !debug ) {
2070                         *ptr = '\0';
2071                         return buf;
2072                 }
2073                 *ptr++ = '(';
2074         }
2075
2076         if( ACL_IS_ADDITIVE( mask ) ) {
2077                 *ptr++ = '+';
2078
2079         } else if( ACL_IS_SUBTRACTIVE( mask ) ) {
2080                 *ptr++ = '-';
2081
2082         } else {
2083                 *ptr++ = '=';
2084         }
2085
2086         if ( ACL_PRIV_ISSET(mask, ACL_PRIV_MANAGE) ) {
2087                 none = 0;
2088                 *ptr++ = 'm';
2089         } 
2090
2091         if ( ACL_PRIV_ISSET(mask, ACL_PRIV_WRITE) ) {
2092                 none = 0;
2093                 *ptr++ = 'w';
2094
2095         } else if ( ACL_PRIV_ISSET(mask, ACL_PRIV_WADD) ) {
2096                 none = 0;
2097                 *ptr++ = 'a';
2098
2099         } else if ( ACL_PRIV_ISSET(mask, ACL_PRIV_WDEL) ) {
2100                 none = 0;
2101                 *ptr++ = 'z';
2102         } 
2103
2104         if ( ACL_PRIV_ISSET(mask, ACL_PRIV_READ) ) {
2105                 none = 0;
2106                 *ptr++ = 'r';
2107         } 
2108
2109         if ( ACL_PRIV_ISSET(mask, ACL_PRIV_SEARCH) ) {
2110                 none = 0;
2111                 *ptr++ = 's';
2112         } 
2113
2114         if ( ACL_PRIV_ISSET(mask, ACL_PRIV_COMPARE) ) {
2115                 none = 0;
2116                 *ptr++ = 'c';
2117         } 
2118
2119         if ( ACL_PRIV_ISSET(mask, ACL_PRIV_AUTH) ) {
2120                 none = 0;
2121                 *ptr++ = 'x';
2122         } 
2123
2124         if ( ACL_PRIV_ISSET(mask, ACL_PRIV_DISCLOSE) ) {
2125                 none = 0;
2126                 *ptr++ = 'd';
2127         } 
2128
2129         if ( none && ACL_PRIV_ISSET(mask, ACL_PRIV_NONE) ) {
2130                 none = 0;
2131                 *ptr++ = '0';
2132         } 
2133
2134         if ( none ) {
2135                 ptr = buf;
2136         }
2137
2138         if ( ACL_IS_LEVEL( mask ) ) {
2139                 *ptr++ = ')';
2140         }
2141
2142         *ptr = '\0';
2143
2144         return buf;
2145 }
2146
2147 slap_mask_t
2148 str2accessmask( const char *str )
2149 {
2150         slap_mask_t     mask;
2151
2152         if( !ASCII_ALPHA(str[0]) ) {
2153                 int i;
2154
2155                 if ( str[0] == '=' ) {
2156                         ACL_INIT(mask);
2157
2158                 } else if( str[0] == '+' ) {
2159                         ACL_PRIV_ASSIGN(mask, ACL_PRIV_ADDITIVE);
2160
2161                 } else if( str[0] == '-' ) {
2162                         ACL_PRIV_ASSIGN(mask, ACL_PRIV_SUBSTRACTIVE);
2163
2164                 } else {
2165                         ACL_INVALIDATE(mask);
2166                         return mask;
2167                 }
2168
2169                 for( i=1; str[i] != '\0'; i++ ) {
2170                         if( TOLOWER((unsigned char) str[i]) == 'm' ) {
2171                                 ACL_PRIV_SET(mask, ACL_PRIV_MANAGE);
2172
2173                         } else if( TOLOWER((unsigned char) str[i]) == 'w' ) {
2174                                 ACL_PRIV_SET(mask, ACL_PRIV_WRITE);
2175
2176                         } else if( TOLOWER((unsigned char) str[i]) == 'a' ) {
2177                                 ACL_PRIV_SET(mask, ACL_PRIV_WADD);
2178
2179                         } else if( TOLOWER((unsigned char) str[i]) == 'z' ) {
2180                                 ACL_PRIV_SET(mask, ACL_PRIV_WDEL);
2181
2182                         } else if( TOLOWER((unsigned char) str[i]) == 'r' ) {
2183                                 ACL_PRIV_SET(mask, ACL_PRIV_READ);
2184
2185                         } else if( TOLOWER((unsigned char) str[i]) == 's' ) {
2186                                 ACL_PRIV_SET(mask, ACL_PRIV_SEARCH);
2187
2188                         } else if( TOLOWER((unsigned char) str[i]) == 'c' ) {
2189                                 ACL_PRIV_SET(mask, ACL_PRIV_COMPARE);
2190
2191                         } else if( TOLOWER((unsigned char) str[i]) == 'x' ) {
2192                                 ACL_PRIV_SET(mask, ACL_PRIV_AUTH);
2193
2194                         } else if( TOLOWER((unsigned char) str[i]) == 'd' ) {
2195                                 ACL_PRIV_SET(mask, ACL_PRIV_DISCLOSE);
2196
2197                         } else if( str[i] == '0' ) {
2198                                 ACL_PRIV_SET(mask, ACL_PRIV_NONE);
2199
2200                         } else {
2201                                 ACL_INVALIDATE(mask);
2202                                 return mask;
2203                         }
2204                 }
2205
2206                 return mask;
2207         }
2208
2209         if ( strcasecmp( str, "none" ) == 0 ) {
2210                 ACL_LVL_ASSIGN_NONE(mask);
2211
2212         } else if ( strcasecmp( str, "disclose" ) == 0 ) {
2213                 ACL_LVL_ASSIGN_DISCLOSE(mask);
2214
2215         } else if ( strcasecmp( str, "auth" ) == 0 ) {
2216                 ACL_LVL_ASSIGN_AUTH(mask);
2217
2218         } else if ( strcasecmp( str, "compare" ) == 0 ) {
2219                 ACL_LVL_ASSIGN_COMPARE(mask);
2220
2221         } else if ( strcasecmp( str, "search" ) == 0 ) {
2222                 ACL_LVL_ASSIGN_SEARCH(mask);
2223
2224         } else if ( strcasecmp( str, "read" ) == 0 ) {
2225                 ACL_LVL_ASSIGN_READ(mask);
2226
2227         } else if ( strcasecmp( str, "add" ) == 0 ) {
2228                 ACL_LVL_ASSIGN_WADD(mask);
2229
2230         } else if ( strcasecmp( str, "delete" ) == 0 ) {
2231                 ACL_LVL_ASSIGN_WDEL(mask);
2232
2233         } else if ( strcasecmp( str, "write" ) == 0 ) {
2234                 ACL_LVL_ASSIGN_WRITE(mask);
2235
2236         } else if ( strcasecmp( str, "manage" ) == 0 ) {
2237                 ACL_LVL_ASSIGN_MANAGE(mask);
2238
2239         } else {
2240                 ACL_INVALIDATE( mask );
2241         }
2242
2243         return mask;
2244 }
2245
2246 static int
2247 acl_usage( void )
2248 {
2249         char *access =
2250                 "<access clause> ::= access to <what> "
2251                                 "[ by <who> [ <access> ] [ <control> ] ]+ \n";
2252         char *what =
2253                 "<what> ::= * | dn[.<dnstyle>=<DN>] [filter=<filter>] [attrs=<attrspec>]\n"
2254                 "<attrspec> ::= <attrname> [val[/<matchingRule>][.<attrstyle>]=<value>] | <attrlist>\n"
2255                 "<attrlist> ::= <attr> [ , <attrlist> ]\n"
2256                 "<attr> ::= <attrname> | @<objectClass> | !<objectClass> | entry | children\n";
2257
2258         char *who =
2259                 "<who> ::= [ * | anonymous | users | self | dn[.<dnstyle>]=<DN> ]\n"
2260                         "\t[ realanonymous | realusers | realself | realdn[.<dnstyle>]=<DN> ]\n"
2261                         "\t[dnattr=<attrname>]\n"
2262                         "\t[realdnattr=<attrname>]\n"
2263                         "\t[group[/<objectclass>[/<attrname>]][.<style>]=<group>]\n"
2264                         "\t[peername[.<peernamestyle>]=<peer>] [sockname[.<style>]=<name>]\n"
2265                         "\t[domain[.<domainstyle>]=<domain>] [sockurl[.<style>]=<url>]\n"
2266 #ifdef SLAP_DYNACL
2267                         "\t[dynacl/<name>[/<options>][.<dynstyle>][=<pattern>]]\n"
2268 #endif /* SLAP_DYNACL */
2269                         "\t[ssf=<n>] [transport_ssf=<n>] [tls_ssf=<n>] [sasl_ssf=<n>]\n"
2270                 "<style> ::= exact | regex | base(Object)\n"
2271                 "<dnstyle> ::= base(Object) | one(level) | sub(tree) | children | "
2272                         "exact | regex\n"
2273                 "<attrstyle> ::= exact | regex | base(Object) | one(level) | "
2274                         "sub(tree) | children\n"
2275                 "<peernamestyle> ::= exact | regex | ip | ipv6 | path\n"
2276                 "<domainstyle> ::= exact | regex | base(Object) | sub(tree)\n"
2277                 "<access> ::= [[real]self]{<level>|<priv>}\n"
2278                 "<level> ::= none|disclose|auth|compare|search|read|{write|add|delete}|manage\n"
2279                 "<priv> ::= {=|+|-}{0|d|x|c|s|r|{w|a|z}|m}+\n"
2280                 "<control> ::= [ stop | continue | break ]\n"
2281 #ifdef SLAP_DYNACL
2282 #ifdef SLAPD_ACI_ENABLED
2283                 "dynacl:\n"
2284                 "\t<name>=ACI\t<pattern>=<attrname>\n"
2285 #endif /* SLAPD_ACI_ENABLED */
2286 #endif /* ! SLAP_DYNACL */
2287                 "";
2288
2289         Debug( LDAP_DEBUG_ANY, "%s%s%s\n", access, what, who );
2290
2291         return 1;
2292 }
2293
2294 /*
2295  * Set pattern to a "normalized" DN from src.
2296  * At present it simply eats the (optional) space after 
2297  * a RDN separator (,)
2298  * Eventually will evolve in a more complete normalization
2299  */
2300 static void
2301 acl_regex_normalized_dn(
2302         const char *src,
2303         struct berval *pattern )
2304 {
2305         char *str, *p;
2306         ber_len_t len;
2307
2308         str = ch_strdup( src );
2309         len = strlen( src );
2310
2311         for ( p = str; p && p[0]; p++ ) {
2312                 /* escape */
2313                 if ( p[0] == '\\' && p[1] ) {
2314                         /* 
2315                          * if escaping a hex pair we should
2316                          * increment p twice; however, in that 
2317                          * case the second hex number does 
2318                          * no harm
2319                          */
2320                         p++;
2321                 }
2322
2323                 if ( p[0] == ',' && p[1] == ' ' ) {
2324                         char *q;
2325                         
2326                         /*
2327                          * too much space should be an error if we are pedantic
2328                          */
2329                         for ( q = &p[2]; q[0] == ' '; q++ ) {
2330                                 /* DO NOTHING */ ;
2331                         }
2332                         AC_MEMCPY( p+1, q, len-(q-str)+1);
2333                 }
2334         }
2335         pattern->bv_val = str;
2336         pattern->bv_len = p - str;
2337
2338         return;
2339 }
2340
2341 static void
2342 split(
2343     char        *line,
2344     int         splitchar,
2345     char        **left,
2346     char        **right )
2347 {
2348         *left = line;
2349         if ( (*right = strchr( line, splitchar )) != NULL ) {
2350                 *((*right)++) = '\0';
2351         }
2352 }
2353
2354 static void
2355 access_append( Access **l, Access *a )
2356 {
2357         for ( ; *l != NULL; l = &(*l)->a_next ) {
2358                 ;       /* Empty */
2359         }
2360
2361         *l = a;
2362 }
2363
2364 void
2365 acl_append( AccessControl **l, AccessControl *a, int pos )
2366 {
2367         int i;
2368
2369         for (i=0 ; i != pos && *l != NULL; l = &(*l)->acl_next, i++ ) {
2370                 ;       /* Empty */
2371         }
2372         if ( *l && a )
2373                 a->acl_next = *l;
2374         *l = a;
2375 }
2376
2377 static void
2378 access_free( Access *a )
2379 {
2380         if ( !BER_BVISNULL( &a->a_dn_pat ) ) {
2381                 free( a->a_dn_pat.bv_val );
2382         }
2383         if ( !BER_BVISNULL( &a->a_realdn_pat ) ) {
2384                 free( a->a_realdn_pat.bv_val );
2385         }
2386         if ( !BER_BVISNULL( &a->a_peername_pat ) ) {
2387                 free( a->a_peername_pat.bv_val );
2388         }
2389         if ( !BER_BVISNULL( &a->a_sockname_pat ) ) {
2390                 free( a->a_sockname_pat.bv_val );
2391         }
2392         if ( !BER_BVISNULL( &a->a_domain_pat ) ) {
2393                 free( a->a_domain_pat.bv_val );
2394         }
2395         if ( !BER_BVISNULL( &a->a_sockurl_pat ) ) {
2396                 free( a->a_sockurl_pat.bv_val );
2397         }
2398         if ( !BER_BVISNULL( &a->a_set_pat ) ) {
2399                 free( a->a_set_pat.bv_val );
2400         }
2401         if ( !BER_BVISNULL( &a->a_group_pat ) ) {
2402                 free( a->a_group_pat.bv_val );
2403         }
2404 #ifdef SLAP_DYNACL
2405         if ( a->a_dynacl != NULL ) {
2406                 slap_dynacl_t   *da;
2407                 for ( da = a->a_dynacl; da; ) {
2408                         slap_dynacl_t   *tmp = da;
2409
2410                         da = da->da_next;
2411
2412                         if ( tmp->da_destroy ) {
2413                                 tmp->da_destroy( tmp->da_private );
2414                         }
2415
2416                         ch_free( tmp );
2417                 }
2418         }
2419 #endif /* SLAP_DYNACL */
2420         free( a );
2421 }
2422
2423 void
2424 acl_free( AccessControl *a )
2425 {
2426         Access *n;
2427         AttributeName *an;
2428
2429         if ( a->acl_filter ) {
2430                 filter_free( a->acl_filter );
2431         }
2432         if ( !BER_BVISNULL( &a->acl_dn_pat ) ) {
2433                 if ( a->acl_dn_style == ACL_STYLE_REGEX ) {
2434                         regfree( &a->acl_dn_re );
2435                 }
2436                 free ( a->acl_dn_pat.bv_val );
2437         }
2438         if ( a->acl_attrs ) {
2439                 for ( an = a->acl_attrs; !BER_BVISNULL( &an->an_name ); an++ ) {
2440                         free( an->an_name.bv_val );
2441                 }
2442                 free( a->acl_attrs );
2443
2444                 if ( a->acl_attrval_style == ACL_STYLE_REGEX ) {
2445                         regfree( &a->acl_attrval_re );
2446                 }
2447
2448                 if ( !BER_BVISNULL( &a->acl_attrval ) ) {
2449                         ber_memfree( a->acl_attrval.bv_val );
2450                 }
2451         }
2452         for ( ; a->acl_access; a->acl_access = n ) {
2453                 n = a->acl_access->a_next;
2454                 access_free( a->acl_access );
2455         }
2456         free( a );
2457 }
2458
2459 /* Because backend_startup uses acl_append to tack on the global_acl to
2460  * the end of each backend's acl, we cannot just take one argument and
2461  * merrily free our way to the end of the list. backend_destroy calls us
2462  * with the be_acl in arg1, and global_acl in arg2 to give us a stopping
2463  * point. config_destroy calls us with global_acl in arg1 and NULL in
2464  * arg2, so we then proceed to polish off the global_acl.
2465  */
2466 void
2467 acl_destroy( AccessControl *a, AccessControl *end )
2468 {
2469         AccessControl *n;
2470
2471         for ( ; a && a != end; a = n ) {
2472                 n = a->acl_next;
2473                 acl_free( a );
2474         }
2475 }
2476
2477 char *
2478 access2str( slap_access_t access )
2479 {
2480         if ( access == ACL_NONE ) {
2481                 return "none";
2482
2483         } else if ( access == ACL_DISCLOSE ) {
2484                 return "disclose";
2485
2486         } else if ( access == ACL_AUTH ) {
2487                 return "auth";
2488
2489         } else if ( access == ACL_COMPARE ) {
2490                 return "compare";
2491
2492         } else if ( access == ACL_SEARCH ) {
2493                 return "search";
2494
2495         } else if ( access == ACL_READ ) {
2496                 return "read";
2497
2498         } else if ( access == ACL_WRITE ) {
2499                 return "write";
2500
2501         } else if ( access == ACL_WADD ) {
2502                 return "add";
2503
2504         } else if ( access == ACL_WDEL ) {
2505                 return "delete";
2506
2507         } else if ( access == ACL_MANAGE ) {
2508                 return "manage";
2509
2510         }
2511
2512         return "unknown";
2513 }
2514
2515 slap_access_t
2516 str2access( const char *str )
2517 {
2518         if ( strcasecmp( str, "none" ) == 0 ) {
2519                 return ACL_NONE;
2520
2521         } else if ( strcasecmp( str, "disclose" ) == 0 ) {
2522                 return ACL_DISCLOSE;
2523
2524         } else if ( strcasecmp( str, "auth" ) == 0 ) {
2525                 return ACL_AUTH;
2526
2527         } else if ( strcasecmp( str, "compare" ) == 0 ) {
2528                 return ACL_COMPARE;
2529
2530         } else if ( strcasecmp( str, "search" ) == 0 ) {
2531                 return ACL_SEARCH;
2532
2533         } else if ( strcasecmp( str, "read" ) == 0 ) {
2534                 return ACL_READ;
2535
2536         } else if ( strcasecmp( str, "write" ) == 0 ) {
2537                 return ACL_WRITE;
2538
2539         } else if ( strcasecmp( str, "add" ) == 0 ) {
2540                 return ACL_WADD;
2541
2542         } else if ( strcasecmp( str, "delete" ) == 0 ) {
2543                 return ACL_WDEL;
2544
2545         } else if ( strcasecmp( str, "manage" ) == 0 ) {
2546                 return ACL_MANAGE;
2547         }
2548
2549         return( ACL_INVALID_ACCESS );
2550 }
2551
2552 #define ACLBUF_MAXLEN   8192
2553
2554 static char aclbuf[ACLBUF_MAXLEN];
2555
2556 static char *
2557 dnaccess2text( slap_dn_access *bdn, char *ptr, int is_realdn )
2558 {
2559         *ptr++ = ' ';
2560
2561         if ( is_realdn ) {
2562                 ptr = lutil_strcopy( ptr, "real" );
2563         }
2564
2565         if ( ber_bvccmp( &bdn->a_pat, '*' ) ||
2566                 bdn->a_style == ACL_STYLE_ANONYMOUS ||
2567                 bdn->a_style == ACL_STYLE_USERS ||
2568                 bdn->a_style == ACL_STYLE_SELF )
2569         {
2570                 if ( is_realdn ) {
2571                         assert( ! ber_bvccmp( &bdn->a_pat, '*' ) );
2572                 }
2573                         
2574                 ptr = lutil_strcopy( ptr, bdn->a_pat.bv_val );
2575                 if ( bdn->a_style == ACL_STYLE_SELF && bdn->a_self_level != 0 ) {
2576                         int n = sprintf( ptr, ".level{%d}", bdn->a_self_level );
2577                         if ( n > 0 ) {
2578                                 ptr += n;
2579                         } /* else ? */
2580                 }
2581
2582         } else {
2583                 ptr = lutil_strcopy( ptr, "dn." );
2584                 if ( bdn->a_style == ACL_STYLE_BASE )
2585                         ptr = lutil_strcopy( ptr, style_base );
2586                 else 
2587                         ptr = lutil_strcopy( ptr, style_strings[bdn->a_style] );
2588                 if ( bdn->a_style == ACL_STYLE_LEVEL ) {
2589                         int n = sprintf( ptr, "{%d}", bdn->a_level );
2590                         if ( n > 0 ) {
2591                                 ptr += n;
2592                         } /* else ? */
2593                 }
2594                 if ( bdn->a_expand ) {
2595                         ptr = lutil_strcopy( ptr, ",expand" );
2596                 }
2597                 *ptr++ = '=';
2598                 *ptr++ = '"';
2599                 ptr = lutil_strcopy( ptr, bdn->a_pat.bv_val );
2600                 *ptr++ = '"';
2601         }
2602         return ptr;
2603 }
2604
2605 static char *
2606 access2text( Access *b, char *ptr )
2607 {
2608         char maskbuf[ACCESSMASK_MAXLEN];
2609
2610         ptr = lutil_strcopy( ptr, "\tby" );
2611
2612         if ( !BER_BVISEMPTY( &b->a_dn_pat ) ) {
2613                 ptr = dnaccess2text( &b->a_dn, ptr, 0 );
2614         }
2615         if ( b->a_dn_at ) {
2616                 ptr = lutil_strcopy( ptr, " dnattr=" );
2617                 ptr = lutil_strcopy( ptr, b->a_dn_at->ad_cname.bv_val );
2618         }
2619
2620         if ( !BER_BVISEMPTY( &b->a_realdn_pat ) ) {
2621                 ptr = dnaccess2text( &b->a_realdn, ptr, 1 );
2622         }
2623         if ( b->a_realdn_at ) {
2624                 ptr = lutil_strcopy( ptr, " realdnattr=" );
2625                 ptr = lutil_strcopy( ptr, b->a_realdn_at->ad_cname.bv_val );
2626         }
2627
2628         if ( !BER_BVISEMPTY( &b->a_group_pat ) ) {
2629                 ptr = lutil_strcopy( ptr, " group/" );
2630                 ptr = lutil_strcopy( ptr, b->a_group_oc ?
2631                         b->a_group_oc->soc_cname.bv_val : SLAPD_GROUP_CLASS );
2632                 *ptr++ = '/';
2633                 ptr = lutil_strcopy( ptr, b->a_group_at ?
2634                         b->a_group_at->ad_cname.bv_val : SLAPD_GROUP_ATTR );
2635                 *ptr++ = '.';
2636                 ptr = lutil_strcopy( ptr, style_strings[b->a_group_style] );
2637                 *ptr++ = '=';
2638                 *ptr++ = '"';
2639                 ptr = lutil_strcopy( ptr, b->a_group_pat.bv_val );
2640                 *ptr++ = '"';
2641         }
2642
2643         if ( !BER_BVISEMPTY( &b->a_peername_pat ) ) {
2644                 ptr = lutil_strcopy( ptr, " peername" );
2645                 *ptr++ = '.';
2646                 ptr = lutil_strcopy( ptr, style_strings[b->a_peername_style] );
2647                 *ptr++ = '=';
2648                 *ptr++ = '"';
2649                 ptr = lutil_strcopy( ptr, b->a_peername_pat.bv_val );
2650                 *ptr++ = '"';
2651         }
2652
2653         if ( !BER_BVISEMPTY( &b->a_sockname_pat ) ) {
2654                 ptr = lutil_strcopy( ptr, " sockname" );
2655                 *ptr++ = '.';
2656                 ptr = lutil_strcopy( ptr, style_strings[b->a_sockname_style] );
2657                 *ptr++ = '=';
2658                 *ptr++ = '"';
2659                 ptr = lutil_strcopy( ptr, b->a_sockname_pat.bv_val );
2660                 *ptr++ = '"';
2661         }
2662
2663         if ( !BER_BVISEMPTY( &b->a_domain_pat ) ) {
2664                 ptr = lutil_strcopy( ptr, " domain" );
2665                 *ptr++ = '.';
2666                 ptr = lutil_strcopy( ptr, style_strings[b->a_domain_style] );
2667                 if ( b->a_domain_expand ) {
2668                         ptr = lutil_strcopy( ptr, ",expand" );
2669                 }
2670                 *ptr++ = '=';
2671                 ptr = lutil_strcopy( ptr, b->a_domain_pat.bv_val );
2672         }
2673
2674         if ( !BER_BVISEMPTY( &b->a_sockurl_pat ) ) {
2675                 ptr = lutil_strcopy( ptr, " sockurl" );
2676                 *ptr++ = '.';
2677                 ptr = lutil_strcopy( ptr, style_strings[b->a_sockurl_style] );
2678                 *ptr++ = '=';
2679                 *ptr++ = '"';
2680                 ptr = lutil_strcopy( ptr, b->a_sockurl_pat.bv_val );
2681                 *ptr++ = '"';
2682         }
2683
2684         if ( !BER_BVISEMPTY( &b->a_set_pat ) ) {
2685                 ptr = lutil_strcopy( ptr, " set" );
2686                 *ptr++ = '.';
2687                 ptr = lutil_strcopy( ptr, style_strings[b->a_set_style] );
2688                 *ptr++ = '=';
2689                 *ptr++ = '"';
2690                 ptr = lutil_strcopy( ptr, b->a_set_pat.bv_val );
2691                 *ptr++ = '"';
2692         }
2693
2694 #ifdef SLAP_DYNACL
2695         if ( b->a_dynacl ) {
2696                 slap_dynacl_t   *da;
2697
2698                 for ( da = b->a_dynacl; da; da = da->da_next ) {
2699                         if ( da->da_unparse ) {
2700                                 struct berval bv = BER_BVNULL;
2701                                 (void)( *da->da_unparse )( da->da_private, &bv );
2702                                 assert( !BER_BVISNULL( &bv ) );
2703                                 ptr = lutil_strcopy( ptr, bv.bv_val );
2704                                 ch_free( bv.bv_val );
2705                         }
2706                 }
2707         }
2708 #endif /* SLAP_DYNACL */
2709
2710         /* Security Strength Factors */
2711         if ( b->a_authz.sai_ssf ) {
2712                 ptr += sprintf( ptr, " ssf=%u", 
2713                         b->a_authz.sai_ssf );
2714         }
2715         if ( b->a_authz.sai_transport_ssf ) {
2716                 ptr += sprintf( ptr, " transport_ssf=%u",
2717                         b->a_authz.sai_transport_ssf );
2718         }
2719         if ( b->a_authz.sai_tls_ssf ) {
2720                 ptr += sprintf( ptr, " tls_ssf=%u",
2721                         b->a_authz.sai_tls_ssf );
2722         }
2723         if ( b->a_authz.sai_sasl_ssf ) {
2724                 ptr += sprintf( ptr, " sasl_ssf=%u",
2725                         b->a_authz.sai_sasl_ssf );
2726         }
2727
2728         *ptr++ = ' ';
2729         if ( b->a_dn_self ) {
2730                 ptr = lutil_strcopy( ptr, "self" );
2731         } else if ( b->a_realdn_self ) {
2732                 ptr = lutil_strcopy( ptr, "realself" );
2733         }
2734         ptr = lutil_strcopy( ptr, accessmask2str( b->a_access_mask, maskbuf, 0 ));
2735         if ( !maskbuf[0] ) ptr--;
2736
2737         if( b->a_type == ACL_BREAK ) {
2738                 ptr = lutil_strcopy( ptr, " break" );
2739
2740         } else if( b->a_type == ACL_CONTINUE ) {
2741                 ptr = lutil_strcopy( ptr, " continue" );
2742
2743         } else if( b->a_type != ACL_STOP ) {
2744                 ptr = lutil_strcopy( ptr, " unknown-control" );
2745         } else {
2746                 if ( !maskbuf[0] ) ptr = lutil_strcopy( ptr, " stop" );
2747         }
2748         *ptr++ = '\n';
2749
2750         return ptr;
2751 }
2752
2753 void
2754 acl_unparse( AccessControl *a, struct berval *bv )
2755 {
2756         Access  *b;
2757         char    *ptr;
2758         int     to = 0;
2759
2760         bv->bv_val = aclbuf;
2761         bv->bv_len = 0;
2762
2763         ptr = bv->bv_val;
2764
2765         ptr = lutil_strcopy( ptr, "to" );
2766         if ( !BER_BVISNULL( &a->acl_dn_pat ) ) {
2767                 to++;
2768                 ptr = lutil_strcopy( ptr, " dn." );
2769                 if ( a->acl_dn_style == ACL_STYLE_BASE )
2770                         ptr = lutil_strcopy( ptr, style_base );
2771                 else
2772                         ptr = lutil_strcopy( ptr, style_strings[a->acl_dn_style] );
2773                 *ptr++ = '=';
2774                 *ptr++ = '"';
2775                 ptr = lutil_strcopy( ptr, a->acl_dn_pat.bv_val );
2776                 ptr = lutil_strcopy( ptr, "\"\n" );
2777         }
2778
2779         if ( a->acl_filter != NULL ) {
2780                 struct berval   bv = BER_BVNULL;
2781
2782                 to++;
2783                 filter2bv( a->acl_filter, &bv );
2784                 ptr = lutil_strcopy( ptr, " filter=\"" );
2785                 ptr = lutil_strcopy( ptr, bv.bv_val );
2786                 *ptr++ = '"';
2787                 *ptr++ = '\n';
2788                 ch_free( bv.bv_val );
2789         }
2790
2791         if ( a->acl_attrs != NULL ) {
2792                 int     first = 1;
2793                 AttributeName *an;
2794                 to++;
2795
2796                 ptr = lutil_strcopy( ptr, " attrs=" );
2797                 for ( an = a->acl_attrs; an && !BER_BVISNULL( &an->an_name ); an++ ) {
2798                         if ( ! first ) *ptr++ = ',';
2799                         if (an->an_oc) {
2800                                 *ptr++ = an->an_oc_exclude ? '!' : '@';
2801                                 ptr = lutil_strcopy( ptr, an->an_oc->soc_cname.bv_val );
2802
2803                         } else {
2804                                 ptr = lutil_strcopy( ptr, an->an_name.bv_val );
2805                         }
2806                         first = 0;
2807                 }
2808                 *ptr++ = '\n';
2809         }
2810
2811         if ( !BER_BVISEMPTY( &a->acl_attrval ) ) {
2812                 to++;
2813                 ptr = lutil_strcopy( ptr, " val." );
2814                 if ( a->acl_attrval_style == ACL_STYLE_BASE &&
2815                         a->acl_attrs[0].an_desc->ad_type->sat_syntax ==
2816                                 slap_schema.si_syn_distinguishedName )
2817                         ptr = lutil_strcopy( ptr, style_base );
2818                 else
2819                         ptr = lutil_strcopy( ptr, style_strings[a->acl_attrval_style] );
2820                 *ptr++ = '=';
2821                 *ptr++ = '"';
2822                 ptr = lutil_strcopy( ptr, a->acl_attrval.bv_val );
2823                 *ptr++ = '"';
2824                 *ptr++ = '\n';
2825         }
2826
2827         if( !to ) {
2828                 ptr = lutil_strcopy( ptr, " *\n" );
2829         }
2830
2831         for ( b = a->acl_access; b != NULL; b = b->a_next ) {
2832                 ptr = access2text( b, ptr );
2833         }
2834         *ptr = '\0';
2835         bv->bv_len = ptr - bv->bv_val;
2836 }
2837
2838 #ifdef LDAP_DEBUG
2839 static void
2840 print_acl( Backend *be, AccessControl *a )
2841 {
2842         struct berval bv;
2843
2844         acl_unparse( a, &bv );
2845         fprintf( stderr, "%s ACL: access %s\n",
2846                 be == NULL ? "Global" : "Backend", bv.bv_val );
2847 }
2848 #endif /* LDAP_DEBUG */