]> git.sur5r.net Git - openldap/blob - servers/slapd/acl.c
expose oc_check_operational from schema.c
[openldap] / servers / slapd / acl.c
1 /* acl.c - routines to parse and check acl's */
2
3 #include "portable.h"
4
5 #include <stdio.h>
6
7 #include <ac/regex.h>
8 #include <ac/socket.h>
9 #include <ac/string.h>
10
11 #include "slap.h"
12
13 static int      regex_matches(char *pat, char *str, char *buf, regmatch_t *matches);
14 static void     string_expand(char *newbuf, int bufsiz, char *pattern,
15                               char *match, regmatch_t *matches);
16
17
18 /*
19  * access_allowed - check whether op->o_ndn is allowed the requested access
20  * to entry e, attribute attr, value val.  if val is null, access to
21  * the whole attribute is assumed (all values).  this routine finds
22  * the applicable acl and calls acl_access_allowed() to make the
23  * decision.
24  *
25  * returns      0       access NOT allowed
26  *              1       access allowed
27  */
28
29 int
30 access_allowed(
31     Backend             *be,
32     Connection          *conn,
33     Operation           *op,
34     Entry               *e,
35     char                *attr,
36     struct berval       *val,
37     int                 access
38 )
39 {
40         int                             rc;
41         struct acl              *a;
42         char            *edn;
43
44         regmatch_t       matches[MAXREMATCHES];
45         int              i;
46         int              n;
47
48         if ( be == NULL ) {
49                 return( 0 );
50         }
51
52         edn = e->e_ndn;
53
54         Debug( LDAP_DEBUG_ACL, "\n=> access_allowed: entry (%s) attr (%s)\n",
55                 e->e_dn, attr, 0 );
56
57         /* the lastmod attributes are ignored by ACL checking */
58         if ( oc_check_operational( attr ) ) {
59                 Debug( LDAP_DEBUG_ACL, "Operational attribute: %s access allowed\n",
60                         attr, 0, 0 );
61                 return(1);
62         }
63
64         memset(matches, 0, sizeof(matches));
65
66         a = acl_get_applicable( be, op, e, attr, MAXREMATCHES, matches );
67
68         if (a) {
69                 for (i = 0; i < MAXREMATCHES && matches[i].rm_so > 0; i++) {
70                         Debug( LDAP_DEBUG_ARGS, "=> match[%d]: %d %d ", i,
71                                (int)matches[i].rm_so, (int)matches[i].rm_eo );
72
73                         if( matches[i].rm_so <= matches[0].rm_eo ) {
74                                 for ( n = matches[i].rm_so; n < matches[i].rm_eo; n++) {
75                                         Debug( LDAP_DEBUG_ARGS, "%c", edn[n], 0, 0 );
76                                 }
77                         }
78                         Debug( LDAP_DEBUG_ARGS, "\n", 0, 0, 0 );
79                 }
80         }
81
82         rc = acl_access_allowed( a, be, conn, e, val, op, access, edn, matches );
83
84         Debug( LDAP_DEBUG_ACL, "\n=> access_allowed: exit (%s) attr (%s)\n",
85                 e->e_dn, attr, 0);
86
87         return( rc );
88 }
89
90 /*
91  * acl_get_applicable - return the acl applicable to entry e, attribute
92  * attr.  the acl returned is suitable for use in subsequent calls to
93  * acl_access_allowed().
94  */
95
96 struct acl *
97 acl_get_applicable(
98     Backend             *be,
99     Operation           *op,
100     Entry               *e,
101     char                *attr,
102     int                 nmatch,
103     regmatch_t  *matches
104 )
105 {
106         int             i;
107         struct acl      *a;
108     char                *edn;
109
110         Debug( LDAP_DEBUG_ACL, "\n=> acl_get: entry (%s) attr (%s)\n",
111                 e->e_dn, attr, 0 );
112
113         if ( be_isroot( be, op->o_ndn ) ) {
114                 Debug( LDAP_DEBUG_ACL,
115                     "<= acl_get: no acl applicable to database root\n", 0, 0,
116                     0 );
117                 return( NULL );
118         }
119
120     edn = e->e_ndn;
121
122         Debug( LDAP_DEBUG_ARGS, "=> acl_get: edn %s\n", edn, 0, 0 );
123
124         /* check for a backend-specific acl that matches the entry */
125         for ( i = 1, a = be->be_acl; a != NULL; a = a->acl_next, i++ ) {
126                 if (a->acl_dnpat != NULL) {
127                         Debug( LDAP_DEBUG_TRACE, "=> dnpat: [%d] %s nsub: %d\n", 
128                                 i, a->acl_dnpat, (int) a->acl_dnre.re_nsub);
129
130                         if (regexec(&a->acl_dnre, edn, nmatch, matches, 0))
131                                 continue;
132                         else
133                                 Debug( LDAP_DEBUG_TRACE, "=> acl_get:[%d]  backend ACL match\n",
134                                         i, 0, 0);
135                 }
136
137                 if ( a->acl_filter != NULL ) {
138                         if ( test_filter( NULL, NULL, NULL, e, a->acl_filter ) != 0 ) {
139                                 continue;
140                         }
141                 }
142
143         Debug( LDAP_DEBUG_ARGS, "=> acl_get: [%d] check attr %s\n", i, attr, 0);
144
145                 if ( attr == NULL || a->acl_attrs == NULL ||
146                         charray_inlist( a->acl_attrs, attr ) )
147                 {
148                         Debug( LDAP_DEBUG_ACL, "<= acl_get: [%d] backend acl %s attr: %s\n",
149                                 i, e->e_dn, attr );
150                         return( a );
151                 }
152                 matches[0].rm_so = matches[0].rm_eo = -1;
153         }
154
155         /* check for a global acl that matches the entry */
156         for ( i = 1, a = global_acl; a != NULL; a = a->acl_next, i++ ) {
157                 if (a->acl_dnpat != NULL) {
158                         Debug( LDAP_DEBUG_TRACE, "=> dnpat: [%d] %s nsub: %d\n", 
159                                 i, a->acl_dnpat, (int) a->acl_dnre.re_nsub);
160
161                         if (regexec(&a->acl_dnre, edn, nmatch, matches, 0)) {
162                                 continue;
163                         } else {
164                                 Debug( LDAP_DEBUG_TRACE, "=> acl_get: [%d] global ACL match\n",
165                                         i, 0, 0);
166                         }
167                 }
168
169                 if ( a->acl_filter != NULL ) {
170                         if ( test_filter( NULL, NULL, NULL, e, a->acl_filter ) != 0 ) {
171                                 continue;
172                         }
173                 }
174
175                 Debug( LDAP_DEBUG_ARGS, "=> acl_get: [%d] check attr\n", i, 0, 0);
176
177                 if ( attr == NULL || a->acl_attrs == NULL ||
178                         charray_inlist( a->acl_attrs, attr ) )
179                 {
180                         Debug( LDAP_DEBUG_ACL, "<= acl_get: [%d] global acl %s attr: %s\n",
181                                 i, e->e_dn, attr );
182                         return( a );
183                 }
184
185                 matches[0].rm_so = matches[0].rm_eo = -1;
186         }
187
188         Debug( LDAP_DEBUG_ACL, "<= acl_get: no match\n", 0, 0, 0 );
189         return( NULL );
190 }
191
192 /*
193  * acl_access_allowed - check whether the given acl allows dn the
194  * requested access to entry e, attribute attr, value val.  if val
195  * is null, access to the whole attribute is assumed (all values).
196  *
197  * returns      0       access NOT allowed
198  *              1       access allowed
199  */
200
201 int
202 acl_access_allowed(
203     struct acl          *a,
204     Backend             *be,
205     Connection          *conn,
206     Entry               *e,
207     struct berval       *val,
208     Operation           *op,
209     int                 access,
210         char            *edn,
211         regmatch_t      *matches
212 )
213 {
214         int             i;
215         char            *odn;
216         struct access   *b;
217         Attribute       *at;
218         struct berval   bv;
219         int             default_access;
220
221         Debug( LDAP_DEBUG_ACL,
222                 "\n=> acl_access_allowed: %s access to entry \"%s\"\n",
223                 access2str( access ), e->e_dn, 0 );
224
225         Debug( LDAP_DEBUG_ACL,
226                 "\n=> acl_access_allowed: %s access to value \"%s\" by \"%s\"\n",
227             access2str( access ),
228                 val ? val->bv_val : "any",
229                 op->o_ndn ?  op->o_ndn : "" );
230
231         if ( be_isroot( be, op->o_ndn ) ) {
232                 Debug( LDAP_DEBUG_ACL,
233                         "<= acl_access_allowed: granted to database root\n",
234                     0, 0, 0 );
235                 return( 1 );
236         }
237
238         default_access = be->be_dfltaccess ? be->be_dfltaccess : global_default_access;
239
240         if ( a == NULL ) {
241                 Debug( LDAP_DEBUG_ACL,
242                     "<= acl_access_allowed: %s by default (no matching to)\n",
243                     default_access >= access ? "granted" : "denied", 0, 0 );
244                 return( default_access >= access );
245         }
246
247         odn = op->o_ndn;
248
249         if ( odn != NULL ) {
250                 bv.bv_val = odn;
251                 bv.bv_len = strlen( odn );
252         }
253
254         for ( i = 1, b = a->acl_access; b != NULL; b = b->a_next, i++ ) {
255                 if ( b->a_dnpat != NULL ) {
256                         Debug( LDAP_DEBUG_TRACE, "<= check a_dnpat: %s\n",
257                                 b->a_dnpat, 0, 0);
258                         /*
259                          * if access applies to the entry itself, and the
260                          * user is bound as somebody in the same namespace as
261                          * the entry, OR the given dn matches the dn pattern
262                          */
263                         if ( strcasecmp( b->a_dnpat, "self" ) == 0 && 
264                                 op->o_ndn != NULL && *(op->o_ndn) && e->e_dn != NULL ) 
265                         {
266                                 if ( strcmp( edn, op->o_ndn ) == 0 ) {
267                                         Debug( LDAP_DEBUG_ACL,
268                                         "<= acl_access_allowed: matched by clause #%d access %s\n",
269                                             i, (b->a_access & ~ACL_SELF) >=
270                                             access ? "granted" : "denied", 0 );
271
272                                         return( (b->a_access & ~ACL_SELF) >= access );
273                                 }
274                         } else {
275                                 if ( regex_matches( b->a_dnpat, odn, edn, matches ) ) {
276                                         Debug( LDAP_DEBUG_ACL,
277                                     "<= acl_access_allowed: matched by clause #%d access %s\n",
278                                     i, (b->a_access & ~ACL_SELF) >= access ?
279                                             "granted" : "denied", 0 );
280
281                                         return( (b->a_access & ~ACL_SELF) >= access );
282                                 }
283                         }
284                 }
285                 if ( b->a_addrpat != NULL ) {
286                         if ( regex_matches( b->a_addrpat, conn->c_client_addr,
287                                 edn, matches ) )
288                         {
289                                 Debug( LDAP_DEBUG_ACL,
290                                     "<= acl_access_allowed: matched by clause #%d access %s\n",
291                                     i, (b->a_access & ~ACL_SELF) >= access ?
292                                     "granted" : "denied", 0 );
293
294                                 return( (b->a_access & ~ACL_SELF) >= access );
295                         }
296                 }
297                 if ( b->a_domainpat != NULL ) {
298                         Debug( LDAP_DEBUG_ARGS, "<= check a_domainpath: %s\n",
299                                 b->a_domainpat, 0, 0 );
300                         if ( regex_matches( b->a_domainpat, conn->c_client_name,
301                                 edn, matches ) ) 
302                         {
303                                 Debug( LDAP_DEBUG_ACL,
304                                     "<= acl_access_allowed: matched by clause #%d access %s\n",
305                                     i, (b->a_access & ~ACL_SELF) >= access ?
306                                     "granted" : "denied", 0 );
307
308                                 return( (b->a_access & ~ACL_SELF) >= access );
309                         }
310                 }
311                 if ( b->a_dnattr != NULL && op->o_ndn != NULL ) {
312                         Debug( LDAP_DEBUG_ARGS, "<= check a_dnattr: %s\n",
313                                 b->a_dnattr, 0, 0);
314                         /* see if asker is listed in dnattr */
315                         if ( (at = attr_find( e->e_attrs, b->a_dnattr )) != NULL && 
316                                 value_find( at->a_vals, &bv, at->a_syntax, 3 ) == 0 )
317                         {
318                                 if ( (b->a_access & ACL_SELF) && 
319                                         (val == NULL || value_cmp( &bv, val, at->a_syntax, 2 )) )
320                                 {
321                                         continue;
322                                 }
323
324                                 Debug( LDAP_DEBUG_ACL,
325                                     "<= acl_acces_allowed: matched by clause #%d access %s\n",
326                                     i, (b->a_access & ~ACL_SELF) >= access ?
327                                     "granted" : "denied", 0 );
328
329                                 return( (b->a_access & ~ACL_SELF) >= access );
330                         }
331
332                         /* asker not listed in dnattr - check for self access */
333                         if ( ! (b->a_access & ACL_SELF) || val == NULL ||
334                                 value_cmp( &bv, val, at->a_syntax, 2 ) != 0 )
335                         {
336                                 continue;
337                         }
338
339                         Debug( LDAP_DEBUG_ACL,
340                                 "<= acl_access_allowed: matched by clause #%d (self) access %s\n",
341                             i, (b->a_access & ~ACL_SELF) >= access ? "granted"
342                             : "denied", 0 );
343
344                         return( (b->a_access & ~ACL_SELF) >= access );
345                 }
346 #ifdef SLAPD_ACLGROUPS
347                 if ( b->a_group != NULL && op->o_ndn != NULL ) {
348                         char buf[1024];
349
350                         /* b->a_group is an unexpanded entry name, expanded it should be an 
351                          * entry with objectclass group* and we test to see if odn is one of
352                          * the values in the attribute group
353                          */
354                         /* see if asker is listed in dnattr */
355                         string_expand(buf, sizeof(buf), b->a_group, edn, matches);
356                         (void) dn_normalize_case(buf);
357
358                         if (backend_group(be, e, buf, odn,
359                                 b->a_objectclassvalue, b->a_groupattrname) == 0)
360                         {
361                                 Debug( LDAP_DEBUG_ACL,
362                                         "<= acl_access_allowed: matched by clause #%d (group) access granted\n",
363                                         i, 0, 0 );
364                                 return( (b->a_access & ~ACL_SELF) >= access );
365                         }
366                 }
367 #endif /* SLAPD_ACLGROUPS */
368         }
369
370         Debug( LDAP_DEBUG_ACL,
371                 "<= acl_access_allowed: %s by default (no matching by)\n",
372             default_access >= access ? "granted" : "denied", 0, 0 );
373
374         return( default_access >= access );
375 }
376
377 /*
378  * acl_check_modlist - check access control on the given entry to see if
379  * it allows the given modifications by the user associated with op.
380  * returns      LDAP_SUCCESS    mods allowed ok
381  *              anything else   mods not allowed - return is an error
382  *                              code indicating the problem
383  */
384
385 int
386 acl_check_modlist(
387     Backend     *be,
388     Connection  *conn,
389     Operation   *op,
390     Entry       *e,
391     LDAPModList *mlist
392 )
393 {
394         int             i;
395         struct acl      *a;
396         char    *edn = e->e_ndn;
397
398         for ( ; mlist != NULL; mlist = mlist->ml_next ) {
399                 regmatch_t       matches[MAXREMATCHES];
400
401                 /* the lastmod attributes are ignored by ACL checking */
402                 if ( oc_check_operational( mlist->ml_type ) ) {
403                         Debug( LDAP_DEBUG_ACL, "Operational attribute: %s access allowed\n",
404                                 mlist->ml_type, 0, 0 );
405                         continue;
406                 }
407
408                 a = acl_get_applicable( be, op, e, mlist->ml_type,
409                         MAXREMATCHES, matches );
410
411                 switch ( mlist->ml_op & ~LDAP_MOD_BVALUES ) {
412                 case LDAP_MOD_REPLACE:
413                 case LDAP_MOD_ADD:
414                         if ( mlist->ml_bvalues == NULL ) {
415                                 break;
416                         }
417                         for ( i = 0; mlist->ml_bvalues[i] != NULL; i++ ) {
418                                 if ( ! acl_access_allowed( a, be, conn, e, mlist->ml_bvalues[i], 
419                                         op, ACL_WRITE, edn, matches) ) 
420                                 {
421                                         return( LDAP_INSUFFICIENT_ACCESS );
422                                 }
423                         }
424                         break;
425
426                 case LDAP_MOD_DELETE:
427                         if ( mlist->ml_bvalues == NULL ) {
428                                 if ( ! acl_access_allowed( a, be, conn, e,
429                                         NULL, op, ACL_WRITE, edn, matches) ) 
430                                 {
431                                         return( LDAP_INSUFFICIENT_ACCESS );
432                                 }
433                                 break;
434                         }
435                         for ( i = 0; mlist->ml_bvalues[i] != NULL; i++ ) {
436                                 if ( ! acl_access_allowed( a, be, conn, e, mlist->ml_bvalues[i], 
437                                         op, ACL_WRITE, edn, matches) ) 
438                                 {
439                                         return( LDAP_INSUFFICIENT_ACCESS );
440                                 }
441                         }
442                         break;
443                 }
444         }
445
446         return( LDAP_SUCCESS );
447 }
448
449 static void
450 string_expand(
451         char *newbuf,
452         int bufsiz,
453         char *pat,
454         char *match,
455         regmatch_t *matches)
456 {
457         int     size;
458         char   *sp;
459         char   *dp;
460         int     flag;
461
462         size = 0;
463         newbuf[0] = '\0';
464
465         flag = 0;
466         for ( dp = newbuf, sp = pat; size < bufsiz && *sp ; sp++) {
467                 /* did we previously see a $ */
468                 if (flag) {
469                         if (*sp == '$') {
470                                 *dp++ = '$';
471                                 size++;
472                         } else if (*sp >= '0' && *sp <= '9' ) {
473                                 int     n;
474                                 int     i;
475                                 int     l;
476
477                                 n = *sp - '0';
478                                 *dp = '\0';
479                                 i = matches[n].rm_so;
480                                 l = matches[n].rm_eo; 
481                                 for ( ; size < 512 && i < l; size++, i++ ) {
482                                         *dp++ = match[i];
483                                         size++;
484                                 }
485                                 *dp = '\0';
486                         }
487                         flag = 0;
488                 } else {
489                         if (*sp == '$') {
490                                 flag = 1;
491                         } else {
492                                 *dp++ = *sp;
493                                 size++;
494                         }
495                 }
496         }
497         *dp = '\0';
498
499         Debug( LDAP_DEBUG_TRACE, "=> string_expand: pattern:  %s\n", pat, 0, 0 );
500         Debug( LDAP_DEBUG_TRACE, "=> string_expand: expanded: %s\n", newbuf, 0, 0 );
501 }
502
503 static int
504 regex_matches(
505         char *pat,                              /* pattern to expand and match against */
506         char *str,                              /* string to match against pattern */
507         char *buf,                              /* buffer with $N expansion variables */
508         regmatch_t *matches             /* offsets in buffer for $N expansion variables */
509 )
510 {
511         regex_t re;
512         char newbuf[512];
513         int     rc;
514
515         string_expand(newbuf, sizeof(newbuf), pat, buf, matches);
516         if (( rc = regcomp(&re, newbuf, REG_EXTENDED|REG_ICASE))) {
517                 char error[512];
518                 regerror(rc, &re, error, sizeof(error));
519
520                 Debug( LDAP_DEBUG_TRACE,
521                     "compile( \"%s\", \"%s\") failed %s\n",
522                         pat, str, error );
523                 return( 0 );
524         }
525
526         rc = regexec(&re, str, 0, NULL, 0);
527         regfree( &re );
528
529         Debug( LDAP_DEBUG_TRACE,
530             "=> regex_matches: string:   %s\n", str, 0, 0 );
531         Debug( LDAP_DEBUG_TRACE,
532             "=> regex_matches: rc: %d %s\n",
533                 rc, !rc ? "matches" : "no matches", 0 );
534         return( !rc );
535 }
536