]> git.sur5r.net Git - openldap/blob - include/ldap.h
Merge remote-tracking branch 'origin/mdb.master'
[openldap] / include / ldap.h
1 /* $OpenLDAP$ */
2 /* This work is part of OpenLDAP Software <http://www.openldap.org/>.
3  * 
4  * Copyright 1998-2014 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 #       define  LDAP_API_FEATURE_SESSION_THREAD_SAFE    1
64 #       define  LDAP_API_FEATURE_OPERATION_THREAD_SAFE  1
65 #endif
66 #if defined( LDAP_THREAD_SAFE ) && \
67         defined( LDAP_API_FEATURE_X_OPENLDAP_THREAD_SAFE )
68 /* #define LDAP_API_FEATURE_SESSION_SAFE        1       */
69 /* #define LDAP_API_OPERATION_SESSION_SAFE      1       */
70 #endif
71
72
73 #define LDAP_PORT               389             /* ldap:///             default LDAP port */
74 #define LDAPS_PORT              636             /* ldaps:///    default LDAP over TLS port */
75
76 #define LDAP_ROOT_DSE                           ""
77 #define LDAP_NO_ATTRS                           "1.1"
78 #define LDAP_ALL_USER_ATTRIBUTES        "*"
79 #define LDAP_ALL_OPERATIONAL_ATTRIBUTES "+" /* RFC 3673 */
80
81 /* RFC 4511:  maxInt INTEGER ::= 2147483647 -- (2^^31 - 1) -- */
82 #define LDAP_MAXINT (2147483647)
83
84 /*
85  * LDAP_OPTions
86  *      0x0000 - 0x0fff reserved for api options
87  *      0x1000 - 0x3fff reserved for api extended options
88  *      0x4000 - 0x7fff reserved for private and experimental options
89  */
90
91 #define LDAP_OPT_API_INFO                       0x0000
92 #define LDAP_OPT_DESC                           0x0001 /* historic */
93 #define LDAP_OPT_DEREF                          0x0002
94 #define LDAP_OPT_SIZELIMIT                      0x0003
95 #define LDAP_OPT_TIMELIMIT                      0x0004
96 /* 0x05 - 0x07 not defined */
97 #define LDAP_OPT_REFERRALS                      0x0008
98 #define LDAP_OPT_RESTART                        0x0009
99 /* 0x0a - 0x10 not defined */
100 #define LDAP_OPT_PROTOCOL_VERSION               0x0011
101 #define LDAP_OPT_SERVER_CONTROLS                0x0012
102 #define LDAP_OPT_CLIENT_CONTROLS                0x0013
103 /* 0x14 not defined */
104 #define LDAP_OPT_API_FEATURE_INFO               0x0015
105 /* 0x16 - 0x2f not defined */
106 #define LDAP_OPT_HOST_NAME                      0x0030
107 #define LDAP_OPT_RESULT_CODE                    0x0031
108 #define LDAP_OPT_ERROR_NUMBER                   LDAP_OPT_RESULT_CODE
109 #define LDAP_OPT_DIAGNOSTIC_MESSAGE             0x0032
110 #define LDAP_OPT_ERROR_STRING                   LDAP_OPT_DIAGNOSTIC_MESSAGE
111 #define LDAP_OPT_MATCHED_DN                     0x0033
112 /* 0x0034 - 0x3fff not defined */
113 /* 0x0091 used by Microsoft for LDAP_OPT_AUTO_RECONNECT */
114 #define LDAP_OPT_SSPI_FLAGS                     0x0092
115 /* 0x0093 used by Microsoft for LDAP_OPT_SSL_INFO */
116 /* 0x0094 used by Microsoft for LDAP_OPT_REF_DEREF_CONN_PER_MSG */
117 #define LDAP_OPT_SIGN                           0x0095
118 #define LDAP_OPT_ENCRYPT                        0x0096
119 #define LDAP_OPT_SASL_METHOD                    0x0097
120 /* 0x0098 used by Microsoft for LDAP_OPT_AREC_EXCLUSIVE */
121 #define LDAP_OPT_SECURITY_CONTEXT               0x0099
122 /* 0x009A used by Microsoft for LDAP_OPT_ROOTDSE_CACHE */
123 /* 0x009B - 0x3fff not defined */
124
125 /* API Extensions */
126 #define LDAP_OPT_API_EXTENSION_BASE 0x4000  /* API extensions */
127
128 /* private and experimental options */
129 /* OpenLDAP specific options */
130 #define LDAP_OPT_DEBUG_LEVEL            0x5001  /* debug level */
131 #define LDAP_OPT_TIMEOUT                        0x5002  /* default timeout */
132 #define LDAP_OPT_REFHOPLIMIT            0x5003  /* ref hop limit */
133 #define LDAP_OPT_NETWORK_TIMEOUT        0x5005  /* socket level timeout */
134 #define LDAP_OPT_URI                            0x5006
135 #define LDAP_OPT_REFERRAL_URLS      0x5007  /* Referral URLs */
136 #define LDAP_OPT_SOCKBUF            0x5008  /* sockbuf */
137 #define LDAP_OPT_DEFBASE                0x5009  /* searchbase */
138 #define LDAP_OPT_CONNECT_ASYNC          0x5010  /* create connections asynchronously */
139 #define LDAP_OPT_CONNECT_CB                     0x5011  /* connection callbacks */
140 #define LDAP_OPT_SESSION_REFCNT         0x5012  /* session reference count */
141
142 /* OpenLDAP TLS options */
143 #define LDAP_OPT_X_TLS                          0x6000
144 #define LDAP_OPT_X_TLS_CTX                      0x6001  /* OpenSSL CTX* */
145 #define LDAP_OPT_X_TLS_CACERTFILE       0x6002
146 #define LDAP_OPT_X_TLS_CACERTDIR        0x6003
147 #define LDAP_OPT_X_TLS_CERTFILE         0x6004
148 #define LDAP_OPT_X_TLS_KEYFILE          0x6005
149 #define LDAP_OPT_X_TLS_REQUIRE_CERT     0x6006
150 #define LDAP_OPT_X_TLS_PROTOCOL_MIN     0x6007
151 #define LDAP_OPT_X_TLS_CIPHER_SUITE     0x6008
152 #define LDAP_OPT_X_TLS_RANDOM_FILE      0x6009
153 #define LDAP_OPT_X_TLS_SSL_CTX          0x600a  /* OpenSSL SSL* */
154 #define LDAP_OPT_X_TLS_CRLCHECK         0x600b
155 #define LDAP_OPT_X_TLS_CONNECT_CB       0x600c
156 #define LDAP_OPT_X_TLS_CONNECT_ARG      0x600d
157 #define LDAP_OPT_X_TLS_DHFILE           0x600e
158 #define LDAP_OPT_X_TLS_NEWCTX           0x600f
159 #define LDAP_OPT_X_TLS_CRLFILE          0x6010  /* GNUtls only */
160 #define LDAP_OPT_X_TLS_PACKAGE          0x6011
161 #define LDAP_OPT_X_TLS_ECNAME           0x6012
162 #define LDAP_OPT_X_TLS_VERSION          0x6013  /* read-only */
163 #define LDAP_OPT_X_TLS_CIPHER           0x6014  /* read-only */
164 #define LDAP_OPT_X_TLS_PEERCERT         0x6015  /* read-only */
165
166 #define LDAP_OPT_X_TLS_NEVER    0
167 #define LDAP_OPT_X_TLS_HARD             1
168 #define LDAP_OPT_X_TLS_DEMAND   2
169 #define LDAP_OPT_X_TLS_ALLOW    3
170 #define LDAP_OPT_X_TLS_TRY              4
171
172 #define LDAP_OPT_X_TLS_CRL_NONE 0
173 #define LDAP_OPT_X_TLS_CRL_PEER 1
174 #define LDAP_OPT_X_TLS_CRL_ALL  2
175
176 /* for LDAP_OPT_X_TLS_PROTOCOL_MIN */
177 #define LDAP_OPT_X_TLS_PROTOCOL(maj,min)        (((maj) << 8) + (min))
178 #define LDAP_OPT_X_TLS_PROTOCOL_SSL2            (2 << 8)
179 #define LDAP_OPT_X_TLS_PROTOCOL_SSL3            (3 << 8)
180 #define LDAP_OPT_X_TLS_PROTOCOL_TLS1_0          ((3 << 8) + 1)
181 #define LDAP_OPT_X_TLS_PROTOCOL_TLS1_1          ((3 << 8) + 2)
182 #define LDAP_OPT_X_TLS_PROTOCOL_TLS1_2          ((3 << 8) + 3)
183
184 /* OpenLDAP SASL options */
185 #define LDAP_OPT_X_SASL_MECH                    0x6100
186 #define LDAP_OPT_X_SASL_REALM                   0x6101
187 #define LDAP_OPT_X_SASL_AUTHCID                 0x6102
188 #define LDAP_OPT_X_SASL_AUTHZID                 0x6103
189 #define LDAP_OPT_X_SASL_SSF                             0x6104 /* read-only */
190 #define LDAP_OPT_X_SASL_SSF_EXTERNAL    0x6105 /* write-only */
191 #define LDAP_OPT_X_SASL_SECPROPS                0x6106 /* write-only */
192 #define LDAP_OPT_X_SASL_SSF_MIN                 0x6107
193 #define LDAP_OPT_X_SASL_SSF_MAX                 0x6108
194 #define LDAP_OPT_X_SASL_MAXBUFSIZE              0x6109
195 #define LDAP_OPT_X_SASL_MECHLIST                0x610a /* read-only */
196 #define LDAP_OPT_X_SASL_NOCANON                 0x610b
197 #define LDAP_OPT_X_SASL_USERNAME                0x610c /* read-only */
198 #define LDAP_OPT_X_SASL_GSS_CREDS               0x610d
199
200 /* OpenLDAP GSSAPI options */
201 #define LDAP_OPT_X_GSSAPI_DO_NOT_FREE_CONTEXT      0x6200
202 #define LDAP_OPT_X_GSSAPI_ALLOW_REMOTE_PRINCIPAL   0x6201
203
204 /*
205  * OpenLDAP per connection tcp-keepalive settings
206  * (Linux only, ignored where unsupported)
207  */
208 #define LDAP_OPT_X_KEEPALIVE_IDLE               0x6300
209 #define LDAP_OPT_X_KEEPALIVE_PROBES             0x6301
210 #define LDAP_OPT_X_KEEPALIVE_INTERVAL   0x6302
211
212 /* Private API Extensions -- reserved for application use */
213 #define LDAP_OPT_PRIVATE_EXTENSION_BASE 0x7000  /* Private API inclusive */
214
215 /*
216  * ldap_get_option() and ldap_set_option() return values.
217  * As later versions may return other values indicating
218  * failure, current applications should only compare returned
219  * value against LDAP_OPT_SUCCESS.
220  */
221 #define LDAP_OPT_SUCCESS        0
222 #define LDAP_OPT_ERROR          (-1)
223
224 /* option on/off values */
225 #define LDAP_OPT_ON             ((void *) &ber_pvt_opt_on)
226 #define LDAP_OPT_OFF    ((void *) 0)
227
228 typedef struct ldapapiinfo {
229         int             ldapai_info_version;            /* version of LDAPAPIInfo */
230 #define LDAP_API_INFO_VERSION   (1)
231         int             ldapai_api_version;                     /* revision of API supported */
232         int             ldapai_protocol_version;        /* highest LDAP version supported */
233         char    **ldapai_extensions;            /* names of API extensions */
234         char    *ldapai_vendor_name;            /* name of supplier */
235         int             ldapai_vendor_version;          /* supplier-specific version * 100 */
236 } LDAPAPIInfo;
237
238 typedef struct ldap_apifeature_info {
239         int             ldapaif_info_version;           /* version of LDAPAPIFeatureInfo */
240 #define LDAP_FEATURE_INFO_VERSION (1)   /* apifeature_info struct version */
241         char*   ldapaif_name;                           /* LDAP_API_FEATURE_* (less prefix) */
242         int             ldapaif_version;                        /* value of LDAP_API_FEATURE_... */
243 } LDAPAPIFeatureInfo;
244
245 /*
246  * LDAP Control structure
247  */
248 typedef struct ldapcontrol {
249         char *                  ldctl_oid;                      /* numericoid of control */
250         struct berval   ldctl_value;            /* encoded value of control */
251         char                    ldctl_iscritical;       /* criticality */
252 } LDAPControl;
253
254 /* LDAP Controls */
255 /*      standard track controls */
256 #define LDAP_CONTROL_MANAGEDSAIT        "2.16.840.1.113730.3.4.2"  /* RFC 3296 */
257 #define LDAP_CONTROL_PROXY_AUTHZ        "2.16.840.1.113730.3.4.18" /* RFC 4370 */
258 #define LDAP_CONTROL_SUBENTRIES         "1.3.6.1.4.1.4203.1.10.1"  /* RFC 3672 */
259
260 #define LDAP_CONTROL_VALUESRETURNFILTER "1.2.826.0.1.3344810.2.3"/* RFC 3876 */
261
262 #define LDAP_CONTROL_ASSERT                             "1.3.6.1.1.12"                  /* RFC 4528 */
263 #define LDAP_CONTROL_PRE_READ                   "1.3.6.1.1.13.1"                /* RFC 4527 */
264 #define LDAP_CONTROL_POST_READ                  "1.3.6.1.1.13.2"                /* RFC 4527 */
265
266 #define LDAP_CONTROL_SORTREQUEST    "1.2.840.113556.1.4.473" /* RFC 2891 */
267 #define LDAP_CONTROL_SORTRESPONSE       "1.2.840.113556.1.4.474" /* RFC 2891 */
268
269 /*      non-standard track controls */
270 #define LDAP_CONTROL_PAGEDRESULTS       "1.2.840.113556.1.4.319"   /* RFC 2696 */
271
272 #define LDAP_CONTROL_AUTHZID_REQUEST    "2.16.840.1.113730.4.16"   /* RFC 3829 */
273 #define LDAP_CONTROL_AUTHZID_RESPONSE   "2.16.840.1.113730.4.15"   /* RFC 3829 */
274
275 /* LDAP Content Synchronization Operation -- RFC 4533 */
276 #define LDAP_SYNC_OID                   "1.3.6.1.4.1.4203.1.9.1"
277 #define LDAP_CONTROL_SYNC               LDAP_SYNC_OID ".1"
278 #define LDAP_CONTROL_SYNC_STATE LDAP_SYNC_OID ".2"
279 #define LDAP_CONTROL_SYNC_DONE  LDAP_SYNC_OID ".3"
280 #define LDAP_SYNC_INFO                  LDAP_SYNC_OID ".4"
281
282 #define LDAP_SYNC_NONE                                  0x00
283 #define LDAP_SYNC_REFRESH_ONLY                  0x01
284 #define LDAP_SYNC_RESERVED                              0x02
285 #define LDAP_SYNC_REFRESH_AND_PERSIST   0x03
286
287 #define LDAP_SYNC_REFRESH_PRESENTS              0
288 #define LDAP_SYNC_REFRESH_DELETES               1
289
290 #define LDAP_TAG_SYNC_NEW_COOKIE                ((ber_tag_t) 0x80U)
291 #define LDAP_TAG_SYNC_REFRESH_DELETE    ((ber_tag_t) 0xa1U)
292 #define LDAP_TAG_SYNC_REFRESH_PRESENT   ((ber_tag_t) 0xa2U)
293 #define LDAP_TAG_SYNC_ID_SET                    ((ber_tag_t) 0xa3U)
294
295 #define LDAP_TAG_SYNC_COOKIE                    ((ber_tag_t) 0x04U)
296 #define LDAP_TAG_REFRESHDELETES                 ((ber_tag_t) 0x01U)
297 #define LDAP_TAG_REFRESHDONE                    ((ber_tag_t) 0x01U)
298 #define LDAP_TAG_RELOAD_HINT                    ((ber_tag_t) 0x01U)
299
300 #define LDAP_SYNC_PRESENT                               0
301 #define LDAP_SYNC_ADD                                   1
302 #define LDAP_SYNC_MODIFY                                2
303 #define LDAP_SYNC_DELETE                                3
304 #define LDAP_SYNC_NEW_COOKIE                    4
305
306 /* LDAP Don't Use Copy Control (RFC 6171) */
307 #define LDAP_CONTROL_DONTUSECOPY                "1.3.6.1.1.22"
308
309 /* Password policy Controls *//* work in progress */
310 /* ITS#3458: released; disabled by default */
311 #define LDAP_CONTROL_PASSWORDPOLICYREQUEST      "1.3.6.1.4.1.42.2.27.8.5.1"
312 #define LDAP_CONTROL_PASSWORDPOLICYRESPONSE     "1.3.6.1.4.1.42.2.27.8.5.1"
313
314 /* various works in progress */
315 #define LDAP_CONTROL_NOOP                               "1.3.6.1.4.1.4203.666.5.2"
316 #define LDAP_CONTROL_NO_SUBORDINATES    "1.3.6.1.4.1.4203.666.5.11"
317 #define LDAP_CONTROL_RELAX                              "1.3.6.1.4.1.4203.666.5.12"
318 #define LDAP_CONTROL_MANAGEDIT                  LDAP_CONTROL_RELAX
319 #define LDAP_CONTROL_SLURP                              "1.3.6.1.4.1.4203.666.5.13"
320 #define LDAP_CONTROL_VALSORT                    "1.3.6.1.4.1.4203.666.5.14"
321 #define LDAP_CONTROL_X_DEREF                    "1.3.6.1.4.1.4203.666.5.16"
322 #define LDAP_CONTROL_X_WHATFAILED               "1.3.6.1.4.1.4203.666.5.17"
323
324 /* LDAP Chaining Behavior Control *//* work in progress */
325 /* <draft-sermersheim-ldap-chaining>;
326  * see also LDAP_NO_REFERRALS_FOUND, LDAP_CANNOT_CHAIN */
327 #define LDAP_CONTROL_X_CHAINING_BEHAVIOR        "1.3.6.1.4.1.4203.666.11.3"
328
329 #define LDAP_CHAINING_PREFERRED                         0
330 #define LDAP_CHAINING_REQUIRED                          1
331 #define LDAP_REFERRALS_PREFERRED                        2
332 #define LDAP_REFERRALS_REQUIRED                         3
333
334 /* MS Active Directory controls (for compatibility) */
335 #define LDAP_CONTROL_X_INCREMENTAL_VALUES       "1.2.840.113556.1.4.802"
336 #define LDAP_CONTROL_X_DOMAIN_SCOPE                     "1.2.840.113556.1.4.1339"
337 #define LDAP_CONTROL_X_PERMISSIVE_MODIFY        "1.2.840.113556.1.4.1413"
338 #define LDAP_CONTROL_X_SEARCH_OPTIONS           "1.2.840.113556.1.4.1340"
339 #define LDAP_SEARCH_FLAG_DOMAIN_SCOPE 1 /* do not generate referrals */
340 #define LDAP_SEARCH_FLAG_PHANTOM_ROOT 2 /* search all subordinate NCs */
341 #define LDAP_CONTROL_X_TREE_DELETE              "1.2.840.113556.1.4.805"
342
343 /* MS Active Directory controls - not implemented in slapd(8) */
344 #define LDAP_CONTROL_X_EXTENDED_DN              "1.2.840.113556.1.4.529"
345
346 /* <draft-wahl-ldap-session> */
347 #define LDAP_CONTROL_X_SESSION_TRACKING         "1.3.6.1.4.1.21008.108.63.1"
348 #define LDAP_CONTROL_X_SESSION_TRACKING_RADIUS_ACCT_SESSION_ID \
349                                                 LDAP_CONTROL_X_SESSION_TRACKING ".1"
350 #define LDAP_CONTROL_X_SESSION_TRACKING_RADIUS_ACCT_MULTI_SESSION_ID \
351                                                 LDAP_CONTROL_X_SESSION_TRACKING ".2"
352 #define LDAP_CONTROL_X_SESSION_TRACKING_USERNAME \
353                                                 LDAP_CONTROL_X_SESSION_TRACKING ".3"
354 /* various expired works */
355
356 /* LDAP Duplicated Entry Control Extension *//* not implemented in slapd(8) */
357 #define LDAP_CONTROL_DUPENT_REQUEST             "2.16.840.1.113719.1.27.101.1"
358 #define LDAP_CONTROL_DUPENT_RESPONSE    "2.16.840.1.113719.1.27.101.2"
359 #define LDAP_CONTROL_DUPENT_ENTRY               "2.16.840.1.113719.1.27.101.3"
360 #define LDAP_CONTROL_DUPENT     LDAP_CONTROL_DUPENT_REQUEST
361
362 /* LDAP Persistent Search Control *//* not implemented in slapd(8) */
363 #define LDAP_CONTROL_PERSIST_REQUEST                            "2.16.840.1.113730.3.4.3"
364 #define LDAP_CONTROL_PERSIST_ENTRY_CHANGE_NOTICE        "2.16.840.1.113730.3.4.7"
365 #define LDAP_CONTROL_PERSIST_ENTRY_CHANGE_ADD           0x1
366 #define LDAP_CONTROL_PERSIST_ENTRY_CHANGE_DELETE        0x2
367 #define LDAP_CONTROL_PERSIST_ENTRY_CHANGE_MODIFY        0x4
368 #define LDAP_CONTROL_PERSIST_ENTRY_CHANGE_RENAME        0x8
369
370 /* LDAP VLV */
371 #define LDAP_CONTROL_VLVREQUEST         "2.16.840.1.113730.3.4.9"
372 #define LDAP_CONTROL_VLVRESPONSE    "2.16.840.1.113730.3.4.10"
373
374 /* LDAP Unsolicited Notifications */
375 #define LDAP_NOTICE_OF_DISCONNECTION    "1.3.6.1.4.1.1466.20036" /* RFC 4511 */
376 #define LDAP_NOTICE_DISCONNECT LDAP_NOTICE_OF_DISCONNECTION
377
378 /* LDAP Extended Operations */
379 #define LDAP_EXOP_START_TLS             "1.3.6.1.4.1.1466.20037"        /* RFC 4511 */
380
381 #define LDAP_EXOP_MODIFY_PASSWD "1.3.6.1.4.1.4203.1.11.1"       /* RFC 3062 */
382 #define LDAP_TAG_EXOP_MODIFY_PASSWD_ID  ((ber_tag_t) 0x80U)
383 #define LDAP_TAG_EXOP_MODIFY_PASSWD_OLD ((ber_tag_t) 0x81U)
384 #define LDAP_TAG_EXOP_MODIFY_PASSWD_NEW ((ber_tag_t) 0x82U)
385 #define LDAP_TAG_EXOP_MODIFY_PASSWD_GEN ((ber_tag_t) 0x80U)
386
387 #define LDAP_EXOP_CANCEL                "1.3.6.1.1.8"                                   /* RFC 3909 */
388 #define LDAP_EXOP_X_CANCEL              LDAP_EXOP_CANCEL
389
390 #define LDAP_EXOP_REFRESH               "1.3.6.1.4.1.1466.101.119.1"    /* RFC 2589 */
391 #define LDAP_TAG_EXOP_REFRESH_REQ_DN    ((ber_tag_t) 0x80U)
392 #define LDAP_TAG_EXOP_REFRESH_REQ_TTL   ((ber_tag_t) 0x81U)
393 #define LDAP_TAG_EXOP_REFRESH_RES_TTL   ((ber_tag_t) 0x81U)
394
395 #define LDAP_EXOP_VERIFY_CREDENTIALS    "1.3.6.1.4.1.4203.666.6.5"
396 #define LDAP_EXOP_X_VERIFY_CREDENTIALS  LDAP_EXOP_VERIFY_CREDENTIALS
397
398 #define LDAP_TAG_EXOP_VERIFY_CREDENTIALS_COOKIE  ((ber_tag_t) 0x80U)
399 #define LDAP_TAG_EXOP_VERIFY_CREDENTIALS_SCREDS  ((ber_tag_t) 0x81U)
400 #define LDAP_TAG_EXOP_VERIFY_CREDENTIALS_CONTROLS ((ber_tag_t) 0xa2U) /* context specific + constructed + 2 */
401
402 #define LDAP_EXOP_WHO_AM_I              "1.3.6.1.4.1.4203.1.11.3"               /* RFC 4532 */
403 #define LDAP_EXOP_X_WHO_AM_I    LDAP_EXOP_WHO_AM_I
404
405 /* various works in progress */
406 #define LDAP_EXOP_TURN          "1.3.6.1.1.19"                          /* RFC 4531 */
407 #define LDAP_EXOP_X_TURN        LDAP_EXOP_TURN
408
409 /* LDAP Distributed Procedures <draft-sermersheim-ldap-distproc> */
410 /* a work in progress */
411 #define LDAP_X_DISTPROC_BASE            "1.3.6.1.4.1.4203.666.11.6"
412 #define LDAP_EXOP_X_CHAINEDREQUEST      LDAP_X_DISTPROC_BASE ".1"
413 #define LDAP_FEATURE_X_CANCHAINOPS      LDAP_X_DISTPROC_BASE ".2"
414 #define LDAP_CONTROL_X_RETURNCONTREF    LDAP_X_DISTPROC_BASE ".3"
415 #define LDAP_URLEXT_X_LOCALREFOID       LDAP_X_DISTPROC_BASE ".4"
416 #define LDAP_URLEXT_X_REFTYPEOID        LDAP_X_DISTPROC_BASE ".5"
417 #define LDAP_URLEXT_X_SEARCHEDSUBTREEOID \
418                                         LDAP_X_DISTPROC_BASE ".6"
419 #define LDAP_URLEXT_X_FAILEDNAMEOID     LDAP_X_DISTPROC_BASE ".7"
420 #define LDAP_URLEXT_X_LOCALREF          "x-localReference"
421 #define LDAP_URLEXT_X_REFTYPE           "x-referenceType"
422 #define LDAP_URLEXT_X_SEARCHEDSUBTREE   "x-searchedSubtree"
423 #define LDAP_URLEXT_X_FAILEDNAME        "x-failedName"
424
425 #define LDAP_X_TXN                                              "1.3.6.1.4.1.4203.666.11.7" /* tmp */
426 #define LDAP_EXOP_X_TXN_START                   LDAP_X_TXN ".1"
427 #define LDAP_CONTROL_X_TXN_SPEC                 LDAP_X_TXN ".2"
428 #define LDAP_EXOP_X_TXN_END                             LDAP_X_TXN ".3"
429 #define LDAP_EXOP_X_TXN_ABORTED_NOTICE  LDAP_X_TXN ".4"
430
431 /* LDAP Features */
432 #define LDAP_FEATURE_ALL_OP_ATTRS       "1.3.6.1.4.1.4203.1.5.1"        /* RFC 3673 */
433 #define LDAP_FEATURE_OBJECTCLASS_ATTRS \
434         "1.3.6.1.4.1.4203.1.5.2" /*  @objectClass - new number to be assigned */
435 #define LDAP_FEATURE_ABSOLUTE_FILTERS "1.3.6.1.4.1.4203.1.5.3"  /* (&) (|) */
436 #define LDAP_FEATURE_LANGUAGE_TAG_OPTIONS "1.3.6.1.4.1.4203.1.5.4"
437 #define LDAP_FEATURE_LANGUAGE_RANGE_OPTIONS "1.3.6.1.4.1.4203.1.5.5"
438 #define LDAP_FEATURE_MODIFY_INCREMENT "1.3.6.1.1.14"
439
440 /* LDAP Experimental (works in progress) Features */
441 #define LDAP_FEATURE_SUBORDINATE_SCOPE \
442         "1.3.6.1.4.1.4203.666.8.1" /* "children" */
443 #define LDAP_FEATURE_CHILDREN_SCOPE LDAP_FEATURE_SUBORDINATE_SCOPE
444
445 /*
446  * specific LDAP instantiations of BER types we know about
447  */
448
449 /* Overview of LBER tag construction
450  *
451  *      Bits
452  *      ______
453  *      8 7 | CLASS
454  *      0 0 = UNIVERSAL
455  *      0 1 = APPLICATION
456  *      1 0 = CONTEXT-SPECIFIC
457  *      1 1 = PRIVATE
458  *              _____
459  *              | 6 | DATA-TYPE
460  *                0 = PRIMITIVE
461  *                1 = CONSTRUCTED
462  *                      ___________
463  *                      | 5 ... 1 | TAG-NUMBER
464  */
465
466 /* general stuff */
467 #define LDAP_TAG_MESSAGE        ((ber_tag_t) 0x30U)     /* constructed + 16 */
468 #define LDAP_TAG_MSGID          ((ber_tag_t) 0x02U)     /* integer */
469
470 #define LDAP_TAG_LDAPDN         ((ber_tag_t) 0x04U)     /* octet string */
471 #define LDAP_TAG_LDAPCRED       ((ber_tag_t) 0x04U)     /* octet string */
472
473 #define LDAP_TAG_CONTROLS       ((ber_tag_t) 0xa0U)     /* context specific + constructed + 0 */
474 #define LDAP_TAG_REFERRAL       ((ber_tag_t) 0xa3U)     /* context specific + constructed + 3 */
475
476 #define LDAP_TAG_NEWSUPERIOR    ((ber_tag_t) 0x80U)     /* context-specific + primitive + 0 */
477
478 #define LDAP_TAG_EXOP_REQ_OID   ((ber_tag_t) 0x80U)     /* context specific + primitive */
479 #define LDAP_TAG_EXOP_REQ_VALUE ((ber_tag_t) 0x81U)     /* context specific + primitive */
480 #define LDAP_TAG_EXOP_RES_OID   ((ber_tag_t) 0x8aU)     /* context specific + primitive */
481 #define LDAP_TAG_EXOP_RES_VALUE ((ber_tag_t) 0x8bU)     /* context specific + primitive */
482
483 #define LDAP_TAG_IM_RES_OID   ((ber_tag_t) 0x80U)       /* context specific + primitive */
484 #define LDAP_TAG_IM_RES_VALUE ((ber_tag_t) 0x81U)       /* context specific + primitive */
485
486 #define LDAP_TAG_SASL_RES_CREDS ((ber_tag_t) 0x87U)     /* context specific + primitive */
487
488 /* LDAP Request Messages */
489 #define LDAP_REQ_BIND           ((ber_tag_t) 0x60U)     /* application + constructed */
490 #define LDAP_REQ_UNBIND         ((ber_tag_t) 0x42U)     /* application + primitive   */
491 #define LDAP_REQ_SEARCH         ((ber_tag_t) 0x63U)     /* application + constructed */
492 #define LDAP_REQ_MODIFY         ((ber_tag_t) 0x66U)     /* application + constructed */
493 #define LDAP_REQ_ADD            ((ber_tag_t) 0x68U)     /* application + constructed */
494 #define LDAP_REQ_DELETE         ((ber_tag_t) 0x4aU)     /* application + primitive   */
495 #define LDAP_REQ_MODDN          ((ber_tag_t) 0x6cU)     /* application + constructed */
496 #define LDAP_REQ_MODRDN         LDAP_REQ_MODDN
497 #define LDAP_REQ_RENAME         LDAP_REQ_MODDN
498 #define LDAP_REQ_COMPARE        ((ber_tag_t) 0x6eU)     /* application + constructed */
499 #define LDAP_REQ_ABANDON        ((ber_tag_t) 0x50U)     /* application + primitive   */
500 #define LDAP_REQ_EXTENDED       ((ber_tag_t) 0x77U)     /* application + constructed */
501
502 /* LDAP Response Messages */
503 #define LDAP_RES_BIND           ((ber_tag_t) 0x61U)     /* application + constructed */
504 #define LDAP_RES_SEARCH_ENTRY   ((ber_tag_t) 0x64U)     /* application + constructed */
505 #define LDAP_RES_SEARCH_REFERENCE       ((ber_tag_t) 0x73U)     /* V3: application + constructed */
506 #define LDAP_RES_SEARCH_RESULT  ((ber_tag_t) 0x65U)     /* application + constructed */
507 #define LDAP_RES_MODIFY         ((ber_tag_t) 0x67U)     /* application + constructed */
508 #define LDAP_RES_ADD            ((ber_tag_t) 0x69U)     /* application + constructed */
509 #define LDAP_RES_DELETE         ((ber_tag_t) 0x6bU)     /* application + constructed */
510 #define LDAP_RES_MODDN          ((ber_tag_t) 0x6dU)     /* application + constructed */
511 #define LDAP_RES_MODRDN         LDAP_RES_MODDN  /* application + constructed */
512 #define LDAP_RES_RENAME         LDAP_RES_MODDN  /* application + constructed */
513 #define LDAP_RES_COMPARE        ((ber_tag_t) 0x6fU)     /* application + constructed */
514 #define LDAP_RES_EXTENDED       ((ber_tag_t) 0x78U)     /* V3: application + constructed */
515 #define LDAP_RES_INTERMEDIATE   ((ber_tag_t) 0x79U) /* V3+: application + constructed */
516
517 #define LDAP_RES_ANY                    (-1)
518 #define LDAP_RES_UNSOLICITED    (0)
519
520
521 /* sasl methods */
522 #define LDAP_SASL_SIMPLE        ((char*)0)
523 #define LDAP_SASL_NULL          ("")
524
525
526 /* authentication methods available */
527 #define LDAP_AUTH_NONE   ((ber_tag_t) 0x00U) /* no authentication */
528 #define LDAP_AUTH_SIMPLE ((ber_tag_t) 0x80U) /* context specific + primitive */
529 #define LDAP_AUTH_SASL   ((ber_tag_t) 0xa3U) /* context specific + constructed */
530 #define LDAP_AUTH_KRBV4  ((ber_tag_t) 0xffU) /* means do both of the following */
531 #define LDAP_AUTH_KRBV41 ((ber_tag_t) 0x81U) /* context specific + primitive */
532 #define LDAP_AUTH_KRBV42 ((ber_tag_t) 0x82U) /* context specific + primitive */
533
534 /* used by the Windows API but not used on the wire */
535 #define LDAP_AUTH_NEGOTIATE ((ber_tag_t) 0x04FFU)
536
537 /* filter types */
538 #define LDAP_FILTER_AND ((ber_tag_t) 0xa0U)     /* context specific + constructed */
539 #define LDAP_FILTER_OR  ((ber_tag_t) 0xa1U)     /* context specific + constructed */
540 #define LDAP_FILTER_NOT ((ber_tag_t) 0xa2U)     /* context specific + constructed */
541 #define LDAP_FILTER_EQUALITY ((ber_tag_t) 0xa3U) /* context specific + constructed */
542 #define LDAP_FILTER_SUBSTRINGS ((ber_tag_t) 0xa4U) /* context specific + constructed */
543 #define LDAP_FILTER_GE ((ber_tag_t) 0xa5U) /* context specific + constructed */
544 #define LDAP_FILTER_LE ((ber_tag_t) 0xa6U) /* context specific + constructed */
545 #define LDAP_FILTER_PRESENT ((ber_tag_t) 0x87U) /* context specific + primitive   */
546 #define LDAP_FILTER_APPROX ((ber_tag_t) 0xa8U)  /* context specific + constructed */
547 #define LDAP_FILTER_EXT ((ber_tag_t) 0xa9U)     /* context specific + constructed */
548
549 /* extended filter component types */
550 #define LDAP_FILTER_EXT_OID             ((ber_tag_t) 0x81U)     /* context specific */
551 #define LDAP_FILTER_EXT_TYPE    ((ber_tag_t) 0x82U)     /* context specific */
552 #define LDAP_FILTER_EXT_VALUE   ((ber_tag_t) 0x83U)     /* context specific */
553 #define LDAP_FILTER_EXT_DNATTRS ((ber_tag_t) 0x84U)     /* context specific */
554
555 /* substring filter component types */
556 #define LDAP_SUBSTRING_INITIAL  ((ber_tag_t) 0x80U)     /* context specific */
557 #define LDAP_SUBSTRING_ANY              ((ber_tag_t) 0x81U)     /* context specific */
558 #define LDAP_SUBSTRING_FINAL    ((ber_tag_t) 0x82U)     /* context specific */
559
560 /* search scopes */
561 #define LDAP_SCOPE_BASE                 ((ber_int_t) 0x0000)
562 #define LDAP_SCOPE_BASEOBJECT   LDAP_SCOPE_BASE
563 #define LDAP_SCOPE_ONELEVEL             ((ber_int_t) 0x0001)
564 #define LDAP_SCOPE_ONE                  LDAP_SCOPE_ONELEVEL
565 #define LDAP_SCOPE_SUBTREE              ((ber_int_t) 0x0002)
566 #define LDAP_SCOPE_SUB                  LDAP_SCOPE_SUBTREE
567 #define LDAP_SCOPE_SUBORDINATE  ((ber_int_t) 0x0003) /* OpenLDAP extension */
568 #define LDAP_SCOPE_CHILDREN             LDAP_SCOPE_SUBORDINATE
569 #define LDAP_SCOPE_DEFAULT              ((ber_int_t) -1)         /* OpenLDAP extension */
570
571 /* substring filter component types */
572 #define LDAP_SUBSTRING_INITIAL  ((ber_tag_t) 0x80U)     /* context specific */
573 #define LDAP_SUBSTRING_ANY              ((ber_tag_t) 0x81U)     /* context specific */
574 #define LDAP_SUBSTRING_FINAL    ((ber_tag_t) 0x82U)     /* context specific */
575
576 /*
577  * LDAP Result Codes
578  */
579 #define LDAP_SUCCESS                            0x00
580
581 #define LDAP_RANGE(n,x,y)       (((x) <= (n)) && ((n) <= (y)))
582
583 #define LDAP_OPERATIONS_ERROR           0x01
584 #define LDAP_PROTOCOL_ERROR                     0x02
585 #define LDAP_TIMELIMIT_EXCEEDED         0x03
586 #define LDAP_SIZELIMIT_EXCEEDED         0x04
587 #define LDAP_COMPARE_FALSE                      0x05
588 #define LDAP_COMPARE_TRUE                       0x06
589 #define LDAP_AUTH_METHOD_NOT_SUPPORTED  0x07
590 #define LDAP_STRONG_AUTH_NOT_SUPPORTED  LDAP_AUTH_METHOD_NOT_SUPPORTED
591 #define LDAP_STRONG_AUTH_REQUIRED       0x08
592 #define LDAP_STRONGER_AUTH_REQUIRED     LDAP_STRONG_AUTH_REQUIRED
593 #define LDAP_PARTIAL_RESULTS            0x09    /* LDAPv2+ (not LDAPv3) */
594
595 #define LDAP_REFERRAL                           0x0a /* LDAPv3 */
596 #define LDAP_ADMINLIMIT_EXCEEDED        0x0b /* LDAPv3 */
597 #define LDAP_UNAVAILABLE_CRITICAL_EXTENSION     0x0c /* LDAPv3 */
598 #define LDAP_CONFIDENTIALITY_REQUIRED   0x0d /* LDAPv3 */
599 #define LDAP_SASL_BIND_IN_PROGRESS      0x0e /* LDAPv3 */
600
601 #define LDAP_ATTR_ERROR(n)      LDAP_RANGE((n),0x10,0x15) /* 16-21 */
602
603 #define LDAP_NO_SUCH_ATTRIBUTE          0x10
604 #define LDAP_UNDEFINED_TYPE                     0x11
605 #define LDAP_INAPPROPRIATE_MATCHING     0x12
606 #define LDAP_CONSTRAINT_VIOLATION       0x13
607 #define LDAP_TYPE_OR_VALUE_EXISTS       0x14
608 #define LDAP_INVALID_SYNTAX                     0x15
609
610 #define LDAP_NAME_ERROR(n)      LDAP_RANGE((n),0x20,0x24) /* 32-34,36 */
611
612 #define LDAP_NO_SUCH_OBJECT                     0x20
613 #define LDAP_ALIAS_PROBLEM                      0x21
614 #define LDAP_INVALID_DN_SYNTAX          0x22
615 #define LDAP_IS_LEAF                            0x23 /* not LDAPv3 */
616 #define LDAP_ALIAS_DEREF_PROBLEM        0x24
617
618 #define LDAP_SECURITY_ERROR(n)  LDAP_RANGE((n),0x2F,0x32) /* 47-50 */
619
620 #define LDAP_X_PROXY_AUTHZ_FAILURE      0x2F /* LDAPv3 proxy authorization */
621 #define LDAP_INAPPROPRIATE_AUTH         0x30
622 #define LDAP_INVALID_CREDENTIALS        0x31
623 #define LDAP_INSUFFICIENT_ACCESS        0x32
624
625 #define LDAP_SERVICE_ERROR(n)   LDAP_RANGE((n),0x33,0x36) /* 51-54 */
626
627 #define LDAP_BUSY                                       0x33
628 #define LDAP_UNAVAILABLE                        0x34
629 #define LDAP_UNWILLING_TO_PERFORM       0x35
630 #define LDAP_LOOP_DETECT                        0x36
631
632 #define LDAP_UPDATE_ERROR(n)    LDAP_RANGE((n),0x40,0x47) /* 64-69,71 */
633
634 #define LDAP_NAMING_VIOLATION           0x40
635 #define LDAP_OBJECT_CLASS_VIOLATION     0x41
636 #define LDAP_NOT_ALLOWED_ON_NONLEAF     0x42
637 #define LDAP_NOT_ALLOWED_ON_RDN         0x43
638 #define LDAP_ALREADY_EXISTS                     0x44
639 #define LDAP_NO_OBJECT_CLASS_MODS       0x45
640 #define LDAP_RESULTS_TOO_LARGE          0x46 /* CLDAP */
641 #define LDAP_AFFECTS_MULTIPLE_DSAS      0x47
642
643 #define LDAP_VLV_ERROR                          0x4C
644
645 #define LDAP_OTHER                                      0x50
646
647 /* LCUP operation codes (113-117) - not implemented */
648 #define LDAP_CUP_RESOURCES_EXHAUSTED    0x71
649 #define LDAP_CUP_SECURITY_VIOLATION             0x72
650 #define LDAP_CUP_INVALID_DATA                   0x73
651 #define LDAP_CUP_UNSUPPORTED_SCHEME             0x74
652 #define LDAP_CUP_RELOAD_REQUIRED                0x75
653
654 /* Cancel operation codes (118-121) */
655 #define LDAP_CANCELLED                          0x76
656 #define LDAP_NO_SUCH_OPERATION          0x77
657 #define LDAP_TOO_LATE                           0x78
658 #define LDAP_CANNOT_CANCEL                      0x79
659
660 /* Assertion control (122) */ 
661 #define LDAP_ASSERTION_FAILED           0x7A
662
663 /* Proxied Authorization Denied (123) */ 
664 #define LDAP_PROXIED_AUTHORIZATION_DENIED               0x7B
665
666 /* Experimental result codes */
667 #define LDAP_E_ERROR(n) LDAP_RANGE((n),0x1000,0x3FFF)
668
669 /* LDAP Sync (4096) */
670 #define LDAP_SYNC_REFRESH_REQUIRED              0x1000
671
672
673 /* Private Use result codes */
674 #define LDAP_X_ERROR(n) LDAP_RANGE((n),0x4000,0xFFFF)
675
676 #define LDAP_X_SYNC_REFRESH_REQUIRED    0x4100 /* defunct */
677 #define LDAP_X_ASSERTION_FAILED                 0x410f /* defunct */
678
679 /* for the LDAP No-Op control */
680 #define LDAP_X_NO_OPERATION                             0x410e
681
682 /* for the Chaining Behavior control (consecutive result codes requested;
683  * see <draft-sermersheim-ldap-chaining> ) */
684 #ifdef LDAP_CONTROL_X_CHAINING_BEHAVIOR
685 #define LDAP_X_NO_REFERRALS_FOUND               0x4110
686 #define LDAP_X_CANNOT_CHAIN                     0x4111
687 #endif
688
689 /* for Distributed Procedures (see <draft-sermersheim-ldap-distproc>) */
690 #ifdef LDAP_X_DISTPROC_BASE
691 #define LDAP_X_INVALIDREFERENCE                 0x4112
692 #endif
693
694 #ifdef LDAP_X_TXN
695 #define LDAP_X_TXN_SPECIFY_OKAY         0x4120
696 #define LDAP_X_TXN_ID_INVALID           0x4121
697 #endif
698
699 /* API Error Codes
700  *
701  * Based on draft-ietf-ldap-c-api-xx
702  * but with new negative code values
703  */
704 #define LDAP_API_ERROR(n)               ((n)<0)
705 #define LDAP_API_RESULT(n)              ((n)<=0)
706
707 #define LDAP_SERVER_DOWN                                (-1)
708 #define LDAP_LOCAL_ERROR                                (-2)
709 #define LDAP_ENCODING_ERROR                             (-3)
710 #define LDAP_DECODING_ERROR                             (-4)
711 #define LDAP_TIMEOUT                                    (-5)
712 #define LDAP_AUTH_UNKNOWN                               (-6)
713 #define LDAP_FILTER_ERROR                               (-7)
714 #define LDAP_USER_CANCELLED                             (-8)
715 #define LDAP_PARAM_ERROR                                (-9)
716 #define LDAP_NO_MEMORY                                  (-10)
717 #define LDAP_CONNECT_ERROR                              (-11)
718 #define LDAP_NOT_SUPPORTED                              (-12)
719 #define LDAP_CONTROL_NOT_FOUND                  (-13)
720 #define LDAP_NO_RESULTS_RETURNED                (-14)
721 #define LDAP_MORE_RESULTS_TO_RETURN             (-15)   /* Obsolete */
722 #define LDAP_CLIENT_LOOP                                (-16)
723 #define LDAP_REFERRAL_LIMIT_EXCEEDED    (-17)
724 #define LDAP_X_CONNECTING                       (-18)
725
726
727 /*
728  * This structure represents both ldap messages and ldap responses.
729  * These are really the same, except in the case of search responses,
730  * where a response has multiple messages.
731  */
732
733 typedef struct ldapmsg LDAPMessage;
734
735 /* for modifications */
736 typedef struct ldapmod {
737         int             mod_op;
738
739 #define LDAP_MOD_OP                     (0x0007)
740 #define LDAP_MOD_ADD            (0x0000)
741 #define LDAP_MOD_DELETE         (0x0001)
742 #define LDAP_MOD_REPLACE        (0x0002)
743 #define LDAP_MOD_INCREMENT      (0x0003) /* OpenLDAP extension */
744 #define LDAP_MOD_BVALUES        (0x0080)
745 /* IMPORTANT: do not use code 0x1000 (or above),
746  * it is used internally by the backends!
747  * (see ldap/servers/slapd/slap.h)
748  */
749
750         char            *mod_type;
751         union mod_vals_u {
752                 char            **modv_strvals;
753                 struct berval   **modv_bvals;
754         } mod_vals;
755 #define mod_values      mod_vals.modv_strvals
756 #define mod_bvalues     mod_vals.modv_bvals
757 } LDAPMod;
758
759 /*
760  * structure representing an ldap session which can
761  * encompass connections to multiple servers (in the
762  * face of referrals).
763  */
764 typedef struct ldap LDAP;
765
766 #define LDAP_DEREF_NEVER                0x00
767 #define LDAP_DEREF_SEARCHING    0x01
768 #define LDAP_DEREF_FINDING              0x02
769 #define LDAP_DEREF_ALWAYS               0x03
770
771 #define LDAP_NO_LIMIT                   0
772
773 /* how many messages to retrieve results for */
774 #define LDAP_MSG_ONE                    0x00
775 #define LDAP_MSG_ALL                    0x01
776 #define LDAP_MSG_RECEIVED               0x02
777
778 /*
779  * types for ldap URL handling
780  */
781 typedef struct ldap_url_desc {
782         struct ldap_url_desc *lud_next;
783         char    *lud_scheme;
784         char    *lud_host;
785         int             lud_port;
786         char    *lud_dn;
787         char    **lud_attrs;
788         int             lud_scope;
789         char    *lud_filter;
790         char    **lud_exts;
791         int             lud_crit_exts;
792 } LDAPURLDesc;
793
794 #define LDAP_URL_SUCCESS                0x00    /* Success */
795 #define LDAP_URL_ERR_MEM                0x01    /* can't allocate memory space */
796 #define LDAP_URL_ERR_PARAM              0x02    /* parameter is bad */
797
798 #define LDAP_URL_ERR_BADSCHEME  0x03    /* URL doesn't begin with "ldap[si]://" */
799 #define LDAP_URL_ERR_BADENCLOSURE 0x04  /* URL is missing trailing ">" */
800 #define LDAP_URL_ERR_BADURL             0x05    /* URL is bad */
801 #define LDAP_URL_ERR_BADHOST    0x06    /* host port is bad */
802 #define LDAP_URL_ERR_BADATTRS   0x07    /* bad (or missing) attributes */
803 #define LDAP_URL_ERR_BADSCOPE   0x08    /* scope string is invalid (or missing) */
804 #define LDAP_URL_ERR_BADFILTER  0x09    /* bad or missing filter */
805 #define LDAP_URL_ERR_BADEXTS    0x0a    /* bad or missing extensions */
806
807 /*
808  * LDAP sync (RFC4533) API
809  */
810
811 typedef struct ldap_sync_t ldap_sync_t;
812
813 typedef enum {
814         /* these are private - the client should never see them */
815         LDAP_SYNC_CAPI_NONE             = -1,
816
817         LDAP_SYNC_CAPI_PHASE_FLAG       = 0x10U,
818         LDAP_SYNC_CAPI_IDSET_FLAG       = 0x20U,
819         LDAP_SYNC_CAPI_DONE_FLAG        = 0x40U,
820
821         /* these are passed to ls_search_entry() */
822         LDAP_SYNC_CAPI_PRESENT          = LDAP_SYNC_PRESENT,
823         LDAP_SYNC_CAPI_ADD              = LDAP_SYNC_ADD,
824         LDAP_SYNC_CAPI_MODIFY           = LDAP_SYNC_MODIFY,
825         LDAP_SYNC_CAPI_DELETE           = LDAP_SYNC_DELETE,
826
827         /* these are passed to ls_intermediate() */
828         LDAP_SYNC_CAPI_PRESENTS         = ( LDAP_SYNC_CAPI_PHASE_FLAG | LDAP_SYNC_CAPI_PRESENT ),
829         LDAP_SYNC_CAPI_DELETES          = ( LDAP_SYNC_CAPI_PHASE_FLAG | LDAP_SYNC_CAPI_DELETE ),
830
831         LDAP_SYNC_CAPI_PRESENTS_IDSET   = ( LDAP_SYNC_CAPI_PRESENTS | LDAP_SYNC_CAPI_IDSET_FLAG ),
832         LDAP_SYNC_CAPI_DELETES_IDSET    = ( LDAP_SYNC_CAPI_DELETES | LDAP_SYNC_CAPI_IDSET_FLAG ),
833
834         LDAP_SYNC_CAPI_DONE             = ( LDAP_SYNC_CAPI_DONE_FLAG | LDAP_SYNC_CAPI_PRESENTS )
835 } ldap_sync_refresh_t;
836
837 /*
838  * Called when an entry is returned by ldap_result().
839  * If phase is LDAP_SYNC_CAPI_ADD or LDAP_SYNC_CAPI_MODIFY,
840  * the entry has been either added or modified, and thus
841  * the complete view of the entry should be in the LDAPMessage.
842  * If phase is LDAP_SYNC_CAPI_PRESENT or LDAP_SYNC_CAPI_DELETE,
843  * only the DN should be in the LDAPMessage.
844  */
845 typedef int (*ldap_sync_search_entry_f) LDAP_P((
846         ldap_sync_t                     *ls,
847         LDAPMessage                     *msg,
848         struct berval                   *entryUUID,
849         ldap_sync_refresh_t             phase ));
850
851 /*
852  * Called when a reference is returned; the client should know 
853  * what to do with it.
854  */
855 typedef int (*ldap_sync_search_reference_f) LDAP_P((
856         ldap_sync_t                     *ls,
857         LDAPMessage                     *msg ));
858
859 /*
860  * Called when specific intermediate/final messages are returned.
861  * If phase is LDAP_SYNC_CAPI_PRESENTS or LDAP_SYNC_CAPI_DELETES,
862  * a "presents" or "deletes" phase begins.
863  * If phase is LDAP_SYNC_CAPI_DONE, a special "presents" phase
864  * with refreshDone set to "TRUE" has been returned, to indicate
865  * that the refresh phase of a refreshAndPersist is complete.
866  * In the above cases, syncUUIDs is NULL.
867  *
868  * If phase is LDAP_SYNC_CAPI_PRESENTS_IDSET or 
869  * LDAP_SYNC_CAPI_DELETES_IDSET, syncUUIDs is an array of UUIDs
870  * that are either present or have been deleted.
871  */
872 typedef int (*ldap_sync_intermediate_f) LDAP_P((
873         ldap_sync_t                     *ls,
874         LDAPMessage                     *msg,
875         BerVarray                       syncUUIDs,
876         ldap_sync_refresh_t             phase ));
877
878 /*
879  * Called when a searchResultDone is returned.  In refreshAndPersist,
880  * this can only occur if the search for any reason is being terminated
881  * by the server.
882  */
883 typedef int (*ldap_sync_search_result_f) LDAP_P((
884         ldap_sync_t                     *ls,
885         LDAPMessage                     *msg,
886         int                             refreshDeletes ));
887
888 /*
889  * This structure contains all information about the persistent search;
890  * the caller is responsible for connecting, setting version, binding, tls...
891  */
892 struct ldap_sync_t {
893         /* conf search params */
894         char                            *ls_base;
895         int                             ls_scope;
896         char                            *ls_filter;
897         char                            **ls_attrs;
898         int                             ls_timelimit;
899         int                             ls_sizelimit;
900
901         /* poll timeout */
902         int                             ls_timeout;
903
904         /* helpers - add as appropriate */
905         ldap_sync_search_entry_f        ls_search_entry;
906         ldap_sync_search_reference_f    ls_search_reference;
907         ldap_sync_intermediate_f        ls_intermediate;
908         ldap_sync_search_result_f       ls_search_result;
909
910         /* set by the caller as appropriate */
911         void                            *ls_private;
912
913         /* conn stuff */
914         LDAP                            *ls_ld;
915
916         /* --- the parameters below are private - do not modify --- */
917
918         /* FIXME: make the structure opaque, and provide an interface
919          * to modify the public values? */
920
921         /* result stuff */
922         int                             ls_msgid;
923
924         /* sync stuff */
925         /* needed by refreshOnly */
926         int                             ls_reloadHint;
927
928         /* opaque - need to pass between sessions, updated by the API */
929         struct berval                   ls_cookie;
930
931         /* state variable - do not modify */
932         ldap_sync_refresh_t             ls_refreshPhase;
933 };
934
935 /*
936  * End of LDAP sync (RFC4533) API
937  */
938
939 /*
940  * Connection callbacks...
941  */
942 struct ldap_conncb;
943 struct sockaddr;
944
945 /* Called after a connection is established */
946 typedef int (ldap_conn_add_f) LDAP_P(( LDAP *ld, Sockbuf *sb, LDAPURLDesc *srv, struct sockaddr *addr,
947         struct ldap_conncb *ctx ));
948 /* Called before a connection is closed */
949 typedef void (ldap_conn_del_f) LDAP_P(( LDAP *ld, Sockbuf *sb, struct ldap_conncb *ctx ));
950
951 /* Callbacks are pushed on a stack. Last one pushed is first one executed. The
952  * delete callback is called with a NULL Sockbuf just before freeing the LDAP handle.
953  */
954 typedef struct ldap_conncb {
955         ldap_conn_add_f *lc_add;
956         ldap_conn_del_f *lc_del;
957         void *lc_arg;
958 } ldap_conncb;
959
960 /*
961  * The API draft spec says we should declare (or cause to be declared)
962  * 'struct timeval'.   We don't.  See IETF LDAPext discussions.
963  */
964 struct timeval;
965
966 /*
967  * in options.c:
968  */
969 LDAP_F( int )
970 ldap_get_option LDAP_P((
971         LDAP *ld,
972         int option,
973         void *outvalue));
974
975 LDAP_F( int )
976 ldap_set_option LDAP_P((
977         LDAP *ld,
978         int option,
979         LDAP_CONST void *invalue));
980
981 /* V3 REBIND Function Callback Prototype */
982 typedef int (LDAP_REBIND_PROC) LDAP_P((
983         LDAP *ld, LDAP_CONST char *url,
984         ber_tag_t request, ber_int_t msgid,
985         void *params ));
986
987 LDAP_F( int )
988 ldap_set_rebind_proc LDAP_P((
989         LDAP *ld,
990         LDAP_REBIND_PROC *rebind_proc,
991         void *params ));
992
993 /* V3 referral selection Function Callback Prototype */
994 typedef int (LDAP_NEXTREF_PROC) LDAP_P((
995         LDAP *ld, char ***refsp, int *cntp,
996         void *params ));
997
998 LDAP_F( int )
999 ldap_set_nextref_proc LDAP_P((
1000         LDAP *ld,
1001         LDAP_NEXTREF_PROC *nextref_proc,
1002         void *params ));
1003
1004 /* V3 URLLIST Function Callback Prototype */
1005 typedef int (LDAP_URLLIST_PROC) LDAP_P((
1006         LDAP *ld, 
1007         LDAPURLDesc **urllist,
1008         LDAPURLDesc **url,
1009         void *params ));
1010
1011 LDAP_F( int )
1012 ldap_set_urllist_proc LDAP_P((
1013         LDAP *ld,
1014         LDAP_URLLIST_PROC *urllist_proc,
1015         void *params ));
1016
1017 /*
1018  * in controls.c:
1019  */
1020 #if LDAP_DEPRECATED     
1021 LDAP_F( int )
1022 ldap_create_control LDAP_P((    /* deprecated, use ldap_control_create */
1023         LDAP_CONST char *requestOID,
1024         BerElement *ber,
1025         int iscritical,
1026         LDAPControl **ctrlp ));
1027
1028 LDAP_F( LDAPControl * )
1029 ldap_find_control LDAP_P((      /* deprecated, use ldap_control_find */
1030         LDAP_CONST char *oid,
1031         LDAPControl **ctrls ));
1032 #endif
1033
1034 LDAP_F( int )
1035 ldap_control_create LDAP_P((
1036         LDAP_CONST char *requestOID,
1037         int iscritical,
1038         struct berval *value,
1039         int dupval,
1040         LDAPControl **ctrlp ));
1041
1042 LDAP_F( LDAPControl * )
1043 ldap_control_find LDAP_P((
1044         LDAP_CONST char *oid,
1045         LDAPControl **ctrls,
1046         LDAPControl ***nextctrlp ));
1047
1048 LDAP_F( void )
1049 ldap_control_free LDAP_P((
1050         LDAPControl *ctrl ));
1051
1052 LDAP_F( void )
1053 ldap_controls_free LDAP_P((
1054         LDAPControl **ctrls ));
1055
1056 LDAP_F( LDAPControl ** )
1057 ldap_controls_dup LDAP_P((
1058         LDAPControl *LDAP_CONST *controls ));
1059
1060 LDAP_F( LDAPControl * )
1061 ldap_control_dup LDAP_P((
1062         LDAP_CONST LDAPControl *c ));
1063
1064 /*
1065  * in dnssrv.c:
1066  */
1067 LDAP_F( int )
1068 ldap_domain2dn LDAP_P((
1069         LDAP_CONST char* domain,
1070         char** dn ));
1071
1072 LDAP_F( int )
1073 ldap_dn2domain LDAP_P((
1074         LDAP_CONST char* dn,
1075         char** domain ));
1076
1077 LDAP_F( int )
1078 ldap_domain2hostlist LDAP_P((
1079         LDAP_CONST char *domain,
1080         char** hostlist ));
1081
1082 /*
1083  * in extended.c:
1084  */
1085 LDAP_F( int )
1086 ldap_extended_operation LDAP_P((
1087         LDAP                    *ld,
1088         LDAP_CONST char *reqoid,
1089         struct berval   *reqdata,
1090         LDAPControl             **serverctrls,
1091         LDAPControl             **clientctrls,
1092         int                             *msgidp ));
1093
1094 LDAP_F( int )
1095 ldap_extended_operation_s LDAP_P((
1096         LDAP                    *ld,
1097         LDAP_CONST char *reqoid,
1098         struct berval   *reqdata,
1099         LDAPControl             **serverctrls,
1100         LDAPControl             **clientctrls,
1101         char                    **retoidp,
1102         struct berval   **retdatap ));
1103
1104 LDAP_F( int )
1105 ldap_parse_extended_result LDAP_P((
1106         LDAP                    *ld,
1107         LDAPMessage             *res,
1108         char                    **retoidp,
1109         struct berval   **retdatap,
1110         int                             freeit ));
1111
1112 LDAP_F( int )
1113 ldap_parse_intermediate LDAP_P((
1114         LDAP                    *ld,
1115         LDAPMessage             *res,
1116         char                    **retoidp,
1117         struct berval   **retdatap,
1118         LDAPControl             ***serverctrls,
1119         int                             freeit ));
1120
1121
1122 /*
1123  * in abandon.c:
1124  */
1125 LDAP_F( int )
1126 ldap_abandon_ext LDAP_P((
1127         LDAP                    *ld,
1128         int                             msgid,
1129         LDAPControl             **serverctrls,
1130         LDAPControl             **clientctrls ));
1131
1132 #if LDAP_DEPRECATED     
1133 LDAP_F( int )
1134 ldap_abandon LDAP_P((   /* deprecated, use ldap_abandon_ext */
1135         LDAP *ld,
1136         int msgid ));
1137 #endif
1138
1139 /*
1140  * in add.c:
1141  */
1142 LDAP_F( int )
1143 ldap_add_ext LDAP_P((
1144         LDAP                    *ld,
1145         LDAP_CONST char *dn,
1146         LDAPMod                 **attrs,
1147         LDAPControl             **serverctrls,
1148         LDAPControl             **clientctrls,
1149         int                     *msgidp ));
1150
1151 LDAP_F( int )
1152 ldap_add_ext_s LDAP_P((
1153         LDAP                    *ld,
1154         LDAP_CONST char *dn,
1155         LDAPMod                 **attrs,
1156         LDAPControl             **serverctrls,
1157         LDAPControl             **clientctrls ));
1158
1159 #if LDAP_DEPRECATED
1160 LDAP_F( int )
1161 ldap_add LDAP_P((       /* deprecated, use ldap_add_ext */
1162         LDAP *ld,
1163         LDAP_CONST char *dn,
1164         LDAPMod **attrs ));
1165
1166 LDAP_F( int )
1167 ldap_add_s LDAP_P((     /* deprecated, use ldap_add_ext_s */
1168         LDAP *ld,
1169         LDAP_CONST char *dn,
1170         LDAPMod **attrs ));
1171 #endif
1172
1173
1174 /*
1175  * in sasl.c:
1176  */
1177 LDAP_F( int )
1178 ldap_sasl_bind LDAP_P((
1179         LDAP                    *ld,
1180         LDAP_CONST char *dn,
1181         LDAP_CONST char *mechanism,
1182         struct berval   *cred,
1183         LDAPControl             **serverctrls,
1184         LDAPControl             **clientctrls,
1185         int                             *msgidp ));
1186
1187 /* Interaction flags (should be passed about in a control)
1188  *  Automatic (default): use defaults, prompt otherwise
1189  *  Interactive: prompt always
1190  *  Quiet: never prompt
1191  */
1192 #define LDAP_SASL_AUTOMATIC             0U
1193 #define LDAP_SASL_INTERACTIVE   1U
1194 #define LDAP_SASL_QUIET                 2U
1195
1196 /*
1197  * V3 SASL Interaction Function Callback Prototype
1198  *      when using Cyrus SASL, interact is pointer to sasl_interact_t
1199  *  should likely passed in a control (and provided controls)
1200  */
1201 typedef int (LDAP_SASL_INTERACT_PROC) LDAP_P((
1202         LDAP *ld, unsigned flags, void* defaults, void *interact ));
1203
1204 LDAP_F( int )
1205 ldap_sasl_interactive_bind LDAP_P((
1206         LDAP *ld,
1207         LDAP_CONST char *dn, /* usually NULL */
1208         LDAP_CONST char *saslMechanism,
1209         LDAPControl **serverControls,
1210         LDAPControl **clientControls,
1211
1212         /* should be client controls */
1213         unsigned flags,
1214         LDAP_SASL_INTERACT_PROC *proc,
1215         void *defaults,
1216         
1217         /* as obtained from ldap_result() */
1218         LDAPMessage *result,
1219
1220         /* returned during bind processing */
1221         const char **rmech,
1222         int *msgid ));
1223
1224 LDAP_F( int )
1225 ldap_sasl_interactive_bind_s LDAP_P((
1226         LDAP *ld,
1227         LDAP_CONST char *dn, /* usually NULL */
1228         LDAP_CONST char *saslMechanism,
1229         LDAPControl **serverControls,
1230         LDAPControl **clientControls,
1231
1232         /* should be client controls */
1233         unsigned flags,
1234         LDAP_SASL_INTERACT_PROC *proc,
1235         void *defaults ));
1236
1237 LDAP_F( int )
1238 ldap_sasl_bind_s LDAP_P((
1239         LDAP                    *ld,
1240         LDAP_CONST char *dn,
1241         LDAP_CONST char *mechanism,
1242         struct berval   *cred,
1243         LDAPControl             **serverctrls,
1244         LDAPControl             **clientctrls,
1245         struct berval   **servercredp ));
1246
1247 LDAP_F( int )
1248 ldap_parse_sasl_bind_result LDAP_P((
1249         LDAP                    *ld,
1250         LDAPMessage             *res,
1251         struct berval   **servercredp,
1252         int                             freeit ));
1253
1254 #if LDAP_DEPRECATED
1255 /*
1256  * in bind.c:
1257  *      (deprecated)
1258  */
1259 LDAP_F( int )
1260 ldap_bind LDAP_P((      /* deprecated, use ldap_sasl_bind */
1261         LDAP *ld,
1262         LDAP_CONST char *who,
1263         LDAP_CONST char *passwd,
1264         int authmethod ));
1265
1266 LDAP_F( int )
1267 ldap_bind_s LDAP_P((    /* deprecated, use ldap_sasl_bind_s */
1268         LDAP *ld,
1269         LDAP_CONST char *who,
1270         LDAP_CONST char *cred,
1271         int authmethod ));
1272
1273 /*
1274  * in sbind.c:
1275  */
1276 LDAP_F( int )
1277 ldap_simple_bind LDAP_P(( /* deprecated, use ldap_sasl_bind */
1278         LDAP *ld,
1279         LDAP_CONST char *who,
1280         LDAP_CONST char *passwd ));
1281
1282 LDAP_F( int )
1283 ldap_simple_bind_s LDAP_P(( /* deprecated, use ldap_sasl_bind_s */
1284         LDAP *ld,
1285         LDAP_CONST char *who,
1286         LDAP_CONST char *passwd ));
1287
1288 #endif
1289
1290
1291 /*
1292  * in compare.c:
1293  */
1294 LDAP_F( int )
1295 ldap_compare_ext LDAP_P((
1296         LDAP                    *ld,
1297         LDAP_CONST char *dn,
1298         LDAP_CONST char *attr,
1299         struct berval   *bvalue,
1300         LDAPControl             **serverctrls,
1301         LDAPControl             **clientctrls,
1302         int                     *msgidp ));
1303
1304 LDAP_F( int )
1305 ldap_compare_ext_s LDAP_P((
1306         LDAP                    *ld,
1307         LDAP_CONST char *dn,
1308         LDAP_CONST char *attr,
1309         struct berval   *bvalue,
1310         LDAPControl             **serverctrls,
1311         LDAPControl             **clientctrls ));
1312
1313 #if LDAP_DEPRECATED
1314 LDAP_F( int )
1315 ldap_compare LDAP_P((   /* deprecated, use ldap_compare_ext */
1316         LDAP *ld,
1317         LDAP_CONST char *dn,
1318         LDAP_CONST char *attr,
1319         LDAP_CONST char *value ));
1320
1321 LDAP_F( int )
1322 ldap_compare_s LDAP_P(( /* deprecated, use ldap_compare_ext_s */
1323         LDAP *ld,
1324         LDAP_CONST char *dn,
1325         LDAP_CONST char *attr,
1326         LDAP_CONST char *value ));
1327 #endif
1328
1329
1330 /*
1331  * in delete.c:
1332  */
1333 LDAP_F( int )
1334 ldap_delete_ext LDAP_P((
1335         LDAP                    *ld,
1336         LDAP_CONST char *dn,
1337         LDAPControl             **serverctrls,
1338         LDAPControl             **clientctrls,
1339         int                     *msgidp ));
1340
1341 LDAP_F( int )
1342 ldap_delete_ext_s LDAP_P((
1343         LDAP                    *ld,
1344         LDAP_CONST char *dn,
1345         LDAPControl             **serverctrls,
1346         LDAPControl             **clientctrls ));
1347
1348 #if LDAP_DEPRECATED
1349 LDAP_F( int )
1350 ldap_delete LDAP_P((    /* deprecated, use ldap_delete_ext */
1351         LDAP *ld,
1352         LDAP_CONST char *dn ));
1353
1354 LDAP_F( int )
1355 ldap_delete_s LDAP_P((  /* deprecated, use ldap_delete_ext_s */
1356         LDAP *ld,
1357         LDAP_CONST char *dn ));
1358 #endif
1359
1360
1361 /*
1362  * in error.c:
1363  */
1364 LDAP_F( int )
1365 ldap_parse_result LDAP_P((
1366         LDAP                    *ld,
1367         LDAPMessage             *res,
1368         int                             *errcodep,
1369         char                    **matcheddnp,
1370         char                    **diagmsgp,
1371         char                    ***referralsp,
1372         LDAPControl             ***serverctrls,
1373         int                             freeit ));
1374
1375 LDAP_F( char * )
1376 ldap_err2string LDAP_P((
1377         int err ));
1378
1379 #if LDAP_DEPRECATED
1380 LDAP_F( int )
1381 ldap_result2error LDAP_P((      /* deprecated, use ldap_parse_result */
1382         LDAP *ld,
1383         LDAPMessage *r,
1384         int freeit ));
1385
1386 LDAP_F( void )
1387 ldap_perror LDAP_P((    /* deprecated, use ldap_err2string */
1388         LDAP *ld,
1389         LDAP_CONST char *s ));
1390 #endif
1391
1392
1393 /*
1394  * gssapi.c:
1395  */
1396 LDAP_F( int )
1397 ldap_gssapi_bind LDAP_P((
1398         LDAP *ld,
1399         LDAP_CONST char *dn,
1400         LDAP_CONST char *creds ));
1401
1402 LDAP_F( int )
1403 ldap_gssapi_bind_s LDAP_P((
1404         LDAP *ld,
1405         LDAP_CONST char *dn,
1406         LDAP_CONST char *creds ));
1407
1408
1409 /*
1410  * in modify.c:
1411  */
1412 LDAP_F( int )
1413 ldap_modify_ext LDAP_P((
1414         LDAP                    *ld,
1415         LDAP_CONST char *dn,
1416         LDAPMod                 **mods,
1417         LDAPControl             **serverctrls,
1418         LDAPControl             **clientctrls,
1419         int                     *msgidp ));
1420
1421 LDAP_F( int )
1422 ldap_modify_ext_s LDAP_P((
1423         LDAP                    *ld,
1424         LDAP_CONST char *dn,
1425         LDAPMod                 **mods,
1426         LDAPControl             **serverctrls,
1427         LDAPControl             **clientctrls ));
1428
1429 #if LDAP_DEPRECATED
1430 LDAP_F( int )
1431 ldap_modify LDAP_P((    /* deprecated, use ldap_modify_ext */
1432         LDAP *ld,
1433         LDAP_CONST char *dn,
1434         LDAPMod **mods ));
1435
1436 LDAP_F( int )
1437 ldap_modify_s LDAP_P((  /* deprecated, use ldap_modify_ext_s */
1438         LDAP *ld,
1439         LDAP_CONST char *dn,
1440         LDAPMod **mods ));
1441 #endif
1442
1443
1444 /*
1445  * in modrdn.c:
1446  */
1447 LDAP_F( int )
1448 ldap_rename LDAP_P((
1449         LDAP *ld,
1450         LDAP_CONST char *dn,
1451         LDAP_CONST char *newrdn,
1452         LDAP_CONST char *newSuperior,
1453         int deleteoldrdn,
1454         LDAPControl **sctrls,
1455         LDAPControl **cctrls,
1456         int *msgidp ));
1457
1458 LDAP_F( int )
1459 ldap_rename_s LDAP_P((
1460         LDAP *ld,
1461         LDAP_CONST char *dn,
1462         LDAP_CONST char *newrdn,
1463         LDAP_CONST char *newSuperior,
1464         int deleteoldrdn,
1465         LDAPControl **sctrls,
1466         LDAPControl **cctrls ));
1467
1468 #if LDAP_DEPRECATED
1469 LDAP_F( int )
1470 ldap_rename2 LDAP_P((   /* deprecated, use ldap_rename */
1471         LDAP *ld,
1472         LDAP_CONST char *dn,
1473         LDAP_CONST char *newrdn,
1474         LDAP_CONST char *newSuperior,
1475         int deleteoldrdn ));
1476
1477 LDAP_F( int )
1478 ldap_rename2_s LDAP_P(( /* deprecated, use ldap_rename_s */
1479         LDAP *ld,
1480         LDAP_CONST char *dn,
1481         LDAP_CONST char *newrdn,
1482         LDAP_CONST char *newSuperior,
1483         int deleteoldrdn ));
1484
1485 LDAP_F( int )
1486 ldap_modrdn LDAP_P((    /* deprecated, use ldap_rename */
1487         LDAP *ld,
1488         LDAP_CONST char *dn,
1489         LDAP_CONST char *newrdn ));
1490
1491 LDAP_F( int )
1492 ldap_modrdn_s LDAP_P((  /* deprecated, use ldap_rename_s */
1493         LDAP *ld,
1494         LDAP_CONST char *dn,
1495         LDAP_CONST char *newrdn ));
1496
1497 LDAP_F( int )
1498 ldap_modrdn2 LDAP_P((   /* deprecated, use ldap_rename */
1499         LDAP *ld,
1500         LDAP_CONST char *dn,
1501         LDAP_CONST char *newrdn,
1502         int deleteoldrdn ));
1503
1504 LDAP_F( int )
1505 ldap_modrdn2_s LDAP_P(( /* deprecated, use ldap_rename_s */
1506         LDAP *ld,
1507         LDAP_CONST char *dn,
1508         LDAP_CONST char *newrdn,
1509         int deleteoldrdn));
1510 #endif
1511
1512
1513 /*
1514  * in open.c:
1515  */
1516 #if LDAP_DEPRECATED
1517 LDAP_F( LDAP * )
1518 ldap_init LDAP_P(( /* deprecated, use ldap_create or ldap_initialize */
1519         LDAP_CONST char *host,
1520         int port ));
1521
1522 LDAP_F( LDAP * )
1523 ldap_open LDAP_P((      /* deprecated, use ldap_create or ldap_initialize */
1524         LDAP_CONST char *host,
1525         int port ));
1526 #endif
1527
1528 LDAP_F( int )
1529 ldap_create LDAP_P((
1530         LDAP **ldp ));
1531
1532 LDAP_F( int )
1533 ldap_initialize LDAP_P((
1534         LDAP **ldp,
1535         LDAP_CONST char *url ));
1536
1537 LDAP_F( LDAP * )
1538 ldap_dup LDAP_P((
1539         LDAP *old ));
1540
1541 /*
1542  * in tls.c
1543  */
1544
1545 LDAP_F( int )
1546 ldap_tls_inplace LDAP_P((
1547         LDAP *ld ));
1548
1549 LDAP_F( int )
1550 ldap_start_tls LDAP_P((
1551         LDAP *ld,
1552         LDAPControl **serverctrls,
1553         LDAPControl **clientctrls,
1554         int *msgidp ));
1555
1556 LDAP_F( int )
1557 ldap_install_tls LDAP_P((
1558         LDAP *ld ));
1559
1560 LDAP_F( int )
1561 ldap_start_tls_s LDAP_P((
1562         LDAP *ld,
1563         LDAPControl **serverctrls,
1564         LDAPControl **clientctrls ));
1565
1566 /*
1567  * in messages.c:
1568  */
1569 LDAP_F( LDAPMessage * )
1570 ldap_first_message LDAP_P((
1571         LDAP *ld,
1572         LDAPMessage *chain ));
1573
1574 LDAP_F( LDAPMessage * )
1575 ldap_next_message LDAP_P((
1576         LDAP *ld,
1577         LDAPMessage *msg ));
1578
1579 LDAP_F( int )
1580 ldap_count_messages LDAP_P((
1581         LDAP *ld,
1582         LDAPMessage *chain ));
1583
1584 /*
1585  * in references.c:
1586  */
1587 LDAP_F( LDAPMessage * )
1588 ldap_first_reference LDAP_P((
1589         LDAP *ld,
1590         LDAPMessage *chain ));
1591
1592 LDAP_F( LDAPMessage * )
1593 ldap_next_reference LDAP_P((
1594         LDAP *ld,
1595         LDAPMessage *ref ));
1596
1597 LDAP_F( int )
1598 ldap_count_references LDAP_P((
1599         LDAP *ld,
1600         LDAPMessage *chain ));
1601
1602 LDAP_F( int )
1603 ldap_parse_reference LDAP_P((
1604         LDAP                    *ld,
1605         LDAPMessage             *ref,
1606         char                    ***referralsp,
1607         LDAPControl             ***serverctrls,
1608         int                             freeit));
1609
1610
1611 /*
1612  * in getentry.c:
1613  */
1614 LDAP_F( LDAPMessage * )
1615 ldap_first_entry LDAP_P((
1616         LDAP *ld,
1617         LDAPMessage *chain ));
1618
1619 LDAP_F( LDAPMessage * )
1620 ldap_next_entry LDAP_P((
1621         LDAP *ld,
1622         LDAPMessage *entry ));
1623
1624 LDAP_F( int )
1625 ldap_count_entries LDAP_P((
1626         LDAP *ld,
1627         LDAPMessage *chain ));
1628
1629 LDAP_F( int )
1630 ldap_get_entry_controls LDAP_P((
1631         LDAP                    *ld,
1632         LDAPMessage             *entry,
1633         LDAPControl             ***serverctrls));
1634
1635
1636 /*
1637  * in addentry.c
1638  */
1639 LDAP_F( LDAPMessage * )
1640 ldap_delete_result_entry LDAP_P((
1641         LDAPMessage **list,
1642         LDAPMessage *e ));
1643
1644 LDAP_F( void )
1645 ldap_add_result_entry LDAP_P((
1646         LDAPMessage **list,
1647         LDAPMessage *e ));
1648
1649
1650 /*
1651  * in getdn.c
1652  */
1653 LDAP_F( char * )
1654 ldap_get_dn LDAP_P((
1655         LDAP *ld,
1656         LDAPMessage *entry ));
1657
1658 typedef struct ldap_ava {
1659         struct berval la_attr;
1660         struct berval la_value;
1661         unsigned la_flags;
1662 #define LDAP_AVA_NULL                           0x0000U
1663 #define LDAP_AVA_STRING                         0x0001U
1664 #define LDAP_AVA_BINARY                         0x0002U
1665 #define LDAP_AVA_NONPRINTABLE           0x0004U
1666 #define LDAP_AVA_FREE_ATTR                      0x0010U
1667 #define LDAP_AVA_FREE_VALUE                     0x0020U
1668
1669         void *la_private;
1670 } LDAPAVA;
1671
1672 typedef LDAPAVA** LDAPRDN;
1673 typedef LDAPRDN* LDAPDN;
1674
1675 /* DN formats */
1676 #define LDAP_DN_FORMAT_LDAP                     0x0000U
1677 #define LDAP_DN_FORMAT_LDAPV3           0x0010U
1678 #define LDAP_DN_FORMAT_LDAPV2           0x0020U
1679 #define LDAP_DN_FORMAT_DCE                      0x0030U
1680 #define LDAP_DN_FORMAT_UFN                      0x0040U /* dn2str only */
1681 #define LDAP_DN_FORMAT_AD_CANONICAL     0x0050U /* dn2str only */
1682 #define LDAP_DN_FORMAT_LBER                     0x00F0U /* for testing only */
1683 #define LDAP_DN_FORMAT_MASK                     0x00F0U
1684
1685 /* DN flags */
1686 #define LDAP_DN_PRETTY                          0x0100U
1687 #define LDAP_DN_SKIP                            0x0200U
1688 #define LDAP_DN_P_NOLEADTRAILSPACES     0x1000U
1689 #define LDAP_DN_P_NOSPACEAFTERRDN       0x2000U
1690 #define LDAP_DN_PEDANTIC                        0xF000U
1691
1692 LDAP_F( void ) ldap_rdnfree LDAP_P(( LDAPRDN rdn ));
1693 LDAP_F( void ) ldap_dnfree LDAP_P(( LDAPDN dn ));
1694
1695 LDAP_F( int )
1696 ldap_bv2dn LDAP_P(( 
1697         struct berval *bv, 
1698         LDAPDN *dn, 
1699         unsigned flags ));
1700
1701 LDAP_F( int )
1702 ldap_str2dn LDAP_P((
1703         LDAP_CONST char *str,
1704         LDAPDN *dn,
1705         unsigned flags ));
1706
1707 LDAP_F( int )
1708 ldap_dn2bv LDAP_P((
1709         LDAPDN dn,
1710         struct berval *bv,
1711         unsigned flags ));
1712
1713 LDAP_F( int )
1714 ldap_dn2str LDAP_P((
1715         LDAPDN dn,
1716         char **str,
1717         unsigned flags ));
1718
1719 LDAP_F( int )
1720 ldap_bv2rdn LDAP_P((
1721         struct berval *bv,
1722         LDAPRDN *rdn,
1723         char **next,
1724         unsigned flags ));
1725
1726 LDAP_F( int )
1727 ldap_str2rdn LDAP_P((
1728         LDAP_CONST char *str,
1729         LDAPRDN *rdn,
1730         char **next,
1731         unsigned flags ));
1732
1733 LDAP_F( int )
1734 ldap_rdn2bv LDAP_P((
1735         LDAPRDN rdn,
1736         struct berval *bv,
1737         unsigned flags ));
1738
1739 LDAP_F( int )
1740 ldap_rdn2str LDAP_P((
1741         LDAPRDN rdn,
1742         char **str,
1743         unsigned flags ));
1744
1745 LDAP_F( int )
1746 ldap_dn_normalize LDAP_P((
1747         LDAP_CONST char *in, unsigned iflags,
1748         char **out, unsigned oflags ));
1749
1750 LDAP_F( char * )
1751 ldap_dn2ufn LDAP_P(( /* deprecated, use ldap_str2dn/dn2str */
1752         LDAP_CONST char *dn ));
1753
1754 LDAP_F( char ** )
1755 ldap_explode_dn LDAP_P(( /* deprecated, ldap_str2dn */
1756         LDAP_CONST char *dn,
1757         int notypes ));
1758
1759 LDAP_F( char ** )
1760 ldap_explode_rdn LDAP_P(( /* deprecated, ldap_str2rdn */
1761         LDAP_CONST char *rdn,
1762         int notypes ));
1763
1764 typedef int LDAPDN_rewrite_func
1765         LDAP_P(( LDAPDN dn, unsigned flags, void *ctx ));
1766
1767 LDAP_F( int )
1768 ldap_X509dn2bv LDAP_P(( void *x509_name, struct berval *dn,
1769         LDAPDN_rewrite_func *func, unsigned flags ));
1770
1771 LDAP_F( char * )
1772 ldap_dn2dcedn LDAP_P(( /* deprecated, ldap_str2dn/dn2str */
1773         LDAP_CONST char *dn ));
1774
1775 LDAP_F( char * )
1776 ldap_dcedn2dn LDAP_P(( /* deprecated, ldap_str2dn/dn2str */
1777         LDAP_CONST char *dce ));
1778
1779 LDAP_F( char * )
1780 ldap_dn2ad_canonical LDAP_P(( /* deprecated, ldap_str2dn/dn2str */
1781         LDAP_CONST char *dn ));
1782
1783 LDAP_F( int )
1784 ldap_get_dn_ber LDAP_P((
1785         LDAP *ld, LDAPMessage *e, BerElement **berout, struct berval *dn ));
1786
1787 LDAP_F( int )
1788 ldap_get_attribute_ber LDAP_P((
1789         LDAP *ld, LDAPMessage *e, BerElement *ber, struct berval *attr,
1790         struct berval **vals ));
1791
1792 /*
1793  * in getattr.c
1794  */
1795 LDAP_F( char * )
1796 ldap_first_attribute LDAP_P((
1797         LDAP *ld,
1798         LDAPMessage *entry,
1799         BerElement **ber ));
1800
1801 LDAP_F( char * )
1802 ldap_next_attribute LDAP_P((
1803         LDAP *ld,
1804         LDAPMessage *entry,
1805         BerElement *ber ));
1806
1807
1808 /*
1809  * in getvalues.c
1810  */
1811 LDAP_F( struct berval ** )
1812 ldap_get_values_len LDAP_P((
1813         LDAP *ld,
1814         LDAPMessage *entry,
1815         LDAP_CONST char *target ));
1816
1817 LDAP_F( int )
1818 ldap_count_values_len LDAP_P((
1819         struct berval **vals ));
1820
1821 LDAP_F( void )
1822 ldap_value_free_len LDAP_P((
1823         struct berval **vals ));
1824
1825 #if LDAP_DEPRECATED
1826 LDAP_F( char ** )
1827 ldap_get_values LDAP_P((        /* deprecated, use ldap_get_values_len */
1828         LDAP *ld,
1829         LDAPMessage *entry,
1830         LDAP_CONST char *target ));
1831
1832 LDAP_F( int )
1833 ldap_count_values LDAP_P((      /* deprecated, use ldap_count_values_len */
1834         char **vals ));
1835
1836 LDAP_F( void )
1837 ldap_value_free LDAP_P((        /* deprecated, use ldap_value_free_len */
1838         char **vals ));
1839 #endif
1840
1841 /*
1842  * in result.c:
1843  */
1844 LDAP_F( int )
1845 ldap_result LDAP_P((
1846         LDAP *ld,
1847         int msgid,
1848         int all,
1849         struct timeval *timeout,
1850         LDAPMessage **result ));
1851
1852 LDAP_F( int )
1853 ldap_msgtype LDAP_P((
1854         LDAPMessage *lm ));
1855
1856 LDAP_F( int )
1857 ldap_msgid   LDAP_P((
1858         LDAPMessage *lm ));
1859
1860 LDAP_F( int )
1861 ldap_msgfree LDAP_P((
1862         LDAPMessage *lm ));
1863
1864 LDAP_F( int )
1865 ldap_msgdelete LDAP_P((
1866         LDAP *ld,
1867         int msgid ));
1868
1869
1870 /*
1871  * in search.c:
1872  */
1873 LDAP_F( int )
1874 ldap_bv2escaped_filter_value LDAP_P(( 
1875         struct berval *in, 
1876         struct berval *out ));
1877
1878 LDAP_F( int )
1879 ldap_search_ext LDAP_P((
1880         LDAP                    *ld,
1881         LDAP_CONST char *base,
1882         int                             scope,
1883         LDAP_CONST char *filter,
1884         char                    **attrs,
1885         int                             attrsonly,
1886         LDAPControl             **serverctrls,
1887         LDAPControl             **clientctrls,
1888         struct timeval  *timeout,
1889         int                             sizelimit,
1890         int                             *msgidp ));
1891
1892 LDAP_F( int )
1893 ldap_search_ext_s LDAP_P((
1894         LDAP                    *ld,
1895         LDAP_CONST char *base,
1896         int                             scope,
1897         LDAP_CONST char *filter,
1898         char                    **attrs,
1899         int                             attrsonly,
1900         LDAPControl             **serverctrls,
1901         LDAPControl             **clientctrls,
1902         struct timeval  *timeout,
1903         int                             sizelimit,
1904         LDAPMessage             **res ));
1905
1906 #if LDAP_DEPRECATED
1907 LDAP_F( int )
1908 ldap_search LDAP_P((    /* deprecated, use ldap_search_ext */
1909         LDAP *ld,
1910         LDAP_CONST char *base,
1911         int scope,
1912         LDAP_CONST char *filter,
1913         char **attrs,
1914         int attrsonly ));
1915
1916 LDAP_F( int )
1917 ldap_search_s LDAP_P((  /* deprecated, use ldap_search_ext_s */
1918         LDAP *ld,
1919         LDAP_CONST char *base,
1920         int scope,
1921         LDAP_CONST char *filter,
1922         char **attrs,
1923         int attrsonly,
1924         LDAPMessage **res ));
1925
1926 LDAP_F( int )
1927 ldap_search_st LDAP_P(( /* deprecated, use ldap_search_ext_s */
1928         LDAP *ld,
1929         LDAP_CONST char *base,
1930         int scope,
1931         LDAP_CONST char *filter,
1932     char **attrs,
1933         int attrsonly,
1934         struct timeval *timeout,
1935         LDAPMessage **res ));
1936 #endif
1937
1938 /*
1939  * in unbind.c
1940  */
1941 LDAP_F( int )
1942 ldap_unbind_ext LDAP_P((
1943         LDAP                    *ld,
1944         LDAPControl             **serverctrls,
1945         LDAPControl             **clientctrls));
1946
1947 LDAP_F( int )
1948 ldap_unbind_ext_s LDAP_P((
1949         LDAP                    *ld,
1950         LDAPControl             **serverctrls,
1951         LDAPControl             **clientctrls));
1952
1953 LDAP_F( int )
1954 ldap_destroy LDAP_P((
1955         LDAP                    *ld));
1956
1957 #if LDAP_DEPRECATED
1958 LDAP_F( int )
1959 ldap_unbind LDAP_P(( /* deprecated, use ldap_unbind_ext */
1960         LDAP *ld ));
1961
1962 LDAP_F( int )
1963 ldap_unbind_s LDAP_P(( /* deprecated, use ldap_unbind_ext_s */
1964         LDAP *ld ));
1965 #endif
1966
1967 /*
1968  * in filter.c
1969  */
1970 LDAP_F( int )
1971 ldap_put_vrFilter LDAP_P((
1972         BerElement *ber,
1973         const char *vrf ));
1974
1975 /*
1976  * in free.c
1977  */
1978
1979 LDAP_F( void * )
1980 ldap_memalloc LDAP_P((
1981         ber_len_t s ));
1982
1983 LDAP_F( void * )
1984 ldap_memrealloc LDAP_P((
1985         void* p,
1986         ber_len_t s ));
1987
1988 LDAP_F( void * )
1989 ldap_memcalloc LDAP_P((
1990         ber_len_t n,
1991         ber_len_t s ));
1992
1993 LDAP_F( void )
1994 ldap_memfree LDAP_P((
1995         void* p ));
1996
1997 LDAP_F( void )
1998 ldap_memvfree LDAP_P((
1999         void** v ));
2000
2001 LDAP_F( char * )
2002 ldap_strdup LDAP_P((
2003         LDAP_CONST char * ));
2004
2005 LDAP_F( void )
2006 ldap_mods_free LDAP_P((
2007         LDAPMod **mods,
2008         int freemods ));
2009
2010
2011 #if LDAP_DEPRECATED
2012 /*
2013  * in sort.c (deprecated, use custom code instead)
2014  */
2015 typedef int (LDAP_SORT_AD_CMP_PROC) LDAP_P(( /* deprecated */
2016         LDAP_CONST char *left,
2017         LDAP_CONST char *right ));
2018
2019 typedef int (LDAP_SORT_AV_CMP_PROC) LDAP_P(( /* deprecated */
2020         LDAP_CONST void *left,
2021         LDAP_CONST void *right ));
2022
2023 LDAP_F( int )   /* deprecated */
2024 ldap_sort_entries LDAP_P(( LDAP *ld,
2025         LDAPMessage **chain,
2026         LDAP_CONST char *attr,
2027         LDAP_SORT_AD_CMP_PROC *cmp ));
2028
2029 LDAP_F( int )   /* deprecated */
2030 ldap_sort_values LDAP_P((
2031         LDAP *ld,
2032         char **vals,
2033         LDAP_SORT_AV_CMP_PROC *cmp ));
2034
2035 LDAP_F( int ) /* deprecated */
2036 ldap_sort_strcasecmp LDAP_P((
2037         LDAP_CONST void *a,
2038         LDAP_CONST void *b ));
2039 #endif
2040
2041 /*
2042  * in url.c
2043  */
2044 LDAP_F( int )
2045 ldap_is_ldap_url LDAP_P((
2046         LDAP_CONST char *url ));
2047
2048 LDAP_F( int )
2049 ldap_is_ldaps_url LDAP_P((
2050         LDAP_CONST char *url ));
2051
2052 LDAP_F( int )
2053 ldap_is_ldapi_url LDAP_P((
2054         LDAP_CONST char *url ));
2055
2056 LDAP_F( int )
2057 ldap_url_parse LDAP_P((
2058         LDAP_CONST char *url,
2059         LDAPURLDesc **ludpp ));
2060
2061 LDAP_F( char * )
2062 ldap_url_desc2str LDAP_P((
2063         LDAPURLDesc *ludp ));
2064
2065 LDAP_F( void )
2066 ldap_free_urldesc LDAP_P((
2067         LDAPURLDesc *ludp ));
2068
2069
2070 /*
2071  * LDAP Cancel Extended Operation <draft-zeilenga-ldap-cancel-xx.txt>
2072  *  in cancel.c
2073  */
2074 #define LDAP_API_FEATURE_CANCEL 1000
2075
2076 LDAP_F( int )
2077 ldap_cancel LDAP_P(( LDAP *ld,
2078         int cancelid,
2079         LDAPControl             **sctrls,
2080         LDAPControl             **cctrls,
2081         int                             *msgidp ));
2082
2083 LDAP_F( int )
2084 ldap_cancel_s LDAP_P(( LDAP *ld,
2085         int cancelid,
2086         LDAPControl **sctrl,
2087         LDAPControl **cctrl ));
2088
2089 /*
2090  * LDAP Turn Extended Operation <draft-zeilenga-ldap-turn-xx.txt>
2091  *  in turn.c
2092  */
2093 #define LDAP_API_FEATURE_TURN 1000
2094
2095 LDAP_F( int )
2096 ldap_turn LDAP_P(( LDAP *ld,
2097         int mutual,
2098         LDAP_CONST char* identifier,
2099         LDAPControl             **sctrls,
2100         LDAPControl             **cctrls,
2101         int                             *msgidp ));
2102
2103 LDAP_F( int )
2104 ldap_turn_s LDAP_P(( LDAP *ld,
2105         int mutual,
2106         LDAP_CONST char* identifier,
2107         LDAPControl **sctrl,
2108         LDAPControl **cctrl ));
2109
2110 /*
2111  * LDAP Paged Results
2112  *      in pagectrl.c
2113  */
2114 #define LDAP_API_FEATURE_PAGED_RESULTS 2000
2115
2116 LDAP_F( int )
2117 ldap_create_page_control_value LDAP_P((
2118         LDAP *ld,
2119         ber_int_t pagesize,
2120         struct berval *cookie,
2121         struct berval *value ));
2122
2123 LDAP_F( int )
2124 ldap_create_page_control LDAP_P((
2125         LDAP *ld,
2126         ber_int_t pagesize,
2127         struct berval *cookie,
2128         int iscritical,
2129         LDAPControl **ctrlp ));
2130
2131 #if LDAP_DEPRECATED
2132 LDAP_F( int )
2133 ldap_parse_page_control LDAP_P((
2134         /* deprecated, use ldap_parse_pageresponse_control */
2135         LDAP *ld,
2136         LDAPControl **ctrls,
2137         ber_int_t *count,
2138         struct berval **cookie ));
2139 #endif
2140
2141 LDAP_F( int )
2142 ldap_parse_pageresponse_control LDAP_P((
2143         LDAP *ld,
2144         LDAPControl *ctrl,
2145         ber_int_t *count,
2146         struct berval *cookie ));
2147
2148 /*
2149  * LDAP Server Side Sort
2150  *      in sortctrl.c
2151  */
2152 #define LDAP_API_FEATURE_SERVER_SIDE_SORT 2000
2153
2154 /* structure for a sort-key */
2155 typedef struct ldapsortkey {
2156         char *attributeType;
2157         char *orderingRule;
2158         int reverseOrder;
2159 } LDAPSortKey;
2160
2161 LDAP_F( int )
2162 ldap_create_sort_keylist LDAP_P((
2163         LDAPSortKey ***sortKeyList,
2164         char *keyString ));
2165
2166 LDAP_F( void )
2167 ldap_free_sort_keylist LDAP_P((
2168         LDAPSortKey **sortkeylist ));
2169
2170 LDAP_F( int )
2171 ldap_create_sort_control_value LDAP_P((
2172         LDAP *ld,
2173         LDAPSortKey **keyList,
2174         struct berval *value ));
2175
2176 LDAP_F( int )
2177 ldap_create_sort_control LDAP_P((
2178         LDAP *ld,
2179         LDAPSortKey **keyList,
2180         int iscritical,
2181         LDAPControl **ctrlp ));
2182
2183 LDAP_F( int )
2184 ldap_parse_sortresponse_control LDAP_P((
2185         LDAP *ld,
2186         LDAPControl *ctrl,
2187         ber_int_t *result,
2188         char **attribute ));
2189
2190 /*
2191  * LDAP Virtual List View
2192  *      in vlvctrl.c
2193  */
2194 #define LDAP_API_FEATURE_VIRTUAL_LIST_VIEW 2000
2195
2196 /* structure for virtual list */
2197 typedef struct ldapvlvinfo {
2198         ber_int_t ldvlv_version;
2199     ber_int_t ldvlv_before_count;
2200     ber_int_t ldvlv_after_count;
2201     ber_int_t ldvlv_offset;
2202     ber_int_t ldvlv_count;
2203     struct berval *     ldvlv_attrvalue;
2204     struct berval *     ldvlv_context;
2205     void *                      ldvlv_extradata;
2206 } LDAPVLVInfo;
2207
2208 LDAP_F( int )
2209 ldap_create_vlv_control_value LDAP_P((
2210         LDAP *ld,
2211         LDAPVLVInfo *ldvlistp,
2212         struct berval *value));
2213
2214 LDAP_F( int )
2215 ldap_create_vlv_control LDAP_P((
2216         LDAP *ld,
2217         LDAPVLVInfo *ldvlistp,
2218         LDAPControl **ctrlp ));
2219
2220 LDAP_F( int )
2221 ldap_parse_vlvresponse_control LDAP_P((
2222         LDAP          *ld,
2223         LDAPControl   *ctrls,
2224         ber_int_t *target_posp,
2225         ber_int_t *list_countp,
2226         struct berval **contextp,
2227         int           *errcodep ));
2228
2229 /*
2230  * LDAP Verify Credentials
2231  */
2232 #define LDAP_API_FEATURE_VERIFY_CREDENTIALS 1000
2233
2234 LDAP_F( int )
2235 ldap_verify_credentials LDAP_P((
2236         LDAP            *ld,
2237         struct berval   *cookie,
2238         LDAP_CONST char *dn,
2239         LDAP_CONST char *mechanism,
2240         struct berval   *cred,
2241         LDAPControl     **ctrls,
2242         LDAPControl     **serverctrls,
2243         LDAPControl     **clientctrls,
2244         int             *msgidp ));
2245
2246 LDAP_F( int )
2247 ldap_verify_credentials_s LDAP_P((
2248         LDAP            *ld,
2249         struct berval   *cookie,
2250         LDAP_CONST char *dn,
2251         LDAP_CONST char *mechanism,
2252         struct berval   *cred,
2253         LDAPControl     **vcictrls,
2254         LDAPControl     **serverctrls,
2255         LDAPControl     **clientctrls,
2256         int                             *code,
2257         char                    **diagmsgp,
2258         struct berval   **scookie,
2259         struct berval   **servercredp,
2260         LDAPControl     ***vcoctrls));
2261         
2262
2263 LDAP_F( int )
2264 ldap_parse_verify_credentials LDAP_P((
2265         LDAP            *ld,
2266         LDAPMessage     *res,
2267         int                     *code,
2268         char                    **diagmsgp,
2269         struct berval   **cookie,
2270         struct berval   **servercredp,
2271         LDAPControl     ***vcctrls));
2272
2273 /* not yet implemented */
2274 /* #define LDAP_API_FEATURE_VERIFY_CREDENTIALS_INTERACTIVE 1000 */
2275 #ifdef LDAP_API_FEATURE_VERIFY_CREDENTIALS_INTERACTIVE
2276 LDAP_F( int )
2277 ldap_verify_credentials_interactive LDAP_P((
2278         LDAP *ld,
2279         LDAP_CONST char *dn, /* usually NULL */
2280         LDAP_CONST char *saslMechanism,
2281         LDAPControl **vcControls,
2282         LDAPControl **serverControls,
2283         LDAPControl **clientControls,
2284
2285         /* should be client controls */
2286         unsigned flags,
2287         LDAP_SASL_INTERACT_PROC *proc,
2288         void *defaults,
2289         void *context,
2290         
2291         /* as obtained from ldap_result() */
2292         LDAPMessage *result,
2293
2294         /* returned during bind processing */
2295         const char **rmech,
2296         int *msgid ));
2297 #endif
2298
2299 /*
2300  * LDAP Who Am I?
2301  *      in whoami.c
2302  */
2303 #define LDAP_API_FEATURE_WHOAMI 1000
2304
2305 LDAP_F( int )
2306 ldap_parse_whoami LDAP_P((
2307         LDAP *ld,
2308         LDAPMessage *res,
2309         struct berval **authzid ));
2310
2311 LDAP_F( int )
2312 ldap_whoami LDAP_P(( LDAP *ld,
2313         LDAPControl             **sctrls,
2314         LDAPControl             **cctrls,
2315         int                             *msgidp ));
2316
2317 LDAP_F( int )
2318 ldap_whoami_s LDAP_P((
2319         LDAP *ld,
2320         struct berval **authzid,
2321         LDAPControl **sctrls,
2322         LDAPControl **cctrls ));
2323
2324 /*
2325  * LDAP Password Modify
2326  *      in passwd.c
2327  */
2328 #define LDAP_API_FEATURE_PASSWD_MODIFY 1000
2329
2330 LDAP_F( int )
2331 ldap_parse_passwd LDAP_P((
2332         LDAP *ld,
2333         LDAPMessage *res,
2334         struct berval *newpasswd ));
2335
2336 LDAP_F( int )
2337 ldap_passwd LDAP_P(( LDAP *ld,
2338         struct berval   *user,
2339         struct berval   *oldpw,
2340         struct berval   *newpw,
2341         LDAPControl             **sctrls,
2342         LDAPControl             **cctrls,
2343         int                             *msgidp ));
2344
2345 LDAP_F( int )
2346 ldap_passwd_s LDAP_P((
2347         LDAP *ld,
2348         struct berval   *user,
2349         struct berval   *oldpw,
2350         struct berval   *newpw,
2351         struct berval *newpasswd,
2352         LDAPControl **sctrls,
2353         LDAPControl **cctrls ));
2354
2355 #ifdef LDAP_CONTROL_PASSWORDPOLICYREQUEST
2356 /*
2357  * LDAP Password Policy controls
2358  *      in ppolicy.c
2359  */
2360 #define LDAP_API_FEATURE_PASSWORD_POLICY 1000
2361
2362 typedef enum passpolicyerror_enum {
2363        PP_passwordExpired = 0,
2364        PP_accountLocked = 1,
2365        PP_changeAfterReset = 2,
2366        PP_passwordModNotAllowed = 3,
2367        PP_mustSupplyOldPassword = 4,
2368        PP_insufficientPasswordQuality = 5,
2369        PP_passwordTooShort = 6,
2370        PP_passwordTooYoung = 7,
2371        PP_passwordInHistory = 8,
2372        PP_noError = 65535
2373 } LDAPPasswordPolicyError;
2374
2375 LDAP_F( int )
2376 ldap_create_passwordpolicy_control LDAP_P((
2377         LDAP *ld,
2378         LDAPControl **ctrlp ));
2379
2380 LDAP_F( int )
2381 ldap_parse_passwordpolicy_control LDAP_P((
2382         LDAP *ld,
2383         LDAPControl *ctrl,
2384         ber_int_t *expirep,
2385         ber_int_t *gracep,
2386         LDAPPasswordPolicyError *errorp ));
2387
2388 LDAP_F( const char * )
2389 ldap_passwordpolicy_err2txt LDAP_P(( LDAPPasswordPolicyError ));
2390 #endif /* LDAP_CONTROL_PASSWORDPOLICYREQUEST */
2391
2392 /*
2393  * LDAP Dynamic Directory Services Refresh -- RFC 2589
2394  *      in dds.c
2395  */
2396 #define LDAP_API_FEATURE_REFRESH 1000
2397
2398 LDAP_F( int )
2399 ldap_parse_refresh LDAP_P((
2400         LDAP *ld,
2401         LDAPMessage *res,
2402         ber_int_t *newttl ));
2403
2404 LDAP_F( int )
2405 ldap_refresh LDAP_P(( LDAP *ld,
2406         struct berval   *dn,
2407         ber_int_t ttl,
2408         LDAPControl             **sctrls,
2409         LDAPControl             **cctrls,
2410         int                             *msgidp ));
2411
2412 LDAP_F( int )
2413 ldap_refresh_s LDAP_P((
2414         LDAP *ld,
2415         struct berval   *dn,
2416         ber_int_t ttl,
2417         ber_int_t *newttl,
2418         LDAPControl **sctrls,
2419         LDAPControl **cctrls ));
2420
2421 /*
2422  * LDAP Transactions
2423  */
2424 #ifdef LDAP_X_TXN
2425 LDAP_F( int )
2426 ldap_txn_start LDAP_P(( LDAP *ld,
2427         LDAPControl             **sctrls,
2428         LDAPControl             **cctrls,
2429         int                             *msgidp ));
2430
2431 LDAP_F( int )
2432 ldap_txn_start_s LDAP_P(( LDAP *ld,
2433         LDAPControl **sctrl,
2434         LDAPControl **cctrl,
2435         struct berval **rettxnid ));
2436
2437 LDAP_F( int )
2438 ldap_txn_end LDAP_P(( LDAP *ld,
2439         int     commit,
2440         struct berval   *txnid,
2441         LDAPControl             **sctrls,
2442         LDAPControl             **cctrls,
2443         int                             *msgidp ));
2444
2445 LDAP_F( int )
2446 ldap_txn_end_s LDAP_P(( LDAP *ld,
2447         int     commit,
2448         struct berval *txnid,
2449         LDAPControl **sctrl,
2450         LDAPControl **cctrl,
2451         int *retidp ));
2452 #endif
2453
2454 /*
2455  * in ldap_sync.c
2456  */
2457
2458 /*
2459  * initialize the persistent search structure
2460  */
2461 LDAP_F( ldap_sync_t * )
2462 ldap_sync_initialize LDAP_P((
2463         ldap_sync_t     *ls ));
2464
2465 /*
2466  * destroy the persistent search structure
2467  */
2468 LDAP_F( void )
2469 ldap_sync_destroy LDAP_P((
2470         ldap_sync_t     *ls,
2471         int             freeit ));
2472
2473 /*
2474  * initialize a refreshOnly sync
2475  */
2476 LDAP_F( int )
2477 ldap_sync_init LDAP_P((
2478         ldap_sync_t     *ls,
2479         int             mode ));
2480
2481 /*
2482  * initialize a refreshOnly sync
2483  */
2484 LDAP_F( int )
2485 ldap_sync_init_refresh_only LDAP_P((
2486         ldap_sync_t     *ls ));
2487
2488 /*
2489  * initialize a refreshAndPersist sync
2490  */
2491 LDAP_F( int )
2492 ldap_sync_init_refresh_and_persist LDAP_P((
2493         ldap_sync_t     *ls ));
2494
2495 /*
2496  * poll for new responses
2497  */
2498 LDAP_F( int )
2499 ldap_sync_poll LDAP_P((
2500         ldap_sync_t     *ls ));
2501
2502 #ifdef LDAP_CONTROL_X_SESSION_TRACKING
2503
2504 /*
2505  * in stctrl.c
2506  */
2507 LDAP_F( int )
2508 ldap_create_session_tracking_value LDAP_P((
2509         LDAP            *ld,
2510         char            *sessionSourceIp,
2511         char            *sessionSourceName,
2512         char            *formatOID,
2513         struct berval   *sessionTrackingIdentifier,
2514         struct berval   *value ));
2515
2516 LDAP_F( int )
2517 ldap_create_session_tracking_control LDAP_P((
2518         LDAP            *ld,
2519         char            *sessionSourceIp,
2520         char            *sessionSourceName,
2521         char            *formatOID,
2522         struct berval   *sessionTrackingIdentifier,
2523         LDAPControl     **ctrlp ));
2524
2525 LDAP_F( int )
2526 ldap_parse_session_tracking_control LDAP_P((
2527         LDAP *ld,
2528         LDAPControl *ctrl,
2529         struct berval *ip,
2530         struct berval *name,
2531         struct berval *oid,
2532         struct berval *id ));
2533
2534 #endif /* LDAP_CONTROL_X_SESSION_TRACKING */
2535
2536 /*
2537  * in assertion.c
2538  */
2539 LDAP_F (int)
2540 ldap_create_assertion_control_value LDAP_P((
2541         LDAP            *ld,
2542         char            *assertion,
2543         struct berval   *value ));
2544
2545 LDAP_F( int )
2546 ldap_create_assertion_control LDAP_P((
2547         LDAP            *ld,
2548         char            *filter,
2549         int             iscritical,
2550         LDAPControl     **ctrlp ));
2551
2552 /*
2553  * in deref.c
2554  */
2555
2556 typedef struct LDAPDerefSpec {
2557         char *derefAttr;
2558         char **attributes;
2559 } LDAPDerefSpec;
2560
2561 typedef struct LDAPDerefVal {
2562         char *type;
2563         BerVarray vals;
2564         struct LDAPDerefVal *next;
2565 } LDAPDerefVal;
2566
2567 typedef struct LDAPDerefRes {
2568         char *derefAttr;
2569         struct berval derefVal;
2570         LDAPDerefVal *attrVals;
2571         struct LDAPDerefRes *next;
2572 } LDAPDerefRes;
2573
2574 LDAP_F( int )
2575 ldap_create_deref_control_value LDAP_P((
2576         LDAP *ld,
2577         LDAPDerefSpec *ds,
2578         struct berval *value ));
2579
2580 LDAP_F( int )
2581 ldap_create_deref_control LDAP_P((
2582         LDAP            *ld,
2583         LDAPDerefSpec   *ds,
2584         int             iscritical,
2585         LDAPControl     **ctrlp ));
2586
2587 LDAP_F( void )
2588 ldap_derefresponse_free LDAP_P((
2589         LDAPDerefRes *dr ));
2590
2591 LDAP_F( int )
2592 ldap_parse_derefresponse_control LDAP_P((
2593         LDAP *ld,
2594         LDAPControl *ctrl,
2595         LDAPDerefRes **drp ));
2596
2597 LDAP_F( int )
2598 ldap_parse_deref_control LDAP_P((
2599         LDAP            *ld,
2600         LDAPControl     **ctrls,
2601         LDAPDerefRes    **drp ));
2602
2603 /*
2604  * high level LDIF to LDAP structure support
2605  */
2606 #define LDIF_DEFAULT_ADD  0x01 /* if changetype missing, assume LDAP_ADD */
2607 #define LDIF_ENTRIES_ONLY 0x02 /* ignore changetypes other than add */
2608 #define LDIF_NO_CONTROLS  0x04 /* ignore control specifications */
2609
2610 typedef struct ldifrecord {
2611         ber_tag_t lr_op; /* type of operation - LDAP_REQ_MODIFY, LDAP_REQ_ADD, etc. */
2612         struct berval lr_dn; /* DN of operation */
2613         LDAPControl **lr_ctrls; /* controls specified for operation */
2614         /* some ops such as LDAP_REQ_DELETE require only a DN */
2615         /* other ops require different data - the ldif_ops union
2616            is used to specify the data for each type of operation */
2617         union ldif_ops_u {
2618                 LDAPMod **lr_mods; /* list of mods for LDAP_REQ_MODIFY, LDAP_REQ_ADD */
2619 #define lrop_mods ldif_ops.lr_mods
2620                 struct ldif_op_rename_s {
2621                         struct berval lr_newrdn; /* LDAP_REQ_MODDN, LDAP_REQ_MODRDN, LDAP_REQ_RENAME */
2622 #define lrop_newrdn ldif_ops.ldif_op_rename.lr_newrdn
2623                         struct berval lr_newsuperior; /* LDAP_REQ_MODDN, LDAP_REQ_MODRDN, LDAP_REQ_RENAME */
2624 #define lrop_newsup ldif_ops.ldif_op_rename.lr_newsuperior
2625                         int lr_deleteoldrdn; /* LDAP_REQ_MODDN, LDAP_REQ_MODRDN, LDAP_REQ_RENAME */
2626 #define lrop_delold ldif_ops.ldif_op_rename.lr_deleteoldrdn
2627                 } ldif_op_rename; /* rename/moddn/modrdn */
2628                 /* the following are for future support */
2629                 struct ldif_op_ext_s {
2630                         struct berval lr_extop_oid; /* LDAP_REQ_EXTENDED */
2631 #define lrop_extop_oid ldif_ops.ldif_op_ext.lr_extop_oid
2632                         struct berval lr_extop_data; /* LDAP_REQ_EXTENDED */
2633 #define lrop_extop_data ldif_ops.ldif_op_ext.lr_extop_data
2634                 } ldif_op_ext; /* extended operation */
2635                 struct ldif_op_cmp_s {
2636                         struct berval lr_cmp_attr; /* LDAP_REQ_COMPARE */
2637 #define lrop_cmp_attr ldif_ops.ldif_op_cmp.lr_cmp_attr
2638                         struct berval lr_cmp_bvalue; /* LDAP_REQ_COMPARE */
2639 #define lrop_cmp_bval ldif_ops.ldif_op_cmp.lr_cmp_bvalue
2640                 } ldif_op_cmp; /* compare operation */
2641         } ldif_ops;
2642         /* PRIVATE STUFF - DO NOT TOUCH */
2643         /* for efficiency, the implementation allocates memory */
2644         /* in large blobs, and makes the above fields point to */
2645         /* locations inside those blobs - one consequence is that */
2646         /* you cannot simply free the above allocated fields, nor */
2647         /* assign them to be owned by another memory context which */
2648         /* might free them (unless providing your own mem ctx) */
2649         /* we use the fields below to keep track of those blobs */
2650         /* so we that we can free them later */
2651         void *lr_ctx; /* the memory context or NULL */
2652         int lr_lines;
2653         LDAPMod *lr_lm;
2654         unsigned char *lr_mops;
2655         char *lr_freeval;
2656         struct berval *lr_vals;
2657         struct berval *lr_btype;
2658 } LDIFRecord;
2659
2660 /* free internal fields - does not free the LDIFRecord */
2661 LDAP_F( void )
2662 ldap_ldif_record_done LDAP_P((
2663         LDIFRecord *lr ));
2664
2665 LDAP_F( int )
2666 ldap_parse_ldif_record LDAP_P((
2667         struct berval *rbuf,
2668         unsigned long linenum,
2669         LDIFRecord *lr,
2670         const char *errstr,
2671         unsigned int flags ));
2672
2673 LDAP_END_DECL
2674 #endif /* _LDAP_H */