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