]> git.sur5r.net Git - openldap/blob - doc/man/man5/slapd-meta.5
d51d8fff44965e0b134e421cadfaacf732580db3
[openldap] / doc / man / man5 / slapd-meta.5
1 .TH SLAPD-META 5 "RELEASEDATE" "OpenLDAP LDVERSION"
2 .\" Copyright 1998-2013 The OpenLDAP Foundation, All Rights Reserved.
3 .\" Copying restrictions apply.  See the COPYRIGHT file.
4 .\" Copyright 2001, Pierangelo Masarati, All rights reserved. <ando@sys-net.it>
5 .\" $OpenLDAP$
6 .\"
7 .\" Portions of this document should probably be moved to slapd-ldap(5)
8 .\" and maybe manual pages for librewrite.
9 .\"
10 .SH NAME
11 slapd\-meta \- metadirectory backend to slapd
12 .SH SYNOPSIS
13 ETCDIR/slapd.conf
14 .SH DESCRIPTION
15 The
16 .B meta
17 backend to
18 .BR slapd (8)
19 performs basic LDAP proxying with respect to a set of remote LDAP
20 servers, called "targets".
21 The information contained in these servers can be presented as
22 belonging to a single Directory Information Tree (DIT).
23 .LP
24 A basic knowledge of the functionality of the
25 .BR slapd\-ldap (5)
26 backend is recommended.
27 This backend has been designed as an enhancement of the ldap backend.
28 The two backends share many features (actually they also share
29 portions of code).
30 While the
31 .B ldap
32 backend is intended to proxy operations directed to a single server, the
33 .B meta
34 backend is mainly intended for proxying of multiple servers and possibly
35 naming context masquerading.
36 These features, although useful in many scenarios, may result in
37 excessive overhead for some applications, so its use should be
38 carefully considered.
39 In the examples section, some typical scenarios will be discussed.
40
41 The proxy instance of
42 .BR slapd (8)
43 must contain schema information for the attributes and objectClasses
44 used in filters, request DN and request-related data in general.
45 It should also contain schema information for the data returned
46 by the proxied server.
47 It is the responsibility of the proxy administrator to keep the schema
48 of the proxy lined up with that of the proxied server.
49
50 .LP
51 Note: When looping back to the same instance of \fBslapd\fP(8), 
52 each connection requires a new thread; as a consequence, \fBslapd\fP(8)
53 must be compiled with thread support, and the \fBthreads\fP parameter 
54 may need some tuning; in those cases, unless the multiple target feature
55 is required, one may consider using \fBslapd\-relay\fP(5) instead, 
56 which performs the relayed operation internally and thus reuses 
57 the same connection.
58
59 .SH EXAMPLES
60 There are examples in various places in this document, as well as in the
61 slapd/back\-meta/data/ directory in the OpenLDAP source tree.
62 .SH CONFIGURATION
63 These
64 .B slapd.conf
65 options apply to the META backend database.
66 That is, they must follow a "database meta" line and come before any
67 subsequent "backend" or "database" lines.
68 Other database options are described in the
69 .BR slapd.conf (5)
70 manual page.
71 .LP
72 Note: In early versions of back-ldap and back-meta it was recommended to always set
73 .LP
74 .RS
75 .nf
76 lastmod  off
77 .fi
78 .RE
79 .LP
80 for 
81 .B ldap
82 and
83 .B meta
84 databases.
85 This was required because operational attributes related to entry creation 
86 and modification should not be proxied, as they could be mistakenly written
87 to the target server(s), generating an error.
88 The current implementation automatically sets lastmod to \fBoff\fP, 
89 so its use is redundant and should be omitted.
90
91 .SH SPECIAL CONFIGURATION DIRECTIVES
92 Target configuration starts with the "uri" directive.
93 All the configuration directives that are not specific to targets
94 should be defined first for clarity, including those that are common
95 to all backends.
96 They are:
97
98 .TP
99 .B conn\-ttl <time>
100 This directive causes a cached connection to be dropped an recreated
101 after a given ttl, regardless of being idle or not.
102
103 .TP
104 .B default\-target none
105 This directive forces the backend to reject all those operations
106 that must resolve to a single target in case none or multiple
107 targets are selected.
108 They include: add, delete, modify, modrdn; compare is not included, as
109 well as bind since, as they don't alter entries, in case of multiple
110 matches an attempt is made to perform the operation on any candidate
111 target, with the constraint that at most one must succeed.
112 This directive can also be used when processing targets to mark a
113 specific target as default.
114
115 .TP
116 .B dncache\-ttl {DISABLED|forever|<ttl>}
117 This directive sets the time-to-live of the DN cache.
118 This caches the target that holds a given DN to speed up target
119 selection in case multiple targets would result from an uncached
120 search; forever means cache never expires; disabled means no DN
121 caching; otherwise a valid ( > 0 ) ttl is required, in the format
122 illustrated for the 
123 .B idle\-timeout
124 directive.
125
126 .TP
127 .B onerr {CONTINUE|report|stop}
128 This directive allows to select the behavior in case an error is returned
129 by one target during a search.
130 The default, \fBcontinue\fP, consists in continuing the operation, 
131 trying to return as much data as possible.
132 If the value is set to \fBstop\fP, the search is terminated as soon 
133 as an error is returned by one target, and the error is immediately 
134 propagated to the client.
135 If the value is set to \fBreport\fP, the search is continuated to the end
136 but, in case at least one target returned an error code, the first
137 non-success error code is returned.
138
139 .TP
140 .B norefs <NO|yes>
141 If
142 .BR yes ,
143 do not return search reference responses.
144 By default, they are returned unless request is LDAPv2.
145 If set before any target specification, it affects all targets, unless
146 overridden by any per-target directive.
147
148 .TP
149 .B noundeffilter <NO|yes>
150 If
151 .BR yes ,
152 return success instead of searching if a filter is undefined or contains
153 undefined portions.
154 By default, the search is propagated after replacing undefined portions
155 with
156 .BR (!(objectClass=*)) ,
157 which corresponds to the empty result set.
158 If set before any target specification, it affects all targets, unless
159 overridden by any per-target directive.
160
161 .TP
162 .B protocol\-version {0,2,3}
163 This directive indicates what protocol version must be used to contact
164 the remote server.
165 If set to 0 (the default), the proxy uses the same protocol version 
166 used by the client, otherwise the requested protocol is used.
167 The proxy returns \fIunwillingToPerform\fP if an operation that is 
168 incompatible with the requested protocol is attempted.
169 If set before any target specification, it affects all targets, unless
170 overridden by any per-target directive.
171
172 .TP
173 .B pseudoroot\-bind\-defer {YES|no}
174 This directive, when set to 
175 .BR yes ,
176 causes the authentication to the remote servers with the pseudo-root
177 identity (the identity defined in each
178 .B idassert-bind
179 directive) to be deferred until actually needed by subsequent operations.
180 Otherwise, all binds as the rootdn are propagated to the targets.
181
182 .TP
183 .B quarantine <interval>,<num>[;<interval>,<num>[...]]
184 Turns on quarantine of URIs that returned
185 .IR LDAP_UNAVAILABLE ,
186 so that an attempt to reconnect only occurs at given intervals instead
187 of any time a client requests an operation.
188 The pattern is: retry only after at least
189 .I interval
190 seconds elapsed since last attempt, for exactly
191 .I num
192 times; then use the next pattern.
193 If
194 .I num
195 for the last pattern is "\fB+\fP", it retries forever; otherwise, 
196 no more retries occur.
197 This directive must appear before any target specification;
198 it affects all targets with the same pattern.
199
200 .TP
201 .B rebind\-as\-user {NO|yes}
202 If this option is given, the client's bind credentials are remembered
203 for rebinds, when trying to re-establish a broken connection,
204 or when chasing a referral, if 
205 .B chase\-referrals
206 is set to
207 .IR yes .
208
209 .TP
210 .B session\-tracking\-request {NO|yes}
211 Adds session tracking control for all requests.
212 The client's IP and hostname, and the identity associated to each request,
213 if known, are sent to the remote server for informational purposes.
214 This directive is incompatible with setting \fIprotocol\-version\fP to 2.
215 If set before any target specification, it affects all targets, unless
216 overridden by any per-target directive.
217
218 .TP
219 .B single\-conn {NO|yes}
220 Discards current cached connection when the client rebinds.
221
222 .TP
223 .B use\-temporary\-conn {NO|yes}
224 when set to 
225 .BR yes ,
226 create a temporary connection whenever competing with other threads
227 for a shared one; otherwise, wait until the shared connection is available.
228
229 .SH TARGET SPECIFICATION
230 Target specification starts with a "uri" directive:
231
232 .TP
233 .B uri <protocol>://[<host>]/<naming context> [...]
234 The <protocol> part can be anything
235 .BR ldap_initialize (3)
236 accepts ({ldap|ldaps|ldapi} and variants); the <host> may be
237 omitted, defaulting to whatever is set in
238 .BR ldap.conf (5).
239 The <naming context> part is \fImandatory\fP for the first URI,
240 but it \fImust be omitted\fP for subsequent ones, if any.
241 The naming context part must be within the naming context defined for the backend,
242 e.g.:
243 .LP
244 .RS
245 .nf
246 suffix "\fBdc=foo,dc=com\fP"
247 uri    "ldap://x.foo.com/dc=x,\fBdc=foo,dc=com\fP"
248 .fi
249
250 .RE
251 .RS
252 The <naming context> part doesn't need to be unique across the targets;
253 it may also match one of the values of the "suffix" directive.
254 Multiple URIs may be defined in a single URI statement.
255 The additional URIs must be separate arguments and must not have any
256 <naming context> part.  This causes the underlying library
257 to contact the first server of the list that responds.
258 For example, if \fIl1.foo.com\fP and \fIl2.foo.com\fP are shadows
259 of the same server, the directive
260 .LP
261 .nf
262 suffix "\fBdc=foo,dc=com\fP"
263 uri    "ldap://l1.foo.com/\fBdc=foo,dc=com\fP" "ldap://l2.foo.com/"
264 .fi
265
266 .RE
267 .RS
268 causes \fIl2.foo.com\fP to be contacted whenever \fIl1.foo.com\fP
269 does not respond.
270 In that case, the URI list is internally rearranged, by moving unavailable
271 URIs to the end, so that further connection attempts occur with respect to
272 the last URI that succeeded.
273 .RE
274
275 .TP
276 .B acl\-authcDN "<administrative DN for access control purposes>"
277 DN which is used to query the target server for acl checking,
278 as in the LDAP backend; it is supposed to have read access 
279 on the target server to attributes used on the proxy for acl checking.
280 There is no risk of giving away such values; they are only used to
281 check permissions.
282 .B The acl\-authcDN identity is by no means implicitly used by the proxy 
283 .B when the client connects anonymously.
284
285 .TP
286 .B acl\-passwd <password>
287 Password used with the
288 .B 
289 acl\-authcDN
290 above.
291
292 .TP
293 .B bind\-timeout <microseconds>
294 This directive defines the timeout, in microseconds, used when polling
295 for response after an asynchronous bind connection.  The initial call
296 to ldap_result(3) is performed with a trade-off timeout of 100000 us;
297 if that results in a timeout exceeded, subsequent calls use the value
298 provided with
299 .BR bind\-timeout .
300 The default value is used also for subsequent calls if
301 .B bind\-timeout
302 is not specified.
303 If set before any target specification, it affects all targets, unless
304 overridden by any per-target directive.
305
306 .TP
307 .B chase\-referrals {YES|no}
308 enable/disable automatic referral chasing, which is delegated to the
309 underlying libldap, with rebinding eventually performed if the
310 \fBrebind\-as\-user\fP directive is used.  The default is to chase referrals.
311 If set before any target specification, it affects all targets, unless
312 overridden by any per-target directive.
313
314 .TP
315 .B client\-pr {accept-unsolicited|DISABLE|<size>}
316 This feature allows to use RFC 2696 Paged Results control when performing
317 search operations with a specific target,
318 irrespective of the client's request.
319 When set to a numeric value, Paged Results control is always
320 used with \fIsize\fP as the page size.
321 When set to \fIaccept-unsolicited\fP, unsolicited Paged Results
322 control responses are accepted and honored
323 for compatibility with broken remote DSAs.
324 The client is not exposed to paged results handling
325 between
326 .BR slapd\-meta (5)
327 and the remote servers.
328 By default (disabled), Paged Results control is not used
329 and responses are not accepted.
330 If set before any target specification, it affects all targets, unless
331 overridden by any per-target directive.
332
333 .TP
334 .B default\-target [<target>]
335 The "default\-target" directive can also be used during target specification.
336 With no arguments it marks the current target as the default.
337 The optional number marks target <target> as the default one, starting
338 from 1.
339 Target <target> must be defined.
340
341 .TP
342 .B idassert\-authzFrom <authz-regexp>
343 if defined, selects what
344 .I local
345 identities are authorized to exploit the identity assertion feature.
346 The string
347 .B <authz-regexp>
348 follows the rules defined for the
349 .I authzFrom
350 attribute.
351 See 
352 .BR slapd.conf (5),
353 section related to
354 .BR authz\-policy ,
355 for details on the syntax of this field.
356
357 .HP
358 .hy 0
359 .B idassert\-bind
360 .B bindmethod=none|simple|sasl [binddn=<simple DN>] [credentials=<simple password>]
361 .B [saslmech=<SASL mech>] [secprops=<properties>] [realm=<realm>]
362 .B [authcId=<authentication ID>] [authzId=<authorization ID>]
363 .B [authz={native|proxyauthz}] [mode=<mode>] [flags=<flags>]
364 .B [starttls=no|yes|critical]
365 .B [tls_cert=<file>]
366 .B [tls_key=<file>]
367 .B [tls_cacert=<file>]
368 .B [tls_cacertdir=<path>]
369 .B [tls_reqcert=never|allow|try|demand]
370 .B [tls_ciphersuite=<ciphers>]
371 .B [tls_protocol_min=<version>]
372 .B [tls_crlcheck=none|peer|all]
373 .RS
374 Allows to define the parameters of the authentication method that is 
375 internally used by the proxy to authorize connections that are 
376 authenticated by other databases.
377 The identity defined by this directive, according to the properties
378 associated to the authentication method, is supposed to have auth access 
379 on the target server to attributes used on the proxy for authentication
380 and authorization, and to be allowed to authorize the users.
381 This requires to have
382 .B proxyAuthz
383 privileges on a wide set of DNs, e.g.
384 .BR authzTo=dn.subtree:"" ,
385 and the remote server to have
386 .B authz\-policy
387 set to
388 .B to
389 or
390 .BR both .
391 See
392 .BR slapd.conf (5)
393 for details on these statements and for remarks and drawbacks about
394 their usage.
395 The supported bindmethods are
396
397 \fBnone|simple|sasl\fP
398
399 where
400 .B none
401 is the default, i.e. no \fIidentity assertion\fP is performed.
402
403 The authz parameter is used to instruct the SASL bind to exploit 
404 .B native 
405 SASL authorization, if available; since connections are cached,
406 this should only be used when authorizing with a fixed identity
407 (e.g. by means of the 
408 .B authzDN
409 or
410 .B authzID
411 parameters).
412 Otherwise, the default
413 .B proxyauthz
414 is used, i.e. the proxyAuthz control (Proxied Authorization, RFC 4370)
415 is added to all operations.
416
417 The supported modes are:
418
419 \fB<mode> := {legacy|anonymous|none|self}\fP
420
421 If 
422 .B <mode>
423 is not present, and 
424 .B authzId
425 is given, the proxy always authorizes that identity.
426 .B <authorization ID>
427 can be 
428
429 \fBu:<user>\fP
430
431 \fB[dn:]<DN>\fP
432
433 The former is supposed to be expanded by the remote server according 
434 to the authz rules; see
435 .BR slapd.conf (5)
436 for details.
437 In the latter case, whether or not the 
438 .B dn:
439 prefix is present, the string must pass DN validation and normalization.
440
441 The default mode is 
442 .BR legacy ,
443 which implies that the proxy will either perform a simple bind as the
444 .I authcDN
445 or a SASL bind as the
446 .I authcID
447 and assert the client's identity when it is not anonymous.
448 Direct binds are always proxied.
449 The other modes imply that the proxy will always either perform a simple bind 
450 as the
451 .IR authcDN
452 or a SASL bind as the
453 .IR authcID ,
454 unless restricted by
455 .BR idassert\-authzFrom
456 rules (see below), in which case the operation will fail;
457 eventually, it will assert some other identity according to
458 .BR <mode> .
459 Other identity assertion modes are
460 .BR anonymous
461 and
462 .BR self ,
463 which respectively mean that the 
464 .I empty 
465 or the 
466 .IR client 's 
467 identity
468 will be asserted;
469 .BR none ,
470 which means that no proxyAuthz control will be used, so the
471 .I authcDN
472 or the
473 .I authcID
474 identity will be asserted.
475 For all modes that require the use of the
476 .I proxyAuthz 
477 control, on the remote server the proxy identity must have appropriate 
478 .I authzTo
479 permissions, or the asserted identities must have appropriate
480 .I authzFrom 
481 permissions.  Note, however, that the ID assertion feature is mostly 
482 useful when the asserted identities do not exist on the remote server.
483
484 Flags can be
485
486 \fBoverride,[non\-]prescriptive,proxy\-authz\-[non\-]critical\fP
487
488 When the 
489 .B override
490 flag is used, identity assertion takes place even when the database
491 is authorizing for the identity of the client, i.e. after binding
492 with the provided identity, and thus authenticating it, the proxy
493 performs the identity assertion using the configured identity and
494 authentication method.
495
496 When the
497 .B prescriptive
498 flag is used (the default), operations fail with
499 \fIinappropriateAuthentication\fP
500 for those identities whose assertion is not allowed by the
501 .B idassert\-authzFrom
502 patterns.
503 If the 
504 .B non\-prescriptive
505 flag is used, operations are performed anonymously for those identities 
506 whose assertion is not allowed by the
507 .B idassert\-authzFrom
508 patterns.
509
510 When the
511 .B proxy\-authz\-non\-critical
512 flag is used (the default), the proxyAuthz control is not marked as critical,
513 in violation of RFC 4370.  Use of
514 .B proxy\-authz\-critical
515 is recommended.
516
517 The TLS settings default to the same as the main slapd TLS settings,
518 except for
519 .B tls_reqcert
520 which defaults to "demand".
521
522 The identity associated to this directive is also used for privileged
523 operations whenever \fBidassert\-bind\fP is defined and \fBacl\-bind\fP
524 is not.  See \fBacl\-bind\fP for details.
525 .RE
526
527 .TP
528 .B idle\-timeout <time>
529 This directive causes a cached connection to be dropped an recreated
530 after it has been idle for the specified time.
531 The value can be specified as
532
533 [<d>d][<h>h][<m>m][<s>[s]]
534
535 where <d>, <h>, <m> and <s> are respectively treated as days, hours, 
536 minutes and seconds.
537 If set before any target specification, it affects all targets, unless
538 overridden by any per-target directive.
539
540 .TP
541 .B keepalive  <idle>:<probes>:<interval>
542 The
543 .B keepalive
544 parameter sets the values of \fIidle\fP, \fIprobes\fP, and \fIinterval\fP
545 used to check whether a socket is alive;
546 .I idle
547 is the number of seconds a connection needs to remain idle before TCP
548 starts sending keepalive probes;
549 .I probes
550 is the maximum number of keepalive probes TCP should send before dropping
551 the connection;
552 .I interval
553 is interval in seconds between individual keepalive probes.
554 Only some systems support the customization of these values;
555 the
556 .B keepalive
557 parameter is ignored otherwise, and system-wide settings are used.
558
559 .TP
560 .B map "{attribute|objectclass} [<local name>|*] {<foreign name>|*}"
561 This maps object classes and attributes as in the LDAP backend.
562 See
563 .BR slapd\-ldap (5).
564
565 .TP
566 .B network\-timeout <time>
567 Sets the network timeout value after which
568 .BR poll (2)/ select (2) 
569 following a 
570 .BR connect (2) 
571 returns in case of no activity.
572 The value is in seconds, and it can be specified as for
573 .BR idle\-timeout .
574 If set before any target specification, it affects all targets, unless
575 overridden by any per-target directive.
576
577 .TP
578 .B nretries {forever|never|<nretries>}
579 This directive defines how many times a bind should be retried
580 in case of temporary failure in contacting a target.  If defined
581 before any target specification, it applies to all targets (by default,
582 .BR 3
583 times);
584 the global value can be overridden by redefinitions inside each target
585 specification.
586
587 .TP
588 .B rewrite* ...
589 The rewrite options are described in the "REWRITING" section.
590
591 .TP
592 .B subtree\-{exclude|include} "<rule>"
593 This directive allows to indicate what subtrees are actually served
594 by a target.
595 The syntax of the supported rules is
596
597 \fB<rule>: [dn[.<style>]:]<pattern>\fP
598
599 \fB<style>: subtree|children|regex\fP
600
601 When \fB<style>\fP is either \fBsubtree\fP or \fBchildren\fP
602 the \fB<pattern>\fP is a DN that must be within the naming context
603 served by the target.
604 When \fB<style>\fP is \fBregex\fP the \fB<pattern>\fP is a
605 .BR regex (5)
606 pattern.
607 If the \fBdn.<style>:\fP prefix is omitted, \fBdn.subtree:\fP
608 is implicitly assumed for backward compatibility.
609
610 In the
611 .B subtree\-exclude
612 form if the \fIrequest DN\fP matches at least one rule,
613 the target is not considered while fulfilling the request;
614 otherwise, the target is considered based on the value of the \fIrequest DN\fP.
615 When the request is a search, also the \fIscope\fP is considered.
616
617 In the
618 .B subtree\-include
619 form if the \fIrequest DN\fP matches at least one rule,
620 the target is considered while fulfilling the request;
621 otherwise the target is ignored.
622
623 .LP
624 .RS
625 .nf
626     |  match  | exclude |
627     +---------+---------+-------------------+
628     |    T    |    T    | not candidate     |
629     |    F    |    T    | continue checking |
630     +---------+---------+-------------------+
631     |    T    |    F    | candidate         |
632     |    F    |    F    | not candidate     |
633     +---------+---------+-------------------+
634 .fi
635
636 .RE
637 .RS
638 There may be multiple occurrences of the
639 .B subtree\-exclude
640 or
641 .B subtree\-include
642 directive for each of the targets, but they are mutually exclusive.
643 .RE
644
645 .TP
646 .B suffixmassage "<virtual naming context>" "<real naming context>"
647 All the directives starting with "rewrite" refer to the rewrite engine
648 that has been added to slapd.
649 The "suffixmassage" directive was introduced in the LDAP backend to
650 allow suffix massaging while proxying.
651 It has been obsoleted by the rewriting tools.
652 However, both for backward compatibility and for ease of configuration
653 when simple suffix massage is required, it has been preserved.
654 It wraps the basic rewriting instructions that perform suffix
655 massaging.  See the "REWRITING" section for a detailed list 
656 of the rewrite rules it implies.
657
658 .TP
659 .B t\-f\-support {NO|yes|discover}
660 enable if the remote server supports absolute filters
661 (see \fIRFC 4526\fP for details).
662 If set to
663 .BR discover ,
664 support is detected by reading the remote server's root DSE.
665 If set before any target specification, it affects all targets, unless
666 overridden by any per-target directive.
667
668 .TP
669 .B timeout [<op>=]<val> [...]
670 This directive allows to set per-operation timeouts.
671 Operations can be
672
673 \fB<op> ::= bind, add, delete, modrdn, modify, compare, search\fP
674
675 The overall duration of the \fBsearch\fP operation is controlled either
676 by the \fBtimelimit\fP parameter or by server-side enforced
677 time limits (see \fBtimelimit\fP and \fBlimits\fP in
678 .BR slapd.conf (5)
679 for details).
680 This \fBtimeout\fP parameter controls how long the target can be 
681 irresponsive before the operation is aborted.
682 Timeout is meaningless for the remaining operations,
683 \fBunbind\fP and \fBabandon\fP, which do not imply any response,
684 while it is not yet implemented in currently supported \fBextended\fP 
685 operations.
686 If no operation is specified, the timeout \fBval\fP affects all
687 supported operations.
688 If specified before any target definition, it affects all targets
689 unless overridden by per-target directives.
690
691 Note: if the timeout is exceeded, the operation is cancelled
692 (according to the \fBcancel\fP directive);
693 the protocol does not provide any means to rollback operations,
694 so the client will not be notified about the result of the operation,
695 which may eventually succeeded or not.
696 In case the timeout is exceeded during a bind operation, the connection
697 is destroyed, according to RFC4511.
698
699 .TP
700 .B tls {[try\-]start|[try\-]propagate}
701 execute the StartTLS extended operation when the connection is initialized;
702 only works if the URI directive protocol scheme is not \fBldaps://\fP.
703 \fBpropagate\fP issues the StartTLS operation only if the original
704 connection did.
705 The \fBtry\-\fP prefix instructs the proxy to continue operations
706 if the StartTLS operation failed; its use is highly deprecated.
707 If set before any target specification, it affects all targets, unless
708 overridden by any per-target directive.
709
710 .SH SCENARIOS
711 A powerful (and in some sense dangerous) rewrite engine has been added
712 to both the LDAP and Meta backends.
713 While the former can gain limited beneficial effects from rewriting
714 stuff, the latter can become an amazingly powerful tool.
715 .LP
716 Consider a couple of scenarios first.
717 .LP
718 1) Two directory servers share two levels of naming context;
719 say "dc=a,dc=foo,dc=com" and "dc=b,dc=foo,dc=com".
720 Then, an unambiguous Meta database can be configured as:
721 .LP
722 .RS
723 .nf
724 database meta
725 suffix   "\fBdc=foo,dc=com\fP"
726 uri      "ldap://a.foo.com/dc=a,\fBdc=foo,dc=com\fP"
727 uri      "ldap://b.foo.com/dc=b,\fBdc=foo,dc=com\fP"
728 .fi
729 .RE
730 .LP
731 Operations directed to a specific target can be easily resolved
732 because there are no ambiguities.
733 The only operation that may resolve to multiple targets is a search
734 with base "dc=foo,dc=com" and scope at least "one", which results in
735 spawning two searches to the targets.
736 .LP
737 2a) Two directory servers don't share any portion of naming context,
738 but they'd present as a single DIT
739 [Caveat: uniqueness of (massaged) entries among the two servers is
740 assumed; integrity checks risk to incur in excessive overhead and have
741 not been implemented].
742 Say we have "dc=bar,dc=org" and "o=Foo,c=US",
743 and we'd like them to appear as branches of "dc=foo,dc=com", say
744 "dc=a,dc=foo,dc=com" and "dc=b,dc=foo,dc=com".
745 Then we need to configure our Meta backend as:
746 .LP
747 .RS
748 .nf
749 database      meta
750 suffix        "dc=foo,dc=com"
751
752 uri           "ldap://a.bar.com/\fBdc=a,dc=foo,dc=com\fP"
753 suffixmassage "\fBdc=a,dc=foo,dc=com\fP" "dc=bar,dc=org"
754
755 uri           "ldap://b.foo.com/\fBdc=b,dc=foo,dc=com\fP"
756 suffixmassage "\fBdc=b,dc=foo,dc=com\fP" "o=Foo,c=US"
757 .fi
758 .RE
759 .LP
760 Again, operations can be resolved without ambiguity, although
761 some rewriting is required.
762 Notice that the virtual naming context of each target is a branch of
763 the database's naming context; it is rewritten back and forth when
764 operations are performed towards the target servers.
765 What "back and forth" means will be clarified later.
766 .LP
767 When a search with base "dc=foo,dc=com" is attempted, if the 
768 scope is "base" it fails with "no such object"; in fact, the
769 common root of the two targets (prior to massaging) does not
770 exist.
771 If the scope is "one", both targets are contacted with the base
772 replaced by each target's base; the scope is derated to "base".
773 In general, a scope "one" search is honored, and the scope is derated,
774 only when the incoming base is at most one level lower of a target's
775 naming context (prior to massaging).
776 .LP
777 Finally, if the scope is "sub" the incoming base is replaced
778 by each target's unmassaged naming context, and the scope
779 is not altered.
780 .LP
781 2b) Consider the above reported scenario with the two servers
782 sharing the same naming context:
783 .LP
784 .RS
785 .nf
786 database      meta
787 suffix        "\fBdc=foo,dc=com\fP"
788
789 uri           "ldap://a.bar.com/\fBdc=foo,dc=com\fP"
790 suffixmassage "\fBdc=foo,dc=com\fP" "dc=bar,dc=org"
791
792 uri           "ldap://b.foo.com/\fBdc=foo,dc=com\fP"
793 suffixmassage "\fBdc=foo,dc=com\fP" "o=Foo,c=US"
794 .fi
795 .RE
796 .LP
797 All the previous considerations hold, except that now there is
798 no way to unambiguously resolve a DN.
799 In this case, all the operations that require an unambiguous target
800 selection will fail unless the DN is already cached or a default
801 target has been set.
802 Practical configurations may result as a combination of all the
803 above scenarios.
804 .SH ACLs
805 Note on ACLs: at present you may add whatever ACL rule you desire
806 to to the Meta (and LDAP) backends.
807 However, the meaning of an ACL on a proxy may require some
808 considerations.
809 Two philosophies may be considered:
810 .LP
811 a) the remote server dictates the permissions; the proxy simply passes
812 back what it gets from the remote server.
813 .LP
814 b) the remote server unveils "everything"; the proxy is responsible
815 for protecting data from unauthorized access.
816 .LP
817 Of course the latter sounds unreasonable, but it is not.
818 It is possible to imagine scenarios in which a remote host discloses
819 data that can be considered "public" inside an intranet, and a proxy
820 that connects it to the internet may impose additional constraints.
821 To this purpose, the proxy should be able to comply with all the ACL
822 matching criteria that the server supports.
823 This has been achieved with regard to all the criteria supported by
824 slapd except a special subtle case (please file an ITS if you can
825 find other exceptions: <http://www.openldap.org/its/>).
826 The rule
827 .LP
828 .RS
829 .nf
830 access to dn="<dn>" attrs=<attr>
831        by dnattr=<dnattr> read
832        by * none
833 .fi
834 .RE
835 .LP
836 cannot be matched iff the attribute that is being requested, <attr>,
837 is NOT <dnattr>, and the attribute that determines membership,
838 <dnattr>, has not been requested (e.g. in a search)
839 .LP
840 In fact this ACL is resolved by slapd using the portion of entry it
841 retrieved from the remote server without requiring any further
842 intervention of the backend, so, if the <dnattr> attribute has not
843 been fetched, the match cannot be assessed because the attribute is
844 not present, not because no value matches the requirement!
845 .LP
846 Note on ACLs and attribute mapping: ACLs are applied to the mapped
847 attributes; for instance, if the attribute locally known as "foo" is
848 mapped to "bar" on a remote server, then local ACLs apply to attribute
849 "foo" and are totally unaware of its remote name.
850 The remote server will check permissions for "bar", and the local
851 server will possibly enforce additional restrictions to "foo".
852 .\"
853 .\" If this section is moved, also update the reference in
854 .\" libraries/librewrite/RATIONALE.
855 .\"
856 .SH REWRITING
857 A string is rewritten according to a set of rules, called a `rewrite
858 context'.
859 The rules are based on POSIX (''extended'') regular expressions (regex)
860 with substring matching; basic variable substitution and map resolution 
861 of substrings is allowed by specific mechanisms detailed in the following.
862 The behavior of pattern matching/substitution can be altered by a set
863 of flags.
864 .LP
865 The underlying concept is to build a lightweight rewrite module
866 for the slapd server (initially dedicated to the LDAP backend).
867 .SH Passes
868 An incoming string is matched against a set of rules.
869 Rules are made of a regex match pattern, a substitution pattern
870 and a set of actions, described by a set of flags.
871 In case of match a string rewriting is performed according to the
872 substitution pattern that allows to refer to substrings matched in the
873 incoming string.
874 The actions, if any, are finally performed.
875 The substitution pattern allows map resolution of substrings.
876 A map is a generic object that maps a substitution pattern to a value.
877 The flags are divided in "Pattern matching Flags" and "Action Flags";
878 the former alter the regex match pattern behavior while the latter
879 alter the action that is taken after substitution.
880 .SH "Pattern Matching Flags"
881 .TP
882 .B `C'
883 honors case in matching (default is case insensitive)
884 .TP
885 .B `R'
886 use POSIX ''basic'' regular expressions (default is ''extended'')
887 .TP
888 .B `M{n}'
889 allow no more than
890 .B n
891 recursive passes for a specific rule; does not alter the max total count
892 of passes, so it can only enforce a stricter limit for a specific rule.
893 .SH "Action Flags"
894 .TP
895 .B `:'
896 apply the rule once only (default is recursive)
897 .TP
898 .B `@'
899 stop applying rules in case of match; the current rule is still applied 
900 recursively; combine with `:' to apply the current rule only once 
901 and then stop.
902 .TP
903 .B `#'
904 stop current operation if the rule matches, and issue an `unwilling to
905 perform' error.
906 .TP
907 .B `G{n}'
908 jump
909 .B n
910 rules back and forth (watch for loops!).
911 Note that `G{1}' is implicit in every rule.
912 .TP
913 .B `I'
914 ignores errors in rule; this means, in case of error, e.g. issued by a
915 map, the error is treated as a missed match.
916 The `unwilling to perform' is not overridden.
917 .TP
918 .B `U{n}'
919 uses
920 .B
921 n
922 as return code if the rule matches; the flag does not alter the recursive
923 behavior of the rule, so, to have it performed only once, it must be used 
924 in combination with `:', e.g.
925 .B `:U{16}'
926 returns the value `16' after exactly one execution of the rule, if the
927 pattern matches.
928 As a consequence, its behavior is equivalent to `@', with the return
929 code set to
930 .BR n ;
931 or, in other words, `@' is equivalent to `U{0}'.
932 By convention, the freely available codes are above 16 included;
933 the others are reserved.
934 .LP
935 The ordering of the flags can be significant.
936 For instance: `IG{2}' means ignore errors and jump two lines ahead
937 both in case of match and in case of error, while `G{2}I' means ignore
938 errors, but jump two lines ahead only in case of match.
939 .LP
940 More flags (mainly Action Flags) will be added as needed.
941 .SH "Pattern matching:"
942 See
943 .BR regex (7)
944 and/or
945 .BR re_format (7).
946 .SH "Substitution Pattern Syntax:"
947 Everything starting with `%' requires substitution;
948 .LP
949 the only obvious exception is `%%', which is left as is;
950 .LP
951 the basic substitution is `%d', where `d' is a digit;
952 0 means the whole string, while 1-9 is a submatch;
953 .LP
954 a `%' followed by a `{' invokes an advanced substitution.
955 The pattern is:
956 .LP
957 .RS
958 `%' `{' [ <op> ] <name> `(' <substitution> `)' `}'
959 .RE
960 .LP
961 where <name> must be a legal name for the map, i.e.
962 .LP
963 .RS
964 .nf
965 <name> ::= [a-z][a-z0-9]* (case insensitive)
966 <op> ::= `>' `|' `&' `&&' `*' `**' `$'
967 .fi
968 .RE
969 .LP
970 and <substitution> must be a legal substitution
971 pattern, with no limits on the nesting level.
972 .LP
973 The operators are:
974 .TP
975 .B >
976 sub context invocation; <name> must be a legal, already defined
977 rewrite context name
978 .TP
979 .B |
980 external command invocation; <name> must refer to a legal, already
981 defined command name (NOT IMPL.)
982 .TP
983 .B &
984 variable assignment; <name> defines a variable in the running
985 operation structure which can be dereferenced later; operator
986 .B &
987 assigns a variable in the rewrite context scope; operator
988 .B &&
989 assigns a variable that scopes the entire session, e.g. its value
990 can be dereferenced later by other rewrite contexts
991 .TP
992 .B *
993 variable dereferencing; <name> must refer to a variable that is
994 defined and assigned for the running operation; operator
995 .B *
996 dereferences a variable scoping the rewrite context; operator
997 .B **
998 dereferences a variable scoping the whole session, e.g. the value
999 is passed across rewrite contexts
1000 .TP
1001 .B $
1002 parameter dereferencing; <name> must refer to an existing parameter;
1003 the idea is to make some run-time parameters set by the system
1004 available to the rewrite engine, as the client host name, the bind DN
1005 if any, constant parameters initialized at config time, and so on;
1006 no parameter is currently set by either 
1007 .B back\-ldap
1008 or
1009 .BR back\-meta ,
1010 but constant parameters can be defined in the configuration file
1011 by using the
1012 .B rewriteParam
1013 directive.
1014 .LP
1015 Substitution escaping has been delegated to the `%' symbol, 
1016 which is used instead of `\e' in string substitution patterns
1017 because `\e' is already escaped by slapd's low level parsing routines;
1018 as a consequence, regex escaping requires two `\e' symbols,
1019 e.g. `\fB.*\e.foo\e.bar\fP' must be written as `\fB.*\e\e.foo\e\e.bar\fP'.
1020 .\"
1021 .\" The symbol can be altered at will by redefining the related macro in
1022 .\" "rewrite-int.h".
1023 .\"
1024 .SH "Rewrite context:"
1025 A rewrite context is a set of rules which are applied in sequence.
1026 The basic idea is to have an application initialize a rewrite
1027 engine (think of Apache's mod_rewrite ...) with a set of rewrite
1028 contexts; when string rewriting is required, one invokes the
1029 appropriate rewrite context with the input string and obtains the
1030 newly rewritten one if no errors occur.
1031 .LP
1032 Each basic server operation is associated to a rewrite context;
1033 they are divided in two main groups: client \-> server and
1034 server \-> client rewriting.
1035 .LP
1036 client \-> server:
1037 .LP
1038 .RS
1039 .nf
1040 (default)            if defined and no specific context 
1041                      is available
1042 bindDN               bind
1043 searchBase           search
1044 searchFilter         search
1045 searchFilterAttrDN   search
1046 compareDN            compare
1047 compareAttrDN        compare AVA
1048 addDN                add
1049 addAttrDN            add AVA
1050 modifyDN             modify
1051 modifyAttrDN         modify AVA
1052 modrDN               modrdn
1053 newSuperiorDN        modrdn
1054 deleteDN             delete
1055 exopPasswdDN         password modify extended operation DN if proxy
1056 .fi
1057 .RE
1058 .LP
1059 server \-> client:
1060 .LP
1061 .RS
1062 .nf
1063 searchResult         search (only if defined; no default;
1064                      acts on DN and DN-syntax attributes 
1065                      of search results)
1066 searchAttrDN         search AVA
1067 matchedDN            all ops (only if applicable)
1068 .fi
1069 .RE
1070 .LP
1071 .SH "Basic configuration syntax"
1072 .TP
1073 .B rewriteEngine { on | off }
1074 If `on', the requested rewriting is performed; if `off', no
1075 rewriting takes place (an easy way to stop rewriting without
1076 altering too much the configuration file).
1077 .TP
1078 .B rewriteContext <context name> "[ alias <aliased context name> ]"
1079 <Context name> is the name that identifies the context, i.e. the name
1080 used by the application to refer to the set of rules it contains.
1081 It is used also to reference sub contexts in string rewriting.
1082 A context may alias another one.
1083 In this case the alias context contains no rule, and any reference to
1084 it will result in accessing the aliased one.
1085 .TP
1086 .B rewriteRule "<regex match pattern>" "<substitution pattern>" "[ <flags> ]"
1087 Determines how a string can be rewritten if a pattern is matched.
1088 Examples are reported below.
1089 .SH "Additional configuration syntax:"
1090 .TP
1091 .B rewriteMap "<map type>" "<map name>" "[ <map attrs> ]"
1092 Allows to define a map that transforms substring rewriting into
1093 something else.
1094 The map is referenced inside the substitution pattern of a rule.
1095 .TP
1096 .B rewriteParam <param name> <param value>
1097 Sets a value with global scope, that can be dereferenced by the
1098 command `%{$paramName}'.
1099 .TP
1100 .B rewriteMaxPasses <number of passes> [<number of passes per rule>]
1101 Sets the maximum number of total rewriting passes that can be
1102 performed in a single rewrite operation (to avoid loops).
1103 A safe default is set to 100; note that reaching this limit is still
1104 treated as a success; recursive invocation of rules is simply 
1105 interrupted.
1106 The count applies to the rewriting operation as a whole, not 
1107 to any single rule; an optional per-rule limit can be set.
1108 This limit is overridden by setting specific per-rule limits
1109 with the `M{n}' flag.
1110 .SH "Configuration examples:"
1111 .nf
1112 # set to `off' to disable rewriting
1113 rewriteEngine on
1114
1115 # the rules the "suffixmassage" directive implies
1116 rewriteEngine on
1117 # all dataflow from client to server referring to DNs
1118 rewriteContext default
1119 rewriteRule "(.*)<virtualnamingcontext>$" "%1<realnamingcontext>" ":"
1120 # empty filter rule
1121 rewriteContext searchFilter
1122 # all dataflow from server to client
1123 rewriteContext searchResult
1124 rewriteRule "(.*)<realnamingcontext>$" "%1<virtualnamingcontext>" ":"
1125 rewriteContext searchAttrDN alias searchResult
1126 rewriteContext matchedDN alias searchResult
1127
1128 # Everything defined here goes into the `default' context.
1129 # This rule changes the naming context of anything sent
1130 # to `dc=home,dc=net' to `dc=OpenLDAP, dc=org'
1131
1132 rewriteRule "(.*)dc=home,[ ]?dc=net"
1133             "%1dc=OpenLDAP, dc=org"  ":"
1134
1135 # since a pretty/normalized DN does not include spaces
1136 # after rdn separators, e.g. `,', this rule suffices:
1137
1138 rewriteRule "(.*)dc=home,dc=net"
1139             "%1dc=OpenLDAP,dc=org"  ":"
1140
1141 # Start a new context (ends input of the previous one).
1142 # This rule adds blanks between DN parts if not present.
1143 rewriteContext  addBlanks
1144 rewriteRule     "(.*),([^ ].*)" "%1, %2"
1145
1146 # This one eats blanks
1147 rewriteContext  eatBlanks
1148 rewriteRule     "(.*),[ ](.*)" "%1,%2"
1149
1150 # Here control goes back to the default rewrite
1151 # context; rules are appended to the existing ones.
1152 # anything that gets here is piped into rule `addBlanks'
1153 rewriteContext  default
1154 rewriteRule     ".*" "%{>addBlanks(%0)}" ":"
1155
1156 .\" # Anything with `uid=username' is looked up in
1157 .\" # /etc/passwd for gecos (I know it's nearly useless,
1158 .\" # but it is there just as a guideline to implementing
1159 .\" # custom maps).
1160 .\" # Note the `I' flag that leaves `uid=username' in place 
1161 .\" # if `username' does not have a valid account, and the
1162 .\" # `:' that forces the rule to be processed exactly once.
1163 .\" rewriteContext  uid2Gecos
1164 .\" rewriteRule     "(.*)uid=([a-z0-9]+),(.+)"
1165 .\"                 "%1cn=%2{xpasswd},%3"      "I:"
1166 .\" 
1167 .\" # Finally, in a bind, if one uses a `uid=username' DN,
1168 .\" # it is rewritten in `cn=name surname' if possible.
1169 .\" rewriteContext  bindDN
1170 .\" rewriteRule     ".*" "%{>addBlanks(%{>uid2Gecos(%0)})}" ":"
1171 .\" 
1172 # Rewrite the search base according to `default' rules.
1173 rewriteContext  searchBase alias default
1174
1175 # Search results with OpenLDAP DN are rewritten back with
1176 # `dc=home,dc=net' naming context, with spaces eaten.
1177 rewriteContext  searchResult
1178 rewriteRule     "(.*[^ ]?)[ ]?dc=OpenLDAP,[ ]?dc=org"
1179                 "%{>eatBlanks(%1)}dc=home,dc=net"    ":"
1180
1181 # Bind with email instead of full DN: we first need
1182 # an ldap map that turns attributes into a DN (the
1183 # argument used when invoking the map is appended to 
1184 # the URI and acts as the filter portion)
1185 rewriteMap ldap attr2dn "ldap://host/dc=my,dc=org?dn?sub"
1186
1187 # Then we need to detect DN made up of a single email,
1188 # e.g. `mail=someone@example.com'; note that the rule
1189 # in case of match stops rewriting; in case of error,
1190 # it is ignored.  In case we are mapping virtual
1191 # to real naming contexts, we also need to rewrite
1192 # regular DNs, because the definition of a bindDn
1193 # rewrite context overrides the default definition.
1194 rewriteContext bindDN
1195 rewriteRule "^mail=[^,]+@[^,]+$" "%{attr2dn(%0)}" ":@I"
1196
1197 # This is a rather sophisticated example. It massages a
1198 # search filter in case who performs the search has
1199 # administrative privileges.  First we need to keep
1200 # track of the bind DN of the incoming request, which is
1201 # stored in a variable called `binddn' with session scope,
1202 # and left in place to allow regular binding:
1203 rewriteContext  bindDN
1204 rewriteRule     ".+" "%{&&binddn(%0)}%0" ":"
1205
1206 # A search filter containing `uid=' is rewritten only
1207 # if an appropriate DN is bound.
1208 # To do this, in the first rule the bound DN is
1209 # dereferenced, while the filter is decomposed in a
1210 # prefix, in the value of the `uid=<arg>' AVA, and 
1211 # in a suffix. A tag `<>' is appended to the DN. 
1212 # If the DN refers to an entry in the `ou=admin' subtree, 
1213 # the filter is rewritten OR-ing the `uid=<arg>' with
1214 # `cn=<arg>'; otherwise it is left as is. This could be
1215 # useful, for instance, to allow apache's auth_ldap-1.4
1216 # module to authenticate users with both `uid' and
1217 # `cn', but only if the request comes from a possible
1218 # `cn=Web auth,ou=admin,dc=home,dc=net' user.
1219 rewriteContext searchFilter
1220 rewriteRule "(.*\e\e()uid=([a-z0-9_]+)(\e\e).*)"
1221   "%{**binddn}<>%{&prefix(%1)}%{&arg(%2)}%{&suffix(%3)}"
1222   ":I"
1223 rewriteRule "[^,]+,ou=admin,dc=home,dc=net"
1224   "%{*prefix}|(uid=%{*arg})(cn=%{*arg})%{*suffix}" ":@I"
1225 rewriteRule ".*<>" "%{*prefix}uid=%{*arg}%{*suffix}" ":"
1226
1227 # This example shows how to strip unwanted DN-valued
1228 # attribute values from a search result; the first rule
1229 # matches DN values below "ou=People,dc=example,dc=com";
1230 # in case of match the rewriting exits successfully.
1231 # The second rule matches everything else and causes
1232 # the value to be rejected.
1233 rewriteContext searchResult
1234 rewriteRule ".*,ou=People,dc=example,dc=com" "%0" ":@"
1235 rewriteRule ".*" "" "#"
1236 .fi
1237 .SH "LDAP Proxy resolution (a possible evolution of slapd\-ldap(5)):"
1238 In case the rewritten DN is an LDAP URI, the operation is initiated
1239 towards the host[:port] indicated in the uri, if it does not refer
1240 to the local server.
1241 E.g.:
1242 .LP
1243 .nf
1244   rewriteRule '^cn=root,.*' '%0'                     'G{3}'
1245   rewriteRule '^cn=[a-l].*' 'ldap://ldap1.my.org/%0' ':@'
1246   rewriteRule '^cn=[m-z].*' 'ldap://ldap2.my.org/%0' ':@'
1247   rewriteRule '.*'          'ldap://ldap3.my.org/%0' ':@'
1248 .fi
1249 .LP
1250 (Rule 1 is simply there to illustrate the `G{n}' action; it could have
1251 been written:
1252 .LP
1253 .nf
1254   rewriteRule '^cn=root,.*' 'ldap://ldap3.my.org/%0' ':@'
1255 .fi
1256 .LP
1257 with the advantage of saving one rewrite pass ...)
1258
1259 .SH ACCESS CONTROL
1260 The
1261 .B meta
1262 backend does not honor all ACL semantics as described in
1263 .BR slapd.access (5).
1264 In general, access checking is delegated to the remote server(s).
1265 Only
1266 .B read (=r)
1267 access to the
1268 .B entry
1269 pseudo-attribute and to the other attribute values of the entries
1270 returned by the
1271 .B search
1272 operation is honored, which is performed by the frontend.
1273
1274 .SH PROXY CACHE OVERLAY
1275 The proxy cache overlay 
1276 allows caching of LDAP search requests (queries) in a local database.
1277 See 
1278 .BR slapo\-pcache (5)
1279 for details.
1280
1281 .SH DEPRECATED STATEMENTS
1282 The following statements have been deprecated and should no longer be used.
1283
1284 .TP
1285 .B pseudorootdn "<substitute DN in case of rootdn bind>"
1286 Use
1287 .B idassert\-bind
1288 instead.
1289
1290 .TP
1291 .B pseudorootpw "<substitute password in case of rootdn bind>"
1292 Use
1293 .B idassert\-bind
1294 instead.
1295
1296
1297
1298 .SH FILES
1299 .TP
1300 ETCDIR/slapd.conf
1301 default slapd configuration file
1302 .SH SEE ALSO
1303 .BR slapd.conf (5),
1304 .BR slapd\-ldap (5),
1305 .BR slapo\-pcache (5),
1306 .BR slapd (8),
1307 .BR regex (7),
1308 .BR re_format (7).
1309 .SH AUTHOR
1310 Pierangelo Masarati, based on back-ldap by Howard Chu