![]() |
![]()
| ![]() |
![]()
NAMEslapo-dynlist - Dynamic List overlay to slapd SYNOPSIS/usr/local/etc/openldap/slapd.conf DESCRIPTIONThe dynlist overlay to slapd(8) allows expansion of dynamic lists and groups. Any time an entry with a specific objectClass (defined in the overlay configuration) is being returned, the LDAP URI-valued occurrences of a specific attribute (also defined in the overlay configuration) are expanded into the corresponding entries. For a dynamic list, the values of the attributes listed in the URI are added from the matching entries to the original entry. No recursion is allowed, to avoid potential infinite loops. The resulting entry must comply with the LDAP data model, so constraints are enforced. For example, if a SINGLE-VALUE attribute is listed, only the first value found during the list expansion appears in the final entry. For a dynamic group, the DNs of the matching entries are added to a member attribute in the original entry. All dynamic behavior is disabled when the manageDSAit control (RFC 3296) is used. In that case, the contents of the original entry is returned; namely, the URLs are returned instead of being expanded. CONFIGURATIONThe config directives that are specific to the dynlist overlay must be prefixed by dynlist-, to avoid potential conflicts with directives specific to the underlying database or to other stacked overlays.
This slapd.conf configuration option is defined for the dynlist overlay. It may have multiple occurrences, and it must appear after the overlay directive.
The dynlist overlay may be used with any backend, but it is mainly intended for use with local storage backends. In case the URI expansion is very resource-intensive and occurs frequently with well-defined patterns, one should consider adding a proxycache later on in the overlay stack. AUTHORIZATIONBy default the expansions are performed using the identity of the current LDAP user. This identity may be overridden by setting the dgIdentity attribute in the group's entry to the DN of another LDAP user. In that case the dgIdentity will be used when expanding the URIs in the object. Setting the dgIdentity to a zero-length string will cause the expansions to be performed anonymously. Note that the dgIdentity attribute is defined in the dyngroup schema, and this schema must be loaded before the dgIdentity authorization feature may be used. If the dgAuthz attribute is also present in the group's entry, its values are used to determine what identities are authorized to use the dgIdentity to expand the group. Values of the dgAuthz attribute must conform to the (experimental) OpenLDAP authz syntax. When using dynamic memberOf in search filters, search access to the entryDN pseudo-attribute is required. EXAMPLEThis example collects all the email addresses of a database into a single entry; first of all, make sure that slapd.conf contains the directives:
and that slapd loads dynlist.la, if compiled as a run-time module; then add to the database an entry like
If no <attrs> are provided in the URI, all (non-operational) attributes are collected. The values of the above list can not be evaluated in a search filter. To enable filter evaluation on the dynamic list, the configuration must be changed to explicitly map the dynamic attributes to be filtered. In this case mail is just mapped to itself.
This example implements the dynamic group feature on the member attribute:
A dynamic group with dgIdentity authorization could be created with an entry like
This example extends the dynamic group feature to add a dynamic dgMemberOf attribute to all the members of a dynamic group:
This example extends the dynamic memberOf feature to add the memberOf attribute to all the members of both static and dynamic groups:
This dynamic memberOf feature can fully replace the functionality of the slapo-memberof(5) overlay. FILES
BACKWARD COMPATIBILITYThe dynlist overlay has been reworked with the 2.5 release to use a consistent namespace as with other overlays. As a side-effect the following cn=config parameters are deprecated and will be removed in a future release: olcDlAttrSet is replaced with olcDynListAttrSet olcDynamicList is replaced with olcDynListConfig SEE ALSOslapd.conf(5), slapd-config(5), slapd(8). The slapo-dynlist(5) overlay supports dynamic configuration via back-config. BUGSFiltering on dynamic groups may return incomplete results if the search operation uses the pagedResults control. ACKNOWLEDGEMENTSThis module was written in 2004 by Pierangelo Masarati for SysNet s.n.c. Attribute remapping was contributed in 2008 by Emmanuel Dreyfus.
|