]> git.sur5r.net Git - openldap/blob - contrib/ldaptcl/ldap.n
Add AC_CANONICAL_SYSTEM to generate $target
[openldap] / contrib / ldaptcl / ldap.n
1 '\"
2 '\" Copyright (c) 1998 NeoSoft, Inc.
3 '\"
4 '\" See the file "license.terms" for information on usage and redistribution
5 '\" of this file, and for a DISCLAIMER OF ALL WARRANTIES.
6 '\" 
7 .so man.macros
8 .TH ldap n "" Ldap "Ldap Tcl Extension"
9 .BS
10 '\" Note:  do not modify the .SH NAME line immediately below!
11 .SH NAME
12 ldap \- connect to and query an LDAP server
13 .SH SYNOPSIS
14 \fBldap \fBopen \fR \fIcommand\fR \fIhostlist\fR
15 .br
16 \fBldap \fBinit \fR \fIcommand\fR \fIhostlist\fR
17 .br
18 \fBldap \fBexplode ?-nonames|-list?\fR \fIdn\fR
19 .br
20 \fIcommand \fBsubcommand \fIoptions ...\fR
21 .BE
22
23 .SH OVERVIEW
24 .PP
25 A new command by the name of \fIcommand\fR will be created to access
26 the LDAP database at \fIhostlist\fR.  \fIhostlist\fR may contain elements
27 of the format \fBhost:port\fR if a port other than the default LDAP port
28 of 389 is required.  The LDAP library will attempt to connect to each
29 host in turn until it succeeds.
30 .PP
31 The \fBexplode\fR form provides a means (via ldap_explode(3)) to explode a DN
32 into its component parts.  \fB-nonames\fR strips off the attribute names,
33 and -list returns a list suitable for \fBarray set\fR.
34 .PP
35 Finally, the last form, described in more detail below, refers genericly
36 to how the command created by the first two examples is used.
37 .SH DESCRIPTION
38
39 The Lightweight Directory Access Protocol provides TCP/IP access to
40 X.500 directory services and/or to a stand-alone LDAP server.
41
42 This code provides a Tcl interface to the
43 Lightweight Directory Access Protocol package using the Netscape
44 Software Development Kit.  It can also be used with the freely
45 redistributable University of 
46 Michigan (http://www.umich.edu/~rsug/ldap) version by defining the
47 UMICH_LDAP macro during compilation.
48
49 .SH CONNECTING TO AN LDAP SERVER
50
51 To create an ldap interface entity, we use the "ldap" command.
52
53     ldap open foo foo.bar.com
54
55 This opens a connection to a LDAP server on foo.bar.com, and makes
56 a new Tcl command, foo, through which we will manipulate the interface
57 and make queries to the remote LDAP server.
58
59     ldap init foo foo.bar.com
60
61 Same as above, foo is created, but for "init", opening the connection is 
62 deferred until we actually try to do something.
63
64 For the purposes of this example, we're going to assume that "foo" is the
65 command created by opening a connection using "ldap open".
66
67 Note:  Karl is particularly dissatisfied with the syntax of this option,
68 so it is one of the most likely things to change in a subsequent release.
69
70 .SH BINDING
71
72 After a connection is made to an LDAP server, an LDAP bind operation must
73 be performed before other operations can be attempted over the connection.
74
75 Both simple authentication and kerberos authentication are available.
76 LDAP version 3 supports many new "SSL"-style authentication and encryption
77 systems, which are not currently supported by the UMich server, and hence
78 by this interface package.
79
80 Currently simple authentication, and kerberos-based authentication, are
81 supported.
82
83 To use LDAP and still have reasonable security in a networked, 
84 Internet/Intranet environment, secure shell can be used to setup
85 secure, encrypted connections between client machines and the LDAP
86 server, and between the LDAP server and any replica or slave servers
87 that might be used.
88
89 To perform the LDAP "bind" operation:
90
91     foo bind simple dn password
92
93     foo bind kerberos_ldap
94     foo bind kerberos_dsa
95     foo bind kerberos_both
96
97 It either returns nothing (success), or a Tcl error with appropriate error
98 text.
99
100 For example,
101
102     foo bind simple "cn=Manager,o=NeoSoft Inc,c=us" "secret"
103
104 If you attempt to bind with one of the kerberos authentication types
105 described above and your LDAP library was not built with KERBEROS
106 defined, you will get an unknown auth type error.
107
108 To unbind an LDAP connection previously bound with "bind":
109
110     foo unbind
111
112 Note that unbinding also deletes the command (\fBfoo\fR in this case).
113 Deleting the command has the same affect.
114
115 The ability of the library to callback to the client, enabling re-binding
116 while following referrals, is not currently supported.
117
118 .SH DELETING OBJECTS
119
120 To delete an object in the LDAP database, use
121
122     foo delete dn
123
124 To rename an object to another relative distinguished name, use
125
126     foo rename_rdn dn rdn
127
128 To rename an object to another relative distinguished name, leaving
129 the old entry as some kind of attribute (FIX: not sure if this is
130 right or how it works)
131
132     foo modify_rdn dn rdn
133
134
135 .SH ADDING NEW OBJECTS
136
137     foo add dn attributePairList
138
139 This creates a new distinguished name and defines zero or more attributes.
140
141 "attributePairList" is a list of key-value pairs, the same as would
142 be returned by "array get" if an array had been set up containing the
143 key-value pairs.  Note that, right now, the sort of lowest-level pair
144 of the DN must also appear in the attributePairList, as in:
145
146     foo add "cn=karl, ou=People, o=NeoSoft Inc, c=US" {cn karl ...}
147
148 Here is a more precise description of how an attributePairList looks:
149
150     {cn {karl {Karl Lehenbauer}} telephone 713-968-5800}
151
152 Note here that two cn values, "karl" and "Karl Lehenbauer", are added.
153 A command error is to write
154
155     {cn {Karl Lehenbauer}}
156
157 Which adds two cn values, "Karl" and "Lehenbauer", when the intention
158 was to give a single cn value of "Karl Lehenbauer".  In real life, one
159 finds oneself making prodigous use of the \fBlist\fR command rather than
160 typing hard-coded lists.
161
162 We have noticed that the Netscape server will automatically add the
163 left-most rdn portion of the DN (ie. cn=karl), whereas the University
164 of Michigan version does not.
165
166 .SH ADDING, DELETING, AND REPLACING OBJECT ATTRIBUTES
167
168 You can have multiple occurrences of the same attribute in a record.
169 These are represented in search results, through the Tcl interface,
170 as a list.
171
172     foo add_attributes dn attributePairList
173
174 This adds key-value pairs to an existing DN.  If an attribute being
175 added already exists, the new value will be appended to the list.
176
177     foo replace_attributes dn attributePairList
178
179 This replaces specified key-value pairs in an existing DN, leaving
180 unnamed ones untouched.
181
182     foo delete_attributes dn attributePairList
183
184 This deletes attributes in the list.  If a pair is "foo {bar snap}" and
185 you delete "foo bar", "foo" will still have "snap".
186
187 If you provide an empty string ("") for the value part of the key-value
188 pair, the entire attribute will be deleted.  To reiterate, if you provide
189 a non-empty string for the value part, only that value will be removed
190 from the value list.
191
192 .SH SEARCHING
193
194 The Tcl interface to searching takes a control array, which contains
195 a couple of mandatory key-value pairs, and can contain a number of
196 optional key-value pairs as well, for controlling the search, a
197 destination array, into which the specified attributes (or all attributes
198 of matching DNs if none are specified) and values are stored.
199
200 The "code" part is executed repeatedly, once for each DN matching the
201 search criteria.
202
203     foo search controlArray destArray code
204
205         Using data in the control array, a search is performed of the
206         LDAP server opened when foo was created.  Possible elements
207         of the control array are enumerated blow.
208
209         controlArray(base) is the DN being searched from. (required)
210
211         controlArray(filter) contains the search criteria. (required)
212
213         controlArray(scope) must be "base", "one_level", or "subtree".
214             If not specified, scope defaults to "subtree".
215
216         controlArray(deref) must be "never", "search", "find", or "always"
217             If not specified, deref defaults to "never"
218
219         controlArray(attributes) is a list of attributes to be fetched.
220             If not specified, all attributes are fetched.
221
222         For each matching record, destArray is populated with none,
223         some or all attribute-value pairs.
224
225 Note:  There are some additional parameters that can be set, such as
226 how long the synchronous version of the routines should wait before
227 timing out, the interfaces for which are not available in the current
228 version.
229
230 .SH CACHING (Note: Netscape clients do not have caching interfaces).
231
232 The UMich LDAP library offers the client application fairly fine-
233 grained control of caching of results retrieved from searches, 
234 offering significant performance improvement and reduced
235 network traffic.
236
237 By default, the cache is disabled.
238
239 To enable caching of data received from an LDAP connection,
240
241     foo cache enable timeout maxmem
242
243         ...where timeout is specified in seconds, and maxmem is the
244         maximum memory to be used fo caching, in bytes.
245
246         If maxmem is 0, the cache size is restricted only by the timeout.
247
248     foo cache disable
249
250         ...temporarily inhibits use of the cache (while disabled, new requests
251         are not cached and the cache is not checked when returning results).
252
253         Disabling the cache does not delete its contents.
254
255     foo cache destroy
256
257         ...turns off caching and completely removes the cache from memory.
258
259     foo cache flush
260
261         ...deletes the entire cache contents, but does not affect
262         whether or not the cache is being used.
263
264     foo cache uncache dn
265
266         ...removes from the cache all request results that make reference 
267         to the specified DN.
268
269         This should be used, for example, after doing an add_attributes,
270         delete_attributes, or replace_attributes (ldap_modify(3)) 
271         involving the requested DN.
272
273     foo cache no_errors
274
275         ...suppresses caching of any requests that result in an error.
276
277     foo cache size_errors
278
279         ...suppresses caching of any requests that result in an error,
280         except for requests resulting in "sizelimit exceeded", which 
281         are cached.  This is the default.
282
283     foo cache all_errors
284
285         ...enables caching of all requests, including those that result
286         in errors.
287
288 .SH IMPLEMENTATION DECISIONS
289
290 Because we used the new "Tcl object" C interfaces, this package only works
291 with Tcl 8.0 or above.
292
293 This package interfaces with the University of Michigan LDAP protocol
294 package, version 3.3, an implementation of version 2 of the LDAP protocol.
295
296 Although an LDAP client (or server) could be written in native Tcl 8.0,
297 as Tcl 8.0 and above can do binary I/O, and Tcl 8 and above have strings 
298 that are fully eight-bit clean, for a first implementation, to minimize 
299 compatibility problems, we created a C interface to the UMich LDAP library.
300
301 A native Tcl implementation would be cool because we could bring the receiving
302 of messages into the normal Tcl event loop and run the LDAP interface fully
303 asynchronous.
304
305 This implementation is blocking, and blocking only.  That is to say that
306 the Tcl event loop is frozen while the ldap routines are waiting on data.
307
308 This could be fixed either by recoding all of the I/O in the LDAP library
309 to use Tcl's I/O system instead, or by simply coding the LDAP interface in
310 native Tcl, as mentioned above.
311
312 Another advantage of coding in high-level Tcl, of course, is that the
313 client would immediately be cross-platform to Windows and the Mac, as
314 well as Unix.
315
316 Binary data is not currently supported.  It will probably be trivial to 
317 add, we just haven't dug into it yet.
318
319
320 .SH FOR MORE INFORMATION
321
322 This document principally describes how to use our Tcl interface to the 
323 LDAP library works.
324
325 For more information on LDAP and the University of Michigan LDAP package,
326 please visit the website mentioned above.  The package includes substantial
327 documentation in the form of UNIX manual pages, a SLAPD/SLURPD guide
328 in Adobe Portable Document Format (pdf), and a number of Internet RFCs
329 related to LDAP services.
330
331 .SH AUTHORS
332 It was written by Karl Lehenbauer, of NeoSoft, Inc., in August and
333 September of 1997.  Ldap explode, and numerous bug fixes by Randy
334 Kunkee, also of NeoSoft, Inc., in 1998.
335
336 .SH KEYWORDS
337 element, join, list, separator
338 .SH BUGS
339 The \fBldap init\fR syntax fails to return anything useful.  Use
340 \fBldap open\fR instead.
341
342 \fBPackage require Ldaptcl\fR won't work unless the ldap and lber libraries
343 are also shared, and ldaptcl.so is itself created with the correct flags
344 (eg. -R for Solaris).  In short there's a lot of details to make this part
345 work, but it should work out of the box for Solaris.  Other systems may
346 require that LD_LIBRARY_PATH or other appropraite environment variables
347 be set at build and/or runtime.
348
349 An asynchronous interface should be provided with callbacks.
350
351 We have never tested Kerberos authentication.
352
353 It does not tolerate some illegal operations very well.
354
355 It is possible to create empty attributes, ie. attributes which are present
356 but have no value.  This is done by deleting the attribute values rather
357 than, eg. "foo delete_attributes dn {telephone {}}" which would delete
358 the telephone attribute altogether.  A search for presence of the attribute
359 may return an object, and yet it may have no value.  This interface presents
360 such an object as not having the attribute at all (ie. you cannot tell).
361 The Netscape SDK does this for you, so this makes the behavior consistent
362 when using UMICH_LDAP.
363
364 \--enable-netscape configuration support has not been tested and probably
365 has bugs.