]> git.sur5r.net Git - openldap/blob - servers/slapd/acl.c
579add45d4e9baa81bee80971a311c59ab198dbf
[openldap] / servers / slapd / acl.c
1 /* acl.c - routines to parse and check acl's */
2 /* $OpenLDAP$ */
3 /*
4  * Copyright 1998-2003 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 = NULL;
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_ex( b->a_dn_at,
892                                         SLAP_MR_ASSERTED_VALUE_NORMALIZED_MATCH, at->a_vals, &bv )
893                                         == 0 )
894                                 {
895                                         /* found it */
896                                         match = 1;
897                                         break;
898                                 }
899                         }
900
901                         if( match ) {
902                                 /* have a dnattr match. if this is a self clause then
903                                  * the target must also match the op dn.
904                                  */
905                                 if ( b->a_dn_self ) {
906                                         /* check if the target is an attribute. */
907                                         if ( val == NULL ) continue;
908
909                                         /* target is attribute, check if the attribute value
910                                          * is the op dn.
911                                          */
912                                         rc = value_match( &match, b->a_dn_at,
913                                                 b->a_dn_at->ad_type->sat_equality, 0,
914                                                 val, &bv, &text );
915                                         /* on match error or no match, fail the ACL clause */
916                                         if (rc != LDAP_SUCCESS || match != 0 )
917                                                 continue;
918                                 }
919                         } else {
920                                 /* no dnattr match, check if this is a self clause */
921                                 if ( ! b->a_dn_self )
922                                         continue;
923
924                                 ACL_RECORD_VALUE_STATE;
925                                 
926                                 /* this is a self clause, check if the target is an
927                                  * attribute.
928                                  */
929                                 if ( val == NULL )
930                                         continue;
931
932                                 /* target is attribute, check if the attribute value
933                                  * is the op dn.
934                                  */
935                                 rc = value_match( &match, b->a_dn_at,
936                                         b->a_dn_at->ad_type->sat_equality, 0,
937                                         val, &bv, &text );
938
939                                 /* on match error or no match, fail the ACL clause */
940                                 if (rc != LDAP_SUCCESS || match != 0 )
941                                         continue;
942                         }
943                 }
944
945                 if ( b->a_group_pat.bv_len ) {
946                         struct berval bv;
947                         struct berval ndn = { 0, NULL };
948                         int rc;
949
950                         if ( op->o_ndn.bv_len == 0 ) {
951                                 continue;
952                         }
953
954                         /* b->a_group is an unexpanded entry name, expanded it should be an 
955                          * entry with objectclass group* and we test to see if odn is one of
956                          * the values in the attribute group
957                          */
958                         /* see if asker is listed in dnattr */
959                         if ( b->a_group_style == ACL_STYLE_REGEX ) {
960                                 char buf[ACL_BUF_SIZE];
961                                 bv.bv_len = sizeof(buf) - 1;
962                                 bv.bv_val = buf; 
963
964                                 string_expand( &bv, &b->a_group_pat, e->e_ndn, matches );
965                                 if ( dnNormalize2( NULL, &bv, &ndn ) != LDAP_SUCCESS ) {
966                                         /* did not expand to a valid dn */
967                                         continue;
968                                 }
969
970                                 bv = ndn;
971
972                         } else {
973                                 bv = b->a_group_pat;
974                         }
975
976                         rc = backend_group( be, conn, op, e, &bv, &op->o_ndn,
977                                 b->a_group_oc, b->a_group_at );
978
979                         if ( ndn.bv_val ) free( ndn.bv_val );
980
981                         if ( rc != 0 ) {
982                                 continue;
983                         }
984                 }
985
986                 if ( b->a_set_pat.bv_len != 0 ) {
987                         struct berval bv;
988                         char buf[ACL_BUF_SIZE];
989                         if( b->a_set_style == ACL_STYLE_REGEX ){
990                                 bv.bv_len = sizeof(buf) - 1;
991                                 bv.bv_val = buf;
992                                 string_expand( &bv, &b->a_set_pat, e->e_ndn, matches );
993                         }else{
994                                 bv = b->a_set_pat;
995                         }
996                         if (aci_match_set( &bv, be, e, conn, op, 0 ) == 0) {
997                                 continue;
998                         }
999                 }
1000
1001                 if ( b->a_authz.sai_ssf ) {
1002 #ifdef NEW_LOGGING
1003                         LDAP_LOG( ACL, DETAIL1, 
1004                                 "acl_mask: conn %lu  check a_authz.sai_ssf: ACL %u > OP %u\n",
1005                                 conn->c_connid, b->a_authz.sai_ssf, op->o_ssf  );
1006 #else
1007                         Debug( LDAP_DEBUG_ACL, "<= check a_authz.sai_ssf: ACL %u > OP %u\n",
1008                                 b->a_authz.sai_ssf, op->o_ssf, 0 );
1009 #endif
1010                         if ( b->a_authz.sai_ssf >  op->o_ssf ) {
1011                                 continue;
1012                         }
1013                 }
1014
1015                 if ( b->a_authz.sai_transport_ssf ) {
1016 #ifdef NEW_LOGGING
1017                         LDAP_LOG( ACL, DETAIL1, 
1018                                 "acl_mask: conn %lu  check a_authz.sai_transport_ssf: "
1019                                 "ACL %u > OP %u\n",
1020                                 conn->c_connid, b->a_authz.sai_transport_ssf, 
1021                                 op->o_transport_ssf  );
1022 #else
1023                         Debug( LDAP_DEBUG_ACL,
1024                                 "<= check a_authz.sai_transport_ssf: ACL %u > OP %u\n",
1025                                 b->a_authz.sai_transport_ssf, op->o_transport_ssf, 0 );
1026 #endif
1027                         if ( b->a_authz.sai_transport_ssf >  op->o_transport_ssf ) {
1028                                 continue;
1029                         }
1030                 }
1031
1032                 if ( b->a_authz.sai_tls_ssf ) {
1033 #ifdef NEW_LOGGING
1034                         LDAP_LOG( ACL, DETAIL1, 
1035                                 "acl_mask: conn %lu  check a_authz.sai_tls_ssf: ACL %u > "
1036                                 "OP %u\n",
1037                                 conn->c_connid, b->a_authz.sai_tls_ssf, op->o_tls_ssf  );
1038 #else
1039                         Debug( LDAP_DEBUG_ACL,
1040                                 "<= check a_authz.sai_tls_ssf: ACL %u > OP %u\n",
1041                                 b->a_authz.sai_tls_ssf, op->o_tls_ssf, 0 );
1042 #endif
1043                         if ( b->a_authz.sai_tls_ssf >  op->o_tls_ssf ) {
1044                                 continue;
1045                         }
1046                 }
1047
1048                 if ( b->a_authz.sai_sasl_ssf ) {
1049 #ifdef NEW_LOGGING
1050                         LDAP_LOG( ACL, DETAIL1, 
1051                            "acl_mask: conn %lu check a_authz.sai_sasl_ssf: " 
1052                            "ACL %u > OP %u\n",
1053                                 conn->c_connid, b->a_authz.sai_sasl_ssf, op->o_sasl_ssf );
1054 #else
1055                         Debug( LDAP_DEBUG_ACL,
1056                                 "<= check a_authz.sai_sasl_ssf: ACL %u > OP %u\n",
1057                                 b->a_authz.sai_sasl_ssf, op->o_sasl_ssf, 0 );
1058 #endif
1059                         if ( b->a_authz.sai_sasl_ssf >  op->o_sasl_ssf ) {
1060                                 continue;
1061                         }
1062                 }
1063
1064 #ifdef SLAPD_ACI_ENABLED
1065                 if ( b->a_aci_at != NULL ) {
1066                         Attribute       *at;
1067                         slap_access_t grant, deny, tgrant, tdeny;
1068
1069                         /* this case works different from the others above.
1070                          * since aci's themselves give permissions, we need
1071                          * to first check b->a_access_mask, the ACL's access level.
1072                          */
1073
1074                         if ( e->e_nname.bv_len == 0 ) {
1075                                 /* no ACIs in the root DSE */
1076                                 continue;
1077                         }
1078
1079                         /* first check if the right being requested
1080                          * is allowed by the ACL clause.
1081                          */
1082                         if ( ! ACL_GRANT( b->a_access_mask, *mask ) ) {
1083                                 continue;
1084                         }
1085
1086                         /* get the aci attribute */
1087                         at = attr_find( e->e_attrs, b->a_aci_at );
1088                         if ( at == NULL ) {
1089                                 continue;
1090                         }
1091
1092                         ACL_RECORD_VALUE_STATE;
1093
1094                         /* start out with nothing granted, nothing denied */
1095                         ACL_INIT(tgrant);
1096                         ACL_INIT(tdeny);
1097
1098                         /* the aci is an multi-valued attribute.  The
1099                          * rights are determined by OR'ing the individual
1100                          * rights given by the acis.
1101                          */
1102                         for ( i = 0; at->a_vals[i].bv_val != NULL; i++ ) {
1103                                 if (aci_mask( be, conn, op,
1104                                         e, desc, val, &at->a_vals[i],
1105                                         matches, &grant, &deny ) != 0)
1106                                 {
1107                                         tgrant |= grant;
1108                                         tdeny |= deny;
1109                                 }
1110                         }
1111
1112                         /* remove anything that the ACL clause does not allow */
1113                         tgrant &= b->a_access_mask & ACL_PRIV_MASK;
1114                         tdeny &= ACL_PRIV_MASK;
1115
1116                         /* see if we have anything to contribute */
1117                         if( ACL_IS_INVALID(tgrant) && ACL_IS_INVALID(tdeny) ) { 
1118                                 continue;
1119                         }
1120
1121                         /* this could be improved by changing acl_mask so that it can deal with
1122                          * by clauses that return grant/deny pairs.  Right now, it does either
1123                          * additive or subtractive rights, but not both at the same time.  So,
1124                          * we need to combine the grant/deny pair into a single rights mask in
1125                          * a smart way:  if either grant or deny is "empty", then we use the
1126                          * opposite as is, otherwise we remove any denied rights from the grant
1127                          * rights mask and construct an additive mask.
1128                          */
1129                         if (ACL_IS_INVALID(tdeny)) {
1130                                 modmask = tgrant | ACL_PRIV_ADDITIVE;
1131
1132                         } else if (ACL_IS_INVALID(tgrant)) {
1133                                 modmask = tdeny | ACL_PRIV_SUBSTRACTIVE;
1134
1135                         } else {
1136                                 modmask = (tgrant & ~tdeny) | ACL_PRIV_ADDITIVE;
1137                         }
1138
1139                 } else
1140 #endif
1141                 {
1142                         modmask = b->a_access_mask;
1143                 }
1144
1145 #ifdef NEW_LOGGING
1146                 LDAP_LOG( ACL, RESULTS, 
1147                            "acl_mask: [%d] applying %s (%s)\n",
1148                            i, accessmask2str( modmask, accessmaskbuf),
1149                            b->a_type == ACL_CONTINUE ? "continue" : b->a_type == ACL_BREAK
1150                            ? "break" : "stop"  );
1151 #else
1152                 Debug( LDAP_DEBUG_ACL,
1153                         "<= acl_mask: [%d] applying %s (%s)\n",
1154                         i, accessmask2str( modmask, accessmaskbuf ), 
1155                         b->a_type == ACL_CONTINUE
1156                                 ? "continue"
1157                                 : b->a_type == ACL_BREAK
1158                                         ? "break"
1159                                         : "stop" );
1160 #endif
1161                 /* save old mask */
1162                 oldmask = *mask;
1163
1164                 if( ACL_IS_ADDITIVE(modmask) ) {
1165                         /* add privs */
1166                         ACL_PRIV_SET( *mask, modmask );
1167
1168                         /* cleanup */
1169                         ACL_PRIV_CLR( *mask, ~ACL_PRIV_MASK );
1170
1171                 } else if( ACL_IS_SUBTRACTIVE(modmask) ) {
1172                         /* substract privs */
1173                         ACL_PRIV_CLR( *mask, modmask );
1174
1175                         /* cleanup */
1176                         ACL_PRIV_CLR( *mask, ~ACL_PRIV_MASK );
1177
1178                 } else {
1179                         /* assign privs */
1180                         *mask = modmask;
1181                 }
1182
1183 #ifdef NEW_LOGGING
1184                 LDAP_LOG( ACL, DETAIL1, 
1185                            "acl_mask: conn %lu  [%d] mask: %s\n",
1186                            conn->c_connid, i, accessmask2str( *mask, accessmaskbuf)  );
1187 #else
1188                 Debug( LDAP_DEBUG_ACL,
1189                         "<= acl_mask: [%d] mask: %s\n",
1190                         i, accessmask2str(*mask, accessmaskbuf), 0 );
1191 #endif
1192
1193                 if( b->a_type == ACL_CONTINUE ) {
1194                         continue;
1195
1196                 } else if ( b->a_type == ACL_BREAK ) {
1197                         return ACL_BREAK;
1198
1199                 } else {
1200                         return ACL_STOP;
1201                 }
1202         }
1203
1204         /* implicit "by * none" clause */
1205         ACL_INIT(*mask);
1206
1207 #ifdef NEW_LOGGING
1208         LDAP_LOG( ACL, RESULTS, 
1209                    "acl_mask: conn %lu  no more <who> clauses, returning %d (stop)\n",
1210                    conn->c_connid, accessmask2str( *mask, accessmaskbuf) , 0 );
1211 #else
1212         Debug( LDAP_DEBUG_ACL,
1213                 "<= acl_mask: no more <who> clauses, returning %s (stop)\n",
1214                 accessmask2str(*mask, accessmaskbuf), 0, 0 );
1215 #endif
1216         return ACL_STOP;
1217 }
1218
1219 /*
1220  * acl_check_modlist - check access control on the given entry to see if
1221  * it allows the given modifications by the user associated with op.
1222  * returns      1       if mods allowed ok
1223  *                      0       mods not allowed
1224  */
1225
1226 int
1227 acl_check_modlist(
1228     Backend     *be,
1229     Connection  *conn,
1230     Operation   *op,
1231     Entry       *e,
1232     Modifications       *mlist
1233 )
1234 {
1235         struct berval *bv;
1236         AccessControlState state = ACL_STATE_INIT;
1237
1238         assert( be != NULL );
1239
1240         /* short circuit root database access */
1241         if ( be_isroot( be, &op->o_ndn ) ) {
1242 #ifdef NEW_LOGGING
1243                 LDAP_LOG( ACL, DETAIL1, 
1244                            "acl_check_modlist: conn %lu  access granted to root user\n",
1245                            conn->c_connid, 0, 0 );
1246 #else
1247                 Debug( LDAP_DEBUG_ACL,
1248                         "<= acl_access_allowed: granted to database root\n",
1249                     0, 0, 0 );
1250 #endif
1251                 return 1;
1252         }
1253
1254         /* use backend default access if no backend acls */
1255         if( be != NULL && be->be_acl == NULL ) {
1256 #ifdef NEW_LOGGING
1257                 LDAP_LOG( ACL, DETAIL1, 
1258                         "acl_check_modlist: backend default %s access %s to \"%s\"\n",
1259                         access2str( ACL_WRITE ),
1260                         be->be_dfltaccess >= ACL_WRITE ? "granted" : "denied", 
1261                         op->o_dn.bv_val  );
1262 #else
1263                 Debug( LDAP_DEBUG_ACL,
1264                         "=> access_allowed: backend default %s access %s to \"%s\"\n",
1265                         access2str( ACL_WRITE ),
1266                         be->be_dfltaccess >= ACL_WRITE ? "granted" : "denied", op->o_dn.bv_val );
1267 #endif
1268                 return be->be_dfltaccess >= ACL_WRITE;
1269
1270 #ifdef notdef
1271         /* be is always non-NULL */
1272         /* use global default access if no global acls */
1273         } else if ( be == NULL && global_acl == NULL ) {
1274 #ifdef NEW_LOGGING
1275                 LDAP_LOG( ACL, DETAIL1, 
1276                         "acl_check_modlist: global default %s access %s to \"%s\"\n",
1277                    access2str( ACL_WRITE ),
1278                    global_default_access >= ACL_WRITE ? "granted" : "denied", 
1279                    op->o_dn  );
1280 #else
1281                 Debug( LDAP_DEBUG_ACL,
1282                         "=> access_allowed: global default %s access %s to \"%s\"\n",
1283                         access2str( ACL_WRITE ),
1284                         global_default_access >= ACL_WRITE ? "granted" : "denied", op->o_dn );
1285 #endif
1286                 return global_default_access >= ACL_WRITE;
1287 #endif
1288         }
1289
1290         for ( ; mlist != NULL; mlist = mlist->sml_next ) {
1291                 /*
1292                  * no-user-modification operational attributes are ignored
1293                  * by ACL_WRITE checking as any found here are not provided
1294                  * by the user
1295                  */
1296                 if ( is_at_no_user_mod( mlist->sml_desc->ad_type ) ) {
1297 #ifdef NEW_LOGGING
1298                         LDAP_LOG( ACL, DETAIL1, 
1299                                    "acl_check_modlist: conn %lu  no-user-mod %s: modify access granted\n",
1300                                    conn->c_connid, mlist->sml_desc->ad_cname.bv_val , 0 );
1301 #else
1302                         Debug( LDAP_DEBUG_ACL, "acl: no-user-mod %s:"
1303                                 " modify access granted\n",
1304                                 mlist->sml_desc->ad_cname.bv_val, 0, 0 );
1305 #endif
1306                         continue;
1307                 }
1308
1309                 switch ( mlist->sml_op ) {
1310                 case LDAP_MOD_REPLACE:
1311                         /*
1312                          * We must check both permission to delete the whole
1313                          * attribute and permission to add the specific attributes.
1314                          * This prevents abuse from selfwriters.
1315                          */
1316                         if ( ! access_allowed( be, conn, op, e,
1317                                 mlist->sml_desc, NULL, ACL_WRITE, &state ) )
1318                         {
1319                                 return( 0 );
1320                         }
1321
1322                         if ( mlist->sml_bvalues == NULL ) break;
1323
1324                         /* fall thru to check value to add */
1325
1326                 case LDAP_MOD_ADD:
1327                         assert( mlist->sml_bvalues != NULL );
1328
1329                         for ( bv = mlist->sml_bvalues; bv->bv_val != NULL; bv++ ) {
1330                                 if ( ! access_allowed( be, conn, op, e,
1331                                         mlist->sml_desc, bv, ACL_WRITE, &state ) )
1332                                 {
1333                                         return( 0 );
1334                                 }
1335                         }
1336                         break;
1337
1338                 case LDAP_MOD_DELETE:
1339                         if ( mlist->sml_bvalues == NULL ) {
1340                                 if ( ! access_allowed( be, conn, op, e,
1341                                         mlist->sml_desc, NULL, ACL_WRITE, NULL ) )
1342                                 {
1343                                         return( 0 );
1344                                 }
1345                                 break;
1346                         }
1347                         for ( bv = mlist->sml_bvalues; bv->bv_val != NULL; bv++ ) {
1348                                 if ( ! access_allowed( be, conn, op, e,
1349                                         mlist->sml_desc, bv, ACL_WRITE, &state ) )
1350                                 {
1351                                         return( 0 );
1352                                 }
1353                         }
1354                         break;
1355
1356                 case SLAP_MOD_SOFTADD:
1357                         /* allow adding attribute via modrdn thru */
1358                         break;
1359
1360                 default:
1361                         assert( 0 );
1362                         return( 0 );
1363                 }
1364         }
1365
1366         return( 1 );
1367 }
1368
1369 static int
1370 aci_get_part(
1371         struct berval *list,
1372         int ix,
1373         char sep,
1374         struct berval *bv )
1375 {
1376         int len;
1377         char *p;
1378
1379         if (bv) {
1380                 bv->bv_len = 0;
1381                 bv->bv_val = NULL;
1382         }
1383         len = list->bv_len;
1384         p = list->bv_val;
1385         while (len >= 0 && --ix >= 0) {
1386                 while (--len >= 0 && *p++ != sep) ;
1387         }
1388         while (len >= 0 && *p == ' ') {
1389                 len--;
1390                 p++;
1391         }
1392         if (len < 0)
1393                 return(-1);
1394
1395         if (!bv)
1396                 return(0);
1397
1398         bv->bv_val = p;
1399         while (--len >= 0 && *p != sep) {
1400                 bv->bv_len++;
1401                 p++;
1402         }
1403         while (bv->bv_len > 0 && *--p == ' ')
1404                 bv->bv_len--;
1405         return(bv->bv_len);
1406 }
1407
1408 BerVarray
1409 aci_set_gather (void *cookie, struct berval *name, struct berval *attr)
1410 {
1411         AciSetCookie *cp = cookie;
1412         BerVarray bvals = NULL;
1413         struct berval ndn;
1414
1415         /* this routine needs to return the bervals instead of
1416          * plain strings, since syntax is not known.  It should
1417          * also return the syntax or some "comparison cookie".
1418          */
1419
1420         if (dnNormalize2(NULL, name, &ndn) == LDAP_SUCCESS) {
1421                 const char *text;
1422                 AttributeDescription *desc = NULL;
1423                 if (slap_bv2ad(attr, &desc, &text) == LDAP_SUCCESS) {
1424                         backend_attribute(cp->be, NULL, cp->op,
1425                                 cp->e, &ndn, desc, &bvals);
1426                 }
1427                 free(ndn.bv_val);
1428         }
1429         return(bvals);
1430 }
1431
1432 static int
1433 aci_match_set (
1434         struct berval *subj,
1435     Backend *be,
1436     Entry *e,
1437     Connection *conn,
1438     Operation *op,
1439     int setref
1440 )
1441 {
1442         struct berval set = { 0, NULL };
1443         int rc = 0;
1444         AciSetCookie cookie;
1445
1446         if (setref == 0) {
1447                 ber_dupbv( &set, subj );
1448         } else {
1449                 struct berval subjdn, ndn = { 0, NULL };
1450                 struct berval setat;
1451                 BerVarray bvals;
1452                 const char *text;
1453                 AttributeDescription *desc = NULL;
1454
1455                 /* format of string is "entry/setAttrName" */
1456                 if (aci_get_part(subj, 0, '/', &subjdn) < 0) {
1457                         return(0);
1458                 }
1459
1460                 if ( aci_get_part(subj, 1, '/', &setat) < 0 ) {
1461                         setat.bv_val = SLAPD_ACI_SET_ATTR;
1462                         setat.bv_len = sizeof(SLAPD_ACI_SET_ATTR)-1;
1463                 }
1464
1465                 if ( setat.bv_val != NULL ) {
1466                         /*
1467                          * NOTE: dnNormalize2 honors the ber_len field
1468                          * as the length of the dn to be normalized
1469                          */
1470                         if ( dnNormalize2(NULL, &subjdn, &ndn) == LDAP_SUCCESS
1471                                 && slap_bv2ad(&setat, &desc, &text) == LDAP_SUCCESS )
1472                         {
1473                                 backend_attribute(be, NULL, op, e,
1474                                         &ndn, desc, &bvals);
1475                                 if ( bvals != NULL ) {
1476                                         if ( bvals[0].bv_val != NULL ) {
1477                                                 int i;
1478                                                 set = bvals[0];
1479                                                 bvals[0].bv_val = NULL;
1480                                                 for (i=1;bvals[i].bv_val;i++);
1481                                                 bvals[0].bv_val = bvals[i-1].bv_val;
1482                                                 bvals[i-1].bv_val = NULL;
1483                                         }
1484                                         ber_bvarray_free(bvals);
1485                                 }
1486                         }
1487                         if (ndn.bv_val)
1488                                 free(ndn.bv_val);
1489                 }
1490         }
1491
1492         if (set.bv_val != NULL) {
1493                 cookie.be = be;
1494                 cookie.e = e;
1495                 cookie.conn = conn;
1496                 cookie.op = op;
1497                 rc = (slap_set_filter(aci_set_gather, &cookie, &set,
1498                         &op->o_ndn, &e->e_nname, NULL) > 0);
1499                 ch_free(set.bv_val);
1500         }
1501         return(rc);
1502 }
1503
1504 #ifdef SLAPD_ACI_ENABLED
1505 static int
1506 aci_list_map_rights(
1507         struct berval *list )
1508 {
1509         struct berval bv;
1510         slap_access_t mask;
1511         int i;
1512
1513         ACL_INIT(mask);
1514         for (i = 0; aci_get_part(list, i, ',', &bv) >= 0; i++) {
1515                 if (bv.bv_len <= 0)
1516                         continue;
1517                 switch (*bv.bv_val) {
1518                 case 'c':
1519                         ACL_PRIV_SET(mask, ACL_PRIV_COMPARE);
1520                         break;
1521                 case 's':
1522                         /* **** NOTE: draft-ietf-ldapext-aci-model-0.3.txt defines
1523                          * the right 's' to mean "set", but in the examples states
1524                          * that the right 's' means "search".  The latter definition
1525                          * is used here.
1526                          */
1527                         ACL_PRIV_SET(mask, ACL_PRIV_SEARCH);
1528                         break;
1529                 case 'r':
1530                         ACL_PRIV_SET(mask, ACL_PRIV_READ);
1531                         break;
1532                 case 'w':
1533                         ACL_PRIV_SET(mask, ACL_PRIV_WRITE);
1534                         break;
1535                 case 'x':
1536                         /* **** NOTE: draft-ietf-ldapext-aci-model-0.3.txt does not 
1537                          * define any equivalent to the AUTH right, so I've just used
1538                          * 'x' for now.
1539                          */
1540                         ACL_PRIV_SET(mask, ACL_PRIV_AUTH);
1541                         break;
1542                 default:
1543                         break;
1544                 }
1545
1546         }
1547         return(mask);
1548 }
1549
1550 static int
1551 aci_list_has_attr(
1552         struct berval *list,
1553         const struct berval *attr,
1554         struct berval *val )
1555 {
1556         struct berval bv, left, right;
1557         int i;
1558
1559         for (i = 0; aci_get_part(list, i, ',', &bv) >= 0; i++) {
1560                 if (aci_get_part(&bv, 0, '=', &left) < 0
1561                         || aci_get_part(&bv, 1, '=', &right) < 0)
1562                 {
1563                         if (ber_bvstrcasecmp(attr, &bv) == 0)
1564                                 return(1);
1565                 } else if (val == NULL) {
1566                         if (ber_bvstrcasecmp(attr, &left) == 0)
1567                                 return(1);
1568                 } else {
1569                         if (ber_bvstrcasecmp(attr, &left) == 0) {
1570                                 /* this is experimental code that implements a
1571                                  * simple (prefix) match of the attribute value.
1572                                  * the ACI draft does not provide for aci's that
1573                                  * apply to specific values, but it would be
1574                                  * nice to have.  If the <attr> part of an aci's
1575                                  * rights list is of the form <attr>=<value>,
1576                                  * that means the aci applies only to attrs with
1577                                  * the given value.  Furthermore, if the attr is
1578                                  * of the form <attr>=<value>*, then <value> is
1579                                  * treated as a prefix, and the aci applies to 
1580                                  * any value with that prefix.
1581                                  *
1582                                  * Ideally, this would allow r.e. matches.
1583                                  */
1584                                 if (aci_get_part(&right, 0, '*', &left) < 0
1585                                         || right.bv_len <= left.bv_len)
1586                                 {
1587                                         if (ber_bvstrcasecmp(val, &right) == 0)
1588                                                 return(1);
1589                                 } else if (val->bv_len >= left.bv_len) {
1590                                         if (strncasecmp( val->bv_val, left.bv_val, left.bv_len ) == 0)
1591                                                 return(1);
1592                                 }
1593                         }
1594                 }
1595         }
1596         return(0);
1597 }
1598
1599 static slap_access_t
1600 aci_list_get_attr_rights(
1601         struct berval *list,
1602         const struct berval *attr,
1603         struct berval *val )
1604 {
1605     struct berval bv;
1606     slap_access_t mask;
1607     int i;
1608
1609         /* loop through each rights/attr pair, skip first part (action) */
1610         ACL_INIT(mask);
1611         for (i = 1; aci_get_part(list, i + 1, ';', &bv) >= 0; i += 2) {
1612                 if (aci_list_has_attr(&bv, attr, val) == 0)
1613                         continue;
1614                 if (aci_get_part(list, i, ';', &bv) < 0)
1615                         continue;
1616                 mask |= aci_list_map_rights(&bv);
1617         }
1618         return(mask);
1619 }
1620
1621 static int
1622 aci_list_get_rights(
1623         struct berval *list,
1624         const struct berval *attr,
1625         struct berval *val,
1626         slap_access_t *grant,
1627         slap_access_t *deny )
1628 {
1629     struct berval perm, actn;
1630     slap_access_t *mask;
1631     int i, found;
1632
1633         if (attr == NULL || attr->bv_len == 0 
1634                         || ber_bvstrcasecmp( attr, &aci_bv_entry ) == 0) {
1635                 attr = &aci_bv_br_entry;
1636         }
1637
1638         found = 0;
1639         ACL_INIT(*grant);
1640         ACL_INIT(*deny);
1641         /* loop through each permissions clause */
1642         for (i = 0; aci_get_part(list, i, '$', &perm) >= 0; i++) {
1643                 if (aci_get_part(&perm, 0, ';', &actn) < 0)
1644                         continue;
1645                 if (ber_bvstrcasecmp( &aci_bv_grant, &actn ) == 0) {
1646                         mask = grant;
1647                 } else if (ber_bvstrcasecmp( &aci_bv_deny, &actn ) == 0) {
1648                         mask = deny;
1649                 } else {
1650                         continue;
1651                 }
1652
1653                 found = 1;
1654                 *mask |= aci_list_get_attr_rights(&perm, attr, val);
1655                 *mask |= aci_list_get_attr_rights(&perm, &aci_bv_br_all, NULL);
1656         }
1657         return(found);
1658 }
1659
1660 static int
1661 aci_group_member (
1662         struct berval *subj,
1663         struct berval *defgrpoc,
1664         struct berval *defgrpat,
1665     Backend             *be,
1666     Entry               *e,
1667     Connection          *conn,
1668     Operation           *op,
1669         regmatch_t      *matches
1670 )
1671 {
1672         struct berval subjdn;
1673         struct berval grpoc;
1674         struct berval grpat;
1675         ObjectClass *grp_oc = NULL;
1676         AttributeDescription *grp_ad = NULL;
1677         const char *text;
1678         int rc;
1679
1680         /* format of string is "group/objectClassValue/groupAttrName" */
1681         if (aci_get_part(subj, 0, '/', &subjdn) < 0) {
1682                 return(0);
1683         }
1684
1685         if (aci_get_part(subj, 1, '/', &grpoc) < 0) {
1686                 grpoc = *defgrpoc;
1687         }
1688
1689         if (aci_get_part(subj, 2, '/', &grpat) < 0) {
1690                 grpat = *defgrpat;
1691         }
1692
1693         rc = slap_bv2ad( &grpat, &grp_ad, &text );
1694         if( rc != LDAP_SUCCESS ) {
1695                 rc = 0;
1696                 goto done;
1697         }
1698         rc = 0;
1699
1700         grp_oc = oc_bvfind( &grpoc );
1701
1702         if (grp_oc != NULL && grp_ad != NULL ) {
1703                 char buf[ACL_BUF_SIZE];
1704                 struct berval bv, ndn;
1705                 bv.bv_len = sizeof( buf ) - 1;
1706                 bv.bv_val = (char *)&buf;
1707                 string_expand(&bv, &subjdn, e->e_ndn, matches);
1708                 if ( dnNormalize2(NULL, &bv, &ndn) == LDAP_SUCCESS ) {
1709                         rc = (backend_group(be, conn, op, e, &ndn, &op->o_ndn,
1710                                 grp_oc, grp_ad) == 0);
1711                         free( ndn.bv_val );
1712                 }
1713         }
1714
1715 done:
1716         return(rc);
1717 }
1718
1719 static int
1720 aci_mask(
1721     Backend                     *be,
1722     Connection          *conn,
1723     Operation           *op,
1724     Entry                       *e,
1725         AttributeDescription *desc,
1726     struct berval       *val,
1727     struct berval       *aci,
1728         regmatch_t              *matches,
1729         slap_access_t   *grant,
1730         slap_access_t   *deny
1731 )
1732 {
1733     struct berval bv, perms, sdn;
1734         int rc;
1735                 
1736
1737         assert( desc->ad_cname.bv_val != NULL );
1738
1739         /* parse an aci of the form:
1740                 oid#scope#action;rights;attr;rights;attr$action;rights;attr;rights;attr#dnType#subjectDN
1741
1742            See draft-ietf-ldapext-aci-model-04.txt section 9.1 for
1743            a full description of the format for this attribute.
1744            Differences: "this" in the draft is "self" here, and
1745            "self" and "public" is in the position of dnType.
1746
1747            For now, this routine only supports scope=entry.
1748          */
1749
1750         /* check that the aci has all 5 components */
1751         if (aci_get_part(aci, 4, '#', NULL) < 0)
1752                 return(0);
1753
1754         /* check that the aci family is supported */
1755         if (aci_get_part(aci, 0, '#', &bv) < 0)
1756                 return(0);
1757
1758         /* check that the scope is "entry" */
1759         if (aci_get_part(aci, 1, '#', &bv) < 0
1760                 || ber_bvstrcasecmp( &aci_bv_entry, &bv ) != 0)
1761         {
1762                 return(0);
1763         }
1764
1765         /* get the list of permissions clauses, bail if empty */
1766         if (aci_get_part(aci, 2, '#', &perms) <= 0)
1767                 return(0);
1768
1769         /* check if any permissions allow desired access */
1770         if (aci_list_get_rights(&perms, &desc->ad_cname, val, grant, deny) == 0)
1771                 return(0);
1772
1773         /* see if we have a DN match */
1774         if (aci_get_part(aci, 3, '#', &bv) < 0)
1775                 return(0);
1776
1777         if (aci_get_part(aci, 4, '#', &sdn) < 0)
1778                 return(0);
1779
1780         if (ber_bvstrcasecmp( &aci_bv_access_id, &bv ) == 0) {
1781                 struct berval ndn;
1782                 rc = 0;
1783                 if ( dnNormalize2(NULL, &sdn, &ndn) == LDAP_SUCCESS ) {
1784                         if (dn_match( &op->o_ndn, &ndn))
1785                                 rc = 1;
1786                         free(ndn.bv_val);
1787                 }
1788                 return (rc);
1789
1790         } else if (ber_bvstrcasecmp( &aci_bv_public, &bv ) == 0) {
1791                 return(1);
1792
1793         } else if (ber_bvstrcasecmp( &aci_bv_self, &bv ) == 0) {
1794                 if (dn_match(&op->o_ndn, &e->e_nname))
1795                         return(1);
1796
1797         } else if (ber_bvstrcasecmp( &aci_bv_dnattr, &bv ) == 0) {
1798                 Attribute *at;
1799                 AttributeDescription *ad = NULL;
1800                 const char *text;
1801
1802                 rc = slap_bv2ad( &sdn, &ad, &text );
1803
1804                 if( rc != LDAP_SUCCESS ) {
1805                         return 0;
1806                 }
1807
1808                 rc = 0;
1809
1810                 bv = op->o_ndn;
1811
1812                 for(at = attrs_find( e->e_attrs, ad );
1813                         at != NULL;
1814                         at = attrs_find( at->a_next, ad ) )
1815                 {
1816                         if (value_find_ex( ad, SLAP_MR_VALUE_NORMALIZED_MATCH, at->a_vals, &bv) == 0 ) {
1817                                 rc = 1;
1818                                 break;
1819                         }
1820                 }
1821
1822                 return rc;
1823
1824
1825         } else if (ber_bvstrcasecmp( &aci_bv_group, &bv ) == 0) {
1826                 if (aci_group_member(&sdn, &aci_bv_group_class, &aci_bv_group_attr, be, e, conn, op, matches))
1827                         return(1);
1828
1829         } else if (ber_bvstrcasecmp( &aci_bv_role, &bv ) == 0) {
1830                 if (aci_group_member(&sdn, &aci_bv_role_class, &aci_bv_role_attr, be, e, conn, op, matches))
1831                         return(1);
1832
1833         } else if (ber_bvstrcasecmp( &aci_bv_set, &bv ) == 0) {
1834                 if (aci_match_set(&sdn, be, e, conn, op, 0))
1835                         return(1);
1836
1837         } else if (ber_bvstrcasecmp( &aci_bv_set_ref, &bv ) == 0) {
1838                 if (aci_match_set(&sdn, be, e, conn, op, 1))
1839                         return(1);
1840
1841         }
1842
1843         return(0);
1844 }
1845
1846 #endif  /* SLAPD_ACI_ENABLED */
1847
1848 static void
1849 string_expand(
1850         struct berval *bv,
1851         struct berval *pat,
1852         char *match,
1853         regmatch_t *matches)
1854 {
1855         ber_len_t       size;
1856         char   *sp;
1857         char   *dp;
1858         int     flag;
1859
1860         size = 0;
1861         bv->bv_val[0] = '\0';
1862         bv->bv_len--; /* leave space for lone $ */
1863
1864         flag = 0;
1865         for ( dp = bv->bv_val, sp = pat->bv_val; size < bv->bv_len &&
1866                 sp < pat->bv_val + pat->bv_len ; sp++ )
1867         {
1868                 /* did we previously see a $ */
1869                 if ( flag ) {
1870                         if ( flag == 1 && *sp == '$' ) {
1871                                 *dp++ = '$';
1872                                 size++;
1873                                 flag = 0;
1874
1875                         } else if ( flag == 1 && *sp == '{' /*'}'*/) {
1876                                 flag = 2;
1877
1878                         } else if ( *sp >= '0' && *sp <= '9' ) {
1879                                 int     n;
1880                                 int     i;
1881                                 int     l;
1882
1883                                 n = *sp - '0';
1884
1885                                 if ( flag == 2 ) {
1886                                         for ( sp++; *sp != '\0' && *sp != /*'{'*/ '}'; sp++ ) {
1887                                                 if ( *sp >= '0' && *sp <= '9' ) {
1888                                                         n = 10*n + ( *sp - '0' );
1889                                                 }
1890                                         }
1891
1892                                         if ( *sp != /*'{'*/ '}' ) {
1893                                                 /* error */
1894                                         }
1895                                 }
1896
1897                                 if ( n >= MAXREMATCHES ) {
1898                                 
1899                                 }
1900                                 
1901                                 *dp = '\0';
1902                                 i = matches[n].rm_so;
1903                                 l = matches[n].rm_eo; 
1904                                 for ( ; size < bv->bv_len && i < l; size++, i++ ) {
1905                                         *dp++ = match[i];
1906                                 }
1907                                 *dp = '\0';
1908
1909                                 flag = 0;
1910                         }
1911                 } else {
1912                         if (*sp == '$') {
1913                                 flag = 1;
1914                         } else {
1915                                 *dp++ = *sp;
1916                                 size++;
1917                         }
1918                 }
1919         }
1920
1921         if ( flag ) {
1922                 /* must have ended with a single $ */
1923                 *dp++ = '$';
1924                 size++;
1925         }
1926
1927         *dp = '\0';
1928         bv->bv_len = size;
1929
1930 #ifdef NEW_LOGGING
1931         LDAP_LOG( ACL, DETAIL1, 
1932            "string_expand:  pattern = %.*s\n", (int)pat->bv_len, pat->bv_val, 0 );
1933         LDAP_LOG( ACL, DETAIL1, "string_expand:  expanded = %s\n", bv->bv_val, 0, 0 );
1934 #else
1935         Debug( LDAP_DEBUG_TRACE, "=> string_expand: pattern:  %.*s\n", (int)pat->bv_len, pat->bv_val, 0 );
1936         Debug( LDAP_DEBUG_TRACE, "=> string_expand: expanded: %s\n", bv->bv_val, 0, 0 );
1937 #endif
1938 }
1939
1940 static int
1941 regex_matches(
1942         struct berval *pat,                     /* pattern to expand and match against */
1943         char *str,                              /* string to match against pattern */
1944         char *buf,                              /* buffer with $N expansion variables */
1945         regmatch_t *matches             /* offsets in buffer for $N expansion variables */
1946 )
1947 {
1948         regex_t re;
1949         char newbuf[ACL_BUF_SIZE];
1950         struct berval bv;
1951         int     rc;
1952
1953         bv.bv_len = sizeof(newbuf) - 1;
1954         bv.bv_val = newbuf;
1955
1956         if(str == NULL) str = "";
1957
1958         string_expand(&bv, pat, buf, matches);
1959         if (( rc = regcomp(&re, newbuf, REG_EXTENDED|REG_ICASE))) {
1960                 char error[ACL_BUF_SIZE];
1961                 regerror(rc, &re, error, sizeof(error));
1962
1963 #ifdef NEW_LOGGING
1964                 LDAP_LOG( ACL, ERR, 
1965                            "regex_matches: compile( \"%s\", \"%s\") failed %s\n",
1966                            pat->bv_val, str, error  );
1967 #else
1968                 Debug( LDAP_DEBUG_TRACE,
1969                     "compile( \"%s\", \"%s\") failed %s\n",
1970                         pat->bv_val, str, error );
1971 #endif
1972                 return( 0 );
1973         }
1974
1975         rc = regexec(&re, str, 0, NULL, 0);
1976         regfree( &re );
1977
1978 #ifdef NEW_LOGGING
1979         LDAP_LOG( ACL, DETAIL2, "regex_matches: string:   %s\n", str, 0, 0 );
1980         LDAP_LOG( ACL, DETAIL2, "regex_matches: rc:     %d  %s\n",
1981                    rc, rc ? "matches" : "no matches", 0  );
1982 #else
1983         Debug( LDAP_DEBUG_TRACE,
1984             "=> regex_matches: string:   %s\n", str, 0, 0 );
1985         Debug( LDAP_DEBUG_TRACE,
1986             "=> regex_matches: rc: %d %s\n",
1987                 rc, !rc ? "matches" : "no matches", 0 );
1988 #endif
1989         return( !rc );
1990 }
1991