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