]> git.sur5r.net Git - openldap/blob - doc/man/man5/slapd.access.5
A few clarifications. "sync" in syncprov should refer to the
[openldap] / doc / man / man5 / slapd.access.5
1 .TH SLAPD.ACCESS 5 "RELEASEDATE" "OpenLDAP LDVERSION"
2 .\" Copyright 1998-2006 The OpenLDAP Foundation All Rights Reserved.
3 .\" Copying restrictions apply.  See COPYRIGHT/LICENSE.
4 .SH NAME
5 slapd.access \- access configuration for slapd, the stand-alone LDAP daemon
6 .SH SYNOPSIS
7 ETCDIR/slapd.conf
8 .SH DESCRIPTION
9 The 
10 .BR slapd.conf (5)
11 file contains configuration information for the
12 .BR slapd (8)
13 daemon. This configuration file is also used by the
14 .BR slurpd (8)
15 replication daemon and by the SLAPD tools
16 .BR slapacl (8),
17 .BR slapadd (8),
18 .BR slapauth (8),
19 .BR slapcat (8),
20 .BR slapdn (8),
21 .BR slapindex (8),
22 and
23 .BR slaptest (8).
24 .LP
25 The
26 .B slapd.conf
27 file consists of a series of global configuration options that apply to
28 .B slapd
29 as a whole (including all backends), followed by zero or more database
30 backend definitions that contain information specific to a backend
31 instance.
32 .LP
33 The general format of
34 .B slapd.conf
35 is as follows:
36 .LP
37 .nf
38     # comment - these options apply to every database
39     <global configuration options>
40     # first database definition & configuration options
41     database    <backend 1 type>
42     <configuration options specific to backend 1>
43     # subsequent database definitions & configuration options
44     ...
45 .fi
46 .LP
47 Both the global configuration and each backend-specific section can
48 contain access information.  Backend-specific access control
49 directives are used for those entries that belong to the backend,
50 according to their naming context.  In case no access control
51 directives are defined for a backend or those which are defined are
52 not applicable, the directives from the global configuration section
53 are then used.
54 .LP
55 If no access controls are present, the default policy
56 allows anyone and everyone to read anything but restricts
57 updates to rootdn.  (e.g., "access to * by * read").
58 The rootdn can always read and write EVERYTHING!
59 .LP
60 For entries not held in any backend (such as a root DSE), the
61 directives of the first backend (and any global directives) are
62 used.
63 .LP
64 Arguments that should be replaced by actual text are shown in
65 brackets <>.
66 .SH THE ACCESS DIRECTIVE
67 The structure of the access control directives is
68 .TP
69 .B access to <what> "[ by <who> [ <access> ] [ <control> ] ]+"
70 Grant access (specified by 
71 .BR <access> ) 
72 to a set of entries and/or attributes (specified by 
73 .BR <what> ) 
74 by one or more requestors (specified by 
75 .BR <who> ).
76
77 .LP
78 Lists of access directives are evaluated in the order they appear
79 in \fIslapd.conf\fP.
80 When a
81 .B <what>
82 clause matches the datum whose access is being evaluated, its
83 .B <who>
84 clause list is checked.
85 When a
86 .B <who>
87 clause matches the accessor's properties, its
88 .B <access>
89 and
90 .B <control>
91 clauses are evaluated.
92 Access control checking stops at the first match of the
93 .B <what>
94 and
95 .B <who>
96 clause, unless otherwise dictated by the
97 .B <control>
98 clause.
99 Each
100 .B <who>
101 clause list is implicitly terminated by a
102 .LP
103 .nf
104         by * none stop
105 .fi
106 .LP
107 clause that results in stopping the access control with no access 
108 privileges granted.
109 Each
110 .B <what>
111 clause list is implicitly terminated by a
112 .LP
113 .nf
114         access to *
115                 by * none
116 .fi
117 .LP
118 clause that results in granting no access privileges to an otherwise
119 unspecified datum.
120 .SH THE <WHAT> FIELD
121 The field
122 .BR <what>
123 specifies the entity the access control directive applies to.
124 It can have the forms
125 .LP
126 .nf
127         dn[.<dnstyle>]=<dnpattern>
128         filter=<ldapfilter>
129         attrs=<attrlist>[ val[/matchingRule][.<attrstyle>]=<attrval>]
130 .fi
131 .LP
132 with
133 .LP
134 .nf
135         <dnstyle>={{exact|base(object)}|regex
136                 |one(level)|sub(tree)|children}
137         <attrlist>={<attr>|[{!|@}]<objectClass>}[,<attrlist>]
138         <attrstyle>={{exact|base(object)}|regex
139                 |one(level)|sub(tree)|children}
140 .fi
141 .LP
142 The statement
143 .B dn=<dnpattern>
144 selects the entries based on their naming context.
145 The
146 .B <dnpattern>
147 is a string representation of the entry's DN.
148 The wildcard
149 .B *
150 stands for all the entries, and it is implied if no
151 .B dn
152 form is given.
153 .LP
154 The 
155 .B <dnstyle> 
156 is optional; however, it is recommended to specify it to avoid ambiguities.
157 .B Base 
158 (synonym of
159 .BR baseObject ),
160 the default,
161 or
162 .B exact 
163 (an alias of 
164 .BR base )
165 indicates the entry whose DN is equal to the
166 .BR <dnpattern> ;
167 .B one
168 (synonym of
169 .BR onelevel )
170 indicates all the entries immediately below the
171 .BR <dnpattern> ,
172 .B sub
173 (synonym of
174 .BR subtree )
175 indicates all entries in the subtree at the
176 .BR <dnpattern> ,
177 .B children
178 indicates all the entries below (subordinate to) the 
179 .BR <dnpattern> .
180 .LP
181 If the
182 .B <dnstyle>
183 qualifier is
184 .BR regex ,
185 then 
186 .B <dnpattern>
187 is a POSIX (''extended'') regular expression pattern,
188 as detailed in
189 .BR regex (7)
190 and/or
191 .BR re_format (7),
192 matching a normalized string representation of the entry's DN.
193 The regex form of the pattern does not (yet) support UTF\-8.
194 .LP
195 The statement
196 .B filter=<ldapfilter>
197 selects the entries based on a valid LDAP filter as described in RFC 4515.
198 A filter of
199 .B (objectClass=*)
200 is implied if no
201 .B filter
202 form is given.
203 .LP
204 The statement
205 .B attrs=<attrlist>
206 selects the attributes the access control rule applies to.
207 It is a comma-separated list of attribute types, plus the special names
208 .BR entry ,
209 indicating access to the entry itself, and
210 .BR children ,
211 indicating access to the entry's children. ObjectClass names may also
212 be specified in this list, which will affect all the attributes that
213 are required and/or allowed by that objectClass.
214 Actually, names in 
215 .B <attrlist>
216 that are prefixed by
217 .B @
218 are directly treated as objectClass names.  A name prefixed by
219 .B !
220 is also treated as an objectClass, but in this case the access rule
221 affects the attributes that are not required nor allowed 
222 by that objectClass.
223 If no
224 .B attrs
225 form is given, 
226 .B attrs=@extensibleObject
227 is implied, i.e. all attributes are addressed.
228 .LP
229 Using the form
230 .B attrs=<attr> val[/matchingRule][.<attrstyle>]=<attrval>
231 specifies access to a particular value of a single attribute.
232 In this case, only a single attribute type may be given. The
233 .B <attrstyle>
234 .B exact
235 (the default) uses the attribute's equality matching rule to compare the
236 value, unless a different (and compatible) matching rule is specified. If the
237 .B <attrstyle>
238 is
239 .BR regex ,
240 the provided value is used as a POSIX (''extended'') regular
241 expression pattern.  If the attribute has DN syntax, the 
242 .B <attrstyle>
243 can be any of
244 .BR base ,
245 .BR onelevel ,
246 .B subtree
247 or
248 .BR children ,
249 resulting in base, onelevel, subtree or children match, respectively.
250 .LP
251 The dn, filter, and attrs statements are additive; they can be used in sequence 
252 to select entities the access rule applies to based on naming context,
253 value and attribute type simultaneously.
254 .SH THE <WHO> FIELD
255 The field
256 .B <who>
257 indicates whom the access rules apply to.
258 Multiple 
259 .B <who>
260 statements can appear in an access control statement, indicating the
261 different access privileges to the same resource that apply to different
262 accessee.
263 It can have the forms
264 .LP
265 .nf
266         *
267         anonymous
268         users
269         self[.<selfstyle>]
270
271         dn[.<dnstyle>[,<modifier>]]=<DN>
272         dnattr=<attrname>
273
274         realanonymous
275         realusers
276         realself[.<selfstyle>]
277
278         realdn[.<dnstyle>[,<modifier>]]=<DN>
279         realdnattr=<attrname>
280
281         group[/<objectclass>[/<attrname>]]
282                 [.<groupstyle>]=<group>
283         peername[.<peernamestyle>]=<peername>
284         sockname[.<style>]=<sockname>
285         domain[.<domainstyle>[,<modifier>]]=<domain>
286         sockurl[.<style>]=<sockurl>
287         set[.<setstyle>]=<pattern>
288
289         ssf=<n>
290         transport_ssf=<n>
291         tls_ssf=<n>
292         sasl_ssf=<n>
293
294         dynacl/<name>[/<options>][.<dynstyle>][=<pattern>]
295 .fi
296 .LP
297 with
298 .LP
299 .nf
300         <style>={exact|regex|expand}
301         <selfstyle>={level{<n>}}
302         <dnstyle>={{exact|base(object)}|regex
303                 |one(level)|sub(tree)|children|level{<n>}}
304         <groupstyle>={exact|expand}
305         <peernamestyle>={<style>|ip|path}
306         <domainstyle>={exact|regex|sub(tree)}
307         <setstyle>={exact|regex}
308         <modifier>={expand}
309         <name>=aci              <pattern>=<attrname>]
310 .fi
311 .LP
312 They may be specified in combination.
313 .LP
314 .nf
315 .fi
316 .LP
317 The wildcard
318 .B *
319 refers to everybody.
320 .LP
321 The keywords prefixed by
322 .B real
323 act as their counterparts without prefix; the checking respectively occurs
324 with the \fIauthentication\fP DN and the \fIauthorization\fP DN.
325 .LP
326 The keyword
327 .B anonymous
328 means access is granted to unauthenticated clients; it is mostly used 
329 to limit access to authentication resources (e.g. the
330 .B userPassword
331 attribute) to unauthenticated clients for authentication purposes.
332 .LP
333 The keyword
334 .B users
335 means access is granted to authenticated clients.
336 .LP
337 The keyword
338 .B self
339 means access to an entry is allowed to the entry itself (e.g. the entry
340 being accessed and the requesting entry must be the same).
341 It allows the 
342 .B level{<n>}
343 style, where \fI<n>\fP indicates what ancestor of the DN 
344 is to be used in matches.
345 A positive value indicates that the <n>-th ancestor of the user's DN
346 is to be considered; a negative value indicates that the <n>-th ancestor
347 of the target is to be considered.
348 For example, a "\fIby self.level{1} ...\fP" clause would match
349 when the object "\fIdc=example,dc=com\fP" is accessed
350 by "\fIcn=User,dc=example,dc=com\fP".
351 A "\fIby self.level{-1} ...\fP" clause would match when the same user
352 accesses the object "\fIou=Address Book,cn=User,dc=example,dc=com\fP".
353 .LP
354 The statement
355 .B dn=<DN>
356 means that access is granted to the matching DN.
357 The optional style qualifier
358 .B dnstyle
359 allows the same choices of the dn form of the
360 .B <what>
361 field.  In addition, the
362 .B regex
363 style can exploit substring substitution of submatches in the
364 .B <what>
365 dn.regex clause by using the form
366 .BR $<digit> ,
367 with 
368 .B digit
369 ranging from 0 to 9 (where 0 matches the entire string),
370 or the form
371 .BR ${<digit>+} ,
372 for submatches higher than 9.
373 Since the dollar character is used to indicate a substring replacement,
374 the dollar character that is used to indicate match up to the end of
375 the string must be escaped by a second dollar character, e.g.
376 .LP
377 .nf
378     access to dn.regex="^(.+,)?uid=([^,]+),dc=[^,]+,dc=com$"
379         by dn.regex="^uid=$2,dc=[^,]+,dc=com$$" write
380 .fi
381 .LP
382 The style qualifier
383 allows an optional
384 .BR modifier .
385 At present, the only type allowed is 
386 .BR expand ,
387 which causes substring substitution of submatches to take place
388 even if 
389 .B dnstyle
390 is not 
391 .BR regex .
392 Note that the 
393 .B regex 
394 dnstyle in the above example may be of use only if the 
395 .B <by>
396 clause needs to be a regex; otherwise, if the
397 value of the second (from the right)
398 .B dc=
399 portion of the DN in the above example were fixed, the form
400 .LP
401 .nf
402     access to dn.regex="^(.+,)?uid=([^,]+),dc=example,dc=com$"
403         by dn.exact,expand="uid=$2,dc=example,dc=com" write
404 .fi
405 .LP
406 could be used; if it had to match the value in the 
407 .B <what>
408 clause, the form
409 .LP
410 .nf
411     access to dn.regex="^(.+,)?uid=([^,]+),dc=([^,]+),dc=com$"
412         by dn.exact,expand="uid=$2,dc=$3,dc=com" write
413 .fi
414 .LP
415 could be used.
416 .LP
417 Forms of the 
418 .B <what>
419 clause other than regex may provide submatches as well.
420 The 
421 .BR base(object) ,
422 the
423 .BR sub(tree) ,
424 the
425 .BR one(level) ,
426 and the
427 .BR children
428 forms provide
429 .B $0
430 as the match of the entire string.
431 The 
432 .BR sub(tree) ,
433 the
434 .BR one(level) ,
435 and the
436 .BR children
437 forms also provide
438 .B $1
439 as the match of the rightmost part of the DN as defined in the
440 .B <what>
441 clause.
442 This may be useful, for instance, to provide access to all the 
443 ancestors of a user by defining
444 .LP
445 .nf
446     access to dn.subtree="dc=com"
447         by dn.subtree,expand="$1" read
448 .fi
449 .LP
450 which means that only access to entries that appear in the DN of the
451 .B <by>
452 clause is allowed.
453 .LP
454 The 
455 .BR level{<n>}
456 form is an extension and a generalization of the
457 .BR onelevel
458 form, which matches all DNs whose <n>-th ancestor is the pattern.
459 So, \fIlevel{1}\fP is equivalent to \fIonelevel\fP, 
460 and \fIlevel{0}\fP is equivalent to \fIbase\fP.
461 .LP
462 It is perfectly useless to give any access privileges to a DN 
463 that exactly matches the
464 .B rootdn
465 of the database the ACLs apply to, because it implicitly
466 possesses write privileges for the entire tree of that database.
467 Actually, access control is bypassed for the
468 .BR rootdn ,
469 to solve the intrinsic chicken-and-egg problem.
470 .LP
471 The statement
472 .B dnattr=<attrname>
473 means that access is granted to requests whose DN is listed in the
474 entry being accessed under the 
475 .B <attrname>
476 attribute.
477 .LP
478 The statement
479 .B group=<group>
480 means that access is granted to requests whose DN is listed
481 in the group entry whose DN is given by
482 .BR <group> .
483 The optional parameters
484 .B <objectclass>
485 and
486 .B <attrname>
487 define the objectClass and the member attributeType of the group entry.
488 The defaults are
489 .B groupOfNames
490 and
491 .BR member ,
492 respectively.
493 The optional style qualifier
494 .B <style>
495 can be
496 .BR expand ,
497 which means that
498 .B <group>
499 will be expanded as a replacement string (but not as a regular expression)
500 according to
501 .BR regex (7)
502 and/or
503 .BR re_format (7),
504 and
505 .BR exact ,
506 which means that exact match will be used.
507 If the style of the DN portion of the
508 .B <what>
509 clause is regex, the submatches are made available according to
510 .BR regex (7)
511 and/or
512 .BR re_format (7);
513 other styles provide limited submatches as discussed above about 
514 the DN form of the 
515 .B <by>
516 clause.
517 .LP
518 For static groups, the specified attributeType must have
519 .B DistinguishedName
520 or
521 .B NameAndOptionalUID
522 syntax. For dynamic groups the attributeType must
523 be a subtype of the
524 .B labeledURI
525 attributeType. Only LDAP URIs of the form
526 .B ldap:///<base>??<scope>?<filter>
527 will be evaluated in a dynamic group, by searching the local server only.
528 .LP
529 The statements
530 .BR peername=<peername> ,
531 .BR sockname=<sockname> ,
532 .BR domain=<domain> ,
533 and
534 .BR sockurl=<sockurl>
535 mean that the contacting host IP (in the form 
536 .BR "IP=<ip>:<port>" )
537 or the contacting host named pipe file name (in the form
538 .B "PATH=<path>"
539 if connecting through a named pipe) for
540 .BR peername ,
541 the named pipe file name for
542 .BR sockname ,
543 the contacting host name for
544 .BR domain ,
545 and the contacting URL for
546 .BR sockurl
547 are compared against
548 .B pattern
549 to determine access.
550 The same
551 .B style
552 rules for pattern match described for the
553 .B group
554 case apply, plus the
555 .B regex
556 style, which implies submatch
557 .B expand
558 and regex match of the corresponding connection parameters.
559 The
560 .B exact
561 style of the
562 .BR <peername>
563 clause (the default) implies a case-exact match on the client's
564 .BR IP , 
565 including the
566 .B "IP="
567 prefix and the trailing
568 .BR ":<port>" , 
569 or the client's 
570 .BR path ,
571 including the
572 .B "PATH="
573 prefix if connecting through a named pipe.
574 The special
575 .B ip
576 style interprets the pattern as 
577 .BR <peername>=<ip>[%<mask>][{<n>}] ,
578 where
579 .B <ip>
580 and 
581 .B <mask>
582 are dotted digit representations of the IP and the mask, while
583 .BR <n> ,
584 delimited by curly brackets, is an optional port.
585 When checking access privileges, the IP portion of the
586 .BR peername 
587 is extracted, eliminating the
588 .B "IP="
589 prefix and the
590 .B ":<port>"
591 part, and it is compared against the
592 .B <ip>
593 portion of the pattern after masking with
594 .BR <mask> .
595 As an example, 
596 .B peername.ip=127.0.0.1
597 allows connections only from localhost,
598 .B peername.ip=192.168.1.0%255.255.255.0 
599 allows connections from any IP in the 192.168.1 class C domain, and
600 .B peername.ip=192.168.1.16%255.255.255.240{9009}
601 allows connections from any IP in the 192.168.1.[16-31] range 
602 of the same domain, only if port 9009 is used.
603 The special 
604 .B path
605 style eliminates the 
606 .B "PATH="
607 prefix from the 
608 .B peername
609 when connecting through a named pipe, and performs an exact match 
610 on the given pattern.
611 The
612 .BR <domain>
613 clause also allows the
614 .B subtree
615 style, which succeeds when a fully qualified name exactly matches the
616 .BR domain
617 pattern, or its trailing part, after a 
618 .BR dot ,
619 exactly matches the 
620 .BR domain
621 pattern.
622 The 
623 .B expand
624 style is allowed, implying an
625 .B exact 
626 match with submatch expansion; the use of 
627 .B expand 
628 as a style modifier is considered more appropriate.
629 As an example,
630 .B domain.subtree=example.com
631 will match www.example.com, but will not match www.anotherexample.com.
632 The
633 .B domain
634 of the contacting host is determined by performing a DNS reverse lookup.
635 As this lookup can easily be spoofed, use of the
636 .B domain
637 statement is strongly discouraged.  By default, reverse lookups are disabled.
638 The optional
639 .B domainstyle
640 qualifier of the
641 .B <domain>
642 clause allows a
643 .B modifier
644 option; the only value currently supported is
645 .BR expand ,
646 which causes substring substitution of submatches to take place even if
647 the 
648 .B domainstyle
649 is not 
650 .BR regex ,
651 much like the analogous usage in 
652 .B <dn>
653 clause.
654 .LP
655 The statement
656 .B set=<pattern>
657 is undocumented yet.
658 .LP
659 The statement
660 .B dynacl/<name>[/<options>][.<dynstyle>][=<pattern>]
661 means that access checking is delegated to the admin-defined method
662 indicated by
663 .BR <name> ,
664 which can be registered at run-time by means of the
665 .B moduleload
666 statement.
667 The fields
668 .BR <options> ,
669 .B <dynstyle>
670 and
671 .B <pattern>
672 are optional, and are directly passed to the registered parsing routine.
673 Dynacl is experimental; it must be enabled at compile time.
674 .LP
675 The statement
676 .B dynacl/aci[=<attrname>]
677 means that the access control is determined by the values in the
678 .B attrname
679 of the entry itself.
680 The optional
681 .B <attrname>
682 indicates what attributeType holds the ACI information in the entry.
683 By default, the 
684 .B OpenLDAPaci
685 operational attribute is used.
686 ACIs are experimental; they must be enabled at compile time.
687 .LP
688 The statements
689 .BR ssf=<n> ,
690 .BR transport_ssf=<n> ,
691 .BR tls_ssf=<n> ,
692 and
693 .BR sasl_ssf=<n>
694 set the minimum required Security Strength Factor (ssf) needed
695 to grant access.  The value should be positive integer.
696 .SH THE <ACCESS> FIELD
697 The optional field
698 .B <access> ::= [[real]self]{<level>|<priv>}
699 determines the access level or the specific access privileges the
700 .B who 
701 field will have.
702 Its component are defined as
703 .LP
704 .nf
705         <level> ::= none|disclose|auth|compare|search|read|write|manage
706         <priv> ::= {=|+|-}{m|w|r|s|c|x|d|0}+
707 .fi
708 .LP
709 The modifier
710 .B self
711 allows special operations like having a certain access level or privilege
712 only in case the operation involves the name of the user that's requesting
713 the access.
714 It implies the user that requests access is authorized.
715 The modifier
716 .B realself
717 refers to the authenticated DN as opposed to the authorized DN of the
718 .B self
719 modifier.
720 An example is the
721 .B selfwrite
722 access to the member attribute of a group, which allows one to add/delete
723 its own DN from the member list of a group, without affecting other members.
724 .LP
725 The 
726 .B level 
727 access model relies on an incremental interpretation of the access
728 privileges.
729 The possible levels are
730 .BR none ,
731 .BR disclose ,
732 .BR auth ,
733 .BR compare ,
734 .BR search ,
735 .BR read ,
736 and
737 .BR write .
738 Each access level implies all the preceding ones, thus 
739 .B manage
740 grants all access including administrative access,
741 .LP
742 The
743 .B none 
744 access level disallows all access including disclosure on error.
745 .LP
746 The
747 .B disclose
748 access level allows disclosure of information on error.
749 .LP
750 The 
751 .B auth
752 access level means that one is allowed access to an attribute to perform
753 authentication/authorization operations (e.g.
754 .BR bind )
755 with no other access.
756 This is useful to grant unauthenticated clients the least possible 
757 access level to critical resources, like passwords.
758 .LP
759 The
760 .B priv
761 access model relies on the explicit setting of access privileges
762 for each clause.
763 The
764 .B =
765 sign resets previously defined accesses; as a consequence, the final 
766 access privileges will be only those defined by the clause.
767 The 
768 .B +
769 and
770 .B -
771 signs add/remove access privileges to the existing ones.
772 The privileges are
773 .B m
774 for manage,
775 .B w
776 for write,
777 .B r
778 for read,
779 .B s 
780 for search,
781 .B c 
782 for compare,
783 .B x
784 for authentication, and
785 .B d
786 for disclose.
787 More than one of the above privileges can be added in one statement.
788 .B 0
789 indicates no privileges and is used only by itself (e.g., +0).
790 .LP
791 If no access is given, it defaults to 
792 .BR +0 .
793 .SH THE <CONTROL> FIELD
794 The optional field
795 .B <control>
796 controls the flow of access rule application.
797 It can have the forms
798 .LP
799 .nf
800         stop
801         continue
802         break
803 .fi
804 .LP
805 where
806 .BR stop ,
807 the default, means access checking stops in case of match.
808 The other two forms are used to keep on processing access clauses.
809 In detail, the
810 .B continue
811 form allows for other 
812 .B <who>
813 clauses in the same 
814 .B <access>
815 clause to be considered, so that they may result in incrementally altering
816 the privileges, while the
817 .B break
818 form allows for other
819 .B <access>
820 clauses that match the same target to be processed.
821 Consider the (silly) example
822 .LP
823 .nf
824         access to dn.subtree="dc=example,dc=com" attrs=cn
825                 by * =cs break
826
827         access to dn.subtree="ou=People,dc=example,dc=com"
828                 by * +r
829 .fi
830 .LP
831 which allows search and compare privileges to everybody under
832 the "dc=example,dc=com" tree, with the second rule allowing
833 also read in the "ou=People" subtree,
834 or the (even more silly) example
835 .LP
836 .nf
837         access to dn.subtree="dc=example,dc=com" attrs=cn
838                 by * =cs continue
839                 by users +r
840 .fi
841 .LP
842 which grants everybody search and compare privileges, and adds read
843 privileges to authenticated clients.
844 .LP
845 One useful application is to easily grant write privileges to an
846 .B updatedn
847 that is different from the
848 .BR rootdn .
849 In this case, since the
850 .B updatedn
851 needs write access to (almost) all data, one can use
852 .LP
853 .nf
854         access to *
855                 by dn.exact="cn=The Update DN,dc=example,dc=com" write
856                 by * break
857 .fi
858 .LP
859 as the first access rule.
860 As a consequence, unless the operation is performed with the 
861 .B updatedn
862 identity, control is passed straight to the subsequent rules.
863
864 .SH OPERATION REQUIREMENTS
865 Operations require different privileges on different portions of entries.
866 The following summary applies to primary database backends such as
867 the BDB and HDB backends.   Requirements for other backends may
868 (and often do) differ.
869
870 .LP
871 The
872 .B add
873 operation requires
874 .B write (=w)
875 privileges on the pseudo-attribute 
876 .B entry
877 of the entry being added, and 
878 .B write (=w)
879 privileges on the pseudo-attribute
880 .B children
881 of the entry's parent.
882 When adding the suffix entry of a database, write access to
883 .B children
884 of the empty DN ("") is required.
885
886 .LP
887 The 
888 .B bind
889 operation, when credentials are stored in the directory, requires 
890 .B auth (=x)
891 privileges on the attribute the credentials are stored in (usually
892 .BR userPassword ).
893
894 .LP
895 The
896 .B compare
897 operation requires 
898 .B compare (=c)
899 privileges on the attribute that is being compared.
900
901 .LP
902 The
903 .B delete
904 operation requires
905 .B write (=w)
906 privileges on the pseudo-attribute
907 .B entry 
908 of the entry being deleted, and
909 .B write (=w)
910 privileges on the
911 .B children
912 pseudo-attribute of the entry's parent.
913
914 .LP
915 The
916 .B modify
917 operation requires 
918 .B write (=w)
919 privileges on the attributes being modified.
920
921 .LP
922 The
923 .B modrdn
924 operation requires
925 .B write (=w)
926 privileges on the pseudo-attribute
927 .B entry
928 of the entry whose relative DN is being modified,
929 .B write (=w)
930 privileges on the pseudo-attribute
931 .B children
932 of the old and new entry's parents, and
933 .B write (=w)
934 privileges on the attributes that are present in the new relative DN.
935 .B Write (=w)
936 privileges are also required on the attributes that are present 
937 in the old relative DN if 
938 .B deleteoldrdn
939 is set to 1.
940
941 .LP
942 The
943 .B search
944 operation, requires 
945 .B search (=s)
946 privileges on the 
947 .B entry
948 pseudo-attribute of the searchBase (NOTE: this was introduced with 2.3).
949 Then, for each entry, it requires
950 .B search (=s)
951 privileges on the attributes that are defined in the filter.
952 The resulting entries are finally tested for 
953 .B read (=r)
954 privileges on the pseudo-attribute
955 .B entry
956 (for read access to the entry itself)
957 and for
958 .B read (=r)
959 access on each value of each attribute that is requested.
960 Also, for each
961 .B referral
962 object used in generating continuation references, the operation requires
963 .B read (=r)
964 access on the pseudo-attribute
965 .B entry
966 (for read access to the referral object itself),
967 as well as
968 .B read (=r)
969 access to the attribute holding the referral information
970 (generally the
971 .B ref
972 attribute).
973
974 .LP
975 Some internal operations and some
976 .B controls
977 require specific access privileges.
978 The
979 .B authzID
980 mapping and the 
981 .B proxyAuthz
982 control require
983 .B auth (=x)
984 privileges on all the attributes that are present in the search filter
985 of the URI regexp maps (the right-hand side of the
986 .B authz-regexp
987 directives).
988 .B Auth (=x)
989 privileges are also required on the
990 .B authzTo
991 attribute of the authorizing identity and/or on the 
992 .B authzFrom
993 attribute of the authorized identity.
994
995 .LP
996 Access control to search entries is checked by the frontend,
997 so it is fully honored by all backends; for all other operations
998 and for the discovery phase of the search operation,
999 full ACL semantics is only supported by the primary backends, i.e.
1000 .BR back-bdb (5),
1001 and
1002 .BR back-hdb (5).
1003
1004 Some other backend, like
1005 .BR back-sql (5),
1006 may fully support them; others may only support a portion of the 
1007 described semantics, or even differ in some aspects.
1008 The relevant details are described in the backend-specific man pages.
1009
1010 .SH CAVEATS
1011 It is strongly recommended to explicitly use the most appropriate
1012 .B <dnstyle>
1013 in
1014 .B <what>
1015 and
1016 .B <who>
1017 clauses, to avoid possible incorrect specifications of the access rules 
1018 as well as for performance (avoid unnecessary regex matching when an exact
1019 match suffices) reasons.
1020 .LP
1021 An administrator might create a rule of the form:
1022 .LP
1023 .nf
1024         access to dn.regex="dc=example,dc=com"
1025                 by ...
1026 .fi
1027 .LP
1028 expecting it to match all entries in the subtree "dc=example,dc=com".
1029 However, this rule actually matches any DN which contains anywhere
1030 the substring "dc=example,dc=com".  That is, the rule matches both
1031 "uid=joe,dc=example,dc=com" and "dc=example,dc=com,uid=joe".
1032 .LP
1033 To match the desired subtree, the rule would be more precisely
1034 written:
1035 .LP
1036 .nf
1037         access to dn.regex="^(.+,)?dc=example,dc=com$"
1038                 by ...
1039 .fi
1040 .LP
1041 For performance reasons, it would be better to use the subtree style.
1042 .LP
1043 .nf
1044         access to dn.subtree="dc=example,dc=com"
1045                 by ...
1046 .fi
1047 .LP
1048 When writing submatch rules, it may be convenient to avoid unnecessary
1049 .B regex
1050 .B <dnstyle>
1051 use; for instance, to allow access to the subtree of the user 
1052 that matches the
1053 .B <what>
1054 clause, one could use
1055 .LP
1056 .nf
1057         access to dn.regex="^(.+,)?uid=([^,]+),dc=example,dc=com$"
1058                 by dn.regex="^uid=$2,dc=example,dc=com$$" write
1059                 by ...
1060 .fi
1061 .LP
1062 However, since all that is required in the 
1063 .B <by>
1064 clause is substring expansion, a more efficient solution is
1065 .LP
1066 .nf
1067         access to dn.regex="^(.+,)?uid=([^,]+),dc=example,dc=com$"
1068                 by dn.exact,expand="uid=$2,dc=example,dc=com" write
1069                 by ...
1070 .fi
1071 .LP
1072 In fact, while a
1073 .B <dnstyle>
1074 of
1075 .B regex
1076 implies substring expansion, 
1077 .BR exact ,
1078 as well as all the other DN specific
1079 .B <dnstyle>
1080 values, does not, so it must be explicitly requested.
1081 .LP
1082 .SH FILES
1083 .TP
1084 ETCDIR/slapd.conf
1085 default slapd configuration file
1086 .SH SEE ALSO
1087 .BR slapd (8),
1088 .BR slapd-* (5),
1089 .BR slapacl (8),
1090 .BR regex (7),
1091 .BR re_format (7)
1092 .LP
1093 "OpenLDAP Administrator's Guide" (http://www.OpenLDAP.org/doc/admin/)
1094 .SH ACKNOWLEDGEMENTS
1095 .B OpenLDAP
1096 is developed and maintained by The OpenLDAP Project (http://www.openldap.org/).
1097 .B OpenLDAP
1098 is derived from University of Michigan LDAP 3.3 Release.