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