]> git.sur5r.net Git - openldap/blob - servers/slapd/acl.c
de9cda67bc4343afdb164b89394f242ffe84df70
[openldap] / servers / slapd / acl.c
1 /* acl.c - routines to parse and check acl's */
2 /* $OpenLDAP$ */
3 /*
4  * Copyright 1998-2002 The OpenLDAP Foundation, All Rights Reserved.
5  * COPYING RESTRICTIONS APPLY, see COPYRIGHT file
6  */
7
8 #include "portable.h"
9
10 #include <stdio.h>
11
12 #include <ac/regex.h>
13 #include <ac/socket.h>
14 #include <ac/string.h>
15
16 #include "slap.h"
17 #include "sets.h"
18 #include "lber_pvt.h"
19
20 #define ACL_BUF_SIZE    1024    /* use most appropriate size */
21
22 /*
23  * speed up compares
24  */
25 static struct berval 
26         aci_bv_entry            = BER_BVC("entry"),
27         aci_bv_br_entry         = BER_BVC("[entry]"),
28         aci_bv_br_all           = BER_BVC("[all]"),
29         aci_bv_access_id        = BER_BVC("access-id"),
30         aci_bv_anonymous        = BER_BVC("anonymous"),
31         aci_bv_public           = BER_BVC("public"),
32         aci_bv_users            = BER_BVC("users"),
33         aci_bv_self             = BER_BVC("self"),
34         aci_bv_dnattr           = BER_BVC("dnattr"),
35         aci_bv_group            = BER_BVC("group"),
36         aci_bv_role             = BER_BVC("role"),
37         aci_bv_set              = BER_BVC("set"),
38         aci_bv_set_ref          = BER_BVC("set-ref"),
39         aci_bv_grant            = BER_BVC("grant"),
40         aci_bv_deny             = BER_BVC("deny"),
41         
42         aci_bv_group_class      = BER_BVC(SLAPD_GROUP_CLASS),
43         aci_bv_group_attr       = BER_BVC(SLAPD_GROUP_ATTR),
44         aci_bv_role_class       = BER_BVC(SLAPD_ROLE_CLASS),
45         aci_bv_role_attr        = BER_BVC(SLAPD_ROLE_ATTR);
46
47
48 static AccessControl * acl_get(
49         AccessControl *ac, int *count,
50         Backend *be, Operation *op,
51         Entry *e,
52         AttributeDescription *desc,
53         int nmatches, regmatch_t *matches );
54
55 static slap_control_t acl_mask(
56         AccessControl *ac, slap_mask_t *mask,
57         Backend *be, Connection *conn, Operation *op,
58         Entry *e,
59         AttributeDescription *desc,
60         struct berval *val,
61         regmatch_t *matches,
62         int count,
63         AccessControlState *state );
64
65 #ifdef SLAPD_ACI_ENABLED
66 static int aci_mask(
67         Backend *be,
68     Connection *conn,
69         Operation *op,
70         Entry *e,
71         AttributeDescription *desc,
72         struct berval *val,
73         struct berval *aci,
74         regmatch_t *matches,
75         slap_access_t *grant,
76         slap_access_t *deny );
77 #endif
78
79 static int      regex_matches(
80         struct berval *pat, char *str, char *buf, regmatch_t *matches);
81 static void     string_expand(
82         struct berval *newbuf, struct berval *pattern,
83         char *match, regmatch_t *matches);
84
85 typedef struct AciSetCookie {
86         Backend *be;
87         Entry *e;
88         Connection *conn;
89         Operation *op;
90 } AciSetCookie;
91
92 SLAP_SET_GATHER aci_set_gather;
93 static int aci_match_set ( struct berval *subj, Backend *be,
94     Entry *e, Connection *conn, Operation *op, int setref );
95
96 /*
97  * access_allowed - check whether op->o_ndn is allowed the requested access
98  * to entry e, attribute attr, value val.  if val is null, access to
99  * the whole attribute is assumed (all values).
100  *
101  * This routine loops through all access controls and calls
102  * acl_mask() on each applicable access control.
103  * The loop exits when a definitive answer is reached or
104  * or no more controls remain.
105  *
106  * returns:
107  *              0       access denied
108  *              1       access granted
109  */
110
111 int
112 access_allowed(
113     Backend             *be,
114     Connection          *conn,
115     Operation           *op,
116     Entry               *e,
117         AttributeDescription    *desc,
118     struct berval       *val,
119     slap_access_t       access,
120         AccessControlState *state )
121 {
122         int                             ret = 1;
123         int                             count;
124         AccessControl   *a;
125
126 #ifdef LDAP_DEBUG
127         char accessmaskbuf[ACCESSMASK_MAXLEN];
128 #endif
129         slap_mask_t mask;
130         slap_control_t control;
131         const char *attr;
132         regmatch_t matches[MAXREMATCHES];
133         int        st_same_attr = 0;
134         int        st_initialized = 0;
135         static AccessControlState state_init = ACL_STATE_INIT;
136
137         assert( e != NULL );
138         assert( desc != NULL );
139         assert( access > ACL_NONE );
140
141         attr = desc->ad_cname.bv_val;
142
143         assert( attr != NULL );
144
145         if( state && state->as_recorded && state->as_vd_ad==desc) { 
146                 if( state->as_recorded & ACL_STATE_RECORDED_NV &&
147                         val == NULL )
148                 {
149                         return state->as_result;
150
151                 } else if ( state->as_recorded & ACL_STATE_RECORDED_VD &&
152                         val != NULL && state->as_vd_acl == NULL )
153                 {
154                         return state->as_result;
155                 }
156                 st_same_attr = 1;
157         } if (state) {
158                 state->as_vd_ad=desc;
159         }
160
161 #ifdef NEW_LOGGING
162         LDAP_LOG( ACL, ENTRY, 
163                 "access_allowed: %s access to \"%s\" \"%s\" requested\n",
164                 access2str( access ), e->e_dn, attr );
165 #else
166         Debug( LDAP_DEBUG_ACL,
167                 "=> access_allowed: %s access to \"%s\" \"%s\" requested\n",
168             access2str( access ), e->e_dn, attr );
169 #endif
170
171         if ( op == NULL ) {
172                 /* no-op call */
173                 goto done;
174         }
175
176         if ( be == NULL ) be = &backends[0];
177         assert( be != NULL );
178
179         /* grant database root access */
180         if ( be != NULL && be_isroot( be, &op->o_ndn ) ) {
181 #ifdef NEW_LOGGING
182                 LDAP_LOG( ACL, INFO, 
183                         "access_allowed: conn %lu root access granted\n", 
184                         conn->c_connid, 0, 0 );
185 #else
186                 Debug( LDAP_DEBUG_ACL,
187                     "<= root access granted\n",
188                         0, 0, 0 );
189 #endif
190                 goto done;
191         }
192
193         /*
194          * no-user-modification operational attributes are ignored
195          * by ACL_WRITE checking as any found here are not provided
196          * by the user
197          */
198         if ( access >= ACL_WRITE && is_at_no_user_mod( desc->ad_type )
199                 && desc != slap_schema.si_ad_entry
200                 && desc != slap_schema.si_ad_children )
201         {
202 #ifdef NEW_LOGGING
203                 LDAP_LOG( ACL, DETAIL1, 
204                         "access_allowed: conn %lu NoUserMod Operational attribute: %s "
205                         "access granted\n", conn->c_connid, attr , 0 );
206 #else
207                 Debug( LDAP_DEBUG_ACL, "NoUserMod Operational attribute:"
208                         " %s access granted\n",
209                         attr, 0, 0 );
210 #endif
211                 goto done;
212         }
213
214         /* use backend default access if no backend acls */
215         if( be != NULL && be->be_acl == NULL ) {
216 #ifdef NEW_LOGGING
217                 LDAP_LOG( ACL, DETAIL1, 
218                         "access_allowed: backend default %s access %s to \"%s\"\n",
219                     access2str( access ),
220                     be->be_dfltaccess >= access ? "granted" : "denied", 
221                         op->o_dn.bv_val );
222 #else
223                 Debug( LDAP_DEBUG_ACL,
224                         "=> access_allowed: backend default %s access %s to \"%s\"\n",
225                         access2str( access ),
226                         be->be_dfltaccess >= access ? "granted" : "denied", op->o_dn.bv_val );
227 #endif
228                 ret = be->be_dfltaccess >= access;
229                 goto done;
230
231 #ifdef notdef
232         /* be is always non-NULL */
233         /* use global default access if no global acls */
234         } else if ( be == NULL && global_acl == NULL ) {
235 #ifdef NEW_LOGGING
236                 LDAP_LOG( ACL, DETAIL1, 
237                         "access_allowed: global default %s access %s to \"%s\"\n",
238                     access2str( access ),
239                     global_default_access >= access ? "granted" : "denied", 
240                         op->o_dn.bv_val );
241 #else
242                 Debug( LDAP_DEBUG_ACL,
243                         "=> access_allowed: global default %s access %s to \"%s\"\n",
244                         access2str( access ),
245                         global_default_access >= access ? "granted" : "denied", op->o_dn.bv_val );
246 #endif
247                 ret = global_default_access >= access;
248                 goto done;
249 #endif
250         }
251
252         ret = 0;
253         control = ACL_BREAK;
254
255         if( st_same_attr ) {
256                 assert( state->as_vd_acl != NULL );
257
258                 a = state->as_vd_acl;
259                 mask = state->as_vd_acl_mask;
260                 count = state->as_vd_acl_count;
261                 AC_MEMCPY( matches, state->as_vd_acl_matches,
262                         sizeof(matches) );
263                 goto vd_access;
264
265         } else {
266                 a = NULL;
267                 ACL_INIT(mask);
268                 count = 0;
269                 memset(matches, '\0', sizeof(matches));
270         }
271
272         while((a = acl_get( a, &count, be, op, e, desc,
273                 MAXREMATCHES, matches )) != NULL)
274         {
275                 int i;
276
277                 for (i = 0; i < MAXREMATCHES && matches[i].rm_so > 0; i++) {
278 #ifdef NEW_LOGGING
279                         LDAP_LOG( ACL, DETAIL1, 
280                                 "access_allowed: match[%d]:  %d %d ",
281                             i, (int)matches[i].rm_so, (int)matches[i].rm_eo );
282 #else
283                         Debug( LDAP_DEBUG_ACL, "=> match[%d]: %d %d ", i,
284                             (int)matches[i].rm_so, (int)matches[i].rm_eo );
285 #endif
286                         if( matches[i].rm_so <= matches[0].rm_eo ) {
287                                 int n;
288                                 for ( n = matches[i].rm_so; n < matches[i].rm_eo; n++) {
289                                         Debug( LDAP_DEBUG_ACL, "%c", e->e_ndn[n], 0, 0 );
290                                 }
291                         }
292 #ifdef NEW_LOGGING
293                         LDAP_LOG( ACL, ARGS, "\n" , 0, 0, 0 );
294 #else
295                         Debug( LDAP_DEBUG_ARGS, "\n", 0, 0, 0 );
296 #endif
297                 }
298
299                 if (state) {
300                         if (state->as_vi_acl == a && (state->as_recorded & ACL_STATE_RECORDED_NV)) {
301                                 Debug( LDAP_DEBUG_ACL, "access_allowed: result from state (%s)\n", attr, 0, 0 );
302                                 return state->as_result;
303                         } else if (!st_initialized) {
304                                 Debug( LDAP_DEBUG_ACL, "access_allowed: no res from state (%s)\n", attr, 0, 0);
305                             *state = state_init;
306                                 state->as_vd_ad=desc;
307                                 st_initialized=1;
308                         }
309                 }
310
311 vd_access:
312                 control = acl_mask( a, &mask, be, conn, op,
313                         e, desc, val, matches, count, state );
314
315                 if ( control != ACL_BREAK ) {
316                         break;
317                 }
318
319                 memset(matches, '\0', sizeof(matches));
320         }
321
322         if ( ACL_IS_INVALID( mask ) ) {
323 #ifdef NEW_LOGGING
324                 LDAP_LOG( ACL, DETAIL1, 
325                         "access_allowed: conn %lu \"%s\" (%s) invalid!\n",
326                     conn->c_connid, e->e_dn, attr );
327 #else
328                 Debug( LDAP_DEBUG_ACL,
329                         "=> access_allowed: \"%s\" (%s) invalid!\n",
330                         e->e_dn, attr, 0 );
331 #endif
332                 ACL_INIT(mask);
333
334         } else if ( control == ACL_BREAK ) {
335 #ifdef NEW_LOGGING
336                 LDAP_LOG( ACL, DETAIL1, 
337                         "access_allowed: conn %lu        no more rules\n", conn->c_connid, 0,0 );
338 #else
339                 Debug( LDAP_DEBUG_ACL,
340                         "=> access_allowed: no more rules\n", 0, 0, 0);
341 #endif
342
343                 goto done;
344         }
345
346 #ifdef NEW_LOGGING
347         LDAP_LOG( ACL, ENTRY, 
348                 "access_allowed: %s access %s by %s\n", 
349                 access2str( access ), ACL_GRANT( mask, access ) ? "granted" : "denied",
350                 accessmask2str( mask, accessmaskbuf ) );
351 #else
352         Debug( LDAP_DEBUG_ACL,
353                 "=> access_allowed: %s access %s by %s\n",
354                 access2str( access ),
355                 ACL_GRANT(mask, access) ? "granted" : "denied",
356                 accessmask2str( mask, accessmaskbuf ) );
357 #endif
358
359         ret = ACL_GRANT(mask, access);
360
361 done:
362         if( state != NULL ) {
363                 /* If not value-dependent, save ACL in case of more attrs */
364                 if ( !(state->as_recorded & ACL_STATE_RECORDED_VD) )
365                         state->as_vi_acl = a;
366                 state->as_recorded |= ACL_STATE_RECORDED;
367                 state->as_result = ret;
368         }
369         return ret;
370 }
371
372 /*
373  * acl_get - return the acl applicable to entry e, attribute
374  * attr.  the acl returned is suitable for use in subsequent calls to
375  * acl_access_allowed().
376  */
377
378 static AccessControl *
379 acl_get(
380         AccessControl *a,
381         int                     *count,
382     Backend             *be,
383     Operation   *op,
384     Entry               *e,
385         AttributeDescription *desc,
386     int                 nmatch,
387     regmatch_t  *matches )
388 {
389         const char *attr;
390         int dnlen, patlen;
391
392         assert( e != NULL );
393         assert( count != NULL );
394         assert( desc != NULL );
395
396         attr = desc->ad_cname.bv_val;
397
398         assert( attr != NULL );
399
400         if( a == NULL ) {
401                 if( be == NULL ) {
402                         a = global_acl;
403                 } else {
404                         a = be->be_acl;
405                 }
406
407                 assert( a != NULL );
408
409         } else {
410                 a = a->acl_next;
411         }
412
413         dnlen = e->e_nname.bv_len;
414
415         for ( ; a != NULL; a = a->acl_next ) {
416                 (*count) ++;
417
418                 if ( a->acl_dn_pat.bv_len || ( a->acl_dn_style != ACL_STYLE_REGEX )) {
419                         if ( a->acl_dn_style == ACL_STYLE_REGEX ) {
420 #ifdef NEW_LOGGING
421                                 LDAP_LOG( ACL, DETAIL1, 
422                                         "acl_get: dnpat [%d] %s nsub: %d\n",
423                                         *count, a->acl_dn_pat.bv_val, 
424                                         (int) a->acl_dn_re.re_nsub );
425 #else
426                                 Debug( LDAP_DEBUG_ACL, "=> dnpat: [%d] %s nsub: %d\n", 
427                                         *count, a->acl_dn_pat.bv_val, (int) a->acl_dn_re.re_nsub );
428 #endif
429                                 if (regexec(&a->acl_dn_re, e->e_ndn, nmatch, matches, 0))
430                                         continue;
431
432                         } else {
433 #ifdef NEW_LOGGING
434                                 LDAP_LOG( ACL, DETAIL1, "acl_get: dn [%d] %s\n",
435                                            *count, a->acl_dn_pat.bv_val, 0 );
436 #else
437                                 Debug( LDAP_DEBUG_ACL, "=> dn: [%d] %s\n", 
438                                         *count, a->acl_dn_pat.bv_val, 0 );
439 #endif
440                                 patlen = a->acl_dn_pat.bv_len;
441                                 if ( dnlen < patlen )
442                                         continue;
443
444                                 if ( a->acl_dn_style == ACL_STYLE_BASE ) {
445                                         /* base dn -- entire object DN must match */
446                                         if ( dnlen != patlen )
447                                                 continue;
448
449                                 } else if ( a->acl_dn_style == ACL_STYLE_ONE ) {
450                                         int rdnlen = -1;
451
452                                         if ( dnlen <= patlen )
453                                                 continue;
454
455                                         if ( !DN_SEPARATOR( e->e_ndn[dnlen - patlen - 1] ) )
456                                                 continue;
457
458                                         rdnlen = dn_rdnlen( NULL, &e->e_nname );
459                                         if ( rdnlen != dnlen - patlen - 1 )
460                                                 continue;
461
462                                 } else if ( a->acl_dn_style == ACL_STYLE_SUBTREE ) {
463                                         if ( dnlen > patlen && !DN_SEPARATOR( e->e_ndn[dnlen - patlen - 1] ) )
464                                                 continue;
465
466                                 } else if ( a->acl_dn_style == ACL_STYLE_CHILDREN ) {
467                                         if ( dnlen <= patlen )
468                                                 continue;
469                                         if ( !DN_SEPARATOR( e->e_ndn[dnlen - patlen - 1] ) )
470                                                 continue;
471                                 }
472
473                                 if ( strcmp( a->acl_dn_pat.bv_val, e->e_ndn + dnlen - patlen ) != 0 )
474                                         continue;
475                         }
476
477 #ifdef NEW_LOGGING
478                         LDAP_LOG( ACL, DETAIL1, 
479                                 "acl_get: [%d] matched\n", *count, 0, 0 );
480 #else
481                         Debug( LDAP_DEBUG_ACL, "=> acl_get: [%d] matched\n",
482                                 *count, 0, 0 );
483 #endif
484                 }
485
486                 if ( a->acl_filter != NULL ) {
487                         ber_int_t rc = test_filter( NULL, NULL, NULL, e, a->acl_filter );
488                         if ( rc != LDAP_COMPARE_TRUE ) {
489                                 continue;
490                         }
491                 }
492
493 #ifdef NEW_LOGGING
494                 LDAP_LOG( ACL, DETAIL1, 
495                         "acl_get: [%d] check attr %s\n", *count, attr ,0 );
496 #else
497                 Debug( LDAP_DEBUG_ACL, "=> acl_get: [%d] check attr %s\n",
498                        *count, attr, 0);
499 #endif
500                 if ( attr == NULL || a->acl_attrs == NULL ||
501                         ad_inlist( desc, a->acl_attrs ) )
502                 {
503 #ifdef NEW_LOGGING
504                         LDAP_LOG( ACL, DETAIL1, 
505                                 "acl_get:  [%d] acl %s attr: %s\n", *count, e->e_dn, attr );
506 #else
507                         Debug( LDAP_DEBUG_ACL,
508                                 "<= acl_get: [%d] acl %s attr: %s\n",
509                                 *count, e->e_dn, attr );
510 #endif
511                         return a;
512                 }
513                 matches[0].rm_so = matches[0].rm_eo = -1;
514         }
515
516 #ifdef NEW_LOGGING
517         LDAP_LOG( ACL, RESULTS, "acl_get: done.\n", 0, 0, 0 );
518 #else
519         Debug( LDAP_DEBUG_ACL, "<= acl_get: done.\n", 0, 0, 0 );
520 #endif
521         return( NULL );
522 }
523
524 /*
525  * Record value-dependent access control state
526  */
527 #define ACL_RECORD_VALUE_STATE do { \
528                 if( state && !( state->as_recorded & ACL_STATE_RECORDED_VD )) { \
529                         state->as_recorded |= ACL_STATE_RECORDED_VD; \
530                         state->as_vd_acl = a; \
531                         AC_MEMCPY( state->as_vd_acl_matches, matches, \
532                                 sizeof( state->as_vd_acl_matches )) ; \
533                         state->as_vd_acl_count = count; \
534                         state->as_vd_access = b; \
535                         state->as_vd_access_count = i; \
536                 } \
537         } while( 0 )
538
539 /*
540  * acl_mask - modifies mask based upon the given acl and the
541  * requested access to entry e, attribute attr, value val.  if val
542  * is null, access to the whole attribute is assumed (all values).
543  *
544  * returns      0       access NOT allowed
545  *              1       access allowed
546  */
547
548 static slap_control_t
549 acl_mask(
550     AccessControl       *a,
551         slap_mask_t *mask,
552     Backend             *be,
553     Connection  *conn,
554     Operation   *op,
555     Entry               *e,
556         AttributeDescription *desc,
557     struct berval       *val,
558         regmatch_t      *matches,
559         int     count,
560         AccessControlState *state )
561 {
562         int             i, odnlen, patlen;
563         Access  *b;
564 #ifdef LDAP_DEBUG
565         char accessmaskbuf[ACCESSMASK_MAXLEN];
566 #endif
567         const char *attr;
568
569         assert( a != NULL );
570         assert( mask != NULL );
571         assert( desc != NULL );
572
573         attr = desc->ad_cname.bv_val;
574
575         assert( attr != NULL );
576
577 #ifdef NEW_LOGGING
578         LDAP_LOG( ACL, ENTRY, 
579                 "acl_mask: conn %lu  access to entry \"%s\", attr \"%s\" requested\n",
580                 conn->c_connid, e->e_dn, attr );
581
582         LDAP_LOG( ACL, ARGS, 
583                 " to %s by \"%s\", (%s) \n", val ? "value" : "all values",
584                 op->o_ndn.bv_val ? op->o_ndn.bv_val : "",
585                 accessmask2str( *mask, accessmaskbuf ) );
586 #else
587         Debug( LDAP_DEBUG_ACL,
588                 "=> acl_mask: access to entry \"%s\", attr \"%s\" requested\n",
589                 e->e_dn, attr, 0 );
590
591         Debug( LDAP_DEBUG_ACL,
592                 "=> acl_mask: to %s by \"%s\", (%s) \n",
593                 val ? "value" : "all values",
594                 op->o_ndn.bv_val ?  op->o_ndn.bv_val : "",
595                 accessmask2str( *mask, accessmaskbuf ) );
596 #endif
597
598         if( state && ( state->as_recorded & ACL_STATE_RECORDED_VD )
599                 && state->as_vd_acl == a )
600         {
601                 b = state->as_vd_access;
602                 i = state->as_vd_access_count;
603
604         } else {
605                 b = a->acl_access;
606                 i = 1;
607         }
608
609         for ( ; b != NULL; b = b->a_next, i++ ) {
610                 slap_mask_t oldmask, modmask;
611
612                 ACL_INVALIDATE( modmask );
613
614                 /* AND <who> clauses */
615                 if ( b->a_dn_pat.bv_len != 0 ) {
616 #ifdef NEW_LOGGING
617                         LDAP_LOG( ACL, DETAIL1, 
618                                 "acl_mask: conn %lu  check a_dn_pat: %s\n",
619                                 conn->c_connid, b->a_dn_pat.bv_val ,0 );
620 #else
621                         Debug( LDAP_DEBUG_ACL, "<= check a_dn_pat: %s\n",
622                                 b->a_dn_pat.bv_val, 0, 0);
623 #endif
624                         /*
625                          * if access applies to the entry itself, and the
626                          * user is bound as somebody in the same namespace as
627                          * the entry, OR the given dn matches the dn pattern
628                          */
629                         if ( bvmatch( &b->a_dn_pat, &aci_bv_anonymous ) ) {
630                                 if ( op->o_ndn.bv_len != 0 ) {
631                                         continue;
632                                 }
633
634                         } else if ( bvmatch( &b->a_dn_pat, &aci_bv_users ) ) {
635                                 if ( op->o_ndn.bv_len == 0 ) {
636                                         continue;
637                                 }
638
639                         } else if ( bvmatch( &b->a_dn_pat, &aci_bv_self ) ) {
640                                 if ( op->o_ndn.bv_len == 0 ) {
641                                         continue;
642                                 }
643                                 
644                                 if ( e->e_dn == NULL || !dn_match( &e->e_nname, &op->o_ndn ) ) {
645                                         continue;
646                                 }
647
648                         } else if ( b->a_dn_style == ACL_STYLE_REGEX ) {
649                                 if ( !ber_bvccmp( &b->a_dn_pat, '*' ) ) {
650                                         int ret = regex_matches( &b->a_dn_pat,
651                                                 op->o_ndn.bv_val, e->e_ndn, matches );
652
653                                         if( ret == 0 ) {
654                                                 continue;
655                                         }
656                                 }
657
658                         } else {
659                                 struct berval pat;
660                                 int got_match = 0;
661
662                                 if ( e->e_dn == NULL )
663                                         continue;
664
665                                 if ( b->a_dn_expand ) {
666                                         struct berval bv;
667                                         char buf[ACL_BUF_SIZE];
668
669                                         bv.bv_len = sizeof( buf ) - 1;
670                                         bv.bv_val = buf;
671
672                                         string_expand(&bv, &b->a_dn_pat, 
673                                                         e->e_ndn, matches);
674                                         if ( dnNormalize2(NULL, &bv, &pat) != LDAP_SUCCESS ) {
675                                                 /* did not expand to a valid dn */
676                                                 continue;
677                                         }
678                                 } else {
679                                         pat = b->a_dn_pat;
680                                 }
681
682                                 patlen = pat.bv_len;
683                                 odnlen = op->o_ndn.bv_len;
684                                 if ( odnlen < patlen ) {
685                                         goto dn_match_cleanup;
686
687                                 }
688
689                                 if ( b->a_dn_style == ACL_STYLE_BASE ) {
690                                         /* base dn -- entire object DN must match */
691                                         if ( odnlen != patlen ) {
692                                                 goto dn_match_cleanup;
693                                         }
694
695                                 } else if ( b->a_dn_style == ACL_STYLE_ONE ) {
696                                         int rdnlen = -1;
697
698                                         if ( odnlen <= patlen ) {
699                                                 goto dn_match_cleanup;
700                                         }
701
702                                         if ( !DN_SEPARATOR( op->o_ndn.bv_val[odnlen - patlen - 1] ) ) {
703                                                 goto dn_match_cleanup;
704                                         }
705
706                                         rdnlen = dn_rdnlen( NULL, &op->o_ndn );
707                                         if ( rdnlen != odnlen - patlen - 1 ) {
708                                                 goto dn_match_cleanup;
709                                         }
710
711                                 } else if ( b->a_dn_style == ACL_STYLE_SUBTREE ) {
712                                         if ( odnlen > patlen && !DN_SEPARATOR( op->o_ndn.bv_val[odnlen - patlen - 1] ) ) {
713                                                 goto dn_match_cleanup;
714                                         }
715
716                                 } else if ( b->a_dn_style == ACL_STYLE_CHILDREN ) {
717                                         if ( odnlen <= patlen ) {
718                                                 goto dn_match_cleanup;
719                                         }
720
721                                         if ( !DN_SEPARATOR( op->o_ndn.bv_val[odnlen - patlen - 1] ) ) {
722                                                 goto dn_match_cleanup;
723                                         }
724                                 }
725
726                                 got_match = !strcmp( pat.bv_val, op->o_ndn.bv_val + odnlen - patlen );
727
728 dn_match_cleanup:;
729                                 if ( pat.bv_val != b->a_dn_pat.bv_val ) {
730                                         free( pat.bv_val );
731                                 }
732
733                                 if ( !got_match ) {
734                                         continue;
735                                 }
736                         }
737                 }
738
739                 if ( b->a_sockurl_pat.bv_len ) {
740 #ifdef NEW_LOGGING
741                         LDAP_LOG( ACL, DETAIL1, 
742                                    "acl_mask: conn %lu  check a_sockurl_pat: %s\n",
743                                    conn->c_connid, b->a_sockurl_pat.bv_val , 0 );
744 #else
745                         Debug( LDAP_DEBUG_ACL, "<= check a_sockurl_pat: %s\n",
746                                 b->a_sockurl_pat.bv_val, 0, 0 );
747 #endif
748
749                         if ( !ber_bvccmp( &b->a_sockurl_pat, '*' ) ) {
750                                 if ( b->a_sockurl_style == ACL_STYLE_REGEX) {
751                                         if (!regex_matches( &b->a_sockurl_pat, conn->c_listener_url.bv_val,
752                                                         e->e_ndn, matches ) ) 
753                                         {
754                                                 continue;
755                                         }
756                                 } else {
757                                         if ( ber_bvstrcasecmp( &b->a_sockurl_pat, &conn->c_listener_url ) != 0 )
758                                                 continue;
759                                 }
760                         }
761                 }
762
763                 if ( b->a_domain_pat.bv_len ) {
764 #ifdef NEW_LOGGING
765                         LDAP_LOG( ACL, DETAIL1, 
766                                    "acl_mask: conn %lu  check a_domain_pat: %s\n",
767                                    conn->c_connid, b->a_domain_pat.bv_val , 0 );
768 #else
769                         Debug( LDAP_DEBUG_ACL, "<= check a_domain_pat: %s\n",
770                                 b->a_domain_pat.bv_val, 0, 0 );
771 #endif
772                         if ( !ber_bvccmp( &b->a_domain_pat, '*' ) ) {
773                                 if ( b->a_domain_style == ACL_STYLE_REGEX) {
774                                         if (!regex_matches( &b->a_domain_pat, conn->c_peer_domain.bv_val,
775                                                         e->e_ndn, matches ) ) 
776                                         {
777                                                 continue;
778                                         }
779                                 } else {
780                                         char buf[ACL_BUF_SIZE];
781
782                                         struct berval   cmp = conn->c_peer_domain;
783                                         struct berval   pat = b->a_domain_pat;
784
785                                         if ( b->a_domain_expand ) {
786                                                 struct berval bv;
787
788                                                 bv.bv_len = sizeof(buf) - 1;
789                                                 bv.bv_val = buf;
790
791                                                 string_expand(&bv, &b->a_domain_pat, e->e_ndn, matches);
792                                                 pat = bv;
793                                         }
794
795                                         if ( b->a_domain_style == ACL_STYLE_SUBTREE ) {
796                                                 int offset = cmp.bv_len - pat.bv_len;
797                                                 if ( offset < 0 ) {
798                                                         continue;
799                                                 }
800
801                                                 if ( offset == 1 || ( offset > 1 && cmp.bv_val[ offset - 1 ] != '.' ) ) {
802                                                         continue;
803                                                 }
804
805                                                 /* trim the domain */
806                                                 cmp.bv_val = &cmp.bv_val[ offset ];
807                                                 cmp.bv_len -= offset;
808                                         }
809                                         
810                                         if ( ber_bvstrcasecmp( &pat, &cmp ) != 0 ) {
811                                                 continue;
812                                         }
813                                 }
814                         }
815                 }
816
817                 if ( b->a_peername_pat.bv_len ) {
818 #ifdef NEW_LOGGING
819                         LDAP_LOG( ACL, DETAIL1, 
820                                    "acl_mask: conn %lu  check a_perrname_path: %s\n",
821                                    conn->c_connid, b->a_peername_pat.bv_val , 0 );
822 #else
823                         Debug( LDAP_DEBUG_ACL, "<= check a_peername_path: %s\n",
824                                 b->a_peername_pat.bv_val, 0, 0 );
825 #endif
826                         if ( !ber_bvccmp( &b->a_peername_pat, '*' ) ) {
827                                 if ( b->a_peername_style == ACL_STYLE_REGEX) {
828                                         if (!regex_matches( &b->a_peername_pat, conn->c_peer_name.bv_val,
829                                                         e->e_ndn, matches ) ) 
830                                         {
831                                                 continue;
832                                         }
833                                 } else {
834                                         if ( ber_bvstrcasecmp( &b->a_peername_pat, &conn->c_peer_name ) != 0 )
835                                                 continue;
836                                 }
837                         }
838                 }
839
840                 if ( b->a_sockname_pat.bv_len ) {
841 #ifdef NEW_LOGGING
842                         LDAP_LOG( ACL, DETAIL1, 
843                                    "acl_mask: conn %lu  check a_sockname_path: %s\n",
844                                    conn->c_connid, b->a_sockname_pat.bv_val , 0 );
845 #else
846                         Debug( LDAP_DEBUG_ACL, "<= check a_sockname_path: %s\n",
847                                 b->a_sockname_pat.bv_val, 0, 0 );
848 #endif
849                         if ( !ber_bvccmp( &b->a_sockname_pat, '*' ) ) {
850                                 if ( b->a_sockname_style == ACL_STYLE_REGEX) {
851                                         if (!regex_matches( &b->a_sockname_pat, conn->c_sock_name.bv_val,
852                                                         e->e_ndn, matches ) ) 
853                                         {
854                                                 continue;
855                                         }
856                                 } else {
857                                         if ( ber_bvstrcasecmp( &b->a_sockname_pat, &conn->c_sock_name ) != 0 )
858                                                 continue;
859                                 }
860                         }
861                 }
862
863                 if ( b->a_dn_at != NULL ) {
864                         Attribute       *at;
865                         struct berval   bv;
866                         int rc, match = 0;
867                         const char *text;
868                         const char *attr = b->a_dn_at->ad_cname.bv_val;
869
870                         assert( attr != NULL );
871
872                         if ( op->o_ndn.bv_len == 0 ) {
873                                 continue;
874                         }
875
876 #ifdef NEW_LOGGING
877                         LDAP_LOG( ACL, DETAIL1, 
878                                    "acl_mask: conn %lu  check a_dn_pat: %s\n",
879                                    conn->c_connid, attr , 0 );
880 #else
881                         Debug( LDAP_DEBUG_ACL, "<= check a_dn_at: %s\n",
882                                 attr, 0, 0);
883 #endif
884                         bv = op->o_ndn;
885
886                         /* see if asker is listed in dnattr */
887                         for( at = attrs_find( e->e_attrs, b->a_dn_at );
888                                 at != NULL;
889                                 at = attrs_find( at->a_next, b->a_dn_at ) )
890                         {
891                                 if( value_find( b->a_dn_at, at->a_vals, &bv ) == 0 ) {
892                                         /* found it */
893                                         match = 1;
894                                         break;
895                                 }
896                         }
897
898                         if( match ) {
899                                 /* have a dnattr match. if this is a self clause then
900                                  * the target must also match the op dn.
901                                  */
902                                 if ( b->a_dn_self ) {
903                                         /* check if the target is an attribute. */
904                                         if ( val == NULL )
905                                                 continue;
906                                         /* target is attribute, check if the attribute value
907                                          * is the op dn.
908                                          */
909                                         rc = value_match( &match, b->a_dn_at,
910                                                 b->a_dn_at->ad_type->sat_equality, 0,
911                                                 val, &bv, &text );
912                                         /* on match error or no match, fail the ACL clause */
913                                         if (rc != LDAP_SUCCESS || match != 0 )
914                                                 continue;
915                                 }
916                         } else {
917                                 /* no dnattr match, check if this is a self clause */
918                                 if ( ! b->a_dn_self )
919                                         continue;
920
921                                 ACL_RECORD_VALUE_STATE;
922                                 
923                                 /* this is a self clause, check if the target is an
924                                  * attribute.
925                                  */
926                                 if ( val == NULL )
927                                         continue;
928
929                                 /* target is attribute, check if the attribute value
930                                  * is the op dn.
931                                  */
932                                 rc = value_match( &match, b->a_dn_at,
933                                         b->a_dn_at->ad_type->sat_equality, 0,
934                                         val, &bv, &text );
935
936                                 /* on match error or no match, fail the ACL clause */
937                                 if (rc != LDAP_SUCCESS || match != 0 )
938                                         continue;
939                         }
940                 }
941
942                 if ( b->a_group_pat.bv_len ) {
943                         struct berval bv;
944                         struct berval ndn = { 0, NULL };
945                         int rc;
946
947                         if ( op->o_ndn.bv_len == 0 ) {
948                                 continue;
949                         }
950
951                         /* b->a_group is an unexpanded entry name, expanded it should be an 
952                          * entry with objectclass group* and we test to see if odn is one of
953                          * the values in the attribute group
954                          */
955                         /* see if asker is listed in dnattr */
956                         if ( b->a_group_style == ACL_STYLE_REGEX ) {
957                                 char buf[ACL_BUF_SIZE];
958                                 bv.bv_len = sizeof(buf) - 1;
959                                 bv.bv_val = buf; 
960
961                                 string_expand( &bv, &b->a_group_pat, e->e_ndn, matches );
962                                 if ( dnNormalize2( NULL, &bv, &ndn ) != LDAP_SUCCESS ) {
963                                         /* did not expand to a valid dn */
964                                         continue;
965                                 }
966
967                                 bv = ndn;
968
969                         } else {
970                                 bv = b->a_group_pat;
971                         }
972
973                         rc = backend_group( be, conn, op, e, &bv, &op->o_ndn,
974                                 b->a_group_oc, b->a_group_at );
975
976                         if ( ndn.bv_val ) free( ndn.bv_val );
977
978                         if ( rc != 0 ) {
979                                 continue;
980                         }
981                 }
982
983                 if ( b->a_set_pat.bv_len != 0 ) {
984                         if (aci_match_set( &b->a_set_pat, be, e, conn, op, 0 ) == 0) {
985                                 continue;
986                         }
987                 }
988
989                 if ( b->a_authz.sai_ssf ) {
990 #ifdef NEW_LOGGING
991                         LDAP_LOG( ACL, DETAIL1, 
992                                 "acl_mask: conn %lu  check a_authz.sai_ssf: ACL %u > OP %u\n",
993                                 conn->c_connid, b->a_authz.sai_ssf, op->o_ssf  );
994 #else
995                         Debug( LDAP_DEBUG_ACL, "<= check a_authz.sai_ssf: ACL %u > OP %u\n",
996                                 b->a_authz.sai_ssf, op->o_ssf, 0 );
997 #endif
998                         if ( b->a_authz.sai_ssf >  op->o_ssf ) {
999                                 continue;
1000                         }
1001                 }
1002
1003                 if ( b->a_authz.sai_transport_ssf ) {
1004 #ifdef NEW_LOGGING
1005                         LDAP_LOG( ACL, DETAIL1, 
1006                                 "acl_mask: conn %lu  check a_authz.sai_transport_ssf: "
1007                                 "ACL %u > OP %u\n",
1008                                 conn->c_connid, b->a_authz.sai_transport_ssf, 
1009                                 op->o_transport_ssf  );
1010 #else
1011                         Debug( LDAP_DEBUG_ACL,
1012                                 "<= check a_authz.sai_transport_ssf: ACL %u > OP %u\n",
1013                                 b->a_authz.sai_transport_ssf, op->o_transport_ssf, 0 );
1014 #endif
1015                         if ( b->a_authz.sai_transport_ssf >  op->o_transport_ssf ) {
1016                                 continue;
1017                         }
1018                 }
1019
1020                 if ( b->a_authz.sai_tls_ssf ) {
1021 #ifdef NEW_LOGGING
1022                         LDAP_LOG( ACL, DETAIL1, 
1023                                 "acl_mask: conn %lu  check a_authz.sai_tls_ssf: ACL %u > "
1024                                 "OP %u\n",
1025                                 conn->c_connid, b->a_authz.sai_tls_ssf, op->o_tls_ssf  );
1026 #else
1027                         Debug( LDAP_DEBUG_ACL,
1028                                 "<= check a_authz.sai_tls_ssf: ACL %u > OP %u\n",
1029                                 b->a_authz.sai_tls_ssf, op->o_tls_ssf, 0 );
1030 #endif
1031                         if ( b->a_authz.sai_tls_ssf >  op->o_tls_ssf ) {
1032                                 continue;
1033                         }
1034                 }
1035
1036                 if ( b->a_authz.sai_sasl_ssf ) {
1037 #ifdef NEW_LOGGING
1038                         LDAP_LOG( ACL, DETAIL1, 
1039                            "acl_mask: conn %lu check a_authz.sai_sasl_ssf: " 
1040                            "ACL %u > OP %u\n",
1041                                 conn->c_connid, b->a_authz.sai_sasl_ssf, op->o_sasl_ssf );
1042 #else
1043                         Debug( LDAP_DEBUG_ACL,
1044                                 "<= check a_authz.sai_sasl_ssf: ACL %u > OP %u\n",
1045                                 b->a_authz.sai_sasl_ssf, op->o_sasl_ssf, 0 );
1046 #endif
1047                         if ( b->a_authz.sai_sasl_ssf >  op->o_sasl_ssf ) {
1048                                 continue;
1049                         }
1050                 }
1051
1052 #ifdef SLAPD_ACI_ENABLED
1053                 if ( b->a_aci_at != NULL ) {
1054                         Attribute       *at;
1055                         slap_access_t grant, deny, tgrant, tdeny;
1056
1057                         /* this case works different from the others above.
1058                          * since aci's themselves give permissions, we need
1059                          * to first check b->a_access_mask, the ACL's access level.
1060                          */
1061
1062                         if ( e->e_nname.bv_len == 0 ) {
1063                                 /* no ACIs in the root DSE */
1064                                 continue;
1065                         }
1066
1067                         /* first check if the right being requested
1068                          * is allowed by the ACL clause.
1069                          */
1070                         if ( ! ACL_GRANT( b->a_access_mask, *mask ) ) {
1071                                 continue;
1072                         }
1073
1074                         /* get the aci attribute */
1075                         at = attr_find( e->e_attrs, b->a_aci_at );
1076                         if ( at == NULL ) {
1077                                 continue;
1078                         }
1079
1080                         ACL_RECORD_VALUE_STATE;
1081
1082                         /* start out with nothing granted, nothing denied */
1083                         ACL_INIT(tgrant);
1084                         ACL_INIT(tdeny);
1085
1086                         /* the aci is an multi-valued attribute.  The
1087                          * rights are determined by OR'ing the individual
1088                          * rights given by the acis.
1089                          */
1090                         for ( i = 0; at->a_vals[i].bv_val != NULL; i++ ) {
1091                                 if (aci_mask( be, conn, op,
1092                                         e, desc, val, &at->a_vals[i],
1093                                         matches, &grant, &deny ) != 0)
1094                                 {
1095                                         tgrant |= grant;
1096                                         tdeny |= deny;
1097                                 }
1098                         }
1099
1100                         /* remove anything that the ACL clause does not allow */
1101                         tgrant &= b->a_access_mask & ACL_PRIV_MASK;
1102                         tdeny &= ACL_PRIV_MASK;
1103
1104                         /* see if we have anything to contribute */
1105                         if( ACL_IS_INVALID(tgrant) && ACL_IS_INVALID(tdeny) ) { 
1106                                 continue;
1107                         }
1108
1109                         /* this could be improved by changing acl_mask so that it can deal with
1110                          * by clauses that return grant/deny pairs.  Right now, it does either
1111                          * additive or subtractive rights, but not both at the same time.  So,
1112                          * we need to combine the grant/deny pair into a single rights mask in
1113                          * a smart way:  if either grant or deny is "empty", then we use the
1114                          * opposite as is, otherwise we remove any denied rights from the grant
1115                          * rights mask and construct an additive mask.
1116                          */
1117                         if (ACL_IS_INVALID(tdeny)) {
1118                                 modmask = tgrant | ACL_PRIV_ADDITIVE;
1119
1120                         } else if (ACL_IS_INVALID(tgrant)) {
1121                                 modmask = tdeny | ACL_PRIV_SUBSTRACTIVE;
1122
1123                         } else {
1124                                 modmask = (tgrant & ~tdeny) | ACL_PRIV_ADDITIVE;
1125                         }
1126
1127                 } else
1128 #endif
1129                 {
1130                         modmask = b->a_access_mask;
1131                 }
1132
1133 #ifdef NEW_LOGGING
1134                 LDAP_LOG( ACL, RESULTS, 
1135                            "acl_mask: [%d] applying %s (%s)\n",
1136                            i, accessmask2str( modmask, accessmaskbuf),
1137                            b->a_type == ACL_CONTINUE ? "continue" : b->a_type == ACL_BREAK
1138                            ? "break" : "stop"  );
1139 #else
1140                 Debug( LDAP_DEBUG_ACL,
1141                         "<= acl_mask: [%d] applying %s (%s)\n",
1142                         i, accessmask2str( modmask, accessmaskbuf ), 
1143                         b->a_type == ACL_CONTINUE
1144                                 ? "continue"
1145                                 : b->a_type == ACL_BREAK
1146                                         ? "break"
1147                                         : "stop" );
1148 #endif
1149                 /* save old mask */
1150                 oldmask = *mask;
1151
1152                 if( ACL_IS_ADDITIVE(modmask) ) {
1153                         /* add privs */
1154                         ACL_PRIV_SET( *mask, modmask );
1155
1156                         /* cleanup */
1157                         ACL_PRIV_CLR( *mask, ~ACL_PRIV_MASK );
1158
1159                 } else if( ACL_IS_SUBTRACTIVE(modmask) ) {
1160                         /* substract privs */
1161                         ACL_PRIV_CLR( *mask, modmask );
1162
1163                         /* cleanup */
1164                         ACL_PRIV_CLR( *mask, ~ACL_PRIV_MASK );
1165
1166                 } else {
1167                         /* assign privs */
1168                         *mask = modmask;
1169                 }
1170
1171 #ifdef NEW_LOGGING
1172                 LDAP_LOG( ACL, DETAIL1, 
1173                            "acl_mask: conn %lu  [%d] mask: %s\n",
1174                            conn->c_connid, i, accessmask2str( *mask, accessmaskbuf)  );
1175 #else
1176                 Debug( LDAP_DEBUG_ACL,
1177                         "<= acl_mask: [%d] mask: %s\n",
1178                         i, accessmask2str(*mask, accessmaskbuf), 0 );
1179 #endif
1180
1181                 if( b->a_type == ACL_CONTINUE ) {
1182                         continue;
1183
1184                 } else if ( b->a_type == ACL_BREAK ) {
1185                         return ACL_BREAK;
1186
1187                 } else {
1188                         return ACL_STOP;
1189                 }
1190         }
1191
1192         /* implicit "by * none" clause */
1193         ACL_INIT(*mask);
1194
1195 #ifdef NEW_LOGGING
1196         LDAP_LOG( ACL, RESULTS, 
1197                    "acl_mask: conn %lu  no more <who> clauses, returning %d (stop)\n",
1198                    conn->c_connid, accessmask2str( *mask, accessmaskbuf) , 0 );
1199 #else
1200         Debug( LDAP_DEBUG_ACL,
1201                 "<= acl_mask: no more <who> clauses, returning %s (stop)\n",
1202                 accessmask2str(*mask, accessmaskbuf), 0, 0 );
1203 #endif
1204         return ACL_STOP;
1205 }
1206
1207 /*
1208  * acl_check_modlist - check access control on the given entry to see if
1209  * it allows the given modifications by the user associated with op.
1210  * returns      1       if mods allowed ok
1211  *                      0       mods not allowed
1212  */
1213
1214 int
1215 acl_check_modlist(
1216     Backend     *be,
1217     Connection  *conn,
1218     Operation   *op,
1219     Entry       *e,
1220     Modifications       *mlist
1221 )
1222 {
1223         struct berval *bv;
1224         AccessControlState state = ACL_STATE_INIT;
1225
1226         assert( be != NULL );
1227
1228         /* short circuit root database access */
1229         if ( be_isroot( be, &op->o_ndn ) ) {
1230 #ifdef NEW_LOGGING
1231                 LDAP_LOG( ACL, DETAIL1, 
1232                            "acl_check_modlist: conn %lu  access granted to root user\n",
1233                            conn->c_connid, 0, 0 );
1234 #else
1235                 Debug( LDAP_DEBUG_ACL,
1236                         "<= acl_access_allowed: granted to database root\n",
1237                     0, 0, 0 );
1238 #endif
1239                 return 1;
1240         }
1241
1242         /* use backend default access if no backend acls */
1243         if( be != NULL && be->be_acl == NULL ) {
1244 #ifdef NEW_LOGGING
1245                 LDAP_LOG( ACL, DETAIL1, 
1246                         "acl_check_modlist: backend default %s access %s to \"%s\"\n",
1247                         access2str( ACL_WRITE ),
1248                         be->be_dfltaccess >= ACL_WRITE ? "granted" : "denied", 
1249                         op->o_dn.bv_val  );
1250 #else
1251                 Debug( LDAP_DEBUG_ACL,
1252                         "=> access_allowed: backend default %s access %s to \"%s\"\n",
1253                         access2str( ACL_WRITE ),
1254                         be->be_dfltaccess >= ACL_WRITE ? "granted" : "denied", op->o_dn.bv_val );
1255 #endif
1256                 return be->be_dfltaccess >= ACL_WRITE;
1257
1258 #ifdef notdef
1259         /* be is always non-NULL */
1260         /* use global default access if no global acls */
1261         } else if ( be == NULL && global_acl == NULL ) {
1262 #ifdef NEW_LOGGING
1263                 LDAP_LOG( ACL, DETAIL1, 
1264                         "acl_check_modlist: global default %s access %s to \"%s\"\n",
1265                    access2str( ACL_WRITE ),
1266                    global_default_access >= ACL_WRITE ? "granted" : "denied", 
1267                    op->o_dn  );
1268 #else
1269                 Debug( LDAP_DEBUG_ACL,
1270                         "=> access_allowed: global default %s access %s to \"%s\"\n",
1271                         access2str( ACL_WRITE ),
1272                         global_default_access >= ACL_WRITE ? "granted" : "denied", op->o_dn );
1273 #endif
1274                 return global_default_access >= ACL_WRITE;
1275 #endif
1276         }
1277
1278         for ( ; mlist != NULL; mlist = mlist->sml_next ) {
1279                 /*
1280                  * no-user-modification operational attributes are ignored
1281                  * by ACL_WRITE checking as any found here are not provided
1282                  * by the user
1283                  */
1284                 if ( is_at_no_user_mod( mlist->sml_desc->ad_type ) ) {
1285 #ifdef NEW_LOGGING
1286                         LDAP_LOG( ACL, DETAIL1, 
1287                                    "acl_check_modlist: conn %lu  no-user-mod %s: modify access granted\n",
1288                                    conn->c_connid, mlist->sml_desc->ad_cname.bv_val , 0 );
1289 #else
1290                         Debug( LDAP_DEBUG_ACL, "acl: no-user-mod %s:"
1291                                 " modify access granted\n",
1292                                 mlist->sml_desc->ad_cname.bv_val, 0, 0 );
1293 #endif
1294                         continue;
1295                 }
1296
1297                 switch ( mlist->sml_op ) {
1298                 case LDAP_MOD_REPLACE:
1299                         /*
1300                          * We must check both permission to delete the whole
1301                          * attribute and permission to add the specific attributes.
1302                          * This prevents abuse from selfwriters.
1303                          */
1304                         if ( ! access_allowed( be, conn, op, e,
1305                                 mlist->sml_desc, NULL, ACL_WRITE, &state ) )
1306                         {
1307                                 return( 0 );
1308                         }
1309
1310                         if ( mlist->sml_bvalues == NULL ) break;
1311
1312                         /* fall thru to check value to add */
1313
1314                 case LDAP_MOD_ADD:
1315                         assert( mlist->sml_bvalues != NULL );
1316
1317                         for ( bv = mlist->sml_bvalues; bv->bv_val != NULL; bv++ ) {
1318                                 if ( ! access_allowed( be, conn, op, e,
1319                                         mlist->sml_desc, bv, ACL_WRITE, &state ) )
1320                                 {
1321                                         return( 0 );
1322                                 }
1323                         }
1324                         break;
1325
1326                 case LDAP_MOD_DELETE:
1327                         if ( mlist->sml_bvalues == NULL ) {
1328                                 if ( ! access_allowed( be, conn, op, e,
1329                                         mlist->sml_desc, NULL, ACL_WRITE, NULL ) )
1330                                 {
1331                                         return( 0 );
1332                                 }
1333                                 break;
1334                         }
1335                         for ( bv = mlist->sml_bvalues; bv->bv_val != NULL; bv++ ) {
1336                                 if ( ! access_allowed( be, conn, op, e,
1337                                         mlist->sml_desc, bv, ACL_WRITE, &state ) )
1338                                 {
1339                                         return( 0 );
1340                                 }
1341                         }
1342                         break;
1343
1344                 case SLAP_MOD_SOFTADD:
1345                         /* allow adding attribute via modrdn thru */
1346                         break;
1347
1348                 default:
1349                         assert( 0 );
1350                         return( 0 );
1351                 }
1352         }
1353
1354         return( 1 );
1355 }
1356
1357 static int
1358 aci_get_part(
1359         struct berval *list,
1360         int ix,
1361         char sep,
1362         struct berval *bv )
1363 {
1364         int len;
1365         char *p;
1366
1367         if (bv) {
1368                 bv->bv_len = 0;
1369                 bv->bv_val = NULL;
1370         }
1371         len = list->bv_len;
1372         p = list->bv_val;
1373         while (len >= 0 && --ix >= 0) {
1374                 while (--len >= 0 && *p++ != sep) ;
1375         }
1376         while (len >= 0 && *p == ' ') {
1377                 len--;
1378                 p++;
1379         }
1380         if (len < 0)
1381                 return(-1);
1382
1383         if (!bv)
1384                 return(0);
1385
1386         bv->bv_val = p;
1387         while (--len >= 0 && *p != sep) {
1388                 bv->bv_len++;
1389                 p++;
1390         }
1391         while (bv->bv_len > 0 && *--p == ' ')
1392                 bv->bv_len--;
1393         return(bv->bv_len);
1394 }
1395
1396 BerVarray
1397 aci_set_gather (void *cookie, struct berval *name, struct berval *attr)
1398 {
1399         AciSetCookie *cp = cookie;
1400         BerVarray bvals = NULL;
1401         struct berval ndn;
1402
1403         /* this routine needs to return the bervals instead of
1404          * plain strings, since syntax is not known.  It should
1405          * also return the syntax or some "comparison cookie".
1406          */
1407
1408         if (dnNormalize2(NULL, name, &ndn) == LDAP_SUCCESS) {
1409                 const char *text;
1410                 AttributeDescription *desc = NULL;
1411                 if (slap_bv2ad(attr, &desc, &text) == LDAP_SUCCESS) {
1412                         backend_attribute(cp->be, NULL, cp->op,
1413                                 cp->e, &ndn, desc, &bvals);
1414                 }
1415                 free(ndn.bv_val);
1416         }
1417         return(bvals);
1418 }
1419
1420 static int
1421 aci_match_set (
1422         struct berval *subj,
1423     Backend *be,
1424     Entry *e,
1425     Connection *conn,
1426     Operation *op,
1427     int setref
1428 )
1429 {
1430         struct berval set = { 0, NULL };
1431         int rc = 0;
1432         AciSetCookie cookie;
1433
1434         if (setref == 0) {
1435                 ber_dupbv( &set, subj );
1436         } else {
1437                 struct berval subjdn, ndn = { 0, NULL };
1438                 struct berval setat;
1439                 BerVarray bvals;
1440                 const char *text;
1441                 AttributeDescription *desc = NULL;
1442
1443                 /* format of string is "entry/setAttrName" */
1444                 if (aci_get_part(subj, 0, '/', &subjdn) < 0) {
1445                         return(0);
1446                 }
1447
1448                 if ( aci_get_part(subj, 1, '/', &setat) < 0 ) {
1449                         setat.bv_val = SLAPD_ACI_SET_ATTR;
1450                         setat.bv_len = sizeof(SLAPD_ACI_SET_ATTR)-1;
1451                 }
1452
1453                 if ( setat.bv_val != NULL ) {
1454                         /*
1455                          * NOTE: dnNormalize2 honors the ber_len field
1456                          * as the length of the dn to be normalized
1457                          */
1458                         if ( dnNormalize2(NULL, &subjdn, &ndn) == LDAP_SUCCESS
1459                                 && slap_bv2ad(&setat, &desc, &text) == LDAP_SUCCESS )
1460                         {
1461                                 backend_attribute(be, NULL, op, e,
1462                                         &ndn, desc, &bvals);
1463                                 if ( bvals != NULL ) {
1464                                         if ( bvals[0].bv_val != NULL ) {
1465                                                 int i;
1466                                                 set = bvals[0];
1467                                                 bvals[0].bv_val = NULL;
1468                                                 for (i=1;bvals[i].bv_val;i++);
1469                                                 bvals[0].bv_val = bvals[i-1].bv_val;
1470                                                 bvals[i-1].bv_val = NULL;
1471                                         }
1472                                         ber_bvarray_free(bvals);
1473                                 }
1474                         }
1475                         if (ndn.bv_val)
1476                                 free(ndn.bv_val);
1477                 }
1478         }
1479
1480         if (set.bv_val != NULL) {
1481                 cookie.be = be;
1482                 cookie.e = e;
1483                 cookie.conn = conn;
1484                 cookie.op = op;
1485                 rc = (slap_set_filter(aci_set_gather, &cookie, &set,
1486                         &op->o_ndn, &e->e_nname, NULL) > 0);
1487                 ch_free(set.bv_val);
1488         }
1489         return(rc);
1490 }
1491
1492 #ifdef SLAPD_ACI_ENABLED
1493 static int
1494 aci_list_map_rights(
1495         struct berval *list )
1496 {
1497         struct berval bv;
1498         slap_access_t mask;
1499         int i;
1500
1501         ACL_INIT(mask);
1502         for (i = 0; aci_get_part(list, i, ',', &bv) >= 0; i++) {
1503                 if (bv.bv_len <= 0)
1504                         continue;
1505                 switch (*bv.bv_val) {
1506                 case 'c':
1507                         ACL_PRIV_SET(mask, ACL_PRIV_COMPARE);
1508                         break;
1509                 case 's':
1510                         /* **** NOTE: draft-ietf-ldapext-aci-model-0.3.txt defines
1511                          * the right 's' to mean "set", but in the examples states
1512                          * that the right 's' means "search".  The latter definition
1513                          * is used here.
1514                          */
1515                         ACL_PRIV_SET(mask, ACL_PRIV_SEARCH);
1516                         break;
1517                 case 'r':
1518                         ACL_PRIV_SET(mask, ACL_PRIV_READ);
1519                         break;
1520                 case 'w':
1521                         ACL_PRIV_SET(mask, ACL_PRIV_WRITE);
1522                         break;
1523                 case 'x':
1524                         /* **** NOTE: draft-ietf-ldapext-aci-model-0.3.txt does not 
1525                          * define any equivalent to the AUTH right, so I've just used
1526                          * 'x' for now.
1527                          */
1528                         ACL_PRIV_SET(mask, ACL_PRIV_AUTH);
1529                         break;
1530                 default:
1531                         break;
1532                 }
1533
1534         }
1535         return(mask);
1536 }
1537
1538 static int
1539 aci_list_has_attr(
1540         struct berval *list,
1541         const struct berval *attr,
1542         struct berval *val )
1543 {
1544         struct berval bv, left, right;
1545         int i;
1546
1547         for (i = 0; aci_get_part(list, i, ',', &bv) >= 0; i++) {
1548                 if (aci_get_part(&bv, 0, '=', &left) < 0
1549                         || aci_get_part(&bv, 1, '=', &right) < 0)
1550                 {
1551                         if (ber_bvstrcasecmp(attr, &bv) == 0)
1552                                 return(1);
1553                 } else if (val == NULL) {
1554                         if (ber_bvstrcasecmp(attr, &left) == 0)
1555                                 return(1);
1556                 } else {
1557                         if (ber_bvstrcasecmp(attr, &left) == 0) {
1558                                 /* this is experimental code that implements a
1559                                  * simple (prefix) match of the attribute value.
1560                                  * the ACI draft does not provide for aci's that
1561                                  * apply to specific values, but it would be
1562                                  * nice to have.  If the <attr> part of an aci's
1563                                  * rights list is of the form <attr>=<value>,
1564                                  * that means the aci applies only to attrs with
1565                                  * the given value.  Furthermore, if the attr is
1566                                  * of the form <attr>=<value>*, then <value> is
1567                                  * treated as a prefix, and the aci applies to 
1568                                  * any value with that prefix.
1569                                  *
1570                                  * Ideally, this would allow r.e. matches.
1571                                  */
1572                                 if (aci_get_part(&right, 0, '*', &left) < 0
1573                                         || right.bv_len <= left.bv_len)
1574                                 {
1575                                         if (ber_bvstrcasecmp(val, &right) == 0)
1576                                                 return(1);
1577                                 } else if (val->bv_len >= left.bv_len) {
1578                                         if (strncasecmp( val->bv_val, left.bv_val, left.bv_len ) == 0)
1579                                                 return(1);
1580                                 }
1581                         }
1582                 }
1583         }
1584         return(0);
1585 }
1586
1587 static slap_access_t
1588 aci_list_get_attr_rights(
1589         struct berval *list,
1590         const struct berval *attr,
1591         struct berval *val )
1592 {
1593     struct berval bv;
1594     slap_access_t mask;
1595     int i;
1596
1597         /* loop through each rights/attr pair, skip first part (action) */
1598         ACL_INIT(mask);
1599         for (i = 1; aci_get_part(list, i + 1, ';', &bv) >= 0; i += 2) {
1600                 if (aci_list_has_attr(&bv, attr, val) == 0)
1601                         continue;
1602                 if (aci_get_part(list, i, ';', &bv) < 0)
1603                         continue;
1604                 mask |= aci_list_map_rights(&bv);
1605         }
1606         return(mask);
1607 }
1608
1609 static int
1610 aci_list_get_rights(
1611         struct berval *list,
1612         const struct berval *attr,
1613         struct berval *val,
1614         slap_access_t *grant,
1615         slap_access_t *deny )
1616 {
1617     struct berval perm, actn;
1618     slap_access_t *mask;
1619     int i, found;
1620
1621         if (attr == NULL || attr->bv_len == 0 
1622                         || ber_bvstrcasecmp( attr, &aci_bv_entry ) == 0) {
1623                 attr = &aci_bv_br_entry;
1624         }
1625
1626         found = 0;
1627         ACL_INIT(*grant);
1628         ACL_INIT(*deny);
1629         /* loop through each permissions clause */
1630         for (i = 0; aci_get_part(list, i, '$', &perm) >= 0; i++) {
1631                 if (aci_get_part(&perm, 0, ';', &actn) < 0)
1632                         continue;
1633                 if (ber_bvstrcasecmp( &aci_bv_grant, &actn ) == 0) {
1634                         mask = grant;
1635                 } else if (ber_bvstrcasecmp( &aci_bv_deny, &actn ) == 0) {
1636                         mask = deny;
1637                 } else {
1638                         continue;
1639                 }
1640
1641                 found = 1;
1642                 *mask |= aci_list_get_attr_rights(&perm, attr, val);
1643                 *mask |= aci_list_get_attr_rights(&perm, &aci_bv_br_all, NULL);
1644         }
1645         return(found);
1646 }
1647
1648 static int
1649 aci_group_member (
1650         struct berval *subj,
1651         struct berval *defgrpoc,
1652         struct berval *defgrpat,
1653     Backend             *be,
1654     Entry               *e,
1655     Connection          *conn,
1656     Operation           *op,
1657         regmatch_t      *matches
1658 )
1659 {
1660         struct berval subjdn;
1661         struct berval grpoc;
1662         struct berval grpat;
1663         ObjectClass *grp_oc = NULL;
1664         AttributeDescription *grp_ad = NULL;
1665         const char *text;
1666         int rc;
1667
1668         /* format of string is "group/objectClassValue/groupAttrName" */
1669         if (aci_get_part(subj, 0, '/', &subjdn) < 0) {
1670                 return(0);
1671         }
1672
1673         if (aci_get_part(subj, 1, '/', &grpoc) < 0) {
1674                 grpoc = *defgrpoc;
1675         }
1676
1677         if (aci_get_part(subj, 2, '/', &grpat) < 0) {
1678                 grpat = *defgrpat;
1679         }
1680
1681         rc = slap_bv2ad( &grpat, &grp_ad, &text );
1682         if( rc != LDAP_SUCCESS ) {
1683                 rc = 0;
1684                 goto done;
1685         }
1686         rc = 0;
1687
1688         grp_oc = oc_bvfind( &grpoc );
1689
1690         if (grp_oc != NULL && grp_ad != NULL ) {
1691                 char buf[ACL_BUF_SIZE];
1692                 struct berval bv, ndn;
1693                 bv.bv_len = sizeof( buf ) - 1;
1694                 bv.bv_val = (char *)&buf;
1695                 string_expand(&bv, &subjdn, e->e_ndn, matches);
1696                 if ( dnNormalize2(NULL, &bv, &ndn) == LDAP_SUCCESS ) {
1697                         rc = (backend_group(be, conn, op, e, &ndn, &op->o_ndn,
1698                                 grp_oc, grp_ad) == 0);
1699                         free( ndn.bv_val );
1700                 }
1701         }
1702
1703 done:
1704         return(rc);
1705 }
1706
1707 static int
1708 aci_mask(
1709     Backend                     *be,
1710     Connection          *conn,
1711     Operation           *op,
1712     Entry                       *e,
1713         AttributeDescription *desc,
1714     struct berval       *val,
1715     struct berval       *aci,
1716         regmatch_t              *matches,
1717         slap_access_t   *grant,
1718         slap_access_t   *deny
1719 )
1720 {
1721     struct berval bv, perms, sdn;
1722         int rc;
1723                 
1724
1725         assert( desc->ad_cname.bv_val != NULL );
1726
1727         /* parse an aci of the form:
1728                 oid#scope#action;rights;attr;rights;attr$action;rights;attr;rights;attr#dnType#subjectDN
1729
1730            See draft-ietf-ldapext-aci-model-04.txt section 9.1 for
1731            a full description of the format for this attribute.
1732            Differences: "this" in the draft is "self" here, and
1733            "self" and "public" is in the position of dnType.
1734
1735            For now, this routine only supports scope=entry.
1736          */
1737
1738         /* check that the aci has all 5 components */
1739         if (aci_get_part(aci, 4, '#', NULL) < 0)
1740                 return(0);
1741
1742         /* check that the aci family is supported */
1743         if (aci_get_part(aci, 0, '#', &bv) < 0)
1744                 return(0);
1745
1746         /* check that the scope is "entry" */
1747         if (aci_get_part(aci, 1, '#', &bv) < 0
1748                 || ber_bvstrcasecmp( &aci_bv_entry, &bv ) != 0)
1749         {
1750                 return(0);
1751         }
1752
1753         /* get the list of permissions clauses, bail if empty */
1754         if (aci_get_part(aci, 2, '#', &perms) <= 0)
1755                 return(0);
1756
1757         /* check if any permissions allow desired access */
1758         if (aci_list_get_rights(&perms, &desc->ad_cname, val, grant, deny) == 0)
1759                 return(0);
1760
1761         /* see if we have a DN match */
1762         if (aci_get_part(aci, 3, '#', &bv) < 0)
1763                 return(0);
1764
1765         if (aci_get_part(aci, 4, '#', &sdn) < 0)
1766                 return(0);
1767
1768         if (ber_bvstrcasecmp( &aci_bv_access_id, &bv ) == 0) {
1769                 struct berval ndn;
1770                 rc = 0;
1771                 if ( dnNormalize2(NULL, &sdn, &ndn) == LDAP_SUCCESS ) {
1772                         if (dn_match( &op->o_ndn, &ndn))
1773                                 rc = 1;
1774                         free(ndn.bv_val);
1775                 }
1776                 return (rc);
1777
1778         } else if (ber_bvstrcasecmp( &aci_bv_public, &bv ) == 0) {
1779                 return(1);
1780
1781         } else if (ber_bvstrcasecmp( &aci_bv_self, &bv ) == 0) {
1782                 if (dn_match(&op->o_ndn, &e->e_nname))
1783                         return(1);
1784
1785         } else if (ber_bvstrcasecmp( &aci_bv_dnattr, &bv ) == 0) {
1786                 Attribute *at;
1787                 AttributeDescription *ad = NULL;
1788                 const char *text;
1789
1790                 rc = slap_bv2ad( &sdn, &ad, &text );
1791
1792                 if( rc != LDAP_SUCCESS ) {
1793                         return 0;
1794                 }
1795
1796                 rc = 0;
1797
1798                 bv = op->o_ndn;
1799
1800                 for(at = attrs_find( e->e_attrs, ad );
1801                         at != NULL;
1802                         at = attrs_find( at->a_next, ad ) )
1803                 {
1804                         if (value_find( ad, at->a_vals, &bv) == 0 ) {
1805                                 rc = 1;
1806                                 break;
1807                         }
1808                 }
1809
1810                 return rc;
1811
1812
1813         } else if (ber_bvstrcasecmp( &aci_bv_group, &bv ) == 0) {
1814                 if (aci_group_member(&sdn, &aci_bv_group_class, &aci_bv_group_attr, be, e, conn, op, matches))
1815                         return(1);
1816
1817         } else if (ber_bvstrcasecmp( &aci_bv_role, &bv ) == 0) {
1818                 if (aci_group_member(&sdn, &aci_bv_role_class, &aci_bv_role_attr, be, e, conn, op, matches))
1819                         return(1);
1820
1821         } else if (ber_bvstrcasecmp( &aci_bv_set, &bv ) == 0) {
1822                 if (aci_match_set(&sdn, be, e, conn, op, 0))
1823                         return(1);
1824
1825         } else if (ber_bvstrcasecmp( &aci_bv_set_ref, &bv ) == 0) {
1826                 if (aci_match_set(&sdn, be, e, conn, op, 1))
1827                         return(1);
1828
1829         }
1830
1831         return(0);
1832 }
1833
1834 #endif  /* SLAPD_ACI_ENABLED */
1835
1836 static void
1837 string_expand(
1838         struct berval *bv,
1839         struct berval *pat,
1840         char *match,
1841         regmatch_t *matches)
1842 {
1843         ber_len_t       size;
1844         char   *sp;
1845         char   *dp;
1846         int     flag;
1847
1848         size = 0;
1849         bv->bv_val[0] = '\0';
1850         bv->bv_len--; /* leave space for lone $ */
1851
1852         flag = 0;
1853         for ( dp = bv->bv_val, sp = pat->bv_val; size < bv->bv_len &&
1854                 sp < pat->bv_val + pat->bv_len ; sp++ )
1855         {
1856                 /* did we previously see a $ */
1857                 if ( flag ) {
1858                         if ( flag == 1 && *sp == '$' ) {
1859                                 *dp++ = '$';
1860                                 size++;
1861                                 flag = 0;
1862
1863                         } else if ( flag == 1 && *sp == '{' /*'}'*/) {
1864                                 flag = 2;
1865
1866                         } else if ( *sp >= '0' && *sp <= '9' ) {
1867                                 int     n;
1868                                 int     i;
1869                                 int     l;
1870
1871                                 n = *sp - '0';
1872
1873                                 if ( flag == 2 ) {
1874                                         for ( sp++; *sp != '\0' && *sp != /*'{'*/ '}'; sp++ ) {
1875                                                 if ( *sp >= '0' && *sp <= '9' ) {
1876                                                         n = 10*n + ( *sp - '0' );
1877                                                 }
1878                                         }
1879
1880                                         if ( *sp != /*'{'*/ '}' ) {
1881                                                 /* error */
1882                                         }
1883                                 }
1884
1885                                 if ( n >= MAXREMATCHES ) {
1886                                 
1887                                 }
1888                                 
1889                                 *dp = '\0';
1890                                 i = matches[n].rm_so;
1891                                 l = matches[n].rm_eo; 
1892                                 for ( ; size < bv->bv_len && i < l; size++, i++ ) {
1893                                         *dp++ = match[i];
1894                                 }
1895                                 *dp = '\0';
1896
1897                                 flag = 0;
1898                         }
1899                 } else {
1900                         if (*sp == '$') {
1901                                 flag = 1;
1902                         } else {
1903                                 *dp++ = *sp;
1904                                 size++;
1905                         }
1906                 }
1907         }
1908
1909         if ( flag ) {
1910                 /* must have ended with a single $ */
1911                 *dp++ = '$';
1912                 size++;
1913         }
1914
1915         *dp = '\0';
1916         bv->bv_len = size;
1917
1918 #ifdef NEW_LOGGING
1919         LDAP_LOG( ACL, DETAIL1, 
1920            "string_expand:  pattern = %.*s\n", (int)pat->bv_len, pat->bv_val, 0 );
1921         LDAP_LOG( ACL, DETAIL1, "string_expand:  expanded = %s\n", bv->bv_val, 0, 0 );
1922 #else
1923         Debug( LDAP_DEBUG_TRACE, "=> string_expand: pattern:  %.*s\n", (int)pat->bv_len, pat->bv_val, 0 );
1924         Debug( LDAP_DEBUG_TRACE, "=> string_expand: expanded: %s\n", bv->bv_val, 0, 0 );
1925 #endif
1926 }
1927
1928 static int
1929 regex_matches(
1930         struct berval *pat,                     /* pattern to expand and match against */
1931         char *str,                              /* string to match against pattern */
1932         char *buf,                              /* buffer with $N expansion variables */
1933         regmatch_t *matches             /* offsets in buffer for $N expansion variables */
1934 )
1935 {
1936         regex_t re;
1937         char newbuf[ACL_BUF_SIZE];
1938         struct berval bv;
1939         int     rc;
1940
1941         bv.bv_len = sizeof(newbuf) - 1;
1942         bv.bv_val = newbuf;
1943
1944         if(str == NULL) str = "";
1945
1946         string_expand(&bv, pat, buf, matches);
1947         if (( rc = regcomp(&re, newbuf, REG_EXTENDED|REG_ICASE))) {
1948                 char error[ACL_BUF_SIZE];
1949                 regerror(rc, &re, error, sizeof(error));
1950
1951 #ifdef NEW_LOGGING
1952                 LDAP_LOG( ACL, ERR, 
1953                            "regex_matches: compile( \"%s\", \"%s\") failed %s\n",
1954                            pat->bv_val, str, error  );
1955 #else
1956                 Debug( LDAP_DEBUG_TRACE,
1957                     "compile( \"%s\", \"%s\") failed %s\n",
1958                         pat->bv_val, str, error );
1959 #endif
1960                 return( 0 );
1961         }
1962
1963         rc = regexec(&re, str, 0, NULL, 0);
1964         regfree( &re );
1965
1966 #ifdef NEW_LOGGING
1967         LDAP_LOG( ACL, DETAIL2, "regex_matches: string:   %s\n", str, 0, 0 );
1968         LDAP_LOG( ACL, DETAIL2, "regex_matches: rc:     %d  %s\n",
1969                    rc, rc ? "matches" : "no matches", 0  );
1970 #else
1971         Debug( LDAP_DEBUG_TRACE,
1972             "=> regex_matches: string:   %s\n", str, 0, 0 );
1973         Debug( LDAP_DEBUG_TRACE,
1974             "=> regex_matches: rc: %d %s\n",
1975                 rc, !rc ? "matches" : "no matches", 0 );
1976 #endif
1977         return( !rc );
1978 }
1979