1 .TH SLAPD-SOCK 5 "RELEASEDATE" "OpenLDAP LDVERSION"
2 .\" Copyright 2007-2014 The OpenLDAP Foundation All Rights Reserved.
3 .\" Copying restrictions apply. See COPYRIGHT/LICENSE.
6 slapd\-sock \- Socket backend/overlay to slapd
12 uses an external program to handle queries, similarly to
14 However, in this case the external program listens on a Unix domain socket.
15 This makes it possible to have a pool of processes, which persist between
16 requests. This allows multithreaded operation and a higher level of
17 efficiency. The external program must have been started independently;
19 itself will not start it.
21 This module may also be used as an overlay on top of some other database.
22 Use as an overlay allows external actions to be triggered in response to
23 operations on the main database.
27 options apply to the SOCK backend database.
28 That is, they must follow a "database sock" line and come before any
29 subsequent "backend" or "database" lines.
30 Other database options are described in the
34 Alternatively, to use this module as an overlay, these directives must
35 follow an "overlay sock" line within an existing database definition.
37 .B extensions [ binddn | peername | ssf | connid ]*
38 Enables the sending of additional meta-attributes with each request.
41 peername: IP=<address>:<port>
43 connid: <connection ID>
46 .B socketpath <pathname>
47 Gives the path to a Unix domain socket to which the commands will
48 be sent and from which replies are received.
50 When used as an overlay, these additional directives are defined:
52 .B sockops [ bind | unbind | search | compare | modify | modrdn | add | delete ]*
53 Specify which request types to send to the external program. The default is
54 empty (no requests are sent).
56 .B sockresps [ result | search ]*
57 Specify which response types to send to the external program. "result"
58 sends just the results of an operation. "search" sends all entries that
59 the database returned for a search request. The default is empty
60 (no responses are sent).
63 The protocol is essentially the same as
65 with the addition of a newline to terminate the command parameters. The
66 following commands are sent:
71 <repeat { "suffix:" <database suffix DN> }>
72 <entry in LDIF format>
81 <repeat { "suffix:" <database suffix DN> }>
83 method: <method number>
84 credlen: <length of <credentials>>
94 <repeat { "suffix:" <database suffix DN> }>
105 <repeat { "suffix:" <database suffix DN> }>
115 <repeat { "suffix:" <database suffix DN> }>
118 <"add"/"delete"/"replace">: <attribute>
119 <repeat { <attribute>: <value> }>
130 <repeat { "suffix:" <database suffix DN> }>
133 deleteoldrdn: <0 or 1>
134 <if new superior is specified: "newSuperior: <DN>">
143 <repeat { "suffix:" <database suffix DN> }>
145 scope: <0-2, see ldap.h>
146 deref: <0-3, see ldap.h>
147 sizelimit: <size limit>
148 timelimit: <time limit>
151 attrs: <"all" or space-separated attribute list>
160 <repeat { "suffix:" <database suffix DN> }>
165 The commands - except \fBunbind\fP - should output:
170 matched: <matched DN>
174 where only RESULT is mandatory, and then close the socket.
175 The \fBsearch\fP RESULT should be preceded by the entries in LDIF
176 format, each entry followed by a blank line.
177 Lines starting with `#' or `DEBUG:' are ignored.
179 When used as an overlay, the external program should return a
180 CONTINUE response if request processing should continue normally, or
181 a regular RESULT response if the external program wishes to bypass the
184 If the overlay is configured to send response messages to the external
185 program, they will appear as an extended RESULT message or as an
186 ENTRY message, defined below. The RESULT message is similar to
187 the one above, but also includes the msgid and any configured
194 matched: <matched DN>
200 Typically both the msgid and the connid will be needed to match
201 a result message to a request. The ENTRY message has the form
206 <entry in LDIF format>
214 backend does not honor all ACL semantics as described in
215 .BR slapd.access (5).
216 In general, access to objects is checked by using a dummy object
217 that contains only the DN, so access rules that rely on the contents
218 of the object are not honored.
223 operation does not require
227 pseudo-attribute of the parent entry.
235 pseudo-attribute of the entry whose identity is being assessed;
237 access to the credentials is not checked, but rather delegated
238 to the underlying program.
247 of the object whose value is being asserted;
249 access to the attribute whose value is being asserted is not checked.
253 operation does not require
257 pseudo-attribute of the parent entry.
267 access to the specific attributes that are modified is not checked.
271 operation does not require
275 pseudo-attribute of the parent entry, nor to that of the new parent,
278 access to the distinguished values of the naming attributes
283 operation does not require
287 pseudo_attribute of the searchBase;
289 access to the attributes and values used in the filter is not checked.
292 There is an example script in the slapd/back\-sock/ directory
293 in the OpenLDAP source tree.
297 default slapd configuration file
300 .BR slapd\-config (5),
303 Brian Candler, with enhancements by Howard Chu