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