]> git.sur5r.net Git - openldap/blob - doc/man/man5/slapd-ldap.5
document "cancel" feature
[openldap] / doc / man / man5 / slapd-ldap.5
1 .TH SLAPD-LDAP 5 "RELEASEDATE" "OpenLDAP LDVERSION"
2 .\" Copyright 1998-2006 The OpenLDAP Foundation All Rights Reserved.
3 .\" Copying restrictions apply.  See COPYRIGHT/LICENSE.
4 .\" $OpenLDAP$
5 .SH NAME
6 slapd-ldap \- LDAP backend to slapd
7 .SH SYNOPSIS
8 ETCDIR/slapd.conf
9 .SH DESCRIPTION
10 The LDAP backend to
11 .BR slapd (8)
12 is not an actual database; instead it acts as a proxy to forward incoming
13 requests to another LDAP server. While processing requests it will also
14 chase referrals, so that referrals are fully processed instead of being
15 returned to the slapd client.
16
17 Sessions that explicitly Bind to the back-ldap database always create their
18 own private connection to the remote LDAP server. Anonymous sessions will
19 share a single anonymous connection to the remote server. For sessions bound
20 through other mechanisms, all sessions with the same DN will share the
21 same connection. This connection pooling strategy can enhance the proxy's
22 efficiency by reducing the overhead of repeatedly making/breaking multiple
23 connections.
24
25 The ldap database can also act as an information service, i.e. the identity
26 of locally authenticated clients is asserted to the remote server, possibly
27 in some modified form.
28 For this purpose, the proxy binds to the remote server with some 
29 administrative identity, and, if required, authorizes the asserted identity.
30 See the 
31 .IR idassert- *
32 rules below.
33 The administrative identity of the proxy, on the remote server, must be 
34 allowed to authorize by means of appropriate
35 .B authzTo
36 rules; see 
37 .BR slapd.conf (5)
38 for details.
39
40 .LP
41 Note: When looping back to the same instance of \fBslapd\fP(8), 
42 each connection requires a new thread; as a consequence, \fBslapd\fP(8)
43 must be compiled with thread support, and the \fBthreads\fP parameter 
44 may need some tuning; in those cases, one may consider using 
45 \fBslapd-relay\fP(5) instead, which performs the relayed operation 
46 internally and thus reuses the same connection.
47
48 .SH CONFIGURATION
49 These
50 .B slapd.conf
51 options apply to the LDAP backend database.
52 That is, they must follow a "database ldap" line and come before any
53 subsequent "backend" or "database" lines.
54 Other database options are described in the
55 .BR slapd.conf (5)
56 manual page.
57
58 .LP
59 Note: In early versions of back-ldap it was recommended to always set
60 .LP
61 .RS
62 .nf
63 lastmod  off
64 .fi
65 .RE
66 .LP
67 for every
68 .B ldap
69 and
70 .B meta
71 database.
72 This is because operational attributes related to entry creation and
73 modification should not be proxied, as they could be mistakenly written
74 to the target server(s), generating an error.
75 The current implementation automatically sets lastmod to off, so its use
76 is redundant and should be omitted, because the lastmod directive will
77 be deprecated in the future.
78
79 .TP
80 .B uri <ldapurl>
81 LDAP server to use.  Multiple URIs can be set in in a single
82 .B ldapurl
83 argument, resulting in the underlying library automatically 
84 call the first server of the list that responds, e.g. 
85
86 \fBuri "ldap://host/ ldap://backup-host/"\fP
87
88 The URI list is space- or comma-separated.
89 .\"This statement is mandatory.
90 .\".TP
91 .\".B server <hostport>
92 .\"Obsolete option; same as `uri ldap://<hostport>/'.
93 .HP
94 .hy 0
95 .B acl-bind
96 .B bindmethod=simple|sasl [binddn=<simple DN>] [credentials=<simple password>]
97 .B [saslmech=<SASL mech>] [secprops=<properties>] [realm=<realm>]
98 .B [authcId=<authentication ID>] [authzId=<authorization ID>]
99 .RS
100 Allows to define the parameters of the authentication method that is 
101 internally used by the proxy to collect info related to access control.
102 The identity defined by this directive, according to the properties
103 associated to the authentication method, is supposed to have read access 
104 on the target server to attributes used on the proxy for ACL checking.
105 There is no risk of giving away such values; they are only used to
106 check permissions.
107 The default is to use
108 .BR simple 
109 bind, with empty \fIbinddn\fP and \fIcredentials\fP,
110 which means that the related operations will be performed anonymously.
111
112 .B This identity is by no means implicitly used by the proxy 
113 .B when the client connects anonymously.
114 The
115 .B idassert-bind
116 feature, instead, in some cases can be crafted to implement that behavior,
117 which is \fIintrinsically unsafe and should be used with extreme care\fP.
118 This directive obsoletes
119 .BR acl-authcDN ,
120 and
121 .BR acl-passwd .
122 .RE
123
124 .TP
125 .B cancel {ABANDON|ignore|exop[-discover]}
126 Defines how to handle operation cancellation.
127 By default,
128 .B abandon
129 is invoked, so the operation is abandoned immediately.
130 If set to
131 .BR ignore ,
132 no action is taken and any further response is ignored; this may result
133 in further response messages to be queued for that connection, so it is
134 recommended that long lasting connections are timed out either by
135 .I idle-timeout
136 or
137 .IR conn-ttl ,
138 so that resources eventually get released.
139 If set to
140 .BR exop ,
141 a
142 .I cancel
143 operation (RFC 3909) is issued, resulting in the cancellation 
144 of the current operation; the
145 .I cancel
146 operation waits for remote server response, so its use 
147 may not be recommended.
148 If set to
149 .BR exop-discover ,
150 support of the
151 .I cancel 
152 extended operation is detected by reading the remote server's root DSE.
153
154 .TP
155 .B chase-referrals {YES|no}
156 enable/disable automatic referral chasing, which is delegated to the
157 underlying libldap, with rebinding eventually performed if the
158 \fBrebind-as-user\fP directive is used.  The default is to chase referrals.
159
160 .TP
161 .B conn-ttl <time>
162 This directive causes a cached connection to be dropped an recreated
163 after a given ttl, regardless of being idle or not.
164
165 .TP
166 .B idassert-authzFrom <authz-regexp>
167 if defined, selects what
168 .I local
169 identities are authorized to exploit the identity assertion feature.
170 The string
171 .B <authz-regexp>
172 follows the rules defined for the
173 .I authzFrom
174 attribute.
175 See 
176 .BR slapd.conf (5),
177 section related to
178 .BR authz-policy ,
179 for details on the syntax of this field.
180
181 .HP
182 .hy 0
183 .B idassert-bind
184 .B bindmethod=none|simple|sasl [binddn=<simple DN>] [credentials=<simple password>]
185 .B [saslmech=<SASL mech>] [secprops=<properties>] [realm=<realm>]
186 .B [authcId=<authentication ID>] [authzId=<authorization ID>]
187 .B [authz={native|proxyauthz}] [mode=<mode>] [flags=<flags>]
188 .RS
189 Allows to define the parameters of the authentication method that is 
190 internally used by the proxy to authorize connections that are 
191 authenticated by other databases.
192 The identity defined by this directive, according to the properties
193 associated to the authentication method, is supposed to have auth access 
194 on the target server to attributes used on the proxy for authentication
195 and authorization, and to be allowed to authorize the users.
196 This requires to have
197 .B proxyAuthz
198 privileges on a wide set of DNs, e.g.
199 .BR authzTo=dn.subtree:"" ,
200 and the remote server to have
201 .B authz-policy
202 set to
203 .B to
204 or
205 .BR both .
206 See
207 .BR slapd.conf (5)
208 for details on these statements and for remarks and drawbacks about
209 their usage.
210 The supported bindmethods are
211
212 \fBnone|simple|sasl\fP
213
214 where
215 .B none
216 is the default, i.e. no \fIidentity assertion\fP is performed.
217
218 The authz parameter is used to instruct the SASL bind to exploit 
219 .B native 
220 SASL authorization, if available; since connections are cached,
221 this should only be used when authorizing with a fixed identity
222 (e.g. by means of the 
223 .B authzDN
224 or
225 .B authzID
226 parameters).
227 Otherwise, the default
228 .B proxyauthz
229 is used, i.e. the proxyAuthz control is added to all operations.
230
231 The supported modes are:
232
233 \fB<mode> := {legacy|anonymous|none|self}\fP
234
235 If 
236 .B <mode>
237 is not present, and 
238 .B authzId
239 is given, the proxy always authorizes that identity.
240 .B <authorization ID>
241 can be 
242
243 \fBu:<user>\fP
244
245 \fB[dn:]<DN>\fP
246
247 The former is supposed to be expanded by the remote server according 
248 to the authz rules; see
249 .BR slapd.conf (5)
250 for details.
251 In the latter case, whether or not the 
252 .B dn:
253 prefix is present, the string must pass DN validation and normalization.
254
255 The default mode is 
256 .BR legacy ,
257 which implies that the proxy will either perform a simple bind as the
258 .I authcDN
259 or a SASL bind as the
260 .I authcID
261 and assert the client's identity when it is not anonymous.
262 Direct binds are always proxied.
263 The other modes imply that the proxy will always either perform a simple bind 
264 as the
265 .IR authcDN
266 or a SASL bind as the
267 .IR authcID ,
268 unless restricted by
269 .BR idassert-authzFrom
270 rules (see below), in which case the operation will fail;
271 eventually, it will assert some other identity according to
272 .BR <mode> .
273 Other identity assertion modes are
274 .BR anonymous
275 and
276 .BR self ,
277 which respectively mean that the 
278 .I empty 
279 or the 
280 .IR client 's 
281 identity
282 will be asserted;
283 .BR none ,
284 which means that no proxyAuthz control will be used, so the
285 .I authcDN
286 or the
287 .I authcID
288 identity will be asserted.
289 For all modes that require the use of the
290 .I proxyAuthz 
291 control, on the remote server the proxy identity must have appropriate 
292 .I authzTo
293 permissions, or the asserted identities must have appropriate
294 .I authzFrom 
295 permissions.  Note, however, that the ID assertion feature is mostly 
296 useful when the asserted identities do not exist on the remote server.
297
298 Flags can be
299
300 \fBoverride,{prescriptive|non-prescriptive}\fP
301
302 When the 
303 .B override
304 flag is used, identity assertion takes place even when the database
305 is authorizing for the identity of the client, i.e. after binding
306 with the provided identity, and thus authenticating it, the proxy
307 performs the identity assertion using the configured identity and
308 authentication method.
309
310 When the
311 .B prescriptive
312 flag is used (the default), operations fail with
313 \fIinappropriateAuthentication\fP
314 for those identities whose assertion is not allowed by the
315 .B idassert-authzFrom
316 patterns.
317 If the 
318 .B non-prescriptive
319 flag is used, operations are performed anonymously for those identities 
320 whose assertion is not allowed by the
321 .B idassert-authzFrom
322 patterns.
323
324 This directive obsoletes
325 .BR idassert-authcDN ,
326 .BR idassert-passwd ,
327 .BR idassert-mode ,
328 and
329 .BR idassert-method .
330 .RE
331
332 .TP
333 .B idle-timeout <time>
334 This directive causes a cached connection to be dropped an recreated
335 after it has been idle for the specified time.
336
337 .TP
338 .B protocol\-version {0,2,3}
339 This directive indicates what protocol version must be used to contact
340 the remote server.
341 If set to 0 (the default), the proxy uses the same protocol version 
342 used by the client, otherwise the requested protocol is used.
343 The proxy returns \fIunwillingToPerform\fP if an operation that is 
344 incompatible with the requested protocol is attempted.
345
346 .TP
347 .B single\-conn {NO|yes}
348 Discards current cached connection when the client rebinds.
349
350 .TP
351 .B proxy\-whoami {NO|yes}
352 Turns on proxying of the WhoAmI extended operation. If this option is
353 given, back-ldap will replace slapd's original WhoAmI routine with its
354 own. On slapd sessions that were authenticated by back-ldap, the WhoAmI
355 request will be forwarded to the remote LDAP server. Other sessions will
356 be handled by the local slapd, as before. This option is mainly useful
357 in conjunction with Proxy Authorization.
358
359 .TP
360 .B rebind-as-user {NO|yes}
361 If this option is given, the client's bind credentials are remembered
362 for rebinds when chasing referrals.  Useful when
363 \fBchase-referrals\fP is set to \fByes\fP, useless otherwise.
364
365 .TP
366 .B t-f-support {NO|yes|discover}
367 enable if the remote server supports absolute filters
368 (see \fIdraft-zeilenga-ldap-t-f\fP for details).
369 If set to
370 .BR discover ,
371 support is detected by reading the remote server's root DSE.
372
373 .TP
374 .B timeout [{add|delete|modify|modrdn}=]<val> [...]
375 This directive allows to set per-operation timeouts.
376 If no operation is specified, it affects all.
377 Currently, only write operations are addressed, because searches
378 can already be limited by means of the
379 .B limits
380 directive (see 
381 .BR slapd.conf (5)
382 for details), and other operations are not supposed to incur into the
383 need for timeouts.
384 Note: if the timelimit is exceeded, the operation is abandoned;
385 the protocol does not provide any means to rollback the operation,
386 so the client will not know if the operation eventually succeeded or not.
387
388 .TP
389 .B tls {[try-]start|[try-]propagate}
390 execute the StartTLS extended operation when the connection is initialized;
391 only works if the URI directive protocol scheme is not \fBldaps://\fP.
392 \fBpropagate\fP issues the StartTLS operation only if the original
393 connection did.
394 The \fBtry-\fP prefix instructs the proxy to continue operations
395 if the StartTLS operation failed; its use is highly deprecated.
396
397 .SH BACKWARD COMPATIBILITY
398 The LDAP backend has been heavily reworked between releases 2.2 and 2.3;
399 as a side-effect, some of the traditional directives have been
400 deprecated and should be no longer used, as they might disappear
401 in future releases.
402
403 .TP
404 .B server <hostname[:port]>
405 this directive is no longer supported.  Use the 
406 .B uri
407 directive as described above.
408
409 .TP
410 .B acl-authcDN "<administrative DN for access control purposes>"
411 DN which is used to query the target server for acl checking; it
412 is supposed to have read access on the target server to attributes used
413 on the proxy for acl checking.
414 There is no risk of giving away such values; they are only used to
415 check permissions.
416 .B The acl-authcDN identity is by no means implicitly used by the proxy 
417 .B when the client connects anonymously.
418 See the
419 .B idassert-*
420 feature instead.
421 This directive is obsoleted by the
422 .B binddn
423 arg of
424 .B acl-bind
425 when \fIbindmethod\fP=\fBsimple\fP, and will be dismissed in the future.
426
427 .TP
428 .B acl-passwd <password>
429 Password used with the above
430 .B acl-authcDN
431 directive.
432 This directive is obsoleted by the
433 .B binddn
434 arg of
435 .B acl-bind
436 when \fIbindmethod\fP=\fBsimple\fP, and will be dismissed in the future.
437
438 .TP
439 .B idassert-authcDN "<administrative DN for proxyAuthz purposes>"
440 DN which is used to propagate the client's identity to the target
441 by means of the proxyAuthz control when the client does not
442 belong to the DIT fragment that is being proxied by back-ldap.
443 This directive is obsoleted by the
444 .B binddn
445 arg of
446 .BR idassert-bind
447 when \fIbindmethod\fP=\fBsimple\fP, and will be dismissed in the future.
448
449 .TP
450 .B idassert-passwd <password>
451 Password used with the
452 .B idassert-authcDN
453 above.
454 This directive is obsoleted by the
455 .B crendentials
456 of
457 .B idassert-bind
458 when \fIbindmethod\fP=\fBsimple\fP, and will be dismissed in the future.
459
460 .TP
461 .B idassert-mode <mode> [<flags>]
462 defines what type of
463 .I identity assertion
464 is used.
465 This directive is obsoleted by the
466 .B mode
467 arg of 
468 .BR idassert-bind ,
469 and will be dismissed in the future.
470
471 .TP
472 .B idassert-method <method> [<saslargs>]
473 This directive is obsoleted by the
474 .B bindmethod
475 arg of
476 .BR idassert-bind ,
477 and will be dismissed in the future.
478
479 .TP
480 .B suffixmassage, map, rewrite*
481 These directives are no longer supported by back-ldap; their 
482 functionality is now delegated to the
483 .B rwm
484 overlay.  Essentially, add a statement
485
486 .B overlay rwm
487
488 first, and prefix all rewrite/map statements with
489 .B rwm-
490 to obtain the original behavior.
491 See
492 .BR slapo-rwm (5)
493 for details.
494 .\" However, to ease update from existing configurations, back-ldap still 
495 .\" recognizes them and automatically instantiates the
496 .\" .B rwm
497 .\" overlay if available and not instantiated yet.
498 .\" This behavior may change in the future.
499
500 .SH ACCESS CONTROL
501 The
502 .B ldap
503 backend does not honor all ACL semantics as described in
504 .BR slapd.access (5).
505 In general, access checking is delegated to the remote server(s).
506 Only
507 .B read (=r)
508 access to the
509 .B entry
510 pseudo-attribute and to the other attribute values of the entries
511 returned by the
512 .B search
513 operation is honored, which is performed by the frontend.
514
515 .SH OVERLAYS
516 The LDAP backend provides basic proxying functionalities to many overlays.
517 The 
518 .B chain
519 overlay, described in
520 .BR slapo\-chain (5),
521 and the
522 .B translucent
523 overlay, described in
524 .BR slapo\-translucent (5),
525 deserve a special mention.
526
527 Conversely, there are many overlays that are best used in conjunction
528 with the LDAP backend.
529 The
530 .B proxycache 
531 overlay allows caching of LDAP search requests (queries) 
532 in a local database.
533 See 
534 .BR slapo\-pcache (5)
535 for details.
536 The
537 .B rwm
538 overlay provides DN rewrite and attribute/objectClass mapping
539 capabilities to the underlying database.
540 See 
541 .BR slapo\-rwm (5)
542 for details.
543
544 .SH FILES
545 .TP
546 ETCDIR/slapd.conf
547 default slapd configuration file
548 .SH SEE ALSO
549 .BR slapd.conf (5),
550 .BR slapd\-meta (5),
551 .BR slapo\-chain (5),
552 .BR slapo\-pcache (5),
553 .BR slapo\-rwm (5),
554 .BR slapo\-translucent (5),
555 .BR slapd (8),
556 .BR ldap (3).
557 .SH AUTHOR
558 Howard Chu, with enhancements by Pierangelo Masarati