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