]> git.sur5r.net Git - openldap/blob - include/ldap.h
8dc109bbb9a0f15baea93e302b3e6566eb44c123
[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
177 #define LDAP_CONTROL_SORTREQUEST    "1.2.840.113556.1.4.473"
178 #define LDAP_CONTROL_SORTRESPONSE       "1.2.840.113556.1.4.474"
179 #define LDAP_CONTROL_VLVREQUEST         "2.16.840.1.113730.3.4.9"
180 #define LDAP_CONTROL_VLVRESPONSE    "2.16.840.1.113730.3.4.10"
181
182 /* LDAP Unsolicited Notifications */
183 #define LDAP_NOTICE_OF_DISCONNECTION    "1.3.6.1.4.1.1466.20036"
184 #define LDAP_NOTICE_DISCONNECT LDAP_NOTICE_OF_DISCONNECTION
185
186 /* LDAP Extended Operations */
187 #define LDAP_EXOP_START_TLS "1.3.6.1.4.1.1466.20037"
188
189 #define LDAP_EXOP_X_MODIFY_PASSWD "1.3.6.1.4.1.4203.666.6.1"
190 #define LDAP_TAG_EXOP_X_MODIFY_PASSWD_ID        ((ber_tag_t) 0x80U)
191 #define LDAP_TAG_EXOP_X_MODIFY_PASSWD_OLD       ((ber_tag_t) 0x81U)
192 #define LDAP_TAG_EXOP_X_MODIFY_PASSWD_NEW       ((ber_tag_t) 0x82U)
193 #define LDAP_TAG_EXOP_X_MODIFY_PASSWD_GEN       ((ber_tag_t) 0x80U)
194
195 /* 
196  * specific LDAP instantiations of BER types we know about
197  */
198
199 /* Overview of LBER tag construction
200  *
201  *      Bits
202  *      ______
203  *      8 7 | CLASS
204  *      0 0 = UNIVERSAL
205  *      0 1 = APPLICATION
206  *      1 0 = CONTEXT-SPECIFIC
207  *      1 1 = PRIVATE
208  *              _____
209  *              | 6 | DATA-TYPE
210  *                0 = PRIMITIVE
211  *                1 = CONSTRUCTED
212  *                      ___________
213  *                      | 5 ... 1 | TAG-NUMBER
214  */
215
216 /* general stuff */
217 #define LDAP_TAG_MESSAGE        ((ber_tag_t) 0x30U)     /* constructed + 16 */
218 #define LDAP_TAG_MSGID          ((ber_tag_t) 0x02U)     /* integer */
219 #define LDAP_TAG_LDAPDN         ((ber_tag_t) 0x04U)     /* octect string */
220 #define LDAP_TAG_LDAPCRED       ((ber_tag_t) 0x04U)     /* octect string */
221 #define LDAP_TAG_CONTROLS       ((ber_tag_t) 0xa0U)     /* context specific + constructed + 0 */
222 #define LDAP_TAG_REFERRAL       ((ber_tag_t) 0xa3U)     /* context specific + constructed + 3 */
223
224 #define LDAP_TAG_NEWSUPERIOR    ((ber_tag_t) 0x80U)     /* context-specific + primitive + 0 */
225
226 #define LDAP_TAG_EXOP_REQ_OID   ((ber_tag_t) 0x80U)     /* context specific + primitive */
227 #define LDAP_TAG_EXOP_REQ_VALUE ((ber_tag_t) 0x81U)     /* context specific + primitive */
228 #define LDAP_TAG_EXOP_RES_OID   ((ber_tag_t) 0x8aU)     /* context specific + primitive */
229 #define LDAP_TAG_EXOP_RES_VALUE ((ber_tag_t) 0x8bU)     /* context specific + primitive */
230
231 #define LDAP_TAG_SASL_RES_CREDS ((ber_tag_t) 0x87U)     /* context specific + primitive */
232
233
234 /* possible operations a client can invoke */
235 #define LDAP_REQ_BIND                   ((ber_tag_t) 0x60U)     /* application + constructed */
236 #define LDAP_REQ_UNBIND                 ((ber_tag_t) 0x42U)     /* application + primitive   */
237 #define LDAP_REQ_SEARCH                 ((ber_tag_t) 0x63U)     /* application + constructed */
238 #define LDAP_REQ_MODIFY                 ((ber_tag_t) 0x66U)     /* application + constructed */
239 #define LDAP_REQ_ADD                    ((ber_tag_t) 0x68U)     /* application + constructed */
240 #define LDAP_REQ_DELETE                 ((ber_tag_t) 0x4aU)     /* application + primitive   */
241 #define LDAP_REQ_MODRDN                 ((ber_tag_t) 0x6cU)     /* application + constructed */
242 #define LDAP_REQ_MODDN                  LDAP_REQ_MODRDN 
243 #define LDAP_REQ_RENAME                 LDAP_REQ_MODRDN 
244 #define LDAP_REQ_COMPARE                ((ber_tag_t) 0x6eU)     /* application + constructed */
245 #define LDAP_REQ_ABANDON                ((ber_tag_t) 0x50U)     /* application + primitive   */
246 #define LDAP_REQ_EXTENDED               ((ber_tag_t) 0x77U)     /* application + constructed */
247
248 /* possible result types a server can return */
249 #define LDAP_RES_BIND                   ((ber_tag_t) 0x61U)     /* application + constructed */
250 #define LDAP_RES_SEARCH_ENTRY           ((ber_tag_t) 0x64U)     /* application + constructed */
251 #define LDAP_RES_SEARCH_REFERENCE       ((ber_tag_t) 0x73U)     /* V3: application + constructed */
252 #define LDAP_RES_SEARCH_RESULT          ((ber_tag_t) 0x65U)     /* application + constructed */
253 #define LDAP_RES_MODIFY                 ((ber_tag_t) 0x67U)     /* application + constructed */
254 #define LDAP_RES_ADD                    ((ber_tag_t) 0x69U)     /* application + constructed */
255 #define LDAP_RES_DELETE                 ((ber_tag_t) 0x6bU)     /* application + constructed */
256 #define LDAP_RES_MODRDN                 ((ber_tag_t) 0x6dU)     /* application + constructed */
257 #define LDAP_RES_MODDN                  LDAP_RES_MODRDN /* application + constructed */
258 #define LDAP_RES_RENAME                 LDAP_RES_MODRDN /* application + constructed */
259 #define LDAP_RES_COMPARE                ((ber_tag_t) 0x6fU)     /* application + constructed */
260 #define LDAP_RES_EXTENDED               ((ber_tag_t) 0x78U)     /* V3: application + constructed */
261 #define LDAP_RES_EXTENDED_PARTIAL       ((ber_tag_t) 0x79U)     /* V3+: application + constructed */
262
263 #define LDAP_RES_ANY                    ((ber_tag_t)(-1))
264 #define LDAP_RES_UNSOLICITED    ((ber_tag_t)(0))
265
266
267 /* sasl methods */
268 #define LDAP_SASL_SIMPLE                        NULL
269
270 /* authentication methods available */
271 #define LDAP_AUTH_NONE          ((ber_tag_t) 0x00U)     /* no authentication              */
272 #define LDAP_AUTH_SIMPLE        ((ber_tag_t) 0x80U)     /* context specific + primitive   */
273 #define LDAP_AUTH_SASL          ((ber_tag_t) 0xa3U)     /* context specific + primitive   */
274 #define LDAP_AUTH_KRBV4         ((ber_tag_t) 0xffU)     /* means do both of the following */
275 #define LDAP_AUTH_KRBV41        ((ber_tag_t) 0x81U)     /* context specific + primitive   */
276 #define LDAP_AUTH_KRBV42        ((ber_tag_t) 0x82U)     /* context specific + primitive   */
277
278
279 /* filter types */
280 #define LDAP_FILTER_AND         ((ber_tag_t) 0xa0U)     /* context specific + constructed */
281 #define LDAP_FILTER_OR          ((ber_tag_t) 0xa1U)     /* context specific + constructed */
282 #define LDAP_FILTER_NOT         ((ber_tag_t) 0xa2U)     /* context specific + constructed */
283 #define LDAP_FILTER_EQUALITY    ((ber_tag_t) 0xa3U)     /* context specific + constructed */
284 #define LDAP_FILTER_SUBSTRINGS  ((ber_tag_t) 0xa4U)     /* context specific + constructed */
285 #define LDAP_FILTER_GE          ((ber_tag_t) 0xa5U)     /* context specific + constructed */
286 #define LDAP_FILTER_LE          ((ber_tag_t) 0xa6U)     /* context specific + constructed */
287 #define LDAP_FILTER_PRESENT     ((ber_tag_t) 0x87U)     /* context specific + primitive   */
288 #define LDAP_FILTER_APPROX      ((ber_tag_t) 0xa8U)     /* context specific + constructed */
289 #define LDAP_FILTER_EXT         ((ber_tag_t) 0xa9U)     /* context specific + constructed */
290
291 /* extended filter component types */
292 #define LDAP_FILTER_EXT_OID     ((ber_tag_t) 0x81U)     /* context specific */
293 #define LDAP_FILTER_EXT_TYPE    ((ber_tag_t) 0x82U)     /* context specific */
294 #define LDAP_FILTER_EXT_VALUE   ((ber_tag_t) 0x83U)     /* context specific */
295 #define LDAP_FILTER_EXT_DNATTRS ((ber_tag_t) 0x84U)     /* context specific */
296
297 /* substring filter component types */
298 #define LDAP_SUBSTRING_INITIAL  ((ber_tag_t) 0x80U)     /* context specific */
299 #define LDAP_SUBSTRING_ANY      ((ber_tag_t) 0x81U)     /* context specific */
300 #define LDAP_SUBSTRING_FINAL    ((ber_tag_t) 0x82U)     /* context specific */
301
302 /* search scopes */
303 #define LDAP_SCOPE_BASE         ((ber_int_t) 0x0000)
304 #define LDAP_SCOPE_ONELEVEL     ((ber_int_t) 0x0001)
305 #define LDAP_SCOPE_SUBTREE      ((ber_int_t) 0x0002)
306
307 /* substring filter component types */
308 #define LDAP_SUBSTRING_INITIAL  ((ber_tag_t) 0x80U)     /* context specific */
309 #define LDAP_SUBSTRING_ANY      ((ber_tag_t) 0x81U)     /* context specific */
310 #define LDAP_SUBSTRING_FINAL    ((ber_tag_t) 0x82U)     /* context specific */
311
312 /* 
313  * possible error codes we can return
314  */
315
316 #define LDAP_RANGE(n,x,y)       (((x) <= (n)) && ((n) <= (y)))
317
318 #define LDAP_SUCCESS                    0x00
319 #define LDAP_OPERATIONS_ERROR           0x01
320 #define LDAP_PROTOCOL_ERROR             0x02
321 #define LDAP_TIMELIMIT_EXCEEDED         0x03
322 #define LDAP_SIZELIMIT_EXCEEDED         0x04
323 #define LDAP_COMPARE_FALSE              0x05
324 #define LDAP_COMPARE_TRUE               0x06
325 #define LDAP_AUTH_METHOD_NOT_SUPPORTED  0x07
326 #define LDAP_STRONG_AUTH_NOT_SUPPORTED  LDAP_AUTH_METHOD_NOT_SUPPORTED
327 #define LDAP_STRONG_AUTH_REQUIRED       0x08
328 #define LDAP_PARTIAL_RESULTS            0x09    /* not listed in v3 */
329
330 #define LDAP_REFERRAL                           0x0a /* LDAPv3 */
331 #define LDAP_ADMINLIMIT_EXCEEDED        0x0b /* LDAPv3 */
332 #define LDAP_UNAVAILABLE_CRITICAL_EXTENSION     0x0c /* LDAPv3 */
333 #define LDAP_CONFIDENTIALITY_REQUIRED   0x0d /* LDAPv3 */
334 #define LDAP_SASL_BIND_IN_PROGRESS      0x0e /* LDAPv3 */       
335
336 #define LDAP_ATTR_ERROR(n)      LDAP_RANGE((n),0x10,0x15) /* 16-21 */
337
338 #define LDAP_NO_SUCH_ATTRIBUTE          0x10
339 #define LDAP_UNDEFINED_TYPE             0x11
340 #define LDAP_INAPPROPRIATE_MATCHING     0x12
341 #define LDAP_CONSTRAINT_VIOLATION       0x13
342 #define LDAP_TYPE_OR_VALUE_EXISTS       0x14
343 #define LDAP_INVALID_SYNTAX             0x15
344
345 #define LDAP_NAME_ERROR(n)      LDAP_RANGE((n),0x20,0x24) /* 32-34,36 */
346
347 #define LDAP_NO_SUCH_OBJECT             0x20
348 #define LDAP_ALIAS_PROBLEM              0x21
349 #define LDAP_INVALID_DN_SYNTAX          0x22
350 #define LDAP_IS_LEAF                    0x23 /* not LDAPv3 */
351 #define LDAP_ALIAS_DEREF_PROBLEM        0x24
352
353 #define LDAP_SECURITY_ERROR(n)  LDAP_RANGE((n),0x30,0x32) /* 48-50 */
354
355 #define LDAP_INAPPROPRIATE_AUTH         0x30
356 #define LDAP_INVALID_CREDENTIALS        0x31
357 #define LDAP_INSUFFICIENT_ACCESS        0x32
358
359 #define LDAP_SERVICE_ERROR(n)   LDAP_RANGE((n),0x33,0x36) /* 51-54 */
360
361 #define LDAP_BUSY                       0x33
362 #define LDAP_UNAVAILABLE                0x34
363 #define LDAP_UNWILLING_TO_PERFORM       0x35
364 #define LDAP_LOOP_DETECT                0x36
365
366 #define LDAP_UPDATE_ERROR(n)    LDAP_RANGE((n),0x40,0x47) /* 64-69,71 */
367
368 #define LDAP_NAMING_VIOLATION           0x40
369 #define LDAP_OBJECT_CLASS_VIOLATION     0x41
370 #define LDAP_NOT_ALLOWED_ON_NONLEAF     0x42
371 #define LDAP_NOT_ALLOWED_ON_RDN         0x43
372 #define LDAP_ALREADY_EXISTS             0x44
373 #define LDAP_NO_OBJECT_CLASS_MODS       0x45
374 #define LDAP_RESULTS_TOO_LARGE          0x46 /* CLDAP */
375 #define LDAP_AFFECTS_MULTIPLE_DSAS      0x47 /* LDAPv3 */
376
377 #define LDAP_OTHER                      0x50
378
379 #define LDAP_API_ERROR(n)               LDAP_RANGE((n),0x51,0x61) /* 81-97 */
380
381 #define LDAP_SERVER_DOWN                0x51
382 #define LDAP_LOCAL_ERROR                0x52
383 #define LDAP_ENCODING_ERROR             0x53
384 #define LDAP_DECODING_ERROR             0x54
385 #define LDAP_TIMEOUT                    0x55
386 #define LDAP_AUTH_UNKNOWN               0x56
387 #define LDAP_FILTER_ERROR               0x57
388 #define LDAP_USER_CANCELLED             0x58
389 #define LDAP_PARAM_ERROR                0x59
390 #define LDAP_NO_MEMORY                  0x5a
391
392 /* not technically reserved for APIs */
393 #define LDAP_CONNECT_ERROR                              0x5b    /* draft-ietf-ldap-c-api-xx */
394 #define LDAP_NOT_SUPPORTED                              0x5c    /* draft-ietf-ldap-c-api-xx */
395 #define LDAP_CONTROL_NOT_FOUND                  0x5d    /* draft-ietf-ldap-c-api-xx */
396 #define LDAP_NO_RESULTS_RETURNED                0x5e    /* draft-ietf-ldap-c-api-xx */
397 #define LDAP_MORE_RESULTS_TO_RETURN             0x5f    /* draft-ietf-ldap-c-api-xx */
398 #define LDAP_CLIENT_LOOP                                0x60    /* draft-ietf-ldap-c-api-xx */
399 #define LDAP_REFERRAL_LIMIT_EXCEEDED    0x61    /* draft-ietf-ldap-c-api-xx */
400
401 /*
402  * This structure represents both ldap messages and ldap responses.
403  * These are really the same, except in the case of search responses,
404  * where a response has multiple messages.
405  */
406
407 typedef struct ldapmsg LDAPMessage;
408
409 /* for modifications */
410 typedef struct ldapmod {
411         int             mod_op;
412
413 #define LDAP_MOD_ADD            ((ber_int_t) 0x0000)
414 #define LDAP_MOD_DELETE         ((ber_int_t) 0x0001)
415 #define LDAP_MOD_REPLACE        ((ber_int_t) 0x0002)
416 #define LDAP_MOD_BVALUES        ((ber_int_t) 0x0080)
417 /* IMPORTANT: do not use code 0x1000 (or above),
418  * it is used internally by the backends!
419  * (see ldap/servers/slapd/slap.h)
420  */
421
422         char            *mod_type;
423         union mod_vals_u {
424                 char            **modv_strvals;
425                 struct berval   **modv_bvals;
426         } mod_vals;
427 #define mod_values      mod_vals.modv_strvals
428 #define mod_bvalues     mod_vals.modv_bvals
429 } LDAPMod;
430
431 /*
432  * structures for ldap getfilter routines
433  */
434
435 typedef struct ldap_filt_info {
436         char                    *lfi_filter;
437         char                    *lfi_desc;
438         int                     lfi_scope;
439         int                     lfi_isexact;
440         struct ldap_filt_info   *lfi_next;
441 } LDAPFiltInfo;
442
443 typedef struct ldap_filt_list {
444     char                        *lfl_tag;
445     char                        *lfl_pattern;
446     char                        *lfl_delims;
447     LDAPFiltInfo                *lfl_ilist;
448     struct ldap_filt_list       *lfl_next;
449 } LDAPFiltList;
450
451
452 #define LDAP_FILT_MAXSIZ        1024
453
454 typedef struct ldap_filt_desc {
455         LDAPFiltList            *lfd_filtlist;
456         LDAPFiltInfo            *lfd_curfip;
457         LDAPFiltInfo            lfd_retfi;
458         char                    lfd_filter[ LDAP_FILT_MAXSIZ ];
459         char                    *lfd_curval;
460         char                    *lfd_curvalcopy;
461         char                    **lfd_curvalwords;
462         char                    *lfd_filtprefix;
463         char                    *lfd_filtsuffix;
464 } LDAPFiltDesc;
465
466
467 /*
468  * structure representing an ldap session which can
469  * encompass connections to multiple servers (in the
470  * face of referrals).
471  */
472 typedef struct ldap LDAP;
473
474 #define LDAP_DEREF_NEVER        0x00
475 #define LDAP_DEREF_SEARCHING    0x01
476 #define LDAP_DEREF_FINDING      0x02
477 #define LDAP_DEREF_ALWAYS       0x03
478
479 #define LDAP_NO_LIMIT           0
480
481 /* how many messages to retrieve results for */
482 #define LDAP_MSG_ONE            0x00
483 #define LDAP_MSG_ALL            0x01
484 #define LDAP_MSG_RECEIVED       0x02
485
486 /*
487  * structure for ldap friendly mapping routines
488  */
489
490 typedef struct ldap_friendly {
491         char    *lf_unfriendly;
492         char    *lf_friendly;
493 } LDAPFriendlyMap;
494
495 /*
496  * types for ldap URL handling
497  */
498 typedef struct ldap_url_desc {
499     struct ldap_url_desc *lud_next;
500     char        *lud_scheme;
501     char        *lud_host;
502     int         lud_port;
503     char        *lud_dn;
504     char        **lud_attrs;
505     int         lud_scope;
506     char        *lud_filter;
507     char        **lud_exts;
508 } LDAPURLDesc;
509
510 #define LDAP_URL_SUCCESS                0x00    /* Success */
511 #define LDAP_URL_ERR_MEM                0x01    /* can't allocate memory space */
512 #define LDAP_URL_ERR_PARAM              0x02    /* parameter is bad */
513
514 #define LDAP_URL_ERR_BADSCHEME  0x03    /* URL doesn't begin with "ldap[si]://" */
515 #define LDAP_URL_ERR_BADENCLOSURE 0x04  /* URL is missing trailing ">" */
516 #define LDAP_URL_ERR_BADURL             0x05    /* URL is bad */
517 #define LDAP_URL_ERR_BADHOST    0x06    /* host port is bad */
518 #define LDAP_URL_ERR_BADATTRS   0x07    /* bad (or missing) attributes */
519 #define LDAP_URL_ERR_BADSCOPE   0x08    /* scope string is invalid (or missing) */
520 #define LDAP_URL_ERR_BADFILTER  0x09    /* bad or missing filter */
521 #define LDAP_URL_ERR_BADEXTS    0x0a    /* bad or missing extensions */
522
523 /*
524  * The API draft spec says we should declare (or cause to be declared)
525  * 'struct timeval'.   We don't.  See IETF LDAPext discussions.
526  */
527 struct timeval;
528
529 /*
530  * in options.c:
531  */
532 LDAP_F( int )
533 ldap_get_option LDAP_P((
534         LDAP *ld,
535         int option,
536         void *outvalue));
537
538 LDAP_F( int )
539 ldap_set_option LDAP_P((
540         LDAP *ld,
541         int option,
542         LDAP_CONST void *invalue));
543
544 /* V3 REBIND Function Callback Prototype */
545 typedef int (LDAP_REBIND_PROC) LDAP_P((
546         LDAP *ld, LDAP_CONST char *url, int request, ber_int_t msgid ));
547
548 LDAP_F( int )
549 ldap_set_rebind_proc LDAP_P((
550         LDAP *ld,
551         LDAP_REBIND_PROC *ldap_proc));
552
553 /*
554  * in controls.c:
555  */
556 LDAP_F( void )
557 ldap_control_free LDAP_P((
558         LDAPControl *ctrl ));
559
560 LDAP_F( void )
561 ldap_controls_free LDAP_P((
562         LDAPControl **ctrls ));
563
564 /*
565  * in dnssrv.c:
566  */
567 LDAP_F( int )
568 ldap_domain2dn LDAP_P((
569         LDAP_CONST char* domain,
570         char** dn ));
571
572 LDAP_F( int )
573 ldap_dn2domain LDAP_P((
574         LDAP_CONST char* dn,
575         char** domain ));
576
577 LDAP_F( int )
578 ldap_domain2hostlist LDAP_P((
579         LDAP_CONST char *domain,
580         char** hostlist ));
581
582 /*
583  * in extended.c:
584  */
585 LDAP_F( int )
586 ldap_extended_operation LDAP_P((
587         LDAP                    *ld,
588         LDAP_CONST char *reqoid,
589         struct berval   *reqdata,
590         LDAPControl             **serverctrls,
591         LDAPControl             **clientctrls,
592         int                             *msgidp ));
593
594 LDAP_F( int )
595 ldap_extended_operation_s LDAP_P((
596         LDAP                    *ld,
597         LDAP_CONST char *reqoid,
598         struct berval   *reqdata,
599         LDAPControl             **serverctrls,
600         LDAPControl             **clientctrls,
601         char                    **retoidp,
602         struct berval   **retdatap ));
603
604 LDAP_F( int )
605 ldap_parse_extended_result LDAP_P((
606         LDAP                    *ld,
607         LDAPMessage             *res,
608         char                    **retoidp,
609         struct berval   **retdatap,
610         int                             freeit ));
611
612 /*
613  * in abandon.c:
614  */
615 LDAP_F( int )
616 ldap_abandon_ext LDAP_P((
617         LDAP                    *ld,
618         int                             msgid,
619         LDAPControl             **serverctrls,
620         LDAPControl             **clientctrls ));
621
622 LDAP_F( int )
623 ldap_abandon LDAP_P((   /* deprecated */
624         LDAP *ld,
625         int msgid ));
626
627
628 /*
629  * in add.c:
630  */
631 LDAP_F( int )
632 ldap_add_ext LDAP_P((
633         LDAP                    *ld,
634         LDAP_CONST char *dn,
635         LDAPMod                 **attrs,
636         LDAPControl             **serverctrls,
637         LDAPControl             **clientctrls,
638         int                     *msgidp ));
639
640 LDAP_F( int )
641 ldap_add_ext_s LDAP_P((
642         LDAP                    *ld,
643         LDAP_CONST char *dn,
644         LDAPMod                 **attrs,
645         LDAPControl             **serverctrls,
646         LDAPControl             **clientctrls ));
647
648 LDAP_F( int )
649 ldap_add LDAP_P((       /* deprecated */
650         LDAP *ld,
651         LDAP_CONST char *dn,
652         LDAPMod **attrs ));
653
654 LDAP_F( int )
655 ldap_add_s LDAP_P((     /* deprecated */
656         LDAP *ld,
657         LDAP_CONST char *dn,
658         LDAPMod **attrs ));
659
660
661 /*
662  * in sasl.c:
663  */
664 LDAP_F( int )
665 ldap_sasl_bind LDAP_P((
666         LDAP                    *ld,
667         LDAP_CONST char *dn,
668         LDAP_CONST char *mechanism,
669         struct berval   *cred,
670         LDAPControl             **serverctrls,
671         LDAPControl             **clientctrls,
672         int                             *msgidp ));
673
674 LDAP_F( int )
675 ldap_negotiated_sasl_bind_s LDAP_P((
676         LDAP *ld,
677         LDAP_CONST char *dn, /* usually NULL */
678         LDAP_CONST char *authenticationId, 
679         LDAP_CONST char *authorizationId, /* usually NULL */
680         LDAP_CONST char *saslMechanism,
681         struct berval *passPhrase,
682         LDAPControl **serverControls,
683         LDAPControl **clientControls ));
684
685 LDAP_F( int )
686 ldap_sasl_bind_s LDAP_P((
687         LDAP                    *ld,
688         LDAP_CONST char *dn,
689         LDAP_CONST char *mechanism,
690         struct berval   *cred,
691         LDAPControl             **serverctrls,
692         LDAPControl             **clientctrls,
693         struct berval   **servercredp ));
694
695 LDAP_F( int )
696 ldap_parse_sasl_bind_result LDAP_P((
697         LDAP                    *ld,
698         LDAPMessage             *res,
699         struct berval   **servercredp,
700         int                             freeit ));
701
702 /*
703  * in bind.c:
704  *      (deprecated)
705  */
706 LDAP_F( int )
707 ldap_bind LDAP_P((      /* deprecated */
708         LDAP *ld,
709         LDAP_CONST char *who,
710         LDAP_CONST char *passwd,
711         int authmethod ));
712
713 LDAP_F( int )
714 ldap_bind_s LDAP_P((    /* deprecated */
715         LDAP *ld,
716         LDAP_CONST char *who,
717         LDAP_CONST char *cred,
718         int authmethod ));
719
720 /*
721  * in sbind.c:
722  */
723 LDAP_F( int )
724 ldap_simple_bind LDAP_P((
725         LDAP *ld,
726         LDAP_CONST char *who,
727         LDAP_CONST char *passwd ));
728
729 LDAP_F( int )
730 ldap_simple_bind_s LDAP_P((
731         LDAP *ld,
732         LDAP_CONST char *who,
733         LDAP_CONST char *passwd ));
734
735
736 /*
737  * in kbind.c:
738  *      (deprecated)
739  */
740 LDAP_F( int )
741 ldap_kerberos_bind_s LDAP_P((   /* deprecated */
742         LDAP *ld,
743         LDAP_CONST char *who ));
744
745 LDAP_F( int )
746 ldap_kerberos_bind1 LDAP_P((    /* deprecated */
747         LDAP *ld,
748         LDAP_CONST char *who ));
749
750 LDAP_F( int )
751 ldap_kerberos_bind1_s LDAP_P((  /* deprecated */
752         LDAP *ld,
753         LDAP_CONST char *who ));
754
755 LDAP_F( int )
756 ldap_kerberos_bind2 LDAP_P((    /* deprecated */
757         LDAP *ld,
758         LDAP_CONST char *who ));
759
760 LDAP_F( int )
761 ldap_kerberos_bind2_s LDAP_P((  /* deprecated */
762         LDAP *ld,
763         LDAP_CONST char *who ));
764
765 /*
766  * in cache.c
767  * (deprecated)
768  */
769 LDAP_F( int )
770 ldap_enable_cache LDAP_P(( LDAP *ld, long timeout, ber_len_t maxmem ));
771
772 LDAP_F( void )
773 ldap_disable_cache LDAP_P(( LDAP *ld ));
774
775 LDAP_F( void )
776 ldap_set_cache_options LDAP_P(( LDAP *ld, unsigned long opts ));
777
778 LDAP_F( void )
779 ldap_destroy_cache LDAP_P(( LDAP *ld ));
780
781 LDAP_F( void )
782 ldap_flush_cache LDAP_P(( LDAP *ld ));
783
784 LDAP_F( void )
785 ldap_uncache_entry LDAP_P(( LDAP *ld, LDAP_CONST char *dn ));
786
787 LDAP_F( void )
788 ldap_uncache_request LDAP_P(( LDAP *ld, int msgid ));
789
790
791 /*
792  * in compare.c:
793  */
794 LDAP_F( int )
795 ldap_compare_ext LDAP_P((
796         LDAP                    *ld,
797         LDAP_CONST char *dn,
798         LDAP_CONST char *attr,
799         struct berval   *bvalue,
800         LDAPControl             **serverctrls,
801         LDAPControl             **clientctrls,
802         int                     *msgidp ));
803
804 LDAP_F( int )
805 ldap_compare_ext_s LDAP_P((
806         LDAP                    *ld,
807         LDAP_CONST char *dn,
808         LDAP_CONST char *attr,
809         struct berval   *bvalue,
810         LDAPControl             **serverctrls,
811         LDAPControl             **clientctrls ));
812
813 LDAP_F( int )
814 ldap_compare LDAP_P((   /* deprecated */
815         LDAP *ld,
816         LDAP_CONST char *dn,
817         LDAP_CONST char *attr,
818         LDAP_CONST char *value ));
819
820 LDAP_F( int )
821 ldap_compare_s LDAP_P(( /* deprecated */
822         LDAP *ld,
823         LDAP_CONST char *dn,
824         LDAP_CONST char *attr,
825         LDAP_CONST char *value ));
826
827
828 /*
829  * in delete.c:
830  */
831 LDAP_F( int )
832 ldap_delete_ext LDAP_P((
833         LDAP                    *ld,
834         LDAP_CONST char *dn,
835         LDAPControl             **serverctrls,
836         LDAPControl             **clientctrls,
837         int                     *msgidp ));
838
839 LDAP_F( int )
840 ldap_delete_ext_s LDAP_P((
841         LDAP                    *ld,
842         LDAP_CONST char *dn,
843         LDAPControl             **serverctrls,
844         LDAPControl             **clientctrls ));
845
846 LDAP_F( int )
847 ldap_delete LDAP_P((    /* deprecated */
848         LDAP *ld,
849         LDAP_CONST char *dn ));
850
851 LDAP_F( int )
852 ldap_delete_s LDAP_P((  /* deprecated */
853         LDAP *ld,
854         LDAP_CONST char *dn ));
855
856
857 /*
858  * in error.c:
859  */
860 LDAP_F( int )
861 ldap_parse_result LDAP_P((
862         LDAP                    *ld,
863         LDAPMessage             *res,
864         int                             *errcodep,
865         char                    **matcheddnp,
866         char                    **errmsgp,
867         char                    ***referralsp,
868         LDAPControl             ***serverctrls,
869         int                             freeit ));
870
871 LDAP_F( char *)
872 ldap_err2string LDAP_P((
873         int err ));
874
875 LDAP_F( int )
876 ldap_result2error LDAP_P((      /* deprecated */
877         LDAP *ld,
878         LDAPMessage *r,
879         int freeit ));
880
881 LDAP_F( void )
882 ldap_perror LDAP_P((    /* deprecated */
883         LDAP *ld,
884         LDAP_CONST char *s ));
885
886
887 /*
888  * in modify.c:
889  */
890 LDAP_F( int )
891 ldap_modify_ext LDAP_P((
892         LDAP                    *ld,
893         LDAP_CONST char *dn,
894         LDAPMod                 **mods,
895         LDAPControl             **serverctrls,
896         LDAPControl             **clientctrls,
897         int                     *msgidp ));
898
899 LDAP_F( int )
900 ldap_modify_ext_s LDAP_P((
901         LDAP                    *ld,
902         LDAP_CONST char *dn,
903         LDAPMod                 **mods,
904         LDAPControl             **serverctrls,
905         LDAPControl             **clientctrls ));
906
907 LDAP_F( int )
908 ldap_modify LDAP_P((    /* deprecated */
909         LDAP *ld,
910         LDAP_CONST char *dn,
911         LDAPMod **mods ));
912
913 LDAP_F( int )
914 ldap_modify_s LDAP_P((  /* deprecated */
915         LDAP *ld,
916         LDAP_CONST char *dn,
917         LDAPMod **mods ));
918
919
920 /*
921  * in modrdn.c:
922  */
923 LDAP_F( int )
924 ldap_rename LDAP_P((
925         LDAP *ld,
926         LDAP_CONST char *dn,
927         LDAP_CONST char *newrdn,
928         LDAP_CONST char *newSuperior,
929         int deleteoldrdn,
930         LDAPControl **sctrls,
931         LDAPControl **cctrls,
932         int *msgidp ));
933
934 LDAP_F( int )
935 ldap_rename_s LDAP_P((
936         LDAP *ld,
937         LDAP_CONST char *dn,
938         LDAP_CONST char *newrdn,
939         LDAP_CONST char *newSuperior,
940         int deleteoldrdn,
941         LDAPControl **sctrls,
942         LDAPControl **cctrls ));
943
944 LDAP_F( int )
945 ldap_rename2 LDAP_P((   /* deprecated */
946         LDAP *ld,
947         LDAP_CONST char *dn,
948         LDAP_CONST char *newrdn,
949         LDAP_CONST char *newSuperior,
950         int deleteoldrdn ));
951
952 LDAP_F( int )
953 ldap_rename2_s LDAP_P(( /* deprecated */
954         LDAP *ld,
955         LDAP_CONST char *dn,
956         LDAP_CONST char *newrdn,
957         LDAP_CONST char *newSuperior,
958         int deleteoldrdn ));
959
960 LDAP_F( int )
961 ldap_modrdn LDAP_P((    /* deprecated */
962         LDAP *ld,
963         LDAP_CONST char *dn,
964         LDAP_CONST char *newrdn ));
965
966 LDAP_F( int )
967 ldap_modrdn_s LDAP_P((  /* deprecated */
968         LDAP *ld,
969         LDAP_CONST char *dn,
970         LDAP_CONST char *newrdn ));
971
972 LDAP_F( int )
973 ldap_modrdn2 LDAP_P((   /* deprecated */
974         LDAP *ld,
975         LDAP_CONST char *dn,
976         LDAP_CONST char *newrdn,
977         int deleteoldrdn ));
978
979 LDAP_F( int )
980 ldap_modrdn2_s LDAP_P(( /* deprecated */
981         LDAP *ld,
982         LDAP_CONST char *dn,
983         LDAP_CONST char *newrdn,
984         int deleteoldrdn));
985
986
987 /*
988  * in open.c:
989  */
990 LDAP_F( LDAP *)
991 ldap_init LDAP_P((
992         LDAP_CONST char *host,
993         int port ));
994
995 LDAP_F( LDAP *)
996 ldap_open LDAP_P((      /* deprecated */
997         LDAP_CONST char *host,
998         int port ));
999
1000 LDAP_F( int )
1001 ldap_create LDAP_P(( 
1002         LDAP **ldp ));
1003
1004 LDAP_F( int )
1005 ldap_initialize LDAP_P((
1006         LDAP **ldp,
1007         LDAP_CONST char *url ));
1008
1009 LDAP_F( int )
1010 ldap_start_tls_s LDAP_P((
1011         LDAP *ld,
1012         LDAPControl **serverctrls,
1013         LDAPControl **clientctrls ));
1014
1015 /*
1016  * in messages.c:
1017  */
1018 LDAP_F( LDAPMessage *)
1019 ldap_first_message LDAP_P((
1020         LDAP *ld,
1021         LDAPMessage *chain ));
1022
1023 LDAP_F( LDAPMessage *)
1024 ldap_next_message LDAP_P((
1025         LDAP *ld,
1026         LDAPMessage *msg ));
1027
1028 LDAP_F( int )
1029 ldap_count_messages LDAP_P((
1030         LDAP *ld,
1031         LDAPMessage *chain ));
1032
1033
1034 /*
1035  * in references.c:
1036  */
1037 LDAP_F( LDAPMessage *)
1038 ldap_first_reference LDAP_P((
1039         LDAP *ld,
1040         LDAPMessage *chain ));
1041
1042 LDAP_F( LDAPMessage *)
1043 ldap_next_reference LDAP_P((
1044         LDAP *ld,
1045         LDAPMessage *ref ));
1046
1047 LDAP_F( int )
1048 ldap_count_references LDAP_P((
1049         LDAP *ld,
1050         LDAPMessage *chain ));
1051
1052 LDAP_F( int )
1053 ldap_parse_reference LDAP_P((
1054         LDAP                    *ld,
1055         LDAPMessage             *ref,
1056         char                    ***referralsp,
1057         LDAPControl             ***serverctrls,
1058         int                             freeit));
1059
1060
1061 /*
1062  * in getentry.c:
1063  */
1064 LDAP_F( LDAPMessage *)
1065 ldap_first_entry LDAP_P((
1066         LDAP *ld,
1067         LDAPMessage *chain ));
1068
1069 LDAP_F( LDAPMessage *)
1070 ldap_next_entry LDAP_P((
1071         LDAP *ld,
1072         LDAPMessage *entry ));
1073
1074 LDAP_F( int )
1075 ldap_count_entries LDAP_P((
1076         LDAP *ld,
1077         LDAPMessage *chain ));
1078
1079 LDAP_F( int )
1080 ldap_get_entry_controls LDAP_P((
1081         LDAP                    *ld,
1082         LDAPMessage             *entry,
1083         LDAPControl             ***serverctrls));
1084
1085
1086 /*
1087  * in addentry.c
1088  */
1089 LDAP_F( LDAPMessage *)
1090 ldap_delete_result_entry LDAP_P((
1091         LDAPMessage **list,
1092         LDAPMessage *e ));
1093
1094 LDAP_F( void )
1095 ldap_add_result_entry LDAP_P((
1096         LDAPMessage **list,
1097         LDAPMessage *e ));
1098
1099
1100 /*
1101  * in getdn.c
1102  */
1103 LDAP_F( char * )
1104 ldap_get_dn LDAP_P((
1105         LDAP *ld,
1106         LDAPMessage *entry ));
1107
1108 LDAP_F( char * )
1109 ldap_dn2ufn LDAP_P((
1110         LDAP_CONST char *dn ));
1111
1112 LDAP_F( char ** )
1113 ldap_explode_dn LDAP_P((
1114         LDAP_CONST char *dn,
1115         int notypes ));
1116
1117 LDAP_F( char ** )
1118 ldap_explode_rdn LDAP_P((
1119         LDAP_CONST char *rdn,
1120         int notypes ));
1121
1122 LDAP_F( char * )
1123 ldap_parent_dn LDAP_P((
1124         LDAP_CONST char *dn ));
1125
1126 LDAP_F( char * )
1127 ldap_relative_dn LDAP_P((
1128         LDAP_CONST char *dn ));
1129
1130 LDAP_F( char * )
1131 ldap_normalize_dn LDAP_P((
1132         LDAP_CONST char *dn ));
1133
1134 LDAP_F( char * )
1135 ldap_dn2dcedn LDAP_P(( LDAP_CONST char *dn ));  /* deprecated */
1136
1137 LDAP_F( char * )
1138 ldap_dcedn2dn LDAP_P(( LDAP_CONST char *dce )); /* deprecated */
1139
1140 /*
1141  * in getattr.c
1142  */
1143 LDAP_F( char *)
1144 ldap_first_attribute LDAP_P((                                                                    
1145         LDAP *ld,
1146         LDAPMessage *entry,
1147         BerElement **ber ));
1148
1149 LDAP_F( char *)
1150 ldap_next_attribute LDAP_P((
1151         LDAP *ld,
1152         LDAPMessage *entry,
1153         BerElement *ber ));
1154
1155
1156 /*
1157  * in getvalues.c
1158  */
1159 LDAP_F( char **)
1160 ldap_get_values LDAP_P((
1161         LDAP *ld,
1162         LDAPMessage *entry,
1163         LDAP_CONST char *target ));
1164
1165 LDAP_F( struct berval **)
1166 ldap_get_values_len LDAP_P((
1167         LDAP *ld,
1168         LDAPMessage *entry,
1169         LDAP_CONST char *target ));
1170
1171 LDAP_F( int )
1172 ldap_count_values LDAP_P((
1173         char **vals ));
1174
1175 LDAP_F( int )
1176 ldap_count_values_len LDAP_P((
1177         struct berval **vals ));
1178
1179 LDAP_F( void )
1180 ldap_value_free LDAP_P((
1181         char **vals ));
1182
1183 LDAP_F( void )
1184 ldap_value_free_len LDAP_P((
1185         struct berval **vals ));
1186
1187 /*
1188  * in result.c:
1189  */
1190 LDAP_F( int )
1191 ldap_result LDAP_P((
1192         LDAP *ld,
1193         int msgid,
1194         int all,
1195         struct timeval *timeout,
1196         LDAPMessage **result ));
1197
1198 LDAP_F( int )
1199 ldap_msgtype LDAP_P((
1200         LDAPMessage *lm ));
1201
1202 LDAP_F( int )
1203 ldap_msgid   LDAP_P((
1204         LDAPMessage *lm ));
1205
1206 LDAP_F( int )
1207 ldap_msgfree LDAP_P((
1208         LDAPMessage *lm ));
1209
1210 LDAP_F( int )
1211 ldap_msgdelete LDAP_P((
1212         LDAP *ld,
1213         int msgid ));
1214
1215
1216 /*
1217  * in search.c:
1218  */
1219 LDAP_F( int )
1220 ldap_search_ext LDAP_P((
1221         LDAP                    *ld,
1222         LDAP_CONST char *base,
1223         int                             scope,
1224         LDAP_CONST char *filter,
1225         char                    **attrs,
1226         int                             attrsonly,
1227         LDAPControl             **serverctrls,
1228         LDAPControl             **clientctrls,
1229         struct timeval  *timeout,
1230         int                             sizelimit,
1231         int                             *msgidp ));
1232
1233 LDAP_F( int )
1234 ldap_search_ext_s LDAP_P((
1235         LDAP                    *ld,
1236         LDAP_CONST char *base,
1237         int                             scope,
1238         LDAP_CONST char *filter,
1239         char                    **attrs,
1240         int                             attrsonly,
1241         LDAPControl             **serverctrls,
1242         LDAPControl             **clientctrls,
1243         struct timeval  *timeout,
1244         int                             sizelimit,
1245         LDAPMessage             **res ));
1246
1247 LDAP_F( int )
1248 ldap_search LDAP_P((    /* deprecated */
1249         LDAP *ld,
1250         LDAP_CONST char *base,
1251         int scope,
1252         LDAP_CONST char *filter,
1253         char **attrs,
1254         int attrsonly ));
1255
1256 LDAP_F( int )
1257 ldap_search_s LDAP_P((  /* deprecated */
1258         LDAP *ld,
1259         LDAP_CONST char *base,
1260         int scope,
1261         LDAP_CONST char *filter,
1262         char **attrs,
1263         int attrsonly,
1264         LDAPMessage **res ));
1265
1266 LDAP_F( int )
1267 ldap_search_st LDAP_P(( /* deprecated */
1268         LDAP *ld,
1269         LDAP_CONST char *base,
1270         int scope,
1271         LDAP_CONST char *filter,
1272     char **attrs,
1273         int attrsonly,
1274         struct timeval *timeout,
1275         LDAPMessage **res ));
1276
1277
1278 /*
1279  * in ufn.c                                                     
1280  *      (deprecated)
1281  */
1282 LDAP_F( int )
1283 ldap_ufn_search_c LDAP_P(( /* deprecated */
1284         LDAP *ld,
1285         LDAP_CONST char *ufn,
1286         char **attrs,
1287         int attrsonly,
1288         LDAPMessage **res,
1289         int (*cancelproc)( void *cl ),
1290         void *cancelparm ));
1291
1292 LDAP_F( int )
1293 ldap_ufn_search_ct LDAP_P(( /* deprecated */
1294         LDAP *ld,
1295         LDAP_CONST char *ufn,
1296         char **attrs,
1297         int attrsonly,
1298         LDAPMessage **res,
1299         int (*cancelproc)( void *cl ),
1300         void *cancelparm,
1301         char *tag1,
1302         char *tag2,
1303         char *tag3 ));
1304
1305 LDAP_F( int )
1306 ldap_ufn_search_s LDAP_P(( /* deprecated */
1307         LDAP *ld,
1308         LDAP_CONST char *ufn,
1309         char **attrs,
1310         int attrsonly,
1311         LDAPMessage **res ));
1312
1313 LDAP_F( LDAPFiltDesc *)
1314 ldap_ufn_setfilter LDAP_P(( /* deprecated */
1315         LDAP *ld,
1316         LDAP_CONST char *fname ));
1317
1318 LDAP_F( void )
1319 ldap_ufn_setprefix LDAP_P(( /* deprecated */
1320         LDAP *ld,
1321         LDAP_CONST char *prefix ));
1322
1323 LDAP_F( int )
1324 ldap_ufn_timeout LDAP_P(( /* deprecated */
1325         void *tvparam ));
1326
1327
1328 /*
1329  * in unbind.c
1330  */
1331 LDAP_F( int )
1332 ldap_unbind LDAP_P(( /* deprecated */
1333         LDAP *ld ));
1334
1335 LDAP_F( int )
1336 ldap_unbind_s LDAP_P(( /* deprecated */
1337         LDAP *ld ));
1338
1339 LDAP_F( int )
1340 ldap_unbind_ext LDAP_P((
1341         LDAP                    *ld,
1342         LDAPControl             **serverctrls,
1343         LDAPControl             **clientctrls));
1344
1345 LDAP_F( int )
1346 ldap_unbind_ext_s LDAP_P((
1347         LDAP                    *ld,
1348         LDAPControl             **serverctrls,
1349         LDAPControl             **clientctrls));
1350
1351 /*
1352  * in getfilter.c
1353  *      (deprecated)
1354  */
1355 LDAP_F( LDAPFiltDesc *)
1356 ldap_init_getfilter LDAP_P(( /* deprecated */
1357         LDAP_CONST char *fname ));
1358
1359 LDAP_F( LDAPFiltDesc *)
1360 ldap_init_getfilter_buf LDAP_P(( /* deprecated */
1361         /* LDAP_CONST */ char *buf,
1362         ber_len_t buflen ));
1363
1364 LDAP_F( LDAPFiltInfo *)
1365 ldap_getfirstfilter LDAP_P(( /* deprecated */
1366         LDAPFiltDesc *lfdp,
1367         /* LDAP_CONST */ char *tagpat,
1368         /* LDAP_CONST */ char *value ));
1369
1370 LDAP_F( LDAPFiltInfo *)
1371 ldap_getnextfilter LDAP_P(( /* deprecated */
1372         LDAPFiltDesc *lfdp ));
1373
1374 LDAP_F( void )
1375 ldap_setfilteraffixes LDAP_P(( /* deprecated */
1376         LDAPFiltDesc *lfdp,
1377         LDAP_CONST char *prefix,
1378         LDAP_CONST char *suffix ));
1379
1380 LDAP_F( void )
1381 ldap_build_filter LDAP_P(( /* deprecated */
1382         char *buf,
1383         ber_len_t buflen,
1384         LDAP_CONST char *pattern,
1385         LDAP_CONST char *prefix,
1386         LDAP_CONST char *suffix,
1387         LDAP_CONST char *attr,
1388         LDAP_CONST char *value,
1389         char **valwords ));
1390
1391
1392 /*
1393  * in free.c
1394  */
1395
1396 LDAP_F( void * )
1397 ldap_memalloc LDAP_P((
1398         ber_len_t s ));
1399
1400 LDAP_F( void * )
1401 ldap_memrealloc LDAP_P((
1402         void* p,
1403         ber_len_t s ));
1404
1405 LDAP_F( void * )
1406 ldap_memcalloc LDAP_P((
1407         ber_len_t n,
1408         ber_len_t s ));
1409
1410 LDAP_F( void )
1411 ldap_memfree LDAP_P((
1412         void* p ));
1413
1414 LDAP_F( void )
1415 ldap_memvfree LDAP_P((
1416         void** v ));
1417
1418 LDAP_F( char * )
1419 ldap_strdup LDAP_P((
1420         LDAP_CONST char * ));
1421
1422 LDAP_F( void )
1423 ldap_getfilter_free LDAP_P((
1424         LDAPFiltDesc *lfdp ));
1425
1426 LDAP_F( void )
1427 ldap_mods_free LDAP_P((
1428         LDAPMod **mods,
1429         int freemods ));
1430
1431
1432 /*
1433  * in friendly.c
1434  *      (deprecated)
1435  */
1436 LDAP_F( char * )
1437 ldap_friendly_name LDAP_P(( /* deprecated */
1438         LDAP_CONST char *filename,
1439         /* LDAP_CONST */ char *uname,
1440         LDAPFriendlyMap **map ));
1441
1442 LDAP_F( void )
1443 ldap_free_friendlymap LDAP_P(( /* deprecated */
1444         LDAPFriendlyMap **map ));
1445
1446
1447 /*
1448  * in cldap.c
1449  *      (deprecated)
1450  */
1451 LDAP_F( LDAP * )
1452 cldap_open LDAP_P((     /* deprecated */
1453         LDAP_CONST char *host,
1454         int port ));
1455
1456 LDAP_F( void )
1457 cldap_close LDAP_P((    /* deprecated */
1458         LDAP *ld ));
1459
1460 LDAP_F( int )
1461 cldap_search_s LDAP_P(( /* deprecated */
1462         LDAP *ld,
1463         LDAP_CONST char *base,
1464         int scope,
1465         LDAP_CONST char *filter,
1466         char **attrs,
1467         int attrsonly,
1468         LDAPMessage **res,
1469         char *logdn ));
1470
1471 LDAP_F( void )
1472 cldap_setretryinfo LDAP_P(( /* deprecated */
1473         LDAP *ld,
1474         int tries,
1475         int timeout ));
1476
1477
1478 /*
1479  * in sort.c
1480  */
1481 typedef int (LDAP_SORT_AD_CMP_PROC) LDAP_P((
1482         LDAP_CONST char *left,
1483         LDAP_CONST char *right ));
1484
1485 typedef int (LDAP_SORT_AV_CMP_PROC) LDAP_P((
1486         LDAP_CONST void *left,
1487         LDAP_CONST void *right ));
1488
1489 LDAP_F( int )
1490 ldap_sort_entries LDAP_P(( LDAP *ld,
1491         LDAPMessage **chain,
1492         LDAP_CONST char *attr,
1493         LDAP_SORT_AD_CMP_PROC *cmp ));
1494
1495 LDAP_F( int )   /* deprecated */
1496 ldap_sort_values LDAP_P((
1497         LDAP *ld,
1498         char **vals,
1499         LDAP_SORT_AV_CMP_PROC *cmp ));
1500
1501 LDAP_F( int ) /* deprecated */
1502 ldap_sort_strcasecmp LDAP_P((
1503         LDAP_CONST void *a,
1504         LDAP_CONST void *b ));
1505
1506
1507 /*
1508  * in url.c
1509  *
1510  * need _ext varients
1511  */
1512 LDAP_F( int )
1513 ldap_is_ldap_url LDAP_P((
1514         LDAP_CONST char *url ));
1515
1516 LDAP_F( int )
1517 ldap_is_ldaps_url LDAP_P((
1518         LDAP_CONST char *url ));
1519
1520 LDAP_F( int )
1521 ldap_is_ldapi_url LDAP_P((
1522         LDAP_CONST char *url ));
1523
1524 LDAP_F( int )
1525 ldap_url_parse LDAP_P((
1526         LDAP_CONST char *url,
1527         LDAPURLDesc **ludpp ));
1528
1529 LDAP_F( void )
1530 ldap_free_urldesc LDAP_P((
1531         LDAPURLDesc *ludp ));
1532
1533 LDAP_F( int )
1534 ldap_url_search LDAP_P((
1535         LDAP *ld,
1536         LDAP_CONST char *url,
1537         int attrsonly ));
1538
1539 LDAP_F( int )
1540 ldap_url_search_s LDAP_P((
1541         LDAP *ld,
1542         LDAP_CONST char *url,
1543         int attrsonly,
1544         LDAPMessage **res ));
1545
1546 LDAP_F( int )
1547 ldap_url_search_st LDAP_P((
1548         LDAP *ld,
1549         LDAP_CONST char *url,
1550         int attrsonly,
1551         struct timeval *timeout,
1552         LDAPMessage **res ));
1553
1554 /* 
1555  * in sortctrl.c  
1556  */
1557 /*
1558  * structure for a sort-key 
1559  */
1560 typedef struct ldapsortkey {
1561         char *  attributeType;
1562         char *  orderingRule;
1563         int     reverseOrder;
1564 } LDAPSortKey;
1565
1566 LDAP_F( int )
1567 ldap_create_sort_keylist LDAP_P((
1568         LDAPSortKey ***sortKeyList,
1569         char        *keyString ));
1570
1571 LDAP_F( void )
1572 ldap_free_sort_keylist LDAP_P((
1573         LDAPSortKey **sortkeylist ));
1574
1575 LDAP_F( int )
1576 ldap_create_sort_control LDAP_P((       
1577         LDAP *ld, 
1578         LDAPSortKey **keyList,
1579         int ctl_iscritical,
1580         LDAPControl **ctrlp ));
1581
1582 LDAP_F( int )
1583 ldap_parse_sort_control LDAP_P((
1584         LDAP           *ld, 
1585         LDAPControl    **ctrlp,  
1586         unsigned long  *result,
1587         char           **attribute ));
1588
1589
1590 /* 
1591  * in vlvctrl.c  
1592  */
1593
1594 /*
1595  * structure for virtul list.
1596  */
1597 typedef struct ldapvlvinfo {
1598         int             ldvlv_version;
1599     unsigned long   ldvlv_before_count;      
1600     unsigned long   ldvlv_after_count;                     
1601     unsigned long   ldvlv_offset;              
1602     unsigned long   ldvlv_count;
1603     struct berval  *ldvlv_attrvalue;
1604     struct berval  *ldvlv_context;
1605     void           *ldvlv_extradata;
1606 } LDAPVLVInfo;
1607
1608 LDAP_F( int ) 
1609 ldap_create_vlv_control LDAP_P((
1610         LDAP *ld, 
1611         LDAPVLVInfo *ldvlistp,
1612         LDAPControl **ctrlp ));
1613
1614 LDAP_F( int )
1615 ldap_parse_vlv_control LDAP_P(( 
1616         LDAP          *ld, 
1617         LDAPControl   **ctrls,
1618         unsigned long *target_posp, 
1619         unsigned long *list_countp, 
1620         struct berval **contextp,
1621         int           *errcodep ));
1622
1623
1624 LDAP_END_DECL
1625 #endif /* _LDAP_H */