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