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