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