]> git.sur5r.net Git - openldap/blob - include/ldap.h
Remove support for DNS DNs (not to be confused with X.500 DN using
[openldap] / include / ldap.h
1 /* $OpenLDAP$ */
2 /*
3  * Copyright 1998-2000 The OpenLDAP Foundation, Redwood City, California, USA
4  * All rights reserved.
5  *
6  * Redistribution and use in source and binary forms are permitted only
7  * as authorized by the OpenLDAP Public License.  A copy of this
8  * license is available at http://www.OpenLDAP.org/license.html or
9  * in file LICENSE in the top-level directory of the distribution.
10  */
11 /* Portions
12  * Copyright (c) 1990 Regents of the University of Michigan.
13  * All rights reserved.
14  *
15  * Redistribution and use in source and binary forms are permitted
16  * provided that this notice is preserved and that due credit is given
17  * to the University of Michigan at Ann Arbor. The name of the University
18  * may not be used to endorse or promote products derived from this
19  * software without specific prior written permission. This software
20  * is provided ``as is'' without express or implied warranty.
21  */
22
23 #ifndef _LDAP_H
24 #define _LDAP_H
25
26 /* pull in lber */
27 #include <lber.h>
28
29 LDAP_BEGIN_DECL
30
31 #define LDAP_VERSION1   1
32 #define LDAP_VERSION2   2
33 #define LDAP_VERSION3   3
34
35 #define LDAP_VERSION_MIN        LDAP_VERSION2
36 #define LDAP_VERSION            LDAP_VERSION2
37 #define LDAP_VERSION_MAX        LDAP_VERSION3
38
39 /*
40  * We'll use 2000+draft revision for our API version number
41  * As such, the number will be above the old RFC but below 
42  * whatever number does finally get assigned
43  */
44 #define LDAP_API_VERSION        2004
45 #define LDAP_VENDOR_NAME        "OpenLDAP"
46 /* We'll eventually release as 200 */
47 #define LDAP_VENDOR_VERSION     19905
48
49 /* OpenLDAP API Features */
50 #define LDAP_API_FEATURE_X_OPENLDAP LDAP_VENDOR_VERSION
51
52 /* include LDAP_API_FEATURE defines */
53 #include <ldap_features.h>
54
55 #if defined( LDAP_API_FEATURE_X_OPENLDAP_REENTRANT ) || \
56         ( defined( LDAP_THREAD_SAFE ) && \
57                 defined( LDAP_API_FEATURE_X_OPENLDAP_THREAD_SAFE ) )
58         /* -lldap may or may not be thread safe */
59         /* -lldap_r, if available, is always thread safe */
60 #       define  LDAP_API_FEATURE_THREAD_SAFE 1
61 #endif
62 #if defined( LDAP_THREAD_SAFE ) && \
63         defined( LDAP_API_FEATURE_X_OPENLDAP_THREAD_SAFE )
64 /* #define LDAP_API_FEATURE_SESSION_SAFE        1       */
65 /* #define LDAP_API_OPERATION_SESSION_SAFE      1       */
66 #endif
67
68 #define LDAP_PORT               389             /* ldap:///             default LDAP port */
69 #define LDAPS_PORT              636             /* ldaps:///    default LDAP over TLS port */
70
71 #define LDAP_ROOT_DSE                           ""
72 #define LDAP_NO_ATTRS                           "1.1"
73 #define LDAP_ALL_USER_ATTRIBUTES        "*"
74 #define LDAP_ALL_OPERATIONAL_ATTRIBUTES "+" /* OpenLDAP extension */
75
76 /*
77  * LDAP_OPTions defined by draft-ldapext-ldap-c-api-02
78  * 0x0000 - 0x0fff reserved for api options
79  * 0x1000 - 0x3fff reserved for api extended options
80  * 0x4000 - 0x7fff reserved for private and experimental options
81  */
82 #define LDAP_OPT_API_INFO                       0x0000
83 #define LDAP_OPT_DESC                           0x0001 /* deprecated */
84 #define LDAP_OPT_DEREF                          0x0002
85 #define LDAP_OPT_SIZELIMIT                      0x0003
86 #define LDAP_OPT_TIMELIMIT                      0x0004
87 /* 0x05 - 0x07 not defined by current draft */
88 #define LDAP_OPT_REFERRALS                      0x0008
89 #define LDAP_OPT_RESTART                        0x0009
90 /* 0x0a - 0x10 not defined by current draft */
91 #define LDAP_OPT_PROTOCOL_VERSION       0x0011
92 #define LDAP_OPT_SERVER_CONTROLS        0x0012
93 #define LDAP_OPT_CLIENT_CONTROLS        0x0013
94 /* 0x14 not defined by current draft */
95 #define LDAP_OPT_API_FEATURE_INFO       0x0015
96
97 /* 0x16 - 0x2f not defined by current draft */
98 #define LDAP_OPT_HOST_NAME                      0x0030
99 #define LDAP_OPT_ERROR_NUMBER           0x0031
100 #define LDAP_OPT_ERROR_STRING           0x0032
101 #define LDAP_OPT_MATCHED_DN                     0x0033
102
103 /* 0x34 - 0x0fff not defined by current draft */
104
105 #define LDAP_OPT_PRIVATE_EXTENSION_BASE 0x4000  /* to 0x7FFF inclusive */
106
107 /* private and experimental options */
108 /* OpenLDAP specific options */
109 #define LDAP_OPT_DEBUG_LEVEL            0x5001  /* debug level */
110 #define LDAP_OPT_TIMEOUT                        0x5002  /* default timeout */
111 #define LDAP_OPT_REFHOPLIMIT            0x5003  /* ref hop limit */
112 #define LDAP_OPT_NETWORK_TIMEOUT        0x5005  /* socket level timeout */
113 #define LDAP_OPT_URI                            0x5006
114
115 /* OpenLDAP TLS options */
116 #define LDAP_OPT_X_TLS_CACERTFILE       0x6001
117 #define LDAP_OPT_X_TLS_CACERTDIR        0x6002
118 #define LDAP_OPT_X_TLS_CERT             0x6003
119 #define LDAP_OPT_X_TLS_CERTFILE         0x6004
120 #define LDAP_OPT_X_TLS_KEYFILE          0x6005
121 #define LDAP_OPT_X_TLS_REQUIRE_CERT     0x6006
122 #define LDAP_OPT_X_TLS                  0x6007
123 #define LDAP_OPT_X_TLS_PROTOCOL         0x6008
124 #define LDAP_OPT_X_TLS_CIPHER_SUITE     0x6009
125
126 #define LDAP_OPT_X_TLS_NEVER            0
127 #define LDAP_OPT_X_TLS_HARD             1
128 #define LDAP_OPT_X_TLS_DEMAND           2
129 #define LDAP_OPT_X_TLS_ALLOW            3
130 #define LDAP_OPT_X_TLS_TRY              4
131
132 /* OpenLDAP SASL options */
133 #define LDAP_OPT_X_SASL_MINSSF          0x6100
134 #define LDAP_OPT_X_SASL_MAXSSF          0x6101
135 #define LDAP_OPT_X_SASL_ACTSSF          0x6102
136
137 /* on/off values */
138 #define LDAP_OPT_ON             ((void *) 1)
139 #define LDAP_OPT_OFF    ((void *) 0)
140
141 #define LDAP_OPT_SUCCESS        0
142 #define LDAP_OPT_ERROR          (-1)
143
144 #define LDAP_API_INFO_VERSION   (1)
145 typedef struct ldapapiinfo {
146         int             ldapai_info_version;            /* version of LDAPAPIInfo (1) */
147         int             ldapai_api_version;                     /* revision of API supported */
148         int             ldapai_protocol_version;        /* highest LDAP version supported */
149         char    **ldapai_extensions;            /* names of API extensions */
150         char    *ldapai_vendor_name;            /* name of supplier */
151         int             ldapai_vendor_version;          /* supplier-specific version * 100 */
152 } LDAPAPIInfo;
153
154 #define LDAP_FEATURE_INFO_VERSION (1) /* version of api feature structure */
155 typedef struct ldap_apifeature_info {
156         int             ldapaif_info_version; /* version of this struct (1) */
157         char*   ldapaif_name;    /* matches LDAP_API_FEATURE_... less the prefix */
158         int             ldapaif_version; /* matches the value LDAP_API_FEATURE_... */
159 } LDAPAPIFeatureInfo;
160
161 typedef struct ldapcontrol {
162         char *                  ldctl_oid;
163         struct berval   ldctl_value;
164         char                    ldctl_iscritical;
165 } LDAPControl;
166
167 /* LDAP Controls */
168         /* chase referrals controls */
169 #define LDAP_CONTROL_REFERRALS  "1.2.840.113666.1.4.616"
170 #define LDAP_CHASE_SUBORDINATE_REFERRALS        0x0020U
171 #define LDAP_CHASE_EXTERNAL_REFERRALS   0x0040U
172
173 #define LDAP_CONTROL_MANAGEDSAIT "2.16.840.1.113730.3.4.2"
174
175 /* Experimental Controls */
176 #define LDAP_CONTROL_X_MODIFY_PASSWD "1.3.6.1.4.1.4203.666.5.1"
177
178 /* LDAP Unsolicited Notifications */
179 #define LDAP_NOTICE_OF_DISCONNECTION    "1.3.6.1.4.1.1466.20036"
180 #define LDAP_NOTICE_DISCONNECT LDAP_NOTICE_OF_DISCONNECTION
181
182
183 /* LDAP Extended Operations */
184 #define LDAP_EXOP_START_TLS "1.3.6.1.4.1.1466.20037"
185
186 #define LDAP_EXOP_X_MODIFY_PASSWD "1.3.6.1.4.1.4203.666.6.1"
187 #define LDAP_TAG_EXOP_X_MODIFY_PASSWD_ID        ((ber_tag_t) 0x80U)
188 #define LDAP_TAG_EXOP_X_MODIFY_PASSWD_OLD       ((ber_tag_t) 0x81U)
189 #define LDAP_TAG_EXOP_X_MODIFY_PASSWD_NEW       ((ber_tag_t) 0x82U)
190 #define LDAP_TAG_EXOP_X_MODIFY_PASSWD_GEN       ((ber_tag_t) 0x80U)
191
192 /* 
193  * specific LDAP instantiations of BER types we know about
194  */
195
196 /* Overview of LBER tag construction
197  *
198  *      Bits
199  *      ______
200  *      8 7 | CLASS
201  *      0 0 = UNIVERSAL
202  *      0 1 = APPLICATION
203  *      1 0 = CONTEXT-SPECIFIC
204  *      1 1 = PRIVATE
205  *              _____
206  *              | 6 | DATA-TYPE
207  *                0 = PRIMITIVE
208  *                1 = CONSTRUCTED
209  *                      ___________
210  *                      | 5 ... 1 | TAG-NUMBER
211  */
212
213 /* general stuff */
214 #define LDAP_TAG_MESSAGE        ((ber_tag_t) 0x30U)     /* constructed + 16 */
215 #define LDAP_TAG_MSGID          ((ber_tag_t) 0x02U)     /* integer */
216 #define LDAP_TAG_LDAPDN         ((ber_tag_t) 0x04U)     /* octect string */
217 #define LDAP_TAG_LDAPCRED       ((ber_tag_t) 0x04U)     /* octect string */
218 #define LDAP_TAG_CONTROLS       ((ber_tag_t) 0xa0U)     /* context specific + constructed + 0 */
219 #define LDAP_TAG_REFERRAL       ((ber_tag_t) 0xa3U)     /* context specific + constructed + 3 */
220
221 #define LDAP_TAG_NEWSUPERIOR    ((ber_tag_t) 0x80U)     /* context-specific + primitive + 0 */
222
223 #define LDAP_TAG_EXOP_REQ_OID   ((ber_tag_t) 0x80U)     /* context specific + primitive */
224 #define LDAP_TAG_EXOP_REQ_VALUE ((ber_tag_t) 0x81U)     /* context specific + primitive */
225 #define LDAP_TAG_EXOP_RES_OID   ((ber_tag_t) 0x8aU)     /* context specific + primitive */
226 #define LDAP_TAG_EXOP_RES_VALUE ((ber_tag_t) 0x8bU)     /* context specific + primitive */
227
228 #define LDAP_TAG_SASL_RES_CREDS ((ber_tag_t) 0x87U)     /* context specific + primitive */
229
230
231 /* possible operations a client can invoke */
232 #define LDAP_REQ_BIND                   ((ber_tag_t) 0x60U)     /* application + constructed */
233 #define LDAP_REQ_UNBIND                 ((ber_tag_t) 0x42U)     /* application + primitive   */
234 #define LDAP_REQ_SEARCH                 ((ber_tag_t) 0x63U)     /* application + constructed */
235 #define LDAP_REQ_MODIFY                 ((ber_tag_t) 0x66U)     /* application + constructed */
236 #define LDAP_REQ_ADD                    ((ber_tag_t) 0x68U)     /* application + constructed */
237 #define LDAP_REQ_DELETE                 ((ber_tag_t) 0x4aU)     /* application + primitive   */
238 #define LDAP_REQ_MODRDN                 ((ber_tag_t) 0x6cU)     /* application + constructed */
239 #define LDAP_REQ_MODDN                  LDAP_REQ_MODRDN 
240 #define LDAP_REQ_RENAME                 LDAP_REQ_MODRDN 
241 #define LDAP_REQ_COMPARE                ((ber_tag_t) 0x6eU)     /* application + constructed */
242 #define LDAP_REQ_ABANDON                ((ber_tag_t) 0x50U)     /* application + primitive   */
243 #define LDAP_REQ_EXTENDED               ((ber_tag_t) 0x77U)     /* application + constructed */
244
245 /* possible result types a server can return */
246 #define LDAP_RES_BIND                   ((ber_tag_t) 0x61U)     /* application + constructed */
247 #define LDAP_RES_SEARCH_ENTRY           ((ber_tag_t) 0x64U)     /* application + constructed */
248 #define LDAP_RES_SEARCH_REFERENCE       ((ber_tag_t) 0x73U)     /* V3: application + constructed */
249 #define LDAP_RES_SEARCH_RESULT          ((ber_tag_t) 0x65U)     /* application + constructed */
250 #define LDAP_RES_MODIFY                 ((ber_tag_t) 0x67U)     /* application + constructed */
251 #define LDAP_RES_ADD                    ((ber_tag_t) 0x69U)     /* application + constructed */
252 #define LDAP_RES_DELETE                 ((ber_tag_t) 0x6bU)     /* application + constructed */
253 #define LDAP_RES_MODRDN                 ((ber_tag_t) 0x6dU)     /* application + constructed */
254 #define LDAP_RES_MODDN                  LDAP_RES_MODRDN /* application + constructed */
255 #define LDAP_RES_RENAME                 LDAP_RES_MODRDN /* application + constructed */
256 #define LDAP_RES_COMPARE                ((ber_tag_t) 0x6fU)     /* application + constructed */
257 #define LDAP_RES_EXTENDED               ((ber_tag_t) 0x78U)     /* V3: application + constructed */
258 #define LDAP_RES_EXTENDED_PARTIAL       ((ber_tag_t) 0x79U)     /* V3+: application + constructed */
259
260 #define LDAP_RES_ANY                    ((ber_tag_t)(-1))
261 #define LDAP_RES_UNSOLICITED    ((ber_tag_t)(0))
262
263
264 /* sasl methods */
265 #define LDAP_SASL_SIMPLE                        NULL
266
267 /* authentication methods available */
268 #define LDAP_AUTH_NONE          ((ber_tag_t) 0x00U)     /* no authentication              */
269 #define LDAP_AUTH_SIMPLE        ((ber_tag_t) 0x80U)     /* context specific + primitive   */
270 #define LDAP_AUTH_SASL          ((ber_tag_t) 0xa3U)     /* context specific + primitive   */
271 #define LDAP_AUTH_KRBV4         ((ber_tag_t) 0xffU)     /* means do both of the following */
272 #define LDAP_AUTH_KRBV41        ((ber_tag_t) 0x81U)     /* context specific + primitive   */
273 #define LDAP_AUTH_KRBV42        ((ber_tag_t) 0x82U)     /* context specific + primitive   */
274
275
276 /* filter types */
277 #define LDAP_FILTER_AND         ((ber_tag_t) 0xa0U)     /* context specific + constructed */
278 #define LDAP_FILTER_OR          ((ber_tag_t) 0xa1U)     /* context specific + constructed */
279 #define LDAP_FILTER_NOT         ((ber_tag_t) 0xa2U)     /* context specific + constructed */
280 #define LDAP_FILTER_EQUALITY    ((ber_tag_t) 0xa3U)     /* context specific + constructed */
281 #define LDAP_FILTER_SUBSTRINGS  ((ber_tag_t) 0xa4U)     /* context specific + constructed */
282 #define LDAP_FILTER_GE          ((ber_tag_t) 0xa5U)     /* context specific + constructed */
283 #define LDAP_FILTER_LE          ((ber_tag_t) 0xa6U)     /* context specific + constructed */
284 #define LDAP_FILTER_PRESENT     ((ber_tag_t) 0x87U)     /* context specific + primitive   */
285 #define LDAP_FILTER_APPROX      ((ber_tag_t) 0xa8U)     /* context specific + constructed */
286 #define LDAP_FILTER_EXT         ((ber_tag_t) 0xa9U)     /* context specific + constructed */
287
288 /* extended filter component types */
289 #define LDAP_FILTER_EXT_OID     ((ber_tag_t) 0x81U)     /* context specific */
290 #define LDAP_FILTER_EXT_TYPE    ((ber_tag_t) 0x82U)     /* context specific */
291 #define LDAP_FILTER_EXT_VALUE   ((ber_tag_t) 0x83U)     /* context specific */
292 #define LDAP_FILTER_EXT_DNATTRS ((ber_tag_t) 0x84U)     /* context specific */
293
294 /* substring filter component types */
295 #define LDAP_SUBSTRING_INITIAL  ((ber_tag_t) 0x80U)     /* context specific */
296 #define LDAP_SUBSTRING_ANY      ((ber_tag_t) 0x81U)     /* context specific */
297 #define LDAP_SUBSTRING_FINAL    ((ber_tag_t) 0x82U)     /* context specific */
298
299 /* search scopes */
300 #define LDAP_SCOPE_BASE         ((ber_int_t) 0x0000)
301 #define LDAP_SCOPE_ONELEVEL     ((ber_int_t) 0x0001)
302 #define LDAP_SCOPE_SUBTREE      ((ber_int_t) 0x0002)
303
304 /* substring filter component types */
305 #define LDAP_SUBSTRING_INITIAL  ((ber_tag_t) 0x80U)     /* context specific */
306 #define LDAP_SUBSTRING_ANY      ((ber_tag_t) 0x81U)     /* context specific */
307 #define LDAP_SUBSTRING_FINAL    ((ber_tag_t) 0x82U)     /* context specific */
308
309 /* 
310  * possible error codes we can return
311  */
312
313 #define LDAP_RANGE(n,x,y)       (((x) <= (n)) && ((n) <= (y)))
314
315 #define LDAP_SUCCESS                    0x00
316 #define LDAP_OPERATIONS_ERROR           0x01
317 #define LDAP_PROTOCOL_ERROR             0x02
318 #define LDAP_TIMELIMIT_EXCEEDED         0x03
319 #define LDAP_SIZELIMIT_EXCEEDED         0x04
320 #define LDAP_COMPARE_FALSE              0x05
321 #define LDAP_COMPARE_TRUE               0x06
322 #define LDAP_AUTH_METHOD_NOT_SUPPORTED  0x07
323 #define LDAP_STRONG_AUTH_NOT_SUPPORTED  LDAP_AUTH_METHOD_NOT_SUPPORTED
324 #define LDAP_STRONG_AUTH_REQUIRED       0x08
325 #define LDAP_PARTIAL_RESULTS            0x09    /* not listed in v3 */
326
327 #define LDAP_REFERRAL                           0x0a /* LDAPv3 */
328 #define LDAP_ADMINLIMIT_EXCEEDED        0x0b /* LDAPv3 */
329 #define LDAP_UNAVAILABLE_CRITICAL_EXTENSION     0x0c /* LDAPv3 */
330 #define LDAP_CONFIDENTIALITY_REQUIRED   0x0d /* LDAPv3 */
331 #define LDAP_SASL_BIND_IN_PROGRESS      0x0e /* LDAPv3 */       
332
333 #define LDAP_ATTR_ERROR(n)      LDAP_RANGE((n),0x10,0x15) /* 16-21 */
334
335 #define LDAP_NO_SUCH_ATTRIBUTE          0x10
336 #define LDAP_UNDEFINED_TYPE             0x11
337 #define LDAP_INAPPROPRIATE_MATCHING     0x12
338 #define LDAP_CONSTRAINT_VIOLATION       0x13
339 #define LDAP_TYPE_OR_VALUE_EXISTS       0x14
340 #define LDAP_INVALID_SYNTAX             0x15
341
342 #define LDAP_NAME_ERROR(n)      LDAP_RANGE((n),0x20,0x24) /* 32-34,36 */
343
344 #define LDAP_NO_SUCH_OBJECT             0x20
345 #define LDAP_ALIAS_PROBLEM              0x21
346 #define LDAP_INVALID_DN_SYNTAX          0x22
347 #define LDAP_IS_LEAF                    0x23 /* not LDAPv3 */
348 #define LDAP_ALIAS_DEREF_PROBLEM        0x24
349
350 #define LDAP_SECURITY_ERROR(n)  LDAP_RANGE((n),0x30,0x32) /* 48-50 */
351
352 #define LDAP_INAPPROPRIATE_AUTH         0x30
353 #define LDAP_INVALID_CREDENTIALS        0x31
354 #define LDAP_INSUFFICIENT_ACCESS        0x32
355
356 #define LDAP_SERVICE_ERROR(n)   LDAP_RANGE((n),0x33,0x36) /* 51-54 */
357
358 #define LDAP_BUSY                       0x33
359 #define LDAP_UNAVAILABLE                0x34
360 #define LDAP_UNWILLING_TO_PERFORM       0x35
361 #define LDAP_LOOP_DETECT                0x36
362
363 #define LDAP_UPDATE_ERROR(n)    LDAP_RANGE((n),0x40,0x47) /* 64-69,71 */
364
365 #define LDAP_NAMING_VIOLATION           0x40
366 #define LDAP_OBJECT_CLASS_VIOLATION     0x41
367 #define LDAP_NOT_ALLOWED_ON_NONLEAF     0x42
368 #define LDAP_NOT_ALLOWED_ON_RDN         0x43
369 #define LDAP_ALREADY_EXISTS             0x44
370 #define LDAP_NO_OBJECT_CLASS_MODS       0x45
371 #define LDAP_RESULTS_TOO_LARGE          0x46 /* CLDAP */
372 #define LDAP_AFFECTS_MULTIPLE_DSAS      0x47 /* LDAPv3 */
373
374 #define LDAP_OTHER                      0x50
375
376 #define LDAP_API_ERROR(n)               LDAP_RANGE((n),0x51,0xff) /* 81+ */
377
378 #define LDAP_SERVER_DOWN                0x51
379 #define LDAP_LOCAL_ERROR                0x52
380 #define LDAP_ENCODING_ERROR             0x53
381 #define LDAP_DECODING_ERROR             0x54
382 #define LDAP_TIMEOUT                    0x55
383 #define LDAP_AUTH_UNKNOWN               0x56
384 #define LDAP_FILTER_ERROR               0x57
385 #define LDAP_USER_CANCELLED             0x58
386 #define LDAP_PARAM_ERROR                0x59
387 #define LDAP_NO_MEMORY                  0x5a
388
389 #define LDAP_CONNECT_ERROR                              0x5b    /* new */
390 #define LDAP_NOT_SUPPORTED                              0x5c    /* new */
391 #define LDAP_CONTROL_NOT_FOUND                  0x5d    /* new */
392 #define LDAP_NO_RESULTS_RETURNED                0x5e    /* new */
393 #define LDAP_MORE_RESULTS_TO_RETURN             0x5f    /* new */
394 #define LDAP_CLIENT_LOOP                                0x60    /* new */
395 #define LDAP_REFERRAL_LIMIT_EXCEEDED    0x61    /* new */
396
397 /*
398  * This structure represents both ldap messages and ldap responses.
399  * These are really the same, except in the case of search responses,
400  * where a response has multiple messages.
401  */
402
403 typedef struct ldapmsg LDAPMessage;
404
405 /* for modifications */
406 typedef struct ldapmod {
407         int             mod_op;
408
409 #define LDAP_MOD_ADD            ((ber_int_t) 0x0000)
410 #define LDAP_MOD_DELETE         ((ber_int_t) 0x0001)
411 #define LDAP_MOD_REPLACE        ((ber_int_t) 0x0002)
412 #define LDAP_MOD_BVALUES        ((ber_int_t) 0x0080)
413 /* IMPORTANT: do not use code 0x1000 (or above),
414  * it is used internally by the backends!
415  * (see ldap/servers/slapd/slap.h)
416  */
417
418         char            *mod_type;
419         union mod_vals_u {
420                 char            **modv_strvals;
421                 struct berval   **modv_bvals;
422         } mod_vals;
423 #define mod_values      mod_vals.modv_strvals
424 #define mod_bvalues     mod_vals.modv_bvals
425 } LDAPMod;
426
427 /*
428  * structures for ldap getfilter routines
429  */
430
431 typedef struct ldap_filt_info {
432         char                    *lfi_filter;
433         char                    *lfi_desc;
434         int                     lfi_scope;
435         int                     lfi_isexact;
436         struct ldap_filt_info   *lfi_next;
437 } LDAPFiltInfo;
438
439 typedef struct ldap_filt_list {
440     char                        *lfl_tag;
441     char                        *lfl_pattern;
442     char                        *lfl_delims;
443     LDAPFiltInfo                *lfl_ilist;
444     struct ldap_filt_list       *lfl_next;
445 } LDAPFiltList;
446
447
448 #define LDAP_FILT_MAXSIZ        1024
449
450 typedef struct ldap_filt_desc {
451         LDAPFiltList            *lfd_filtlist;
452         LDAPFiltInfo            *lfd_curfip;
453         LDAPFiltInfo            lfd_retfi;
454         char                    lfd_filter[ LDAP_FILT_MAXSIZ ];
455         char                    *lfd_curval;
456         char                    *lfd_curvalcopy;
457         char                    **lfd_curvalwords;
458         char                    *lfd_filtprefix;
459         char                    *lfd_filtsuffix;
460 } LDAPFiltDesc;
461
462
463 /*
464  * structure representing an ldap session which can
465  * encompass connections to multiple servers (in the
466  * face of referrals).
467  */
468 typedef struct ldap LDAP;
469
470 #define LDAP_DEREF_NEVER        0x00
471 #define LDAP_DEREF_SEARCHING    0x01
472 #define LDAP_DEREF_FINDING      0x02
473 #define LDAP_DEREF_ALWAYS       0x03
474
475 #define LDAP_NO_LIMIT           0
476
477 /* how many messages to retrieve results for */
478 #define LDAP_MSG_ONE            0x00
479 #define LDAP_MSG_ALL            0x01
480 #define LDAP_MSG_RECEIVED       0x02
481
482 /*
483  * structure for ldap friendly mapping routines
484  */
485
486 typedef struct ldap_friendly {
487         char    *lf_unfriendly;
488         char    *lf_friendly;
489 } LDAPFriendlyMap;
490
491 /*
492  * types for ldap URL handling
493  */
494 typedef struct ldap_url_desc {
495     struct ldap_url_desc *lud_next;
496     unsigned long lud_properties;
497     int         lud_protocol;
498     char        *lud_host;
499     int         lud_port;
500     char        *lud_dn;
501     char        **lud_attrs;
502     int         lud_scope;
503     char        *lud_filter;
504     char        **lud_exts;
505 } LDAPURLDesc;
506
507 /* lud_properties */
508 #define LDAP_URL_USE_SSL                0x00000001
509
510 /* lud_protocol */
511 #define LDAP_PROTO_TCP                  0x00
512 #define LDAP_PROTO_UDP                  0x01    
513 #define LDAP_PROTO_LOCAL                0x02
514
515 #define LDAP_URL_SUCCESS                0x00    /* Success */
516 #define LDAP_URL_ERR_MEM                0x01    /* can't allocate memory space */
517 #define LDAP_URL_ERR_PARAM              0x02    /* parameter is bad */
518
519 #define LDAP_URL_ERR_NOTLDAP    0x03    /* URL doesn't begin with "ldap[s]://" */
520 #define LDAP_URL_ERR_BADENCLOSURE 0x04  /* URL is missing trailing ">" */
521 #define LDAP_URL_ERR_BADURL             0x05    /* URL is bad */
522 #define LDAP_URL_ERR_BADHOST    0x06    /* host port is bad */
523 #define LDAP_URL_ERR_BADATTRS   0x07    /* bad (or missing) attributes */
524 #define LDAP_URL_ERR_BADSCOPE   0x08    /* scope string is invalid (or missing) */
525 #define LDAP_URL_ERR_BADFILTER  0x09    /* bad or missing filter */
526 #define LDAP_URL_ERR_BADEXTS    0x0a    /* bad or missing extensions */
527
528 /*
529  * The API draft spec says we should declare (or cause to be declared)
530  * 'struct timeval'.   We don't.  See IETF LDAPext discussions.
531  */
532 struct timeval;
533
534 /*
535  * in options.c:
536  */
537 LIBLDAP_F( int )
538 ldap_get_option LDAP_P((
539         LDAP *ld,
540         int option,
541         void *outvalue));
542
543 LIBLDAP_F( int )
544 ldap_set_option LDAP_P((
545         LDAP *ld,
546         int option,
547         LDAP_CONST void *invalue));
548
549 /* V3 REBIND Function Callback Prototype */
550 typedef int (LDAP_REBIND_PROC) ( LDAP *ld, LDAP_CONST char *url, int request, ber_int_t msgid);
551
552 LIBLDAP_F( int )
553 ldap_set_rebind_proc LDAP_P((
554         LDAP *ld,
555         LDAP_REBIND_PROC *ldap_proc));
556
557 /*
558  * in controls.c:
559  */
560 LIBLDAP_F( void )
561 ldap_control_free LDAP_P((
562         LDAPControl *ctrl ));
563
564 LIBLDAP_F( void )
565 ldap_controls_free LDAP_P((
566         LDAPControl **ctrls ));
567
568 /*
569  * in dnssrv.c:
570  */
571 LIBLDAP_F( int )
572 ldap_domain2dn LDAP_P((
573         LDAP_CONST char* domain,
574         char** dn ));
575
576 LIBLDAP_F( int )
577 ldap_dn2domain LDAP_P((
578         LDAP_CONST char* dn,
579         char** domain ));
580
581 LIBLDAP_F( int )
582 ldap_domain2hostlist LDAP_P((
583         LDAP_CONST char *domain,
584         char** hostlist ));
585
586 /*
587  * in extended.c:
588  */
589 LIBLDAP_F( int )
590 ldap_extended_operation LDAP_P((
591         LDAP                    *ld,
592         LDAP_CONST char *reqoid,
593         struct berval   *reqdata,
594         LDAPControl             **serverctrls,
595         LDAPControl             **clientctrls,
596         int                             *msgidp ));
597
598 LIBLDAP_F( int )
599 ldap_extended_operation_s LDAP_P((
600         LDAP                    *ld,
601         LDAP_CONST char *reqoid,
602         struct berval   *reqdata,
603         LDAPControl             **serverctrls,
604         LDAPControl             **clientctrls,
605         char                    **retoidp,
606         struct berval   **retdatap ));
607
608 LIBLDAP_F( int )
609 ldap_parse_extended_result LDAP_P((
610         LDAP                    *ld,
611         LDAPMessage             *res,
612         char                    **retoidp,
613         struct berval   **retdatap,
614         int                             freeit ));
615
616 /*
617  * in abandon.c:
618  */
619 LIBLDAP_F( int )
620 ldap_abandon LDAP_P((   /* deprecated */
621         LDAP *ld,
622         int msgid ));
623
624 LIBLDAP_F( int )
625 ldap_abandon_ext LDAP_P((
626         LDAP                    *ld,
627         int                             msgid,
628         LDAPControl             **serverctrls,
629         LDAPControl             **clientctrls ));
630
631
632 /*
633  * in add.c:
634  */
635 LIBLDAP_F( int )
636 ldap_add_ext LDAP_P((
637         LDAP                    *ld,
638         LDAP_CONST char *dn,
639         LDAPMod                 **attrs,
640         LDAPControl             **serverctrls,
641         LDAPControl             **clientctrls,
642         int                     *msgidp ));
643
644 LIBLDAP_F( int )
645 ldap_add_ext_s LDAP_P((
646         LDAP                    *ld,
647         LDAP_CONST char *dn,
648         LDAPMod                 **attrs,
649         LDAPControl             **serverctrls,
650         LDAPControl             **clientctrls ));
651
652 LIBLDAP_F( int )
653 ldap_add LDAP_P((       /* deprecated */
654         LDAP *ld,
655         LDAP_CONST char *dn,
656         LDAPMod **attrs ));
657
658 LIBLDAP_F( int )
659 ldap_add_s LDAP_P((     /* deprecated */
660         LDAP *ld,
661         LDAP_CONST char *dn,
662         LDAPMod **attrs ));
663
664
665 /*
666  * in sasl.c:
667  */
668 LIBLDAP_F( int )
669 ldap_sasl_bind LDAP_P((
670         LDAP                    *ld,
671         LDAP_CONST char *dn,
672         LDAP_CONST char *mechanism,
673         struct berval   *cred,
674         LDAPControl             **serverctrls,
675         LDAPControl             **clientctrls,
676         int                             *msgidp ));
677
678 LIBLDAP_F( int )
679 ldap_negotiated_sasl_bind_s LDAP_P((
680         LDAP *ld,
681         LDAP_CONST char *dn, /* usually NULL */
682         LDAP_CONST char *authenticationId, 
683         LDAP_CONST char *authorizationId, /* usually NULL */
684         LDAP_CONST char *saslMechanism,
685         struct berval *passPhrase,
686         LDAPControl **serverControls,
687         LDAPControl **clientControls ));
688
689 LIBLDAP_F( int )
690 ldap_sasl_bind_s LDAP_P((
691         LDAP                    *ld,
692         LDAP_CONST char *dn,
693         LDAP_CONST char *mechanism,
694         struct berval   *cred,
695         LDAPControl             **serverctrls,
696         LDAPControl             **clientctrls,
697         struct berval   **servercredp ));
698
699 LIBLDAP_F( int )
700 ldap_parse_sasl_bind_result LDAP_P((
701         LDAP                    *ld,
702         LDAPMessage             *res,
703         struct berval   **servercredp,
704         int                             freeit ));
705
706 /*
707  * in bind.c:
708  *      (deprecated)
709  */
710 LIBLDAP_F( int )
711 ldap_bind LDAP_P((      /* deprecated */
712         LDAP *ld,
713         LDAP_CONST char *who,
714         LDAP_CONST char *passwd,
715         int authmethod ));
716
717 LIBLDAP_F( int )
718 ldap_bind_s LDAP_P((    /* deprecated */
719         LDAP *ld,
720         LDAP_CONST char *who,
721         LDAP_CONST char *cred,
722         int authmethod ));
723
724 /*
725  * in sbind.c:
726  */
727 LIBLDAP_F( int )
728 ldap_simple_bind LDAP_P((
729         LDAP *ld,
730         LDAP_CONST char *who,
731         LDAP_CONST char *passwd ));
732
733 LIBLDAP_F( int )
734 ldap_simple_bind_s LDAP_P((
735         LDAP *ld,
736         LDAP_CONST char *who,
737         LDAP_CONST char *passwd ));
738
739
740 /*
741  * in kbind.c:
742  *      (deprecated)
743  */
744 LIBLDAP_F( int )
745 ldap_kerberos_bind_s LDAP_P((   /* deprecated */
746         LDAP *ld,
747         LDAP_CONST char *who ));
748
749 LIBLDAP_F( int )
750 ldap_kerberos_bind1 LDAP_P((    /* deprecated */
751         LDAP *ld,
752         LDAP_CONST char *who ));
753
754 LIBLDAP_F( int )
755 ldap_kerberos_bind1_s LDAP_P((  /* deprecated */
756         LDAP *ld,
757         LDAP_CONST char *who ));
758
759 LIBLDAP_F( int )
760 ldap_kerberos_bind2 LDAP_P((    /* deprecated */
761         LDAP *ld,
762         LDAP_CONST char *who ));
763
764 LIBLDAP_F( int )
765 ldap_kerberos_bind2_s LDAP_P((  /* deprecated */
766         LDAP *ld,
767         LDAP_CONST char *who ));
768
769 /*
770  * in cache.c
771  * (deprecated)
772  */
773 LIBLDAP_F( int )
774 ldap_enable_cache LDAP_P(( LDAP *ld, long timeout, ber_len_t maxmem ));
775
776 LIBLDAP_F( void )
777 ldap_disable_cache LDAP_P(( LDAP *ld ));
778
779 LIBLDAP_F( void )
780 ldap_set_cache_options LDAP_P(( LDAP *ld, unsigned long opts ));
781
782 LIBLDAP_F( void )
783 ldap_destroy_cache LDAP_P(( LDAP *ld ));
784
785 LIBLDAP_F( void )
786 ldap_flush_cache LDAP_P(( LDAP *ld ));
787
788 LIBLDAP_F( void )
789 ldap_uncache_entry LDAP_P(( LDAP *ld, LDAP_CONST char *dn ));
790
791 LIBLDAP_F( void )
792 ldap_uncache_request LDAP_P(( LDAP *ld, int msgid ));
793
794
795 /*
796  * in compare.c:
797  */
798 LIBLDAP_F( int )
799 ldap_compare_ext LDAP_P((
800         LDAP                    *ld,
801         LDAP_CONST char *dn,
802         LDAP_CONST char *attr,
803         struct berval   *bvalue,
804         LDAPControl             **serverctrls,
805         LDAPControl             **clientctrls,
806         int                     *msgidp ));
807
808 LIBLDAP_F( int )
809 ldap_compare_ext_s LDAP_P((
810         LDAP                    *ld,
811         LDAP_CONST char *dn,
812         LDAP_CONST char *attr,
813         struct berval   *bvalue,
814         LDAPControl             **serverctrls,
815         LDAPControl             **clientctrls ));
816
817 LIBLDAP_F( int )
818 ldap_compare LDAP_P((   /* deprecated */
819         LDAP *ld,
820         LDAP_CONST char *dn,
821         LDAP_CONST char *attr,
822         LDAP_CONST char *value ));
823
824 LIBLDAP_F( int )
825 ldap_compare_s LDAP_P(( /* deprecated */
826         LDAP *ld,
827         LDAP_CONST char *dn,
828         LDAP_CONST char *attr,
829         LDAP_CONST char *value ));
830
831
832 /*
833  * in delete.c:
834  */
835 LIBLDAP_F( int )
836 ldap_delete_ext LDAP_P((
837         LDAP                    *ld,
838         LDAP_CONST char *dn,
839         LDAPControl             **serverctrls,
840         LDAPControl             **clientctrls,
841         int                     *msgidp ));
842
843 LIBLDAP_F( int )
844 ldap_delete_ext_s LDAP_P((
845         LDAP                    *ld,
846         LDAP_CONST char *dn,
847         LDAPControl             **serverctrls,
848         LDAPControl             **clientctrls ));
849
850 LIBLDAP_F( int )
851 ldap_delete LDAP_P((    /* deprecated */
852         LDAP *ld,
853         LDAP_CONST char *dn ));
854
855 LIBLDAP_F( int )
856 ldap_delete_s LDAP_P((  /* deprecated */
857         LDAP *ld,
858         LDAP_CONST char *dn ));
859
860
861 /*
862  * in error.c:
863  */
864 LIBLDAP_F( int )
865 ldap_parse_result LDAP_P((
866         LDAP                    *ld,
867         LDAPMessage             *res,
868         int                             *errcodep,
869         char                    **matcheddnp,
870         char                    **errmsgp,
871         char                    ***referralsp,
872         LDAPControl             ***serverctrls,
873         int                             freeit ));
874
875 LIBLDAP_F( char *)
876 ldap_err2string LDAP_P((
877         int err ));
878
879 LIBLDAP_F( int )
880 ldap_result2error LDAP_P((      /* deprecated */
881         LDAP *ld,
882         LDAPMessage *r,
883         int freeit ));
884
885 LIBLDAP_F( void )
886 ldap_perror LDAP_P((    /* deprecated */
887         LDAP *ld,
888         LDAP_CONST char *s ));
889
890
891 /*
892  * in modify.c:
893  */
894 LIBLDAP_F( int )
895 ldap_modify_ext LDAP_P((
896         LDAP                    *ld,
897         LDAP_CONST char *dn,
898         LDAPMod                 **mods,
899         LDAPControl             **serverctrls,
900         LDAPControl             **clientctrls,
901         int                     *msgidp ));
902
903 LIBLDAP_F( int )
904 ldap_modify_ext_s LDAP_P((
905         LDAP                    *ld,
906         LDAP_CONST char *dn,
907         LDAPMod                 **mods,
908         LDAPControl             **serverctrls,
909         LDAPControl             **clientctrls ));
910
911 LIBLDAP_F( int )
912 ldap_modify LDAP_P((    /* deprecated */
913         LDAP *ld,
914         LDAP_CONST char *dn,
915         LDAPMod **mods ));
916
917 LIBLDAP_F( int )
918 ldap_modify_s LDAP_P((  /* deprecated */
919         LDAP *ld,
920         LDAP_CONST char *dn,
921         LDAPMod **mods ));
922
923
924 /*
925  * in modrdn.c:
926  */
927 LIBLDAP_F( int )
928 ldap_rename LDAP_P((
929         LDAP *ld,
930         LDAP_CONST char *dn,
931         LDAP_CONST char *newrdn,
932         LDAP_CONST char *newSuperior,
933         int deleteoldrdn,
934         LDAPControl **sctrls,
935         LDAPControl **cctrls,
936         int *msgidp ));
937
938 LIBLDAP_F( int )
939 ldap_rename_s LDAP_P((
940         LDAP *ld,
941         LDAP_CONST char *dn,
942         LDAP_CONST char *newrdn,
943         LDAP_CONST char *newSuperior,
944         int deleteoldrdn,
945         LDAPControl **sctrls,
946         LDAPControl **cctrls ));
947
948 LIBLDAP_F( int )
949 ldap_rename_ext LDAP_P((
950         LDAP                    *ld,
951         LDAP_CONST char *dn,
952         LDAP_CONST char *newrdn,
953         LDAP_CONST char *newparent,
954         int                             deleteoldrdn,
955         LDAPControl             **serverctrls,
956         LDAPControl             **clientctrls,
957         int                     *msgidp ));
958
959 LIBLDAP_F( int )
960 ldap_rename_ext_s LDAP_P((
961         LDAP                    *ld,
962         LDAP_CONST char *dn,
963         LDAP_CONST char *newrdn,
964         LDAP_CONST char *newparent,
965         int                             deleteoldrdn,
966         LDAPControl             **serverctrls,
967         LDAPControl             **clientctrls ));
968
969 LIBLDAP_F( int )
970 ldap_rename2 LDAP_P((   /* deprecated */
971         LDAP *ld,
972         LDAP_CONST char *dn,
973         LDAP_CONST char *newrdn,
974         LDAP_CONST char *newSuperior,
975         int deleteoldrdn ));
976
977 LIBLDAP_F( int )
978 ldap_rename2_s LDAP_P(( /* deprecated */
979         LDAP *ld,
980         LDAP_CONST char *dn,
981         LDAP_CONST char *newrdn,
982         LDAP_CONST char *newSuperior,
983         int deleteoldrdn ));
984
985 LIBLDAP_F( int )
986 ldap_modrdn LDAP_P((    /* deprecated */
987         LDAP *ld,
988         LDAP_CONST char *dn,
989         LDAP_CONST char *newrdn ));
990
991 LIBLDAP_F( int )
992 ldap_modrdn_s LDAP_P((  /* deprecated */
993         LDAP *ld,
994         LDAP_CONST char *dn,
995         LDAP_CONST char *newrdn ));
996
997 LIBLDAP_F( int )
998 ldap_modrdn2 LDAP_P((   /* deprecated */
999         LDAP *ld,
1000         LDAP_CONST char *dn,
1001         LDAP_CONST char *newrdn,
1002         int deleteoldrdn ));
1003
1004 LIBLDAP_F( int )
1005 ldap_modrdn2_s LDAP_P(( /* deprecated */
1006         LDAP *ld,
1007         LDAP_CONST char *dn,
1008         LDAP_CONST char *newrdn,
1009         int deleteoldrdn));
1010
1011
1012 /*
1013  * in open.c:
1014  */
1015 LIBLDAP_F( LDAP *)
1016 ldap_open LDAP_P((      /* deprecated */
1017         LDAP_CONST char *host,
1018         int port ));
1019
1020 LIBLDAP_F( LDAP *)
1021 ldap_init LDAP_P((
1022         LDAP_CONST char *host,
1023         int port ));
1024
1025 LIBLDAP_F( int )
1026 ldap_create LDAP_P(( 
1027         LDAP **ldp ));
1028
1029 LIBLDAP_F( int )
1030 ldap_initialize LDAP_P((
1031         LDAP **ldp,
1032         LDAP_CONST char *url ));
1033
1034 LIBLDAP_F( int )
1035 ldap_start_tls LDAP_P((
1036         LDAP *ld,
1037         LDAPControl **serverctrls,
1038         LDAPControl **clientctrls ));
1039
1040 /*
1041  * in messages.c:
1042  */
1043 LIBLDAP_F( LDAPMessage *)
1044 ldap_first_message LDAP_P((
1045         LDAP *ld,
1046         LDAPMessage *chain ));
1047
1048 LIBLDAP_F( LDAPMessage *)
1049 ldap_next_message LDAP_P((
1050         LDAP *ld,
1051         LDAPMessage *msg ));
1052
1053 LIBLDAP_F( int )
1054 ldap_count_messages LDAP_P((
1055         LDAP *ld,
1056         LDAPMessage *chain ));
1057
1058
1059 /*
1060  * in references.c:
1061  */
1062 LIBLDAP_F( LDAPMessage *)
1063 ldap_first_reference LDAP_P((
1064         LDAP *ld,
1065         LDAPMessage *chain ));
1066
1067 LIBLDAP_F( LDAPMessage *)
1068 ldap_next_reference LDAP_P((
1069         LDAP *ld,
1070         LDAPMessage *ref ));
1071
1072 LIBLDAP_F( int )
1073 ldap_count_references LDAP_P((
1074         LDAP *ld,
1075         LDAPMessage *chain ));
1076
1077 LIBLDAP_F( int )
1078 ldap_parse_reference LDAP_P((
1079         LDAP                    *ld,
1080         LDAPMessage             *ref,
1081         char                    ***referralsp,
1082         LDAPControl             ***serverctrls,
1083         int                             freeit));
1084
1085
1086 /*
1087  * in getentry.c:
1088  */
1089 LIBLDAP_F( LDAPMessage *)
1090 ldap_first_entry LDAP_P((
1091         LDAP *ld,
1092         LDAPMessage *chain ));
1093
1094 LIBLDAP_F( LDAPMessage *)
1095 ldap_next_entry LDAP_P((
1096         LDAP *ld,
1097         LDAPMessage *entry ));
1098
1099 LIBLDAP_F( int )
1100 ldap_count_entries LDAP_P((
1101         LDAP *ld,
1102         LDAPMessage *chain ));
1103
1104 LIBLDAP_F( int )
1105 ldap_get_entry_controls LDAP_P((
1106         LDAP                    *ld,
1107         LDAPMessage             *entry,
1108         LDAPControl             ***serverctrls));
1109
1110
1111 /*
1112  * in addentry.c
1113  */
1114 LIBLDAP_F( LDAPMessage *)
1115 ldap_delete_result_entry LDAP_P((
1116         LDAPMessage **list,
1117         LDAPMessage *e ));
1118
1119 LIBLDAP_F( void )
1120 ldap_add_result_entry LDAP_P((
1121         LDAPMessage **list,
1122         LDAPMessage *e ));
1123
1124
1125 /*
1126  * in getdn.c
1127  */
1128 LIBLDAP_F( char * )
1129 ldap_get_dn LDAP_P((
1130         LDAP *ld,
1131         LDAPMessage *entry ));
1132
1133 LIBLDAP_F( char * )
1134 ldap_dn2ufn LDAP_P((
1135         LDAP_CONST char *dn ));
1136
1137 LIBLDAP_F( char ** )
1138 ldap_explode_dn LDAP_P((
1139         LDAP_CONST char *dn,
1140         int notypes ));
1141
1142 LIBLDAP_F( char ** )
1143 ldap_explode_rdn LDAP_P((
1144         LDAP_CONST char *rdn,
1145         int notypes ));
1146
1147 LIBLDAP_F( char * )
1148 ldap_parent_dn LDAP_P((
1149         LDAP_CONST char *dn ));
1150
1151 LIBLDAP_F( char * )
1152 ldap_relative_dn LDAP_P((
1153         LDAP_CONST char *dn ));
1154
1155 LIBLDAP_F( char * )
1156 ldap_normalize_dn LDAP_P((
1157         LDAP_CONST char *dn ));
1158
1159 LIBLDAP_F( char * )
1160 ldap_dn2dcedn LDAP_P(( LDAP_CONST char *dn ));  /* deprecated */
1161
1162 LIBLDAP_F( char * )
1163 ldap_dcedn2dn LDAP_P(( LDAP_CONST char *dce )); /* deprecated */
1164
1165 /*
1166  * in getattr.c
1167  */
1168 LIBLDAP_F( char *)
1169 ldap_first_attribute LDAP_P((                                                                    
1170         LDAP *ld,
1171         LDAPMessage *entry,
1172         BerElement **ber ));
1173
1174 LIBLDAP_F( char *)
1175 ldap_next_attribute LDAP_P((
1176         LDAP *ld,
1177         LDAPMessage *entry,
1178         BerElement *ber ));
1179
1180
1181 /*
1182  * in getvalues.c
1183  */
1184 LIBLDAP_F( char **)
1185 ldap_get_values LDAP_P((
1186         LDAP *ld,
1187         LDAPMessage *entry,
1188         LDAP_CONST char *target ));
1189
1190 LIBLDAP_F( struct berval **)
1191 ldap_get_values_len LDAP_P((
1192         LDAP *ld,
1193         LDAPMessage *entry,
1194         LDAP_CONST char *target ));
1195
1196 LIBLDAP_F( int )
1197 ldap_count_values LDAP_P((
1198         char **vals ));
1199
1200 LIBLDAP_F( int )
1201 ldap_count_values_len LDAP_P((
1202         struct berval **vals ));
1203
1204 LIBLDAP_F( void )
1205 ldap_value_free LDAP_P((
1206         char **vals ));
1207
1208 LIBLDAP_F( void )
1209 ldap_value_free_len LDAP_P((
1210         struct berval **vals ));
1211
1212 /*
1213  * in result.c:
1214  */
1215 LIBLDAP_F( int )
1216 ldap_result LDAP_P((
1217         LDAP *ld,
1218         int msgid,
1219         int all,
1220         struct timeval *timeout,
1221         LDAPMessage **result ));
1222
1223 LIBLDAP_F( int )
1224 ldap_msgtype LDAP_P((
1225         LDAPMessage *lm ));
1226
1227 LIBLDAP_F( int )
1228 ldap_msgid   LDAP_P((
1229         LDAPMessage *lm ));
1230
1231 LIBLDAP_F( int )
1232 ldap_msgfree LDAP_P((
1233         LDAPMessage *lm ));
1234
1235 LIBLDAP_F( int )
1236 ldap_msgdelete LDAP_P((
1237         LDAP *ld,
1238         int msgid ));
1239
1240
1241 /*
1242  * in search.c:
1243  */
1244 LIBLDAP_F( int )
1245 ldap_search_ext LDAP_P((
1246         LDAP                    *ld,
1247         LDAP_CONST char *base,
1248         int                             scope,
1249         LDAP_CONST char *filter,
1250         char                    **attrs,
1251         int                             attrsonly,
1252         LDAPControl             **serverctrls,
1253         LDAPControl             **clientctrls,
1254         struct timeval  *timeout,
1255         int                             sizelimit,
1256         int                             *msgidp ));
1257
1258 LIBLDAP_F( int )
1259 ldap_search_ext_s LDAP_P((
1260         LDAP                    *ld,
1261         LDAP_CONST char *base,
1262         int                             scope,
1263         LDAP_CONST char *filter,
1264         char                    **attrs,
1265         int                             attrsonly,
1266         LDAPControl             **serverctrls,
1267         LDAPControl             **clientctrls,
1268         struct timeval  *timeout,
1269         int                             sizelimit,
1270         LDAPMessage             **res ));
1271
1272 LIBLDAP_F( int )
1273 ldap_search LDAP_P((    /* deprecated */
1274         LDAP *ld,
1275         LDAP_CONST char *base,
1276         int scope,
1277         LDAP_CONST char *filter,
1278         char **attrs,
1279         int attrsonly ));
1280
1281 LIBLDAP_F( int )
1282 ldap_search_s LDAP_P((  /* deprecated */
1283         LDAP *ld,
1284         LDAP_CONST char *base,
1285         int scope,
1286         LDAP_CONST char *filter,
1287         char **attrs,
1288         int attrsonly,
1289         LDAPMessage **res ));
1290
1291 LIBLDAP_F( int )
1292 ldap_search_st LDAP_P(( /* deprecated */
1293         LDAP *ld,
1294         LDAP_CONST char *base,
1295         int scope,
1296         LDAP_CONST char *filter,
1297     char **attrs,
1298         int attrsonly,
1299         struct timeval *timeout,
1300         LDAPMessage **res ));
1301
1302
1303 /*
1304  * in ufn.c                                                     
1305  *      (deprecated)
1306  */
1307 LIBLDAP_F( int )
1308 ldap_ufn_search_c LDAP_P(( /* deprecated */
1309         LDAP *ld,
1310         LDAP_CONST char *ufn,
1311         char **attrs,
1312         int attrsonly,
1313         LDAPMessage **res,
1314         int (*cancelproc)( void *cl ),
1315         void *cancelparm ));
1316
1317 LIBLDAP_F( int )
1318 ldap_ufn_search_ct LDAP_P(( /* deprecated */
1319         LDAP *ld,
1320         LDAP_CONST char *ufn,
1321         char **attrs,
1322         int attrsonly,
1323         LDAPMessage **res,
1324         int (*cancelproc)( void *cl ),
1325         void *cancelparm,
1326         char *tag1,
1327         char *tag2,
1328         char *tag3 ));
1329
1330 LIBLDAP_F( int )
1331 ldap_ufn_search_s LDAP_P(( /* deprecated */
1332         LDAP *ld,
1333         LDAP_CONST char *ufn,
1334         char **attrs,
1335         int attrsonly,
1336         LDAPMessage **res ));
1337
1338 LIBLDAP_F( LDAPFiltDesc *)
1339 ldap_ufn_setfilter LDAP_P(( /* deprecated */
1340         LDAP *ld,
1341         LDAP_CONST char *fname ));
1342
1343 LIBLDAP_F( void )
1344 ldap_ufn_setprefix LDAP_P(( /* deprecated */
1345         LDAP *ld,
1346         LDAP_CONST char *prefix ));
1347
1348 LIBLDAP_F( int )
1349 ldap_ufn_timeout LDAP_P(( /* deprecated */
1350         void *tvparam ));
1351
1352
1353 /*
1354  * in unbind.c
1355  */
1356 LIBLDAP_F( int )
1357 ldap_unbind LDAP_P(( /* deprecated */
1358         LDAP *ld ));
1359
1360 LIBLDAP_F( int )
1361 ldap_unbind_s LDAP_P(( /* deprecated */
1362         LDAP *ld ));
1363
1364 LIBLDAP_F( int )
1365 ldap_unbind_ext LDAP_P((
1366         LDAP                    *ld,
1367         LDAPControl             **serverctrls,
1368         LDAPControl             **clientctrls));
1369
1370 LIBLDAP_F( int )
1371 ldap_unbind_ext_s LDAP_P((
1372         LDAP                    *ld,
1373         LDAPControl             **serverctrls,
1374         LDAPControl             **clientctrls));
1375
1376 /*
1377  * in getfilter.c
1378  *      (deprecated)
1379  */
1380 LIBLDAP_F( LDAPFiltDesc *)
1381 ldap_init_getfilter LDAP_P(( /* deprecated */
1382         LDAP_CONST char *fname ));
1383
1384 LIBLDAP_F( LDAPFiltDesc *)
1385 ldap_init_getfilter_buf LDAP_P(( /* deprecated */
1386         /* LDAP_CONST */ char *buf,
1387         ber_len_t buflen ));
1388
1389 LIBLDAP_F( LDAPFiltInfo *)
1390 ldap_getfirstfilter LDAP_P(( /* deprecated */
1391         LDAPFiltDesc *lfdp,
1392         /* LDAP_CONST */ char *tagpat,
1393         /* LDAP_CONST */ char *value ));
1394
1395 LIBLDAP_F( LDAPFiltInfo *)
1396 ldap_getnextfilter LDAP_P(( /* deprecated */
1397         LDAPFiltDesc *lfdp ));
1398
1399 LIBLDAP_F( void )
1400 ldap_setfilteraffixes LDAP_P(( /* deprecated */
1401         LDAPFiltDesc *lfdp,
1402         LDAP_CONST char *prefix,
1403         LDAP_CONST char *suffix ));
1404
1405 LIBLDAP_F( void )
1406 ldap_build_filter LDAP_P(( /* deprecated */
1407         char *buf,
1408         ber_len_t buflen,
1409         LDAP_CONST char *pattern,
1410         LDAP_CONST char *prefix,
1411         LDAP_CONST char *suffix,
1412         LDAP_CONST char *attr,
1413         LDAP_CONST char *value,
1414         char **valwords ));
1415
1416
1417 /*
1418  * in free.c
1419  */
1420
1421 LIBLDAP_F( void * )
1422 ldap_memalloc LDAP_P((
1423         ber_len_t s ));
1424
1425 LIBLDAP_F( void * )
1426 ldap_memrealloc LDAP_P((
1427         void* p,
1428         ber_len_t s ));
1429
1430 LIBLDAP_F( void * )
1431 ldap_memcalloc LDAP_P((
1432         ber_len_t n,
1433         ber_len_t s ));
1434
1435 LIBLDAP_F( void )
1436 ldap_memfree LDAP_P((
1437         void* p ));
1438
1439 LIBLDAP_F( void )
1440 ldap_memvfree LDAP_P((
1441         void** v ));
1442
1443 LIBLDAP_F( char * )
1444 ldap_strdup LDAP_P((
1445         LDAP_CONST char * ));
1446
1447 LIBLDAP_F( void )
1448 ldap_getfilter_free LDAP_P((
1449         LDAPFiltDesc *lfdp ));
1450
1451 LIBLDAP_F( void )
1452 ldap_mods_free LDAP_P((
1453         LDAPMod **mods,
1454         int freemods ));
1455
1456
1457 /*
1458  * in friendly.c
1459  *      (deprecated)
1460  */
1461 LIBLDAP_F( char * )
1462 ldap_friendly_name LDAP_P(( /* deprecated */
1463         LDAP_CONST char *filename,
1464         /* LDAP_CONST */ char *uname,
1465         LDAPFriendlyMap **map ));
1466
1467 LIBLDAP_F( void )
1468 ldap_free_friendlymap LDAP_P(( /* deprecated */
1469         LDAPFriendlyMap **map ));
1470
1471
1472 /*
1473  * in cldap.c
1474  *      (deprecated)
1475  */
1476 LIBLDAP_F( LDAP * )
1477 cldap_open LDAP_P((     /* deprecated */
1478         LDAP_CONST char *host,
1479         int port ));
1480
1481 LIBLDAP_F( void )
1482 cldap_close LDAP_P((    /* deprecated */
1483         LDAP *ld ));
1484
1485 LIBLDAP_F( int )
1486 cldap_search_s LDAP_P(( /* deprecated */
1487         LDAP *ld,
1488         LDAP_CONST char *base,
1489         int scope,
1490         LDAP_CONST char *filter,
1491         char **attrs,
1492         int attrsonly,
1493         LDAPMessage **res,
1494         char *logdn ));
1495
1496 LIBLDAP_F( void )
1497 cldap_setretryinfo LDAP_P(( /* deprecated */
1498         LDAP *ld,
1499         int tries,
1500         int timeout ));
1501
1502
1503 /*
1504  * in sort.c
1505  */
1506 LIBLDAP_F( int )
1507 ldap_sort_entries LDAP_P(( LDAP *ld,
1508         LDAPMessage **chain,
1509         LDAP_CONST char *attr,
1510         int (*cmp) (LDAP_CONST char *, LDAP_CONST char *) ));
1511
1512 LIBLDAP_F( int )
1513 ldap_sort_values LDAP_P((
1514         LDAP *ld,
1515         char **vals,
1516         int (*cmp) (LDAP_CONST void *, LDAP_CONST void *) ));
1517
1518 LIBLDAP_F( int )
1519 ldap_sort_strcasecmp LDAP_P((
1520         LDAP_CONST void *a,
1521         LDAP_CONST void *b ));
1522
1523
1524 /*
1525  * in url.c
1526  *
1527  * need _ext varients
1528  */
1529 LIBLDAP_F( int )
1530 ldap_is_ldap_url LDAP_P((
1531         LDAP_CONST char *url ));
1532
1533 LIBLDAP_F( int )
1534 ldap_is_ldaps_url LDAP_P((
1535         LDAP_CONST char *url ));
1536
1537 LIBLDAP_F( int )
1538 ldap_url_parse LDAP_P((
1539         LDAP_CONST char *url,
1540         LDAPURLDesc **ludpp ));
1541
1542 LIBLDAP_F( void )
1543 ldap_free_urldesc LDAP_P((
1544         LDAPURLDesc *ludp ));
1545
1546 LIBLDAP_F( int )
1547 ldap_url_search LDAP_P((
1548         LDAP *ld,
1549         LDAP_CONST char *url,
1550         int attrsonly ));
1551
1552 LIBLDAP_F( int )
1553 ldap_url_search_s LDAP_P((
1554         LDAP *ld,
1555         LDAP_CONST char *url,
1556         int attrsonly,
1557         LDAPMessage **res ));
1558
1559 LIBLDAP_F( int )
1560 ldap_url_search_st LDAP_P((
1561         LDAP *ld,
1562         LDAP_CONST char *url,
1563         int attrsonly,
1564         struct timeval *timeout,
1565         LDAPMessage **res ));
1566
1567 LDAP_END_DECL
1568
1569 #endif /* _LDAP_H */