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