]> git.sur5r.net Git - openldap/blob - include/ldap.h
Move LDAP_COMP_MATCH define from ldap.h to slap.h
[openldap] / include / ldap.h
1 /* $OpenLDAP$ */
2 /* This work is part of OpenLDAP Software <http://www.openldap.org/>.
3  * 
4  * Copyright 1998-2004 The OpenLDAP Foundation.
5  * All rights reserved.
6  *
7  * Redistribution and use in source and binary forms, with or without
8  * modification, are permitted only as authorized by the OpenLDAP
9  * Public License.
10  *
11  * A copy of this license is available in file LICENSE in the
12  * top-level directory of the distribution or, alternatively, at
13  * <http://www.OpenLDAP.org/license.html>.
14  */
15 /* Portions Copyright (c) 1990 Regents of the University of Michigan.
16  * All rights reserved.
17  *
18  * Redistribution and use in source and binary forms are permitted
19  * provided that this notice is preserved and that due credit is given
20  * to the University of Michigan at Ann Arbor. The name of the University
21  * may not be used to endorse or promote products derived from this
22  * software without specific prior written permission. This software
23  * is provided ``as is'' without express or implied warranty.
24  */
25
26 #ifndef _LDAP_H
27 #define _LDAP_H
28
29 /* pull in lber */
30 #include <lber.h>
31
32 /* include version and API feature defines */
33 #include <ldap_features.h>
34
35 LDAP_BEGIN_DECL
36
37 #define LDAP_VERSION1   1
38 #define LDAP_VERSION2   2
39 #define LDAP_VERSION3   3
40
41 #define LDAP_VERSION_MIN        LDAP_VERSION2
42 #define LDAP_VERSION            LDAP_VERSION2
43 #define LDAP_VERSION_MAX        LDAP_VERSION3
44
45 /*
46  * We use 3000+n here because it is above 1823 (for RFC 1823),
47  * above 2000+rev of IETF LDAPEXT draft (now quite dated),
48  * yet below allocations for new RFCs (just in case there is
49  * someday an RFC produced).
50  */
51 #define LDAP_API_VERSION        3001
52 #define LDAP_VENDOR_NAME        "OpenLDAP"
53
54 /* OpenLDAP API Features */
55 #define LDAP_API_FEATURE_X_OPENLDAP LDAP_VENDOR_VERSION
56
57 #if defined( LDAP_API_FEATURE_X_OPENLDAP_REENTRANT ) || \
58         ( defined( LDAP_THREAD_SAFE ) && \
59                 defined( LDAP_API_FEATURE_X_OPENLDAP_THREAD_SAFE ) )
60         /* -lldap may or may not be thread safe */
61         /* -lldap_r, if available, is always thread safe */
62 #       define  LDAP_API_FEATURE_THREAD_SAFE 1
63 #endif
64 #if defined( LDAP_THREAD_SAFE ) && \
65         defined( LDAP_API_FEATURE_X_OPENLDAP_THREAD_SAFE )
66 /* #define LDAP_API_FEATURE_SESSION_SAFE        1       */
67 /* #define LDAP_API_OPERATION_SESSION_SAFE      1       */
68 #endif
69
70
71 #define LDAP_PORT               389             /* ldap:///             default LDAP port */
72 #define LDAPS_PORT              636             /* ldaps:///    default LDAP over TLS port */
73
74 #define LDAP_ROOT_DSE                           ""
75 #define LDAP_NO_ATTRS                           "1.1"
76 #define LDAP_ALL_USER_ATTRIBUTES        "*"
77 #define LDAP_ALL_OPERATIONAL_ATTRIBUTES "+" /* RFC 3673 */
78
79 /* RFC 2251:  maxInt INTEGER ::= 2147483647 -- (2^^31 - 1) -- */
80 #define LDAP_MAXINT (2147483647)
81
82 /*
83  * LDAP_OPTions
84  *      0x0000 - 0x0fff reserved for api options
85  *      0x1000 - 0x3fff reserved for api extended options
86  *      0x4000 - 0x7fff reserved for private and experimental options
87  */
88
89 #define LDAP_OPT_API_INFO                       0x0000
90 #define LDAP_OPT_DESC                           0x0001 /* historic */
91 #define LDAP_OPT_DEREF                          0x0002
92 #define LDAP_OPT_SIZELIMIT                      0x0003
93 #define LDAP_OPT_TIMELIMIT                      0x0004
94 /* 0x05 - 0x07 not defined */
95 #define LDAP_OPT_REFERRALS                      0x0008
96 #define LDAP_OPT_RESTART                        0x0009
97 /* 0x0a - 0x10 not defined */
98 #define LDAP_OPT_PROTOCOL_VERSION       0x0011
99 #define LDAP_OPT_SERVER_CONTROLS        0x0012
100 #define LDAP_OPT_CLIENT_CONTROLS        0x0013
101 /* 0x14 not defined */
102 #define LDAP_OPT_API_FEATURE_INFO       0x0015
103 /* 0x16 - 0x2f not defined */
104 #define LDAP_OPT_HOST_NAME                      0x0030
105 #define LDAP_OPT_RESULT_CODE            0x0031
106 #define LDAP_OPT_ERROR_NUMBER           LDAP_OPT_RESULT_CODE
107 #define LDAP_OPT_ERROR_STRING           0x0032
108 #define LDAP_OPT_MATCHED_DN                     0x0033
109 /* 0x0034 - 0x3fff not defined */
110
111 /* API Extensions */
112 #define LDAP_OPT_API_EXTENSION_BASE 0x4000  /* API extensions */
113
114 /* private and experimental options */
115 /* OpenLDAP specific options */
116 #define LDAP_OPT_DEBUG_LEVEL            0x5001  /* debug level */
117 #define LDAP_OPT_TIMEOUT                        0x5002  /* default timeout */
118 #define LDAP_OPT_REFHOPLIMIT            0x5003  /* ref hop limit */
119 #define LDAP_OPT_NETWORK_TIMEOUT        0x5005  /* socket level timeout */
120 #define LDAP_OPT_URI                            0x5006
121 #define LDAP_OPT_REFERRAL_URLS      0x5007  /* Referral URLs */
122
123 /* OpenLDAP TLS options */
124 #define LDAP_OPT_X_TLS                          0x6000
125 #define LDAP_OPT_X_TLS_CTX                      0x6001  /* SSL CTX */
126 #define LDAP_OPT_X_TLS_CACERTFILE       0x6002
127 #define LDAP_OPT_X_TLS_CACERTDIR        0x6003
128 #define LDAP_OPT_X_TLS_CERTFILE         0x6004
129 #define LDAP_OPT_X_TLS_KEYFILE          0x6005
130 #define LDAP_OPT_X_TLS_REQUIRE_CERT     0x6006
131 /* #define LDAP_OPT_X_TLS_PROTOCOL              0x6007 */
132 #define LDAP_OPT_X_TLS_CIPHER_SUITE     0x6008
133 #define LDAP_OPT_X_TLS_RANDOM_FILE      0x6009
134 #define LDAP_OPT_X_TLS_SSL_CTX          0x600a
135
136 #define LDAP_OPT_X_TLS_NEVER    0
137 #define LDAP_OPT_X_TLS_HARD             1
138 #define LDAP_OPT_X_TLS_DEMAND   2
139 #define LDAP_OPT_X_TLS_ALLOW    3
140 #define LDAP_OPT_X_TLS_TRY              4
141
142 /* OpenLDAP SASL options */
143 #define LDAP_OPT_X_SASL_MECH                    0x6100
144 #define LDAP_OPT_X_SASL_REALM                   0x6101
145 #define LDAP_OPT_X_SASL_AUTHCID                 0x6102
146 #define LDAP_OPT_X_SASL_AUTHZID                 0x6103
147 #define LDAP_OPT_X_SASL_SSF                             0x6104 /* read-only */
148 #define LDAP_OPT_X_SASL_SSF_EXTERNAL    0x6105 /* write-only */
149 #define LDAP_OPT_X_SASL_SECPROPS                0x6106 /* write-only */
150 #define LDAP_OPT_X_SASL_SSF_MIN                 0x6107
151 #define LDAP_OPT_X_SASL_SSF_MAX                 0x6108
152 #define LDAP_OPT_X_SASL_MAXBUFSIZE              0x6109
153
154 /* Private API Extensions -- reserved for application use */
155 #define LDAP_OPT_PRIVATE_EXTENSION_BASE 0x7000  /* Private API inclusive */
156
157 /*
158  * ldap_get_option() and ldap_set_option() return values.
159  * As later versions may return other values indicating
160  * failure, current applications should only compare returned
161  * value against LDAP_OPT_SUCCESS.
162  */
163 #define LDAP_OPT_SUCCESS        0
164 #define LDAP_OPT_ERROR          (-1)
165
166 /* option on/off values */
167 #define LDAP_OPT_ON             ((void *) &ber_pvt_opt_on)
168 #define LDAP_OPT_OFF    ((void *) 0)
169
170 typedef struct ldapapiinfo {
171         int             ldapai_info_version;            /* version of LDAPAPIInfo */
172 #define LDAP_API_INFO_VERSION   (1)
173         int             ldapai_api_version;                     /* revision of API supported */
174         int             ldapai_protocol_version;        /* highest LDAP version supported */
175         char    **ldapai_extensions;            /* names of API extensions */
176         char    *ldapai_vendor_name;            /* name of supplier */
177         int             ldapai_vendor_version;          /* supplier-specific version * 100 */
178 } LDAPAPIInfo;
179
180 typedef struct ldap_apifeature_info {
181         int             ldapaif_info_version;           /* version of LDAPAPIFeatureInfo */
182 #define LDAP_FEATURE_INFO_VERSION (1)   /* apifeature_info struct version */
183         char*   ldapaif_name;                           /* LDAP_API_FEATURE_* (less prefix) */
184         int             ldapaif_version;                        /* value of LDAP_API_FEATURE_... */
185 } LDAPAPIFeatureInfo;
186
187 /*
188  * LDAP Control structure
189  */
190 typedef struct ldapcontrol {
191         char *                  ldctl_oid;                      /* numericoid of control */
192         struct berval   ldctl_value;            /* encoded value of control */
193         char                    ldctl_iscritical;       /* criticality */
194 } LDAPControl;
195
196 /* LDAP Controls */
197 /*      standard track controls */
198 #define LDAP_CONTROL_MANAGEDSAIT                "2.16.840.1.113730.3.4.2" /* RFC 3296 */
199 #define LDAP_CONTROL_SUBENTRIES                 "1.3.6.1.4.1.4203.1.10.1" /* RFC 3672 */
200 #define LDAP_CONTROL_PAGEDRESULTS               "1.2.840.113556.1.4.319"  /* RFC 2696 */
201
202 /*  standard track - not implemented in slapd(8) */
203 #define LDAP_CONTROL_SORTREQUEST    "1.2.840.113556.1.4.473" /* RFC 2891 */
204 #define LDAP_CONTROL_SORTRESPONSE       "1.2.840.113556.1.4.474" /* RFC 2891 */
205
206 /* but not yet formalized controls */
207 #define LDAP_CONTROL_PROXY_AUTHZ                "2.16.840.1.113730.3.4.18"
208 #define LDAP_CONTROL_VALUESRETURNFILTER "1.2.826.0.1.334810.2.3"
209
210 /* various works in progress */
211 #define LDAP_CONTROL_ASSERT                             "1.3.6.1.4.1.4203.666.5.9"
212 #define LDAP_CONTROL_NOOP                               "1.3.6.1.4.1.4203.666.5.2"
213 #define LDAP_CONTROL_PRE_READ                   "1.3.6.1.4.1.4203.666.5.10.1"
214 #define LDAP_CONTROL_POST_READ                  "1.3.6.1.4.1.4203.666.5.10.2"
215
216 #if 0
217 /* LDAP Duplicated Entry Control Extension *//* not implemented in slapd(8) */
218 #define LDAP_CONTROL_DUPENT_REQUEST             "2.16.840.1.113719.1.27.101.1"
219 #define LDAP_CONTROL_DUPENT_RESPONSE    "2.16.840.1.113719.1.27.101.2"
220 #define LDAP_CONTROL_DUPENT_ENTRY               "2.16.840.1.113719.1.27.101.3"
221 #define LDAP_CONTROL_DUPENT     LDAP_CONTROL_DUPENT_REQUEST
222 #endif
223
224 /* LDAP VLV *//* not implemented in slapd(8) */
225 #define LDAP_CONTROL_VLVREQUEST         "2.16.840.1.113730.3.4.9"
226 #define LDAP_CONTROL_VLVRESPONSE    "2.16.840.1.113730.3.4.10"
227
228 /* Password policy Controls *//* work in progress */
229 #ifdef LDAP_DEVEL
230 #define LDAP_CONTROL_PASSWORDPOLICYREQUEST      "1.3.6.1.4.1.42.2.27.8.5.1"
231 #define LDAP_CONTROL_PASSWORDPOLICYRESPONSE     "1.3.6.1.4.1.42.2.27.8.5.1"
232 #endif
233
234 /* LDAP Sync -- draft-zeilenga-ldup-sync *//* submitted for publication */
235 #define LDAP_SYNC_OID                   "1.3.6.1.4.1.4203.1.9.1"
236 #define LDAP_CONTROL_SYNC               LDAP_SYNC_OID ".1"
237 #define LDAP_CONTROL_SYNC_STATE LDAP_SYNC_OID ".2"
238 #define LDAP_CONTROL_SYNC_DONE  LDAP_SYNC_OID ".3"
239 #define LDAP_SYNC_INFO                  LDAP_SYNC_OID ".4"
240
241 #define LDAP_SYNC_NONE                                  0x00
242 #define LDAP_SYNC_REFRESH_ONLY                  0x01
243 #define LDAP_SYNC_RESERVED                              0x02
244 #define LDAP_SYNC_REFRESH_AND_PERSIST   0x03
245
246 #define LDAP_SYNC_REFRESH_PRESENTS              0
247 #define LDAP_SYNC_REFRESH_DELETES               1
248
249 #define LDAP_TAG_SYNC_NEW_COOKIE                ((ber_tag_t) 0x80U)
250 #define LDAP_TAG_SYNC_REFRESH_DELETE    ((ber_tag_t) 0xa1U)
251 #define LDAP_TAG_SYNC_REFRESH_PRESENT   ((ber_tag_t) 0xa2U)
252 #define LDAP_TAG_SYNC_ID_SET                    ((ber_tag_t) 0xa3U)
253
254 #define LDAP_TAG_SYNC_COOKIE                    ((ber_tag_t) 0x04U)
255 #define LDAP_TAG_REFRESHDELETES                 ((ber_tag_t) 0x01U)
256 #define LDAP_TAG_REFRESHDONE                    ((ber_tag_t) 0x01U)
257 #define LDAP_TAG_RELOAD_HINT                    ((ber_tag_t) 0x01U)
258
259 #define LDAP_SYNC_PRESENT                               0
260 #define LDAP_SYNC_ADD                                   1
261 #define LDAP_SYNC_MODIFY                                2
262 #define LDAP_SYNC_DELETE                                3
263
264 /* MS ActiveDirectory controls (for compatibility) */
265 #define LDAP_CONTROL_X_DOMAIN_SCOPE             "1.2.840.113556.1.4.1339"
266 #define LDAP_CONTROL_X_PERMISSIVE_MODIFY        "1.2.840.113556.1.4.1413"
267 #define LDAP_CONTROL_X_INCREMENTAL_VALUES       "1.2.840.113556.1.4.802"
268 #define LDAP_CONTROL_X_TREE_DELETE              "1.2.840.113556.1.4.805"
269 #define LDAP_CONTROL_X_SEARCH_OPTIONS           "1.2.840.113556.1.4.1340"
270 #define LDAP_SEARCH_FLAG_DOMAIN_SCOPE           1 /* do not generate referrals */
271 #define LDAP_SEARCH_FLAG_PHANTOM_ROOT           2 /* search all NCs subordinate to base */
272
273 /* LDAP Unsolicited Notifications */
274 #define LDAP_NOTICE_OF_DISCONNECTION    "1.3.6.1.4.1.1466.20036" /* RFC 2251 */
275 #define LDAP_NOTICE_DISCONNECT LDAP_NOTICE_OF_DISCONNECTION
276
277 /* LDAP Extended Operations */
278 #define LDAP_EXOP_START_TLS             "1.3.6.1.4.1.1466.20037"        /* RFC 2830 */
279
280 #define LDAP_EXOP_MODIFY_PASSWD "1.3.6.1.4.1.4203.1.11.1"       /* RFC 3062 */
281 #define LDAP_TAG_EXOP_MODIFY_PASSWD_ID  ((ber_tag_t) 0x80U)
282 #define LDAP_TAG_EXOP_MODIFY_PASSWD_OLD ((ber_tag_t) 0x81U)
283 #define LDAP_TAG_EXOP_MODIFY_PASSWD_NEW ((ber_tag_t) 0x82U)
284 #define LDAP_TAG_EXOP_MODIFY_PASSWD_GEN ((ber_tag_t) 0x80U)
285
286 #define LDAP_EXOP_X_WHO_AM_I    "1.3.6.1.4.1.4203.1.11.3"
287 #define LDAP_EXOP_X_CANCEL              "1.3.6.1.4.1.4203.666.6.3"
288
289 /* LDAP Grouping of Related Operations *//* a work in progress */
290 #ifdef LDAP_DEVEL
291 #define LDAP_X_GROUPING_BASE            "1.3.6.1.4.1.4203.666.10.3"
292 #define LDAP_EXOP_GROUPING_CREATE       LDAP_X_GROUPING_BASE ".1"
293 #define LDAP_EXOP_GROUPING_END          LDAP_X_GROUPING_BASE ".2"
294 #define LDAP_NOTICE_GROUPING_END        LDAP_X_GROUPING_BASE ".3"
295 #define LDAP_EXOP_GROUPING_ACTION       LDAP_X_GROUPING_BASE ".4"
296 #define LDAP_NOTICE_GROUPING_INFO       LDAP_X_GROUPING_BASE ".5"
297 #define LDAP_CONTROL_GROUPING           LDAP_X_GROUPING_BASE ".6"
298 #endif
299
300 /* LDAP Grouping Types *//* a work in progress */
301 #ifdef LDAP_DEVEL
302 #define LDAP_GROUP_TRANSACTION           "1.3.6.1.4.1.4203.666.10.4"
303 #endif
304
305 /* LDAP Features */
306 #define LDAP_FEATURE_ALL_OP_ATTRS       "1.3.6.1.4.1.4203.1.5.1"        /* RFC 3673 */
307 #define LDAP_FEATURE_OBJECTCLASS_ATTRS \
308         "1.3.6.1.4.1.4203.1.5.2" /*  @objectClass - new number to be assigned */
309 #define LDAP_FEATURE_ABSOLUTE_FILTERS "1.3.6.1.4.1.4203.1.5.3"  /* (&) (|) */
310 #define LDAP_FEATURE_LANGUAGE_TAG_OPTIONS "1.3.6.1.4.1.4203.1.5.4"
311 #define LDAP_FEATURE_LANGUAGE_RANGE_OPTIONS "1.3.6.1.4.1.4203.1.5.5"
312 #define LDAP_FEATURE_MODIFY_INCREMENT "1.3.6.1.4.1.4203.666.8.2"
313
314 #ifdef LDAP_DEVEL
315 #define LDAP_FEATURE_SUBORDINATE_SCOPE \
316         "1.3.6.1.4.1.4203.666.8.1" /* "children" */
317 #define LDAP_FEATURE_CHILDREN_SCOPE LDAP_FEATURE_SUBORDINATE_SCOPE
318 #endif
319
320 /*
321  * specific LDAP instantiations of BER types we know about
322  */
323
324 /* Overview of LBER tag construction
325  *
326  *      Bits
327  *      ______
328  *      8 7 | CLASS
329  *      0 0 = UNIVERSAL
330  *      0 1 = APPLICATION
331  *      1 0 = CONTEXT-SPECIFIC
332  *      1 1 = PRIVATE
333  *              _____
334  *              | 6 | DATA-TYPE
335  *                0 = PRIMITIVE
336  *                1 = CONSTRUCTED
337  *                      ___________
338  *                      | 5 ... 1 | TAG-NUMBER
339  */
340
341 /* general stuff */
342 #define LDAP_TAG_MESSAGE        ((ber_tag_t) 0x30U)     /* constructed + 16 */
343 #define LDAP_TAG_MSGID          ((ber_tag_t) 0x02U)     /* integer */
344
345 #define LDAP_TAG_LDAPDN         ((ber_tag_t) 0x04U)     /* octet string */
346 #define LDAP_TAG_LDAPCRED       ((ber_tag_t) 0x04U)     /* octet string */
347
348 #define LDAP_TAG_CONTROLS       ((ber_tag_t) 0xa0U)     /* context specific + constructed + 0 */
349 #define LDAP_TAG_REFERRAL       ((ber_tag_t) 0xa3U)     /* context specific + constructed + 3 */
350
351 #define LDAP_TAG_NEWSUPERIOR    ((ber_tag_t) 0x80U)     /* context-specific + primitive + 0 */
352
353 #define LDAP_TAG_EXOP_REQ_OID   ((ber_tag_t) 0x80U)     /* context specific + primitive */
354 #define LDAP_TAG_EXOP_REQ_VALUE ((ber_tag_t) 0x81U)     /* context specific + primitive */
355 #define LDAP_TAG_EXOP_RES_OID   ((ber_tag_t) 0x8aU)     /* context specific + primitive */
356 #define LDAP_TAG_EXOP_RES_VALUE ((ber_tag_t) 0x8bU)     /* context specific + primitive */
357
358 #define LDAP_TAG_SASL_RES_CREDS ((ber_tag_t) 0x87U)     /* context specific + primitive */
359
360 /* LDAP Request Messages */
361 #define LDAP_REQ_BIND           ((ber_tag_t) 0x60U)     /* application + constructed */
362 #define LDAP_REQ_UNBIND         ((ber_tag_t) 0x42U)     /* application + primitive   */
363 #define LDAP_REQ_SEARCH         ((ber_tag_t) 0x63U)     /* application + constructed */
364 #define LDAP_REQ_MODIFY         ((ber_tag_t) 0x66U)     /* application + constructed */
365 #define LDAP_REQ_ADD            ((ber_tag_t) 0x68U)     /* application + constructed */
366 #define LDAP_REQ_DELETE         ((ber_tag_t) 0x4aU)     /* application + primitive   */
367 #define LDAP_REQ_MODDN          ((ber_tag_t) 0x6cU)     /* application + constructed */
368 #define LDAP_REQ_MODRDN         LDAP_REQ_MODDN
369 #define LDAP_REQ_RENAME         LDAP_REQ_MODDN
370 #define LDAP_REQ_COMPARE        ((ber_tag_t) 0x6eU)     /* application + constructed */
371 #define LDAP_REQ_ABANDON        ((ber_tag_t) 0x50U)     /* application + primitive   */
372 #define LDAP_REQ_EXTENDED       ((ber_tag_t) 0x77U)     /* application + constructed */
373
374 /* LDAP Response Messages */
375 #define LDAP_RES_BIND           ((ber_tag_t) 0x61U)     /* application + constructed */
376 #define LDAP_RES_SEARCH_ENTRY   ((ber_tag_t) 0x64U)     /* application + constructed */
377 #define LDAP_RES_SEARCH_REFERENCE       ((ber_tag_t) 0x73U)     /* V3: application + constructed */
378 #define LDAP_RES_SEARCH_RESULT  ((ber_tag_t) 0x65U)     /* application + constructed */
379 #define LDAP_RES_MODIFY         ((ber_tag_t) 0x67U)     /* application + constructed */
380 #define LDAP_RES_ADD            ((ber_tag_t) 0x69U)     /* application + constructed */
381 #define LDAP_RES_DELETE         ((ber_tag_t) 0x6bU)     /* application + constructed */
382 #define LDAP_RES_MODDN          ((ber_tag_t) 0x6dU)     /* application + constructed */
383 #define LDAP_RES_MODRDN         LDAP_RES_MODDN  /* application + constructed */
384 #define LDAP_RES_RENAME         LDAP_RES_MODDN  /* application + constructed */
385 #define LDAP_RES_COMPARE        ((ber_tag_t) 0x6fU)     /* application + constructed */
386 #define LDAP_RES_EXTENDED       ((ber_tag_t) 0x78U)     /* V3: application + constructed */
387 #define LDAP_RES_INTERMEDIATE   ((ber_tag_t) 0x79U) /* V3+: application + constructed */
388
389 #define LDAP_RES_ANY                    (-1)
390 #define LDAP_RES_UNSOLICITED    (0)
391
392
393 /* sasl methods */
394 #define LDAP_SASL_SIMPLE        ((char*)0)
395 #define LDAP_SASL_NULL          ("")
396
397
398 /* authentication methods available */
399 #define LDAP_AUTH_NONE   ((ber_tag_t) 0x00U) /* no authentication */
400 #define LDAP_AUTH_SIMPLE ((ber_tag_t) 0x80U) /* context specific + primitive */
401 #define LDAP_AUTH_SASL   ((ber_tag_t) 0xa3U) /* context specific + constructed */
402 #define LDAP_AUTH_KRBV4  ((ber_tag_t) 0xffU) /* means do both of the following */
403 #define LDAP_AUTH_KRBV41 ((ber_tag_t) 0x81U) /* context specific + primitive */
404 #define LDAP_AUTH_KRBV42 ((ber_tag_t) 0x82U) /* context specific + primitive */
405
406
407 /* filter types */
408 #define LDAP_FILTER_AND ((ber_tag_t) 0xa0U)     /* context specific + constructed */
409 #define LDAP_FILTER_OR  ((ber_tag_t) 0xa1U)     /* context specific + constructed */
410 #define LDAP_FILTER_NOT ((ber_tag_t) 0xa2U)     /* context specific + constructed */
411 #define LDAP_FILTER_EQUALITY ((ber_tag_t) 0xa3U) /* context specific + constructed */
412 #define LDAP_FILTER_SUBSTRINGS ((ber_tag_t) 0xa4U) /* context specific + constructed */
413 #define LDAP_FILTER_GE ((ber_tag_t) 0xa5U) /* context specific + constructed */
414 #define LDAP_FILTER_LE ((ber_tag_t) 0xa6U) /* context specific + constructed */
415 #define LDAP_FILTER_PRESENT ((ber_tag_t) 0x87U) /* context specific + primitive   */
416 #define LDAP_FILTER_APPROX ((ber_tag_t) 0xa8U)  /* context specific + constructed */
417 #define LDAP_FILTER_EXT ((ber_tag_t) 0xa9U)     /* context specific + constructed */
418
419 /* extended filter component types */
420 #define LDAP_FILTER_EXT_OID             ((ber_tag_t) 0x81U)     /* context specific */
421 #define LDAP_FILTER_EXT_TYPE    ((ber_tag_t) 0x82U)     /* context specific */
422 #define LDAP_FILTER_EXT_VALUE   ((ber_tag_t) 0x83U)     /* context specific */
423 #define LDAP_FILTER_EXT_DNATTRS ((ber_tag_t) 0x84U)     /* context specific */
424
425 /* substring filter component types */
426 #define LDAP_SUBSTRING_INITIAL  ((ber_tag_t) 0x80U)     /* context specific */
427 #define LDAP_SUBSTRING_ANY              ((ber_tag_t) 0x81U)     /* context specific */
428 #define LDAP_SUBSTRING_FINAL    ((ber_tag_t) 0x82U)     /* context specific */
429
430 /* search scopes */
431 #define LDAP_SCOPE_DEFAULT              ((ber_int_t) -1)         /* OpenLDAP extension */
432 #define LDAP_SCOPE_BASE                 ((ber_int_t) 0x0000)
433 #define LDAP_SCOPE_BASEOBJECT   LDAP_SCOPE_BASE
434 #define LDAP_SCOPE_ONELEVEL             ((ber_int_t) 0x0001)
435 #define LDAP_SCOPE_ONE                  LDAP_SCOPE_ONELEVEL
436 #define LDAP_SCOPE_SUBTREE              ((ber_int_t) 0x0002)
437 #define LDAP_SCOPE_SUB                  LDAP_SCOPE_SUBTREE
438 #ifdef LDAP_DEVEL
439 #define LDAP_SCOPE_SUBORDINATE  ((ber_int_t) 0x0003) /* OpenLDAP extension */
440 #define LDAP_SCOPE_CHILDREN             LDAP_SCOPE_SUBORDINATE
441 #endif
442
443 /* substring filter component types */
444 #define LDAP_SUBSTRING_INITIAL  ((ber_tag_t) 0x80U)     /* context specific */
445 #define LDAP_SUBSTRING_ANY              ((ber_tag_t) 0x81U)     /* context specific */
446 #define LDAP_SUBSTRING_FINAL    ((ber_tag_t) 0x82U)     /* context specific */
447
448 /*
449  * LDAP Result Codes
450  */
451 #define LDAP_SUCCESS                            0x00
452
453 #define LDAP_RANGE(n,x,y)       (((x) <= (n)) && ((n) <= (y)))
454
455 #define LDAP_OPERATIONS_ERROR           0x01
456 #define LDAP_PROTOCOL_ERROR                     0x02
457 #define LDAP_TIMELIMIT_EXCEEDED         0x03
458 #define LDAP_SIZELIMIT_EXCEEDED         0x04
459 #define LDAP_COMPARE_FALSE                      0x05
460 #define LDAP_COMPARE_TRUE                       0x06
461 #define LDAP_AUTH_METHOD_NOT_SUPPORTED  0x07
462 #define LDAP_STRONG_AUTH_NOT_SUPPORTED  LDAP_AUTH_METHOD_NOT_SUPPORTED
463 #define LDAP_STRONG_AUTH_REQUIRED       0x08
464 #define LDAP_PARTIAL_RESULTS            0x09    /* LDAPv2+ (not LDAPv3) */
465
466 #define LDAP_REFERRAL                           0x0a /* LDAPv3 */
467 #define LDAP_ADMINLIMIT_EXCEEDED        0x0b /* LDAPv3 */
468 #define LDAP_UNAVAILABLE_CRITICAL_EXTENSION     0x0c /* LDAPv3 */
469 #define LDAP_CONFIDENTIALITY_REQUIRED   0x0d /* LDAPv3 */
470 #define LDAP_SASL_BIND_IN_PROGRESS      0x0e /* LDAPv3 */
471
472 #define LDAP_ATTR_ERROR(n)      LDAP_RANGE((n),0x10,0x15) /* 16-21 */
473
474 #define LDAP_NO_SUCH_ATTRIBUTE          0x10
475 #define LDAP_UNDEFINED_TYPE                     0x11
476 #define LDAP_INAPPROPRIATE_MATCHING     0x12
477 #define LDAP_CONSTRAINT_VIOLATION       0x13
478 #define LDAP_TYPE_OR_VALUE_EXISTS       0x14
479 #define LDAP_INVALID_SYNTAX                     0x15
480
481 #define LDAP_NAME_ERROR(n)      LDAP_RANGE((n),0x20,0x24) /* 32-34,36 */
482
483 #define LDAP_NO_SUCH_OBJECT                     0x20
484 #define LDAP_ALIAS_PROBLEM                      0x21
485 #define LDAP_INVALID_DN_SYNTAX          0x22
486 #define LDAP_IS_LEAF                            0x23 /* not LDAPv3 */
487 #define LDAP_ALIAS_DEREF_PROBLEM        0x24
488
489 #define LDAP_SECURITY_ERROR(n)  LDAP_RANGE((n),0x2F,0x32) /* 47-50 */
490
491 #define LDAP_PROXY_AUTHZ_FAILURE        0x2F /* LDAPv3 proxy authorization */
492 #define LDAP_INAPPROPRIATE_AUTH         0x30
493 #define LDAP_INVALID_CREDENTIALS        0x31
494 #define LDAP_INSUFFICIENT_ACCESS        0x32
495
496 #define LDAP_SERVICE_ERROR(n)   LDAP_RANGE((n),0x33,0x36) /* 51-54 */
497
498 #define LDAP_BUSY                                       0x33
499 #define LDAP_UNAVAILABLE                        0x34
500 #define LDAP_UNWILLING_TO_PERFORM       0x35
501 #define LDAP_LOOP_DETECT                        0x36
502
503 #define LDAP_UPDATE_ERROR(n)    LDAP_RANGE((n),0x40,0x47) /* 64-69,71 */
504
505 #define LDAP_NAMING_VIOLATION           0x40
506 #define LDAP_OBJECT_CLASS_VIOLATION     0x41
507 #define LDAP_NOT_ALLOWED_ON_NONLEAF     0x42
508 #define LDAP_NOT_ALLOWED_ON_RDN         0x43
509 #define LDAP_ALREADY_EXISTS                     0x44
510 #define LDAP_NO_OBJECT_CLASS_MODS       0x45
511 #define LDAP_RESULTS_TOO_LARGE          0x46 /* CLDAP */
512 #define LDAP_AFFECTS_MULTIPLE_DSAS      0x47 /* LDAPv3 */
513
514 #define LDAP_OTHER                              0x50
515
516 /* Experimental result codes */
517 #define LDAP_E_ERROR(n) LDAP_RANGE((n),0x1000,0x3FFF) /* experimental */
518 #define LDAP_X_ERROR(n) LDAP_RANGE((n),0x4000,0xFFFF) /* private use */
519
520 /* for the LDAP Sync operation */
521 #define LDAP_SYNC_REFRESH_REQUIRED              0x4100
522
523 /* for the LDAP No-Op control */
524 #define LDAP_NO_OPERATION                               0x410e
525
526 /* for the Assertion control */
527 #define LDAP_ASSERTION_FAILED                   0x410f
528
529 /* for the Cancel operation */
530 #define LDAP_CANCELLED                                  0x4110
531 #define LDAP_NO_SUCH_OPERATION                  0x4111
532 #define LDAP_TOO_LATE                                   0x4112
533 #define LDAP_CANNOT_CANCEL                              0x4113
534
535 /* API Error Codes
536  *
537  * Based on draft-ietf-ldap-c-api-xx
538  * but with new negative code values
539  */
540 #define LDAP_API_ERROR(n)               ((n)<0)
541 #define LDAP_API_RESULT(n)              ((n)<=0)
542
543 #define LDAP_SERVER_DOWN                                (-1)
544 #define LDAP_LOCAL_ERROR                                (-2)
545 #define LDAP_ENCODING_ERROR                             (-3)
546 #define LDAP_DECODING_ERROR                             (-4)
547 #define LDAP_TIMEOUT                                    (-5)
548 #define LDAP_AUTH_UNKNOWN                               (-6)
549 #define LDAP_FILTER_ERROR                               (-7)
550 #define LDAP_USER_CANCELLED                             (-8)
551 #define LDAP_PARAM_ERROR                                (-9)
552 #define LDAP_NO_MEMORY                                  (-10)
553 #define LDAP_CONNECT_ERROR                              (-11)
554 #define LDAP_NOT_SUPPORTED                              (-12)
555 #define LDAP_CONTROL_NOT_FOUND                  (-13)
556 #define LDAP_NO_RESULTS_RETURNED                (-14)
557 #define LDAP_MORE_RESULTS_TO_RETURN             (-15)
558 #define LDAP_CLIENT_LOOP                                (-16)
559 #define LDAP_REFERRAL_LIMIT_EXCEEDED    (-17)
560
561
562 /*
563  * This structure represents both ldap messages and ldap responses.
564  * These are really the same, except in the case of search responses,
565  * where a response has multiple messages.
566  */
567
568 typedef struct ldapmsg LDAPMessage;
569
570 /* for modifications */
571 typedef struct ldapmod {
572         int             mod_op;
573
574 #define LDAP_MOD_OP                     (0x0007)
575 #define LDAP_MOD_ADD            (0x0000)
576 #define LDAP_MOD_DELETE         (0x0001)
577 #define LDAP_MOD_REPLACE        (0x0002)
578 #define LDAP_MOD_INCREMENT      (0x0003) /* OpenLDAP extension */
579 #define LDAP_MOD_BVALUES        (0x0080)
580 /* IMPORTANT: do not use code 0x1000 (or above),
581  * it is used internally by the backends!
582  * (see ldap/servers/slapd/slap.h)
583  */
584
585         char            *mod_type;
586         union mod_vals_u {
587                 char            **modv_strvals;
588                 struct berval   **modv_bvals;
589         } mod_vals;
590 #define mod_values      mod_vals.modv_strvals
591 #define mod_bvalues     mod_vals.modv_bvals
592 } LDAPMod;
593
594 /*
595  * structure representing an ldap session which can
596  * encompass connections to multiple servers (in the
597  * face of referrals).
598  */
599 typedef struct ldap LDAP;
600
601 #define LDAP_DEREF_NEVER                0x00
602 #define LDAP_DEREF_SEARCHING    0x01
603 #define LDAP_DEREF_FINDING              0x02
604 #define LDAP_DEREF_ALWAYS               0x03
605
606 #define LDAP_NO_LIMIT                   0
607
608 /* how many messages to retrieve results for */
609 #define LDAP_MSG_ONE                    0x00
610 #define LDAP_MSG_ALL                    0x01
611 #define LDAP_MSG_RECEIVED               0x02
612
613 /*
614  * types for ldap URL handling
615  */
616 typedef struct ldap_url_desc {
617         struct ldap_url_desc *lud_next;
618         char    *lud_scheme;
619         char    *lud_host;
620         int             lud_port;
621         char    *lud_dn;
622         char    **lud_attrs;
623         int             lud_scope;
624         char    *lud_filter;
625         char    **lud_exts;
626         int             lud_crit_exts;
627 } LDAPURLDesc;
628
629 #define LDAP_URL_SUCCESS                0x00    /* Success */
630 #define LDAP_URL_ERR_MEM                0x01    /* can't allocate memory space */
631 #define LDAP_URL_ERR_PARAM              0x02    /* parameter is bad */
632
633 #define LDAP_URL_ERR_BADSCHEME  0x03    /* URL doesn't begin with "ldap[si]://" */
634 #define LDAP_URL_ERR_BADENCLOSURE 0x04  /* URL is missing trailing ">" */
635 #define LDAP_URL_ERR_BADURL             0x05    /* URL is bad */
636 #define LDAP_URL_ERR_BADHOST    0x06    /* host port is bad */
637 #define LDAP_URL_ERR_BADATTRS   0x07    /* bad (or missing) attributes */
638 #define LDAP_URL_ERR_BADSCOPE   0x08    /* scope string is invalid (or missing) */
639 #define LDAP_URL_ERR_BADFILTER  0x09    /* bad or missing filter */
640 #define LDAP_URL_ERR_BADEXTS    0x0a    /* bad or missing extensions */
641
642 /*
643  * The API draft spec says we should declare (or cause to be declared)
644  * 'struct timeval'.   We don't.  See IETF LDAPext discussions.
645  */
646 struct timeval;
647
648 /*
649  * in options.c:
650  */
651 LDAP_F( int )
652 ldap_get_option LDAP_P((
653         LDAP *ld,
654         int option,
655         void *outvalue));
656
657 LDAP_F( int )
658 ldap_set_option LDAP_P((
659         LDAP *ld,
660         int option,
661         LDAP_CONST void *invalue));
662
663 /* V3 REBIND Function Callback Prototype */
664 typedef int (LDAP_REBIND_PROC) LDAP_P((
665         LDAP *ld, LDAP_CONST char *url,
666         ber_tag_t request, ber_int_t msgid,
667         void *params ));
668
669 LDAP_F( int )
670 ldap_set_rebind_proc LDAP_P((
671         LDAP *ld,
672         LDAP_REBIND_PROC *rebind_proc,
673         void *params ));
674
675 /*
676  * in controls.c:
677  */
678 LDAP_F( int )
679 ldap_create_control LDAP_P((
680         LDAP_CONST char *requestOID,
681         BerElement *ber,
682         int iscritical,
683         LDAPControl **ctrlp ));
684
685 LDAP_F( LDAPControl * )
686 ldap_find_control LDAP_P((
687         LDAP_CONST char *oid,
688         LDAPControl **ctrls ));
689
690 LDAP_F( void )
691 ldap_control_free LDAP_P((
692         LDAPControl *ctrl ));
693
694 LDAP_F( void )
695 ldap_controls_free LDAP_P((
696         LDAPControl **ctrls ));
697
698 /*
699  * in dnssrv.c:
700  */
701 LDAP_F( int )
702 ldap_domain2dn LDAP_P((
703         LDAP_CONST char* domain,
704         char** dn ));
705
706 LDAP_F( int )
707 ldap_dn2domain LDAP_P((
708         LDAP_CONST char* dn,
709         char** domain ));
710
711 LDAP_F( int )
712 ldap_domain2hostlist LDAP_P((
713         LDAP_CONST char *domain,
714         char** hostlist ));
715
716 /*
717  * in extended.c:
718  */
719 LDAP_F( int )
720 ldap_extended_operation LDAP_P((
721         LDAP                    *ld,
722         LDAP_CONST char *reqoid,
723         struct berval   *reqdata,
724         LDAPControl             **serverctrls,
725         LDAPControl             **clientctrls,
726         int                             *msgidp ));
727
728 LDAP_F( int )
729 ldap_extended_operation_s LDAP_P((
730         LDAP                    *ld,
731         LDAP_CONST char *reqoid,
732         struct berval   *reqdata,
733         LDAPControl             **serverctrls,
734         LDAPControl             **clientctrls,
735         char                    **retoidp,
736         struct berval   **retdatap ));
737
738 LDAP_F( int )
739 ldap_parse_extended_result LDAP_P((
740         LDAP                    *ld,
741         LDAPMessage             *res,
742         char                    **retoidp,
743         struct berval   **retdatap,
744         int                             freeit ));
745
746 LDAP_F( int )
747 ldap_parse_intermediate LDAP_P((
748         LDAP                    *ld,
749         LDAPMessage             *res,
750         char                    **retoidp,
751         struct berval   **retdatap,
752         LDAPControl             ***serverctrls,
753         int                             freeit ));
754
755 /*
756  * in groupings.c:
757  */
758 #ifdef LDAP_EXOP_GROUPING_CREATE
759
760 LDAP_F( int )
761 ldap_grouping_create LDAP_P((
762         LDAP                    *ld,
763         LDAP_CONST char *grpoid,
764         struct berval   *grpdata,
765         LDAPControl             **serverctrls,
766         LDAPControl             **clientctrls,
767         int                             *msgidp ));
768
769 LDAP_F( int )
770 ldap_grouping_create_s LDAP_P((
771         LDAP                    *ld,
772         LDAP_CONST char *grpoid,
773         struct berval   *grpdata,
774         LDAPControl             **serverctrls,
775         LDAPControl             **clientctrls,
776         struct berval   **retgrpcookiep,
777         struct berval   **retgrpdatap ));
778
779 LDAP_F( int )
780 ldap_parse_grouping_create_result LDAP_P((
781         LDAP                    *ld,
782         LDAPMessage             *res,
783         struct berval   **retgrpcookiep,
784         struct berval   **retgrpdatap,
785         LDAPControl             ***serverctrls,
786         int                             freeit ));
787
788 LDAP_F( int )
789 ldap_grouping_end LDAP_P((
790         LDAP                    *ld,
791         LDAP_CONST char *grpoid,
792         struct berval   *grpdata,
793         LDAPControl             **serverctrls,
794         LDAPControl             **clientctrls,
795         int                             *msgidp ));
796
797 LDAP_F( int )
798 ldap_grouping_end_s LDAP_P((
799         LDAP                    *ld,
800         LDAP_CONST char *grpoid,
801         struct berval   *grpdata,
802         LDAPControl             **serverctrls,
803         LDAPControl             **clientctrls,
804         struct berval   **retgrpdatap ));
805
806 LDAP_F( int )
807 ldap_parse_grouping_end_result LDAP_P((
808         LDAP                    *ld,
809         LDAPMessage             *res,
810         struct berval   **retgrpdatap,
811         LDAPControl             ***serverctrls,
812         int                             freeit ));
813
814 LDAP_F( int )
815 ldap_grouping_action_operation LDAP_P((
816         LDAP                    *ld,
817         LDAP_CONST char *grpoid,
818         struct berval   *grpdata,
819         LDAPControl             **serverctrls,
820         LDAPControl             **clientctrls,
821         int                             *msgidp ));
822
823 LDAP_F( int )
824 ldap_grouping_action_operation_s LDAP_P((
825         LDAP                    *ld,
826         LDAP_CONST char *grpoid,
827         struct berval   *grpdata,
828         LDAPControl             **serverctrls,
829         LDAPControl             **clientctrls,
830         struct berval   **retgrpcookiep,
831         struct berval   **retgrpdatap ));
832
833 LDAP_F( int )
834 ldap_parse_grouping_action_result LDAP_P((
835         LDAP                    *ld,
836         LDAPMessage             *res,
837         struct berval   **retgrpcookiep,
838         struct berval   **retgrpdatap,
839         LDAPControl             ***serverctrls,
840         int                             freeit ));
841
842 LDAP_F( int )
843 ldap_parse_grouping_end_notice LDAP_P((
844         LDAP                    *ld,
845         LDAPMessage             *res,
846         struct berval   **retdatap,
847         struct berval   **retgrpcookiep,
848         struct berval   **retgrpdatap,
849         int                             freeit ));
850
851 LDAP_F( int )
852 ldap_parse_grouping_info_notice LDAP_P((
853         LDAP                    *ld,
854         LDAPMessage             *res,
855         struct berval   **retdatap,
856         struct berval   **retgrpcookiep,
857         struct berval   **retgrpdatap,
858         int                             freeit ));
859 #endif
860
861 /*
862  * in abandon.c:
863  */
864 LDAP_F( int )
865 ldap_abandon_ext LDAP_P((
866         LDAP                    *ld,
867         int                             msgid,
868         LDAPControl             **serverctrls,
869         LDAPControl             **clientctrls ));
870
871 #if LDAP_DEPRECATED
872 LDAP_F( int )
873 ldap_abandon LDAP_P((   /* deprecated */
874         LDAP *ld,
875         int msgid ));
876 #endif
877
878
879 /*
880  * in add.c:
881  */
882 LDAP_F( int )
883 ldap_add_ext LDAP_P((
884         LDAP                    *ld,
885         LDAP_CONST char *dn,
886         LDAPMod                 **attrs,
887         LDAPControl             **serverctrls,
888         LDAPControl             **clientctrls,
889         int                     *msgidp ));
890
891 LDAP_F( int )
892 ldap_add_ext_s LDAP_P((
893         LDAP                    *ld,
894         LDAP_CONST char *dn,
895         LDAPMod                 **attrs,
896         LDAPControl             **serverctrls,
897         LDAPControl             **clientctrls ));
898
899 #if LDAP_DEPRECATED
900 LDAP_F( int )
901 ldap_add LDAP_P((       /* deprecated */
902         LDAP *ld,
903         LDAP_CONST char *dn,
904         LDAPMod **attrs ));
905
906 LDAP_F( int )
907 ldap_add_s LDAP_P((     /* deprecated */
908         LDAP *ld,
909         LDAP_CONST char *dn,
910         LDAPMod **attrs ));
911 #endif
912
913
914 /*
915  * in sasl.c:
916  */
917 LDAP_F( int )
918 ldap_sasl_bind LDAP_P((
919         LDAP                    *ld,
920         LDAP_CONST char *dn,
921         LDAP_CONST char *mechanism,
922         struct berval   *cred,
923         LDAPControl             **serverctrls,
924         LDAPControl             **clientctrls,
925         int                             *msgidp ));
926
927 /* Interaction flags (should be passed about in a control)
928  *  Automatic (default): use defaults, prompt otherwise
929  *  Interactive: prompt always
930  *  Quiet: never prompt
931  */
932 #define LDAP_SASL_AUTOMATIC             0U
933 #define LDAP_SASL_INTERACTIVE   1U
934 #define LDAP_SASL_QUIET                 2U
935
936 /*
937  * V3 SASL Interaction Function Callback Prototype
938  *      when using Cyrus SASL, interact is pointer to sasl_interact_t
939  *  should likely passed in a control (and provided controls)
940  */
941 typedef int (LDAP_SASL_INTERACT_PROC) LDAP_P((
942         LDAP *ld, unsigned flags, void* defaults, void *interact ));
943
944 LDAP_F( int )
945 ldap_sasl_interactive_bind_s LDAP_P((
946         LDAP *ld,
947         LDAP_CONST char *dn, /* usually NULL */
948         LDAP_CONST char *saslMechanism,
949         LDAPControl **serverControls,
950         LDAPControl **clientControls,
951
952         /* should be client controls */
953         unsigned flags,
954         LDAP_SASL_INTERACT_PROC *proc,
955         void *defaults ));
956
957 LDAP_F( int )
958 ldap_sasl_bind_s LDAP_P((
959         LDAP                    *ld,
960         LDAP_CONST char *dn,
961         LDAP_CONST char *mechanism,
962         struct berval   *cred,
963         LDAPControl             **serverctrls,
964         LDAPControl             **clientctrls,
965         struct berval   **servercredp ));
966
967 LDAP_F( int )
968 ldap_parse_sasl_bind_result LDAP_P((
969         LDAP                    *ld,
970         LDAPMessage             *res,
971         struct berval   **servercredp,
972         int                             freeit ));
973
974 #if LDAP_DEPRECATED
975 /*
976  * in bind.c:
977  *      (deprecated)
978  */
979 LDAP_F( int )
980 ldap_bind LDAP_P((      /* deprecated */
981         LDAP *ld,
982         LDAP_CONST char *who,
983         LDAP_CONST char *passwd,
984         int authmethod ));
985
986 LDAP_F( int )
987 ldap_bind_s LDAP_P((    /* deprecated */
988         LDAP *ld,
989         LDAP_CONST char *who,
990         LDAP_CONST char *cred,
991         int authmethod ));
992
993 /*
994  * in sbind.c:
995  */
996 LDAP_F( int )
997 ldap_simple_bind LDAP_P(( /* deprecated */
998         LDAP *ld,
999         LDAP_CONST char *who,
1000         LDAP_CONST char *passwd ));
1001
1002 LDAP_F( int )
1003 ldap_simple_bind_s LDAP_P(( /* deprecated */
1004         LDAP *ld,
1005         LDAP_CONST char *who,
1006         LDAP_CONST char *passwd ));
1007
1008
1009 /*
1010  * in kbind.c:
1011  *      (deprecated)
1012  */
1013 LDAP_F( int )
1014 ldap_kerberos_bind_s LDAP_P((   /* deprecated */
1015         LDAP *ld,
1016         LDAP_CONST char *who ));
1017
1018 LDAP_F( int )
1019 ldap_kerberos_bind1 LDAP_P((    /* deprecated */
1020         LDAP *ld,
1021         LDAP_CONST char *who ));
1022
1023 LDAP_F( int )
1024 ldap_kerberos_bind1_s LDAP_P((  /* deprecated */
1025         LDAP *ld,
1026         LDAP_CONST char *who ));
1027
1028 LDAP_F( int )
1029 ldap_kerberos_bind2 LDAP_P((    /* deprecated */
1030         LDAP *ld,
1031         LDAP_CONST char *who ));
1032
1033 LDAP_F( int )
1034 ldap_kerberos_bind2_s LDAP_P((  /* deprecated */
1035         LDAP *ld,
1036         LDAP_CONST char *who ));
1037 #endif
1038
1039
1040 /*
1041  * in compare.c:
1042  */
1043 LDAP_F( int )
1044 ldap_compare_ext LDAP_P((
1045         LDAP                    *ld,
1046         LDAP_CONST char *dn,
1047         LDAP_CONST char *attr,
1048         struct berval   *bvalue,
1049         LDAPControl             **serverctrls,
1050         LDAPControl             **clientctrls,
1051         int                     *msgidp ));
1052
1053 LDAP_F( int )
1054 ldap_compare_ext_s LDAP_P((
1055         LDAP                    *ld,
1056         LDAP_CONST char *dn,
1057         LDAP_CONST char *attr,
1058         struct berval   *bvalue,
1059         LDAPControl             **serverctrls,
1060         LDAPControl             **clientctrls ));
1061
1062 #if LDAP_DEPRECATED
1063 LDAP_F( int )
1064 ldap_compare LDAP_P((   /* deprecated */
1065         LDAP *ld,
1066         LDAP_CONST char *dn,
1067         LDAP_CONST char *attr,
1068         LDAP_CONST char *value ));
1069
1070 LDAP_F( int )
1071 ldap_compare_s LDAP_P(( /* deprecated */
1072         LDAP *ld,
1073         LDAP_CONST char *dn,
1074         LDAP_CONST char *attr,
1075         LDAP_CONST char *value ));
1076 #endif
1077
1078
1079 /*
1080  * in delete.c:
1081  */
1082 LDAP_F( int )
1083 ldap_delete_ext LDAP_P((
1084         LDAP                    *ld,
1085         LDAP_CONST char *dn,
1086         LDAPControl             **serverctrls,
1087         LDAPControl             **clientctrls,
1088         int                     *msgidp ));
1089
1090 LDAP_F( int )
1091 ldap_delete_ext_s LDAP_P((
1092         LDAP                    *ld,
1093         LDAP_CONST char *dn,
1094         LDAPControl             **serverctrls,
1095         LDAPControl             **clientctrls ));
1096
1097 #if LDAP_DEPRECATED
1098 LDAP_F( int )
1099 ldap_delete LDAP_P((    /* deprecated */
1100         LDAP *ld,
1101         LDAP_CONST char *dn ));
1102
1103 LDAP_F( int )
1104 ldap_delete_s LDAP_P((  /* deprecated */
1105         LDAP *ld,
1106         LDAP_CONST char *dn ));
1107 #endif
1108
1109
1110 /*
1111  * in error.c:
1112  */
1113 LDAP_F( int )
1114 ldap_parse_result LDAP_P((
1115         LDAP                    *ld,
1116         LDAPMessage             *res,
1117         int                             *errcodep,
1118         char                    **matcheddnp,
1119         char                    **errmsgp,
1120         char                    ***referralsp,
1121         LDAPControl             ***serverctrls,
1122         int                             freeit ));
1123
1124 LDAP_F( char * )
1125 ldap_err2string LDAP_P((
1126         int err ));
1127
1128 #if LDAP_DEPRECATED
1129 LDAP_F( int )
1130 ldap_result2error LDAP_P((      /* deprecated */
1131         LDAP *ld,
1132         LDAPMessage *r,
1133         int freeit ));
1134
1135 LDAP_F( void )
1136 ldap_perror LDAP_P((    /* deprecated */
1137         LDAP *ld,
1138         LDAP_CONST char *s ));
1139 #endif
1140
1141
1142 /*
1143  * in modify.c:
1144  */
1145 LDAP_F( int )
1146 ldap_modify_ext LDAP_P((
1147         LDAP                    *ld,
1148         LDAP_CONST char *dn,
1149         LDAPMod                 **mods,
1150         LDAPControl             **serverctrls,
1151         LDAPControl             **clientctrls,
1152         int                     *msgidp ));
1153
1154 LDAP_F( int )
1155 ldap_modify_ext_s LDAP_P((
1156         LDAP                    *ld,
1157         LDAP_CONST char *dn,
1158         LDAPMod                 **mods,
1159         LDAPControl             **serverctrls,
1160         LDAPControl             **clientctrls ));
1161
1162 #if LDAP_DEPRECATED
1163 LDAP_F( int )
1164 ldap_modify LDAP_P((    /* deprecated */
1165         LDAP *ld,
1166         LDAP_CONST char *dn,
1167         LDAPMod **mods ));
1168
1169 LDAP_F( int )
1170 ldap_modify_s LDAP_P((  /* deprecated */
1171         LDAP *ld,
1172         LDAP_CONST char *dn,
1173         LDAPMod **mods ));
1174 #endif
1175
1176
1177 /*
1178  * in modrdn.c:
1179  */
1180 LDAP_F( int )
1181 ldap_rename LDAP_P((
1182         LDAP *ld,
1183         LDAP_CONST char *dn,
1184         LDAP_CONST char *newrdn,
1185         LDAP_CONST char *newSuperior,
1186         int deleteoldrdn,
1187         LDAPControl **sctrls,
1188         LDAPControl **cctrls,
1189         int *msgidp ));
1190
1191 LDAP_F( int )
1192 ldap_rename_s LDAP_P((
1193         LDAP *ld,
1194         LDAP_CONST char *dn,
1195         LDAP_CONST char *newrdn,
1196         LDAP_CONST char *newSuperior,
1197         int deleteoldrdn,
1198         LDAPControl **sctrls,
1199         LDAPControl **cctrls ));
1200
1201 #if LDAP_DEPRECATED
1202 LDAP_F( int )
1203 ldap_rename2 LDAP_P((   /* deprecated */
1204         LDAP *ld,
1205         LDAP_CONST char *dn,
1206         LDAP_CONST char *newrdn,
1207         LDAP_CONST char *newSuperior,
1208         int deleteoldrdn ));
1209
1210 LDAP_F( int )
1211 ldap_rename2_s LDAP_P(( /* deprecated */
1212         LDAP *ld,
1213         LDAP_CONST char *dn,
1214         LDAP_CONST char *newrdn,
1215         LDAP_CONST char *newSuperior,
1216         int deleteoldrdn ));
1217
1218 LDAP_F( int )
1219 ldap_modrdn LDAP_P((    /* deprecated */
1220         LDAP *ld,
1221         LDAP_CONST char *dn,
1222         LDAP_CONST char *newrdn ));
1223
1224 LDAP_F( int )
1225 ldap_modrdn_s LDAP_P((  /* deprecated */
1226         LDAP *ld,
1227         LDAP_CONST char *dn,
1228         LDAP_CONST char *newrdn ));
1229
1230 LDAP_F( int )
1231 ldap_modrdn2 LDAP_P((   /* deprecated */
1232         LDAP *ld,
1233         LDAP_CONST char *dn,
1234         LDAP_CONST char *newrdn,
1235         int deleteoldrdn ));
1236
1237 LDAP_F( int )
1238 ldap_modrdn2_s LDAP_P(( /* deprecated */
1239         LDAP *ld,
1240         LDAP_CONST char *dn,
1241         LDAP_CONST char *newrdn,
1242         int deleteoldrdn));
1243 #endif
1244
1245
1246 /*
1247  * in open.c:
1248  */
1249 #if LDAP_DEPRECATED
1250 LDAP_F( LDAP * )
1251 ldap_init LDAP_P(( /* deprecated */
1252         LDAP_CONST char *host,
1253         int port ));
1254
1255 LDAP_F( LDAP * )
1256 ldap_open LDAP_P((      /* deprecated */
1257         LDAP_CONST char *host,
1258         int port ));
1259 #endif
1260
1261 LDAP_F( int )
1262 ldap_create LDAP_P((
1263         LDAP **ldp ));
1264
1265 LDAP_F( int )
1266 ldap_initialize LDAP_P((
1267         LDAP **ldp,
1268         LDAP_CONST char *url ));
1269
1270 LDAP_F( int )
1271 ldap_start_tls_s LDAP_P((
1272         LDAP *ld,
1273         LDAPControl **serverctrls,
1274         LDAPControl **clientctrls ));
1275
1276 /*
1277  * in messages.c:
1278  */
1279 LDAP_F( LDAPMessage * )
1280 ldap_first_message LDAP_P((
1281         LDAP *ld,
1282         LDAPMessage *chain ));
1283
1284 LDAP_F( LDAPMessage * )
1285 ldap_next_message LDAP_P((
1286         LDAP *ld,
1287         LDAPMessage *msg ));
1288
1289 LDAP_F( int )
1290 ldap_count_messages LDAP_P((
1291         LDAP *ld,
1292         LDAPMessage *chain ));
1293
1294 /*
1295  * in references.c:
1296  */
1297 LDAP_F( LDAPMessage * )
1298 ldap_first_reference LDAP_P((
1299         LDAP *ld,
1300         LDAPMessage *chain ));
1301
1302 LDAP_F( LDAPMessage * )
1303 ldap_next_reference LDAP_P((
1304         LDAP *ld,
1305         LDAPMessage *ref ));
1306
1307 LDAP_F( int )
1308 ldap_count_references LDAP_P((
1309         LDAP *ld,
1310         LDAPMessage *chain ));
1311
1312 LDAP_F( int )
1313 ldap_parse_reference LDAP_P((
1314         LDAP                    *ld,
1315         LDAPMessage             *ref,
1316         char                    ***referralsp,
1317         LDAPControl             ***serverctrls,
1318         int                             freeit));
1319
1320
1321 /*
1322  * in getentry.c:
1323  */
1324 LDAP_F( LDAPMessage * )
1325 ldap_first_entry LDAP_P((
1326         LDAP *ld,
1327         LDAPMessage *chain ));
1328
1329 LDAP_F( LDAPMessage * )
1330 ldap_next_entry LDAP_P((
1331         LDAP *ld,
1332         LDAPMessage *entry ));
1333
1334 LDAP_F( int )
1335 ldap_count_entries LDAP_P((
1336         LDAP *ld,
1337         LDAPMessage *chain ));
1338
1339 LDAP_F( int )
1340 ldap_get_entry_controls LDAP_P((
1341         LDAP                    *ld,
1342         LDAPMessage             *entry,
1343         LDAPControl             ***serverctrls));
1344
1345
1346 /*
1347  * in addentry.c
1348  */
1349 LDAP_F( LDAPMessage * )
1350 ldap_delete_result_entry LDAP_P((
1351         LDAPMessage **list,
1352         LDAPMessage *e ));
1353
1354 LDAP_F( void )
1355 ldap_add_result_entry LDAP_P((
1356         LDAPMessage **list,
1357         LDAPMessage *e ));
1358
1359
1360 /*
1361  * in getdn.c
1362  */
1363 LDAP_F( char * )
1364 ldap_get_dn LDAP_P((
1365         LDAP *ld,
1366         LDAPMessage *entry ));
1367
1368 typedef struct ldap_ava {
1369         struct berval la_attr;
1370         struct berval la_value;
1371         unsigned la_flags;
1372 #define LDAP_AVA_NULL                           0x0000U
1373 #define LDAP_AVA_STRING                         0x0001U
1374 #define LDAP_AVA_BINARY                         0x0002U
1375 #define LDAP_AVA_NONPRINTABLE           0x0004U
1376 #define LDAP_AVA_FREE_ATTR                      0x0010U
1377 #define LDAP_AVA_FREE_VALUE                     0x0020U
1378
1379         void *la_private;
1380 } LDAPAVA;
1381
1382 typedef LDAPAVA** LDAPRDN;
1383 typedef LDAPRDN* LDAPDN;
1384
1385 /* DN formats */
1386 #define LDAP_DN_FORMAT_LDAP                     0x0000U
1387 #define LDAP_DN_FORMAT_LDAPV3           0x0010U
1388 #define LDAP_DN_FORMAT_LDAPV2           0x0020U
1389 #define LDAP_DN_FORMAT_DCE                      0x0030U
1390 #define LDAP_DN_FORMAT_UFN                      0x0040U /* dn2str only */
1391 #define LDAP_DN_FORMAT_AD_CANONICAL     0x0050U /* dn2str only */
1392 #define LDAP_DN_FORMAT_LBER                     0x00F0U /* for testing only */
1393 #define LDAP_DN_FORMAT_MASK                     0x00F0U
1394
1395 /* DN flags */
1396 #define LDAP_DN_PRETTY                          0x0100U
1397 #define LDAP_DN_SKIP                            0x0200U
1398 #define LDAP_DN_P_NOLEADTRAILSPACES     0x1000U
1399 #define LDAP_DN_P_NOSPACEAFTERRDN       0x2000U
1400 #define LDAP_DN_PEDANTIC                        0xF000U
1401
1402 LDAP_F( void ) ldap_rdnfree LDAP_P(( LDAPRDN rdn ));
1403 LDAP_F( void ) ldap_dnfree LDAP_P(( LDAPDN dn ));
1404
1405 LDAP_F( int )
1406 ldap_bv2dn LDAP_P(( 
1407         struct berval *bv, 
1408         LDAPDN *dn, 
1409         unsigned flags ));
1410
1411 LDAP_F( int )
1412 ldap_str2dn LDAP_P((
1413         LDAP_CONST char *str,
1414         LDAPDN *dn,
1415         unsigned flags ));
1416
1417 LDAP_F( int )
1418 ldap_dn2bv LDAP_P((
1419         LDAPDN dn,
1420         struct berval *bv,
1421         unsigned flags ));
1422
1423 LDAP_F( int )
1424 ldap_dn2str LDAP_P((
1425         LDAPDN dn,
1426         char **str,
1427         unsigned flags ));
1428
1429 LDAP_F( int )
1430 ldap_bv2rdn LDAP_P((
1431         struct berval *bv,
1432         LDAPRDN *rdn,
1433         char **next,
1434         unsigned flags ));
1435
1436 LDAP_F( int )
1437 ldap_str2rdn LDAP_P((
1438         LDAP_CONST char *str,
1439         LDAPRDN *rdn,
1440         char **next,
1441         unsigned flags ));
1442
1443 LDAP_F( int )
1444 ldap_rdn2bv LDAP_P((
1445         LDAPRDN rdn,
1446         struct berval *bv,
1447         unsigned flags ));
1448
1449 LDAP_F( int )
1450 ldap_rdn2str LDAP_P((
1451         LDAPRDN rdn,
1452         char **str,
1453         unsigned flags ));
1454
1455 LDAP_F( int )
1456 ldap_dn_normalize LDAP_P((
1457         LDAP_CONST char *in, unsigned iflags,
1458         char **out, unsigned oflags ));
1459
1460 LDAP_F( char * )
1461 ldap_dn2ufn LDAP_P(( /* deprecated */
1462         LDAP_CONST char *dn ));
1463
1464 LDAP_F( char ** )
1465 ldap_explode_dn LDAP_P(( /* deprecated */
1466         LDAP_CONST char *dn,
1467         int notypes ));
1468
1469 LDAP_F( char ** )
1470 ldap_explode_rdn LDAP_P(( /* deprecated */
1471         LDAP_CONST char *rdn,
1472         int notypes ));
1473
1474 typedef int LDAPDN_rewrite_func
1475         LDAP_P(( LDAPDN dn, unsigned flags, void *ctx ));
1476
1477 LDAP_F( int )
1478 ldap_X509dn2bv LDAP_P(( void *x509_name, struct berval *dn,
1479         LDAPDN_rewrite_func *func, unsigned flags ));
1480
1481 LDAP_F( char * )
1482 ldap_dn2dcedn LDAP_P(( LDAP_CONST char *dn ));  /* deprecated */
1483
1484 LDAP_F( char * )
1485 ldap_dcedn2dn LDAP_P(( LDAP_CONST char *dce )); /* deprecated */
1486
1487 LDAP_F( char * )
1488 ldap_dn2ad_canonical LDAP_P(( LDAP_CONST char *dn ));   /* deprecated */
1489
1490 LDAP_F( int )
1491 ldap_get_dn_ber LDAP_P((
1492         LDAP *ld, LDAPMessage *e, BerElement **berout, struct berval *dn ));
1493
1494 LDAP_F( int )
1495 ldap_get_attribute_ber LDAP_P((
1496         LDAP *ld, LDAPMessage *e, BerElement *ber, struct berval *attr,
1497         struct berval **vals ));
1498
1499 /*
1500  * in getattr.c
1501  */
1502 LDAP_F( char * )
1503 ldap_first_attribute LDAP_P((
1504         LDAP *ld,
1505         LDAPMessage *entry,
1506         BerElement **ber ));
1507
1508 LDAP_F( char * )
1509 ldap_next_attribute LDAP_P((
1510         LDAP *ld,
1511         LDAPMessage *entry,
1512         BerElement *ber ));
1513
1514
1515 /*
1516  * in getvalues.c
1517  */
1518 LDAP_F( struct berval ** )
1519 ldap_get_values_len LDAP_P((
1520         LDAP *ld,
1521         LDAPMessage *entry,
1522         LDAP_CONST char *target ));
1523
1524 LDAP_F( int )
1525 ldap_count_values_len LDAP_P((
1526         struct berval **vals ));
1527
1528 LDAP_F( void )
1529 ldap_value_free_len LDAP_P((
1530         struct berval **vals ));
1531
1532 #if LDAP_DEPRECATED
1533 LDAP_F( char ** )
1534 ldap_get_values LDAP_P((        /* deprecated */
1535         LDAP *ld,
1536         LDAPMessage *entry,
1537         LDAP_CONST char *target ));
1538
1539 LDAP_F( int )
1540 ldap_count_values LDAP_P((      /* deprecated */
1541         char **vals ));
1542
1543 LDAP_F( void )
1544 ldap_value_free LDAP_P((        /* deprecated */
1545         char **vals ));
1546 #endif
1547
1548 /*
1549  * in result.c:
1550  */
1551 LDAP_F( int )
1552 ldap_result LDAP_P((
1553         LDAP *ld,
1554         int msgid,
1555         int all,
1556         struct timeval *timeout,
1557         LDAPMessage **result ));
1558
1559 LDAP_F( int )
1560 ldap_msgtype LDAP_P((
1561         LDAPMessage *lm ));
1562
1563 LDAP_F( int )
1564 ldap_msgid   LDAP_P((
1565         LDAPMessage *lm ));
1566
1567 LDAP_F( int )
1568 ldap_msgfree LDAP_P((
1569         LDAPMessage *lm ));
1570
1571 LDAP_F( int )
1572 ldap_msgdelete LDAP_P((
1573         LDAP *ld,
1574         int msgid ));
1575
1576
1577 /*
1578  * in search.c:
1579  */
1580 LDAP_F( int )
1581 ldap_search_ext LDAP_P((
1582         LDAP                    *ld,
1583         LDAP_CONST char *base,
1584         int                             scope,
1585         LDAP_CONST char *filter,
1586         char                    **attrs,
1587         int                             attrsonly,
1588         LDAPControl             **serverctrls,
1589         LDAPControl             **clientctrls,
1590         struct timeval  *timeout,
1591         int                             sizelimit,
1592         int                             *msgidp ));
1593
1594 LDAP_F( int )
1595 ldap_search_ext_s LDAP_P((
1596         LDAP                    *ld,
1597         LDAP_CONST char *base,
1598         int                             scope,
1599         LDAP_CONST char *filter,
1600         char                    **attrs,
1601         int                             attrsonly,
1602         LDAPControl             **serverctrls,
1603         LDAPControl             **clientctrls,
1604         struct timeval  *timeout,
1605         int                             sizelimit,
1606         LDAPMessage             **res ));
1607
1608 #if LDAP_DEPRECATED
1609 LDAP_F( int )
1610 ldap_search LDAP_P((    /* deprecated */
1611         LDAP *ld,
1612         LDAP_CONST char *base,
1613         int scope,
1614         LDAP_CONST char *filter,
1615         char **attrs,
1616         int attrsonly ));
1617
1618 LDAP_F( int )
1619 ldap_search_s LDAP_P((  /* deprecated */
1620         LDAP *ld,
1621         LDAP_CONST char *base,
1622         int scope,
1623         LDAP_CONST char *filter,
1624         char **attrs,
1625         int attrsonly,
1626         LDAPMessage **res ));
1627
1628 LDAP_F( int )
1629 ldap_search_st LDAP_P(( /* deprecated */
1630         LDAP *ld,
1631         LDAP_CONST char *base,
1632         int scope,
1633         LDAP_CONST char *filter,
1634     char **attrs,
1635         int attrsonly,
1636         struct timeval *timeout,
1637         LDAPMessage **res ));
1638 #endif
1639
1640 /*
1641  * in unbind.c
1642  */
1643 LDAP_F( int )
1644 ldap_unbind_ext LDAP_P((
1645         LDAP                    *ld,
1646         LDAPControl             **serverctrls,
1647         LDAPControl             **clientctrls));
1648
1649 LDAP_F( int )
1650 ldap_unbind_ext_s LDAP_P((
1651         LDAP                    *ld,
1652         LDAPControl             **serverctrls,
1653         LDAPControl             **clientctrls));
1654
1655 #if LDAP_DEPRECATED
1656 LDAP_F( int )
1657 ldap_unbind LDAP_P(( /* deprecated */
1658         LDAP *ld ));
1659
1660 LDAP_F( int )
1661 ldap_unbind_s LDAP_P(( /* deprecated */
1662         LDAP *ld ));
1663 #endif
1664
1665 /*
1666  * in filter.c
1667  */
1668 LDAP_F( int )
1669 ldap_put_vrFilter LDAP_P((
1670         BerElement *ber,
1671         const char *vrf ));
1672
1673 /*
1674  * in free.c
1675  */
1676
1677 LDAP_F( void * )
1678 ldap_memalloc LDAP_P((
1679         ber_len_t s ));
1680
1681 LDAP_F( void * )
1682 ldap_memrealloc LDAP_P((
1683         void* p,
1684         ber_len_t s ));
1685
1686 LDAP_F( void * )
1687 ldap_memcalloc LDAP_P((
1688         ber_len_t n,
1689         ber_len_t s ));
1690
1691 LDAP_F( void )
1692 ldap_memfree LDAP_P((
1693         void* p ));
1694
1695 LDAP_F( void )
1696 ldap_memvfree LDAP_P((
1697         void** v ));
1698
1699 LDAP_F( char * )
1700 ldap_strdup LDAP_P((
1701         LDAP_CONST char * ));
1702
1703 LDAP_F( void )
1704 ldap_mods_free LDAP_P((
1705         LDAPMod **mods,
1706         int freemods ));
1707
1708
1709 #if LDAP_DEPRECATED
1710 /*
1711  * in sort.c (deprecated)
1712  */
1713 typedef int (LDAP_SORT_AD_CMP_PROC) LDAP_P(( /* deprecated */
1714         LDAP_CONST char *left,
1715         LDAP_CONST char *right ));
1716
1717 typedef int (LDAP_SORT_AV_CMP_PROC) LDAP_P(( /* deprecated */
1718         LDAP_CONST void *left,
1719         LDAP_CONST void *right ));
1720
1721 LDAP_F( int )   /* deprecated */
1722 ldap_sort_entries LDAP_P(( LDAP *ld,
1723         LDAPMessage **chain,
1724         LDAP_CONST char *attr,
1725         LDAP_SORT_AD_CMP_PROC *cmp ));
1726
1727 LDAP_F( int )   /* deprecated */
1728 ldap_sort_values LDAP_P((
1729         LDAP *ld,
1730         char **vals,
1731         LDAP_SORT_AV_CMP_PROC *cmp ));
1732
1733 LDAP_F( int ) /* deprecated */
1734 ldap_sort_strcasecmp LDAP_P((
1735         LDAP_CONST void *a,
1736         LDAP_CONST void *b ));
1737 #endif
1738
1739 /*
1740  * in url.c
1741  */
1742 LDAP_F( int )
1743 ldap_is_ldap_url LDAP_P((
1744         LDAP_CONST char *url ));
1745
1746 LDAP_F( int )
1747 ldap_is_ldaps_url LDAP_P((
1748         LDAP_CONST char *url ));
1749
1750 LDAP_F( int )
1751 ldap_is_ldapi_url LDAP_P((
1752         LDAP_CONST char *url ));
1753
1754 LDAP_F( int )
1755 ldap_url_parse LDAP_P((
1756         LDAP_CONST char *url,
1757         LDAPURLDesc **ludpp ));
1758
1759 LDAP_F( char * )
1760 ldap_url_desc2str LDAP_P((
1761         LDAPURLDesc *ludp ));
1762
1763 LDAP_F( void )
1764 ldap_free_urldesc LDAP_P((
1765         LDAPURLDesc *ludp ));
1766
1767
1768 /*
1769  * LDAP Cancel Extended Operation <draft-zeilenga-ldap-cancel-xx.txt>
1770  *  in cancel.c
1771  */
1772 #define LDAP_API_FEATURE_CANCEL 1000
1773
1774 LDAP_F( int )
1775 ldap_cancel LDAP_P(( LDAP *ld,
1776         int cancelid,
1777         LDAPControl             **sctrls,
1778         LDAPControl             **cctrls,
1779         int                             *msgidp ));
1780
1781 LDAP_F( int )
1782 ldap_cancel_s LDAP_P((
1783         LDAP *ld,
1784         int cancelid,
1785         LDAPControl **sctrl,
1786         LDAPControl **cctrl ));
1787
1788 /*
1789  * LDAP Server Side Sort
1790  *      in sortctrl.c
1791  */
1792 #define LDAP_API_FEATURE_SERVER_SIDE_SORT 1000
1793
1794 /* structure for a sort-key */
1795 typedef struct ldapsortkey {
1796         char *  attributeType;
1797         char *  orderingRule;
1798         int     reverseOrder;
1799 } LDAPSortKey;
1800
1801 LDAP_F( int )
1802 ldap_create_sort_keylist LDAP_P((
1803         LDAPSortKey ***sortKeyList,
1804         char        *keyString ));
1805
1806 LDAP_F( void )
1807 ldap_free_sort_keylist LDAP_P((
1808         LDAPSortKey **sortkeylist ));
1809
1810 LDAP_F( int )
1811 ldap_create_sort_control LDAP_P((
1812         LDAP *ld,
1813         LDAPSortKey **keyList,
1814         int ctl_iscritical,
1815         LDAPControl **ctrlp ));
1816
1817 LDAP_F( int )
1818 ldap_parse_sort_control LDAP_P((
1819         LDAP           *ld,
1820         LDAPControl    **ctrlp,
1821         unsigned long  *result,
1822         char           **attribute ));
1823
1824
1825 /*
1826  * LDAP Virtual List View
1827  *      in vlvctrl.c
1828  */
1829 #define LDAP_API_FEATURE_VIRTUAL_LIST_VIEW 1000
1830
1831 /* structure for virtual list */
1832 typedef struct ldapvlvinfo {
1833         int             ldvlv_version;
1834     unsigned long   ldvlv_before_count;
1835     unsigned long   ldvlv_after_count;
1836     unsigned long   ldvlv_offset;
1837     unsigned long   ldvlv_count;
1838     struct berval *     ldvlv_attrvalue;
1839     struct berval *     ldvlv_context;
1840     void *                      ldvlv_extradata;
1841 } LDAPVLVInfo;
1842
1843 LDAP_F( int )
1844 ldap_create_vlv_control LDAP_P((
1845         LDAP *ld,
1846         LDAPVLVInfo *ldvlistp,
1847         LDAPControl **ctrlp ));
1848
1849 LDAP_F( int )
1850 ldap_parse_vlv_control LDAP_P((
1851         LDAP          *ld,
1852         LDAPControl   **ctrls,
1853         unsigned long *target_posp,
1854         unsigned long *list_countp,
1855         struct berval **contextp,
1856         int           *errcodep ));
1857
1858 /*
1859  * LDAP Transactions
1860  *      in txn.c
1861  */
1862 #ifdef LDAP_GROUPING_TRANSACTION
1863 LDAP_F( int )
1864 ldap_parse_txn_create LDAP_P((
1865         LDAP *ld,
1866         LDAPMessage *res,
1867         struct berval **cookie ));
1868
1869 LDAP_F( int )
1870 ldap_txn_create LDAP_P((
1871         LDAP *ld,
1872         LDAPControl             **sctrls,
1873         LDAPControl             **cctrls,
1874         int                             *msgidp ));
1875
1876 LDAP_F( int )
1877 ldap_txn_create_s LDAP_P((
1878         LDAP *ld,
1879         struct berval **cookie,
1880         LDAPControl **sctrls,
1881         LDAPControl **cctrls ));
1882
1883 LDAP_F( int )
1884 ldap_txn_end LDAP_P((
1885         LDAP *ld,
1886         struct berval *cookie,
1887         int commit,
1888         LDAPControl             **sctrls,
1889         LDAPControl             **cctrls,
1890         int                             *msgidp ));
1891
1892 LDAP_F( int )
1893 ldap_txn_end_s LDAP_P((
1894         LDAP *ld,
1895         struct berval *cookie,
1896         int commit,
1897         LDAPControl **sctrls,
1898         LDAPControl **cctrls ));
1899 #endif
1900
1901 /*
1902  * LDAP Who Am I?
1903  *      in whoami.c
1904  */
1905 #define LDAP_API_FEATURE_WHOAMI 1000
1906
1907 LDAP_F( int )
1908 ldap_parse_whoami LDAP_P((
1909         LDAP *ld,
1910         LDAPMessage *res,
1911         struct berval **authzid ));
1912
1913 LDAP_F( int )
1914 ldap_whoami LDAP_P(( LDAP *ld,
1915         LDAPControl             **sctrls,
1916         LDAPControl             **cctrls,
1917         int                             *msgidp ));
1918
1919 LDAP_F( int )
1920 ldap_whoami_s LDAP_P((
1921         LDAP *ld,
1922         struct berval **authzid,
1923         LDAPControl **sctrls,
1924         LDAPControl **cctrls ));
1925
1926 /*
1927  * LDAP Password Modify
1928  *      in passwd.c
1929  */
1930 #define LDAP_API_FEATURE_PASSWD_MODIFY 1000
1931
1932 LDAP_F( int )
1933 ldap_parse_passwd LDAP_P((
1934         LDAP *ld,
1935         LDAPMessage *res,
1936         struct berval *newpasswd ));
1937
1938 LDAP_F( int )
1939 ldap_passwd LDAP_P(( LDAP *ld,
1940         struct berval   *user,
1941         struct berval   *oldpw,
1942         struct berval   *newpw,
1943         LDAPControl             **sctrls,
1944         LDAPControl             **cctrls,
1945         int                             *msgidp ));
1946
1947 LDAP_F( int )
1948 ldap_passwd_s LDAP_P((
1949         LDAP *ld,
1950         struct berval   *user,
1951         struct berval   *oldpw,
1952         struct berval   *newpw,
1953         struct berval *newpasswd,
1954         LDAPControl **sctrls,
1955         LDAPControl **cctrls ));
1956
1957 #ifdef LDAP_CONTROL_PASSWORDPOLICYREQUEST
1958 /*
1959  * LDAP Password Policy controls
1960  *      in ppolicy.c
1961  */
1962 #define LDAP_API_FEATURE_PASSWORD_POLICY 1000
1963
1964 typedef enum passpolicyerror_enum {
1965        PP_passwordExpired = 0,
1966        PP_accountLocked = 1,
1967        PP_changeAfterReset = 2,
1968        PP_passwordModNotAllowed = 3,
1969        PP_mustSupplyOldPassword = 4,
1970        PP_insufficientPasswordQuality = 5,
1971        PP_passwordTooShort = 6,
1972        PP_passwordTooYoung = 7,
1973        PP_passwordInHistory = 8,
1974        PP_noError = 65535
1975 } LDAPPasswordPolicyError;
1976
1977 LDAP_F( int )
1978 ldap_create_passwordpolicy_control LDAP_P((
1979         LDAP *ld,
1980         LDAPControl **ctrlp ));
1981
1982 LDAP_F( int )
1983 ldap_parse_passwordpolicy_control LDAP_P((
1984         LDAP *ld,
1985         LDAPControl *ctrl,
1986         int *expirep,
1987         int *gracep,
1988         LDAPPasswordPolicyError *errorp ));
1989
1990 LDAP_F( const char * )
1991 ldap_passwordpolicy_err2txt LDAP_P(( LDAPPasswordPolicyError ));
1992 #endif /* LDAP_CONTROL_PASSWORDPOLICYREQUEST */
1993
1994 LDAP_END_DECL
1995 #endif /* _LDAP_H */