]> git.sur5r.net Git - openldap/blob - include/ldap.h
lber.h: added #include <stddef.h> conditional on LBER_SIZE_T_DEFINED
[openldap] / include / ldap.h
1 /*
2  * Copyright 1998,1999 The OpenLDAP Foundation, Redwood City, California, USA
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms are permitted only
6  * as authorized by the OpenLDAP Public License.  A copy of this
7  * license is available at http://www.OpenLDAP.org/license.html or
8  * in file LICENSE in the top-level directory of the distribution.
9  */
10 /* Portions
11  * Copyright (c) 1990 Regents of the University of Michigan.
12  * All rights reserved.
13  *
14  * Redistribution and use in source and binary forms are permitted
15  * provided that this notice is preserved and that due credit is given
16  * to the University of Michigan at Ann Arbor. The name of the University
17  * may not be used to endorse or promote products derived from this
18  * software without specific prior written permission. This software
19  * is provided ``as is'' without express or implied warranty.
20  */
21
22 #ifndef _LDAP_H
23 #define _LDAP_H
24
25 #include <ldap_cdefs.h>
26
27 /* draft spec requires ldap.h include lber declarations */
28 #include <lber.h>
29
30 LDAP_BEGIN_DECL
31
32 #define LDAP_VERSION1   1
33 #define LDAP_VERSION2   2
34 #define LDAP_VERSION3   3
35
36 #define LDAP_VERSION            LDAP_VERSION2
37 #define LDAP_VERSION_MIN        LDAP_VERSION2
38 #define LDAP_VERSION_MAX        LDAP_VERSION2
39
40 /*
41  * We'll use 2000+draft revision for our API version number
42  * As such, the number will be above the old RFC but below 
43  * whatever number does finally get assigned
44  */
45 #define LDAP_API_VERSION        2002
46 #define LDAP_VENDOR_NAME        "OpenLDAP"
47 /* We'll eventually release as 200 */
48 #define LDAP_VENDOR_VERSION     192
49
50 /* OpenLDAP API Features */
51 #define LDAP_API_FEATURE_X_OPENLDAP LDAP_VENDOR_VERSION
52
53 /* include LDAP_API_FEATURE defines */
54 #include <ldap_features.h>
55
56 #if defined( LDAP_API_FEATURE_X_OPENLDAP_REENTRANT ) || \
57         ( defined( LDAP_THREAD_SAFE ) && \
58                 defined( LDAP_API_FEATURE_X_OPENLDAP_THREAD_SAFE ) )
59         /* -lldap may or may not be thread safe */
60         /* -lldap_r, if available, is always thread safe */
61 #       define  LDAP_API_FEATURE_THREAD_SAFE 1
62 #endif
63 #if defined( LDAP_THREAD_SAFE ) && \
64         defined( LDAP_API_FEATURE_X_OPENLDAP_THREAD_SAFE )
65 /* #define LDAP_API_FEATURE_SESSION_SAFE        1       */
66 /* #define LDAP_API_OPERATION_SESSION_SAFE      1       */
67 #endif
68
69 #define LDAP_PORT               389
70
71 #define LDAP_ROOT_DSE                           ""
72 #define LDAP_NO_ATTRS                           "1.1"
73 #define LDAP_ALL_USER_ATTRIBUTES        "*"
74
75 /*
76  * LDAP_OPTions defined by draft-ldapext-ldap-c-api-02
77  * 0x0000 - 0x0fff reserved for api options
78  * 0x1000 - 0x3fff reserved for api extended options
79  * 0x4000 - 0x7fff reserved for private and experimental options
80  */
81 #define LDAP_OPT_API_INFO                       0x0000
82 #define LDAP_OPT_DESC                           0x0001
83 #define LDAP_OPT_DEREF                          0x0002
84 #define LDAP_OPT_SIZELIMIT                      0x0003
85 #define LDAP_OPT_TIMELIMIT                      0x0004
86 /* 0x05 - 0x07 not defined by current draft */
87 #define LDAP_OPT_REFERRALS                      0x0008
88 #define LDAP_OPT_RESTART                        0x0009
89 /* 0x0a - 0x10 not defined by current draft */
90 #define LDAP_OPT_PROTOCOL_VERSION       0x0011
91 #define LDAP_OPT_SERVER_CONTROLS        0x0012
92 #define LDAP_OPT_CLIENT_CONTROLS        0x0013
93 /* 0x14 not defined by current draft */
94 #define LDAP_OPT_API_FEATURE_INFO       0x0015
95
96 /* 0x16 - 0x2f not defined by current draft */
97 #define LDAP_OPT_HOST_NAME                      0x0030
98 #define LDAP_OPT_ERROR_NUMBER           0x0031
99 #define LDAP_OPT_ERROR_STRING           0x0032
100
101 /* 0x33 - 0x0fff not defined by current draft */
102
103 /* extended options - none */
104
105 /* private and experimental options */
106 #define LDAP_OPT_DNS                            0x4001  /* use DN & DNS */
107
108 /* OpenLDAP specific options */
109 #define LDAP_OPT_DEBUG_LEVEL            0x5001  /* debug level */
110 #define LDAP_OPT_TIMEOUT                        0x5002  /* default timeout */
111 #define LDAP_OPT_REFHOPLIMIT            0x5003  /* ref hop limit */
112 #define LDAP_OPT_MATCH_STRING           0x5004  /* should have been in draft */
113
114 /* on/off values */
115 #define LDAP_OPT_ON             ((void *) 1)
116 #define LDAP_OPT_OFF    ((void *) 0)
117
118 #define LDAP_OPT_SUCCESS        0
119 #define LDAP_OPT_ERROR          (-1)
120
121 #define LDAP_API_INFO_VERSION   1
122 typedef struct ldapapiinfo {
123         int             ldapai_info_version;            /* version of LDAPAPIInfo (1) */
124         int             ldapai_api_version;                     /* revision of API supported */
125         int             ldapai_protocol_version;        /* highest LDAP version supported */
126         char    **ldapai_extensions;            /* names of API extensions */
127         char    *ldapai_vendor_name;            /* name of supplier */
128         int             ldapai_vendor_version;          /* supplier-specific version * 100 */
129 } LDAPAPIInfo;
130
131 #define LDAP_FEATURE_INFO_VERSION (1) /* version of api feature structure */
132 typedef struct ldap_apifeature_info {
133         int             ldapaif_info_version; /* version of this struct (1) */
134         char*   ldapaif_name;    /* matches LDAP_API_FEATURE_... less the prefix */
135         int             ldapaif_version; /* matches the value LDAP_API_FEATURE_... */
136 } LDAPAPIFeatureInfo;
137
138 typedef struct ldapcontrol {
139         char *                  ldctl_oid;
140         struct berval   ldctl_value;
141         char                    ldctl_iscritical;
142 } LDAPControl;
143
144 /* LDAP "Standard" Controls */
145 #define LDAP_CONTROL_REFERRALS  "1.2.840.113666.1.4.616"
146 #define LDAP_CHASE_SUBORDINATE_REFERRALS        0x0020
147 #define LDAP_CHASE_EXTERNAL_REFERRALS   0x0040
148
149 /* LDAP "Extension" Controls */
150
151 /* LDAP "Private/Experiemental" Controls */
152
153
154 /* 
155  * specific LDAP instantiations of BER types we know about
156  */
157
158 /* Overview of LBER tag construction
159  *
160  *      Bits
161  *      ______
162  *      8 7 | CLASS
163  *      0 0 = UNIVERSAL
164  *      0 1 = APPLICATION
165  *      1 0 = CONTEXT-SPECIFIC
166  *      1 1 = PRIVATE
167  *              _____
168  *              | 6 | DATA-TYPE
169  *                0 = PRIMITIVE
170  *                1 = CONSTRUCTED
171  *                      ___________
172  *                      | 5 ... 1 | TAG-NUMBER
173  */
174
175 /* general stuff */
176 #define LDAP_TAG_MESSAGE        0x30UL  /* constructed + 16 */
177 #define OLD_LDAP_TAG_MESSAGE    0x10UL  /* forgot the constructed bit  */
178 #define LDAP_TAG_MSGID          0x02UL  /* integer */
179 #define LDAP_TAG_LDAPDN         0x04UL  /* octect string */
180 #define LDAP_TAG_CONTROLS       0xa0UL  /* context specific + constructed + 0 */
181 #define LDAP_TAG_REFERRAL       0xa3UL  /* context specific + constructed + 3 */
182
183 #define LDAP_TAG_NEWSUPERIOR    0x80UL  /* context-specific + primitive + 0 */
184
185 #define LDAP_TAG_EXOP_REQ_OID   0x80UL  /* context specific + primitive */
186 #define LDAP_TAG_EXOP_REQ_VALUE 0x81UL  /* context specific + primitive */
187 #define LDAP_TAG_EXOP_RES_OID   0x8aUL  /* context specific + primitive */
188 #define LDAP_TAG_EXOP_RES_VALUE 0x8bUL  /* context specific + primitive */
189
190 #define LDAP_TAG_SASL_RES_CREDS 0x87UL  /* context specific + primitive */
191
192
193
194
195 /* possible operations a client can invoke */
196 #define LDAP_REQ_BIND                   0x60UL  /* application + constructed */
197 #define LDAP_REQ_UNBIND                 0x42UL  /* application + primitive   */
198 #define LDAP_REQ_SEARCH                 0x63UL  /* application + constructed */
199 #define LDAP_REQ_MODIFY                 0x66UL  /* application + constructed */
200 #define LDAP_REQ_ADD                    0x68UL  /* application + constructed */
201 #define LDAP_REQ_DELETE                 0x4aUL  /* application + primitive   */
202 #define LDAP_REQ_MODRDN                 0x6cUL  /* application + constructed */
203 #define LDAP_REQ_MODDN                  LDAP_REQ_MODRDN 
204 #define LDAP_REQ_RENAME                 LDAP_REQ_MODRDN 
205 #define LDAP_REQ_COMPARE                0x6eUL  /* application + constructed */
206 #define LDAP_REQ_ABANDON                0x50UL  /* application + primitive   */
207 #define LDAP_REQ_EXTENDED               0x77UL  /* application + constructed */
208
209 /* U-Mich version 3.0 compatibility stuff */
210 #define LDAP_REQ_UNBIND_30              0x62UL
211 #define LDAP_REQ_DELETE_30              0x6aUL
212 #define LDAP_REQ_ABANDON_30             0x70UL
213
214 /* 
215  * old broken stuff for backwards compatibility - forgot application tag
216  * and constructed/primitive bit
217  */
218 #define OLD_LDAP_REQ_BIND               0x00UL
219 #define OLD_LDAP_REQ_UNBIND             0x02UL
220 #define OLD_LDAP_REQ_SEARCH             0x03UL
221 #define OLD_LDAP_REQ_MODIFY             0x06UL
222 #define OLD_LDAP_REQ_ADD                0x08UL
223 #define OLD_LDAP_REQ_DELETE             0x0aUL
224 #define OLD_LDAP_REQ_MODRDN             0x0cUL
225 #define OLD_LDAP_REQ_COMPARE            0x0eUL
226 #define OLD_LDAP_REQ_ABANDON            0x10UL
227
228 /* possible result types a server can return */
229 #define LDAP_RES_BIND                   0x61UL  /* application + constructed */
230 #define LDAP_RES_SEARCH_ENTRY           0x64UL  /* application + constructed */
231 #define LDAP_RES_SEARCH_REFERENCE       0x73UL  /* V3: application + constructed */
232 #define LDAP_RES_SEARCH_RESULT          0x65UL  /* application + constructed */
233 #define LDAP_RES_MODIFY                 0x67UL  /* application + constructed */
234 #define LDAP_RES_ADD                    0x69UL  /* application + constructed */
235 #define LDAP_RES_DELETE                 0x6bUL  /* application + constructed */
236 #define LDAP_RES_MODRDN                 0x6dUL  /* application + constructed */
237 #define LDAP_RES_MODDN                  LDAP_RES_MODRDN /* application + constructed */
238 #define LDAP_RES_RENAME                 LDAP_RES_MODRDN /* application + constructed */
239 #define LDAP_RES_COMPARE                0x6fUL  /* application + constructed */
240 #define LDAP_RES_EXTENDED               0x78UL  /* V3: application + constructed */
241 #define LDAP_RES_ANY                    ((unsigned long)(-1))
242
243 /* old broken stuff for backwards compatibility */
244 #define OLD_LDAP_RES_BIND               0x01UL
245 #define OLD_LDAP_RES_SEARCH_ENTRY       0x04UL
246 #define OLD_LDAP_RES_SEARCH_RESULT      0x05UL
247 #define OLD_LDAP_RES_MODIFY             0x07UL
248 #define OLD_LDAP_RES_ADD                0x09UL
249 #define OLD_LDAP_RES_DELETE             0x0bUL
250 #define OLD_LDAP_RES_MODRDN             0x0dUL
251 #define OLD_LDAP_RES_MODDN              OLD_LDAP_RES_MODRDN
252 #define OLD_LDAP_RES_COMPARE            0x0fUL
253
254 /* sasl methods */
255 #define LDAP_SASL_SIMPLE                        NULL
256
257 /* authentication methods available */
258 #define LDAP_AUTH_NONE          0x00UL  /* no authentication              */
259 #define LDAP_AUTH_SIMPLE        0x80UL  /* context specific + primitive   */
260 #define LDAP_AUTH_SASL          0xa3UL  /* context specific + primitive   */
261 #define LDAP_AUTH_KRBV4         0xffUL  /* means do both of the following */
262 #define LDAP_AUTH_KRBV41        0x81UL  /* context specific + primitive   */
263 #define LDAP_AUTH_KRBV42        0x82UL  /* context specific + primitive   */
264
265 /* U-Mich version 3.0 compatibility auth methods */
266 #define LDAP_AUTH_SIMPLE_30     0xa0UL  /* context specific + constructed */
267 #define LDAP_AUTH_KRBV41_30     0xa1UL  /* context specific + constructed */
268 #define LDAP_AUTH_KRBV42_30     0xa2UL  /* context specific + constructed */
269
270 /* old broken stuff */
271 #define OLD_LDAP_AUTH_SIMPLE    0x00UL
272 #define OLD_LDAP_AUTH_KRBV4     0x01UL
273 #define OLD_LDAP_AUTH_KRBV42    0x02UL
274
275 /* filter types */
276 #define LDAP_FILTER_AND         0xa0UL  /* context specific + constructed */
277 #define LDAP_FILTER_OR          0xa1UL  /* context specific + constructed */
278 #define LDAP_FILTER_NOT         0xa2UL  /* context specific + constructed */
279 #define LDAP_FILTER_EQUALITY    0xa3UL  /* context specific + constructed */
280 #define LDAP_FILTER_SUBSTRINGS  0xa4UL  /* context specific + constructed */
281 #define LDAP_FILTER_GE          0xa5UL  /* context specific + constructed */
282 #define LDAP_FILTER_LE          0xa6UL  /* context specific + constructed */
283 #define LDAP_FILTER_PRESENT     0x87UL  /* context specific + primitive   */
284 #define LDAP_FILTER_APPROX      0xa8UL  /* context specific + constructed */
285 #define LDAP_FILTER_EXTENDED    0xa9UL  /* context specific + constructed */
286
287 /* U-Mich version 3.0 compatibility filter types */
288 #define LDAP_FILTER_PRESENT_30  0xa7UL  /* context specific + constructed */
289
290 /* old broken stuff */
291 #define OLD_LDAP_FILTER_AND             0x00UL
292 #define OLD_LDAP_FILTER_OR              0x01UL
293 #define OLD_LDAP_FILTER_NOT             0x02UL
294 #define OLD_LDAP_FILTER_EQUALITY        0x03UL
295 #define OLD_LDAP_FILTER_SUBSTRINGS      0x04UL
296 #define OLD_LDAP_FILTER_GE              0x05UL
297 #define OLD_LDAP_FILTER_LE              0x06UL
298 #define OLD_LDAP_FILTER_PRESENT         0x07UL
299 #define OLD_LDAP_FILTER_APPROX          0x08UL
300
301 /* extended filter component types */
302 #define LDAP_FILTER_EXTENDED_OID        0x81UL  /* context specific */
303 #define LDAP_FILTER_EXTENDED_TYPE       0x82UL  /* context specific */
304 #define LDAP_FILTER_EXTENDED_VALUE      0x83UL  /* context specific */
305 #define LDAP_FILTER_EXTENDED_DNATTRS    0x84UL  /* context specific */
306
307 /* substring filter component types */
308 #define LDAP_SUBSTRING_INITIAL  0x80UL  /* context specific */
309 #define LDAP_SUBSTRING_ANY      0x81UL  /* context specific */
310 #define LDAP_SUBSTRING_FINAL    0x82UL  /* context specific */
311
312 /* U-Mich version 3.0 compatibility substring filter component types */
313 #define LDAP_SUBSTRING_INITIAL_30       0xa0UL  /* context specific */
314 #define LDAP_SUBSTRING_ANY_30           0xa1UL  /* context specific */
315 #define LDAP_SUBSTRING_FINAL_30         0xa2UL  /* context specific */
316
317 /* old broken stuff */
318 #define OLD_LDAP_SUBSTRING_INITIAL      0x00UL
319 #define OLD_LDAP_SUBSTRING_ANY          0x01UL
320 #define OLD_LDAP_SUBSTRING_FINAL        0x02UL
321
322 /* search scopes */
323 #define LDAP_SCOPE_BASE         0x0000
324 #define LDAP_SCOPE_ONELEVEL     0x0001
325 #define LDAP_SCOPE_SUBTREE      0x0002
326
327 /* for modifications */
328 typedef struct ldapmod {
329         int             mod_op;
330 #define LDAP_MOD_ADD            0x0000
331 #define LDAP_MOD_DELETE         0x0001
332 #define LDAP_MOD_REPLACE        0x0002
333 #define LDAP_MOD_BVALUES        0x0080
334 /* IMPORTANT: do not use code 0x1000 (or above),
335  * it is used internally by the backends!
336  * (see ldap/servers/slapd/slap.h)
337  * JCG 05/1999 (gomez@engr.sgi.com)
338  */
339         char            *mod_type;
340         union mod_vals_u {
341                 char            **modv_strvals;
342                 struct berval   **modv_bvals;
343         } mod_vals;
344 #define mod_values      mod_vals.modv_strvals
345 #define mod_bvalues     mod_vals.modv_bvals
346 } LDAPMod;
347
348 /* 
349  * possible error codes we can return
350  */
351
352 #define LDAP_SUCCESS                    0x00
353 #define LDAP_OPERATIONS_ERROR           0x01
354 #define LDAP_PROTOCOL_ERROR             0x02
355 #define LDAP_TIMELIMIT_EXCEEDED         0x03
356 #define LDAP_SIZELIMIT_EXCEEDED         0x04
357 #define LDAP_COMPARE_FALSE              0x05
358 #define LDAP_COMPARE_TRUE               0x06
359 #define LDAP_STRONG_AUTH_NOT_SUPPORTED  0x07
360 #define LDAP_AUTH_METHOD_NOT_SUPPORTED LDAP_STRONG_AUTH_NOT_SUPPORTED
361 #define LDAP_STRONG_AUTH_REQUIRED       0x08
362 #define LDAP_PARTIAL_RESULTS            0x09    /* not listed in v3 */
363
364 #define LDAP_REFERRAL                           0x0a /* LDAPv3 */
365 #define LDAP_ADMINLIMIT_EXCEEDED        0x0b /* LDAPv3 */
366 #define LDAP_UNAVAILABLE_CRITICIAL_EXTENSION    0x0c /* LDAPv3 */
367 #define LDAP_CONFIDENTIALITY_REQUIRED   0x0d /* LDAPv3 */
368 #define LDAP_SASL_BIND_IN_PROGRESS      0x0e /* LDAPv3 */       
369
370 #define LDAP_NO_SUCH_ATTRIBUTE          0x10
371 #define LDAP_UNDEFINED_TYPE             0x11
372 #define LDAP_INAPPROPRIATE_MATCHING     0x12
373 #define LDAP_CONSTRAINT_VIOLATION       0x13
374 #define LDAP_TYPE_OR_VALUE_EXISTS       0x14
375 #define LDAP_INVALID_SYNTAX             0x15
376
377 #define LDAP_NO_SUCH_OBJECT             0x20
378 #define LDAP_ALIAS_PROBLEM              0x21
379 #define LDAP_INVALID_DN_SYNTAX          0x22
380 #define LDAP_IS_LEAF                    0x23 /* not LDAPv3 */
381 #define LDAP_ALIAS_DEREF_PROBLEM        0x24
382
383 #define LDAP_NAME_ERROR(n)      (((int)(n) & 0x00f0) == 0x0020)
384
385 #define LDAP_INAPPROPRIATE_AUTH         0x30
386 #define LDAP_INVALID_CREDENTIALS        0x31
387 #define LDAP_INSUFFICIENT_ACCESS        0x32
388 #define LDAP_BUSY                       0x33
389 #define LDAP_UNAVAILABLE                0x34
390 #define LDAP_UNWILLING_TO_PERFORM       0x35
391 #define LDAP_LOOP_DETECT                0x36
392
393 #define LDAP_NAMING_VIOLATION           0x40
394 #define LDAP_OBJECT_CLASS_VIOLATION     0x41
395 #define LDAP_NOT_ALLOWED_ON_NONLEAF     0x42
396 #define LDAP_NOT_ALLOWED_ON_RDN         0x43
397 #define LDAP_ALREADY_EXISTS             0x44
398 #define LDAP_NO_OBJECT_CLASS_MODS       0x45
399 #define LDAP_RESULTS_TOO_LARGE          0x46 /* CLDAP */
400 #define LDAP_AFFECTS_MULTIPLE_DSAS      0x47 /* LDAPv3 */
401
402 #define LDAP_OTHER                      0x50
403 #define LDAP_SERVER_DOWN                0x51
404 #define LDAP_LOCAL_ERROR                0x52
405 #define LDAP_ENCODING_ERROR             0x53
406 #define LDAP_DECODING_ERROR             0x54
407 #define LDAP_TIMEOUT                    0x55
408 #define LDAP_AUTH_UNKNOWN               0x56
409 #define LDAP_FILTER_ERROR               0x57
410 #define LDAP_USER_CANCELLED             0x58
411 #define LDAP_PARAM_ERROR                0x59
412 #define LDAP_NO_MEMORY                  0x5a
413
414 #define LDAP_CONNECT_ERROR                              0x5b    /* new */
415 #define LDAP_NOT_SUPPORTED                              0x5c    /* new */
416 #define LDAP_CONTROL_NOT_FOUND                  0x5d    /* new */
417 #define LDAP_NO_RESULTS_RETURNED                0x5e    /* new */
418 #define LDAP_MORE_RESULTS_TO_RETURN             0x5f    /* new */
419 #define LDAP_CLIENT_LOOP                                0x60    /* new */
420 #define LDAP_REFERRAL_LIMIT_EXCEEDED    0x61    /* new */
421
422 /*
423  * This structure represents both ldap messages and ldap responses.
424  * These are really the same, except in the case of search responses,
425  * where a response has multiple messages.
426  */
427
428 typedef struct ldapmsg LDAPMessage;
429
430 /*
431  * structures for ldap getfilter routines
432  */
433
434 typedef struct ldap_filt_info {
435         char                    *lfi_filter;
436         char                    *lfi_desc;
437         int                     lfi_scope;      /* LDAP_SCOPE_BASE, etc */
438         int                     lfi_isexact;    /* exact match filter? */
439         struct ldap_filt_info   *lfi_next;
440 } LDAPFiltInfo;
441
442 typedef struct ldap_filt_list {
443     char                        *lfl_tag;
444     char                        *lfl_pattern;
445     char                        *lfl_delims;
446     LDAPFiltInfo                *lfl_ilist;
447     struct ldap_filt_list       *lfl_next;
448 } LDAPFiltList;
449
450
451 #define LDAP_FILT_MAXSIZ        1024
452
453 typedef struct ldap_filt_desc {
454         LDAPFiltList            *lfd_filtlist;
455         LDAPFiltInfo            *lfd_curfip;
456         LDAPFiltInfo            lfd_retfi;
457         char                    lfd_filter[ LDAP_FILT_MAXSIZ ];
458         char                    *lfd_curval;
459         char                    *lfd_curvalcopy;
460         char                    **lfd_curvalwords;
461         char                    *lfd_filtprefix;
462         char                    *lfd_filtsuffix;
463 } LDAPFiltDesc;
464
465
466 /*
467  * structure representing an ldap connection
468  */
469
470 typedef struct ldap LDAP;
471
472 #define LDAP_DEREF_NEVER        0x00
473 #define LDAP_DEREF_SEARCHING    0x01
474 #define LDAP_DEREF_FINDING      0x02
475 #define LDAP_DEREF_ALWAYS       0x03
476
477 #define LDAP_NO_LIMIT           0
478
479 /* how many messages to retrieve results for */
480 #define LDAP_MSG_ONE            0x00
481 #define LDAP_MSG_ALL            0x01
482 #define LDAP_MSG_RECEIVED       0x02
483
484 /*
485  * structure for ldap friendly mapping routines
486  */
487
488 typedef struct ldap_friendly {
489         char    *lf_unfriendly;
490         char    *lf_friendly;
491 } LDAPFriendlyMap;
492
493 /*
494  * types for ldap URL handling
495  */
496 typedef struct ldap_url_desc {
497     char        *lud_host;
498     int         lud_port;
499     char        *lud_dn;
500     char        **lud_attrs;
501     int         lud_scope;
502     char        *lud_filter;
503     char        *lud_string;    /* for internal use only */
504 } LDAPURLDesc;
505
506 #define LDAP_URL_ERR_NOTLDAP    0x01    /* URL doesn't begin with "ldap://" */
507 #define LDAP_URL_ERR_NODN               0x02    /* URL has no DN (required) */
508 #define LDAP_URL_ERR_BADSCOPE   0x03    /* URL scope string is invalid */
509 #define LDAP_URL_ERR_MEM                0x04    /* can't allocate memory space */
510
511 /*
512  * The API draft spec says we should declare (or cause to be declared)
513  * 'struct timeval'.   We don't.  See LDAPext discussions.
514  */
515 struct timeval;
516
517 /*
518  * in options.c:
519  */
520 LDAP_F( int )
521 ldap_get_option LDAP_P((
522         LDAP_CONST LDAP *ld,
523         int option,
524         void *outvalue));
525
526 LDAP_F( int )
527 ldap_set_option LDAP_P((
528         LDAP *ld,
529         int option,
530         LDAP_CONST void *invalue));
531
532
533 /*
534  * in controls.c:
535  */
536 LDAP_F( void )
537 ldap_control_free LDAP_P((
538         LDAPControl *ctrl ));
539
540 LDAP_F( void )
541 ldap_controls_free LDAP_P((
542         LDAPControl **ctrls ));
543
544   
545 /*
546  * in extended.c:
547  */
548 LDAP_F( int )
549 ldap_extended_operation LDAP_P((
550         LDAP                    *ld,
551         LDAP_CONST char *exoid,
552         struct berval   *exdata,
553         LDAPControl             **serverctrls,
554         LDAPControl             **clientctrls,
555         int                             *msgidp ));
556
557 LDAP_F( int )
558 ldap_extended_operation_s LDAP_P((
559         LDAP                    *ld,
560         LDAP_CONST char *exoid,
561         struct berval   *exdata,
562         LDAPControl             **serverctrls,
563         LDAPControl             **clientctrls,
564         char                    **retoidp,
565         struct berval   **retdatap ));
566
567 LDAP_F( int )
568 ldap_parse_extended_result LDAP_P((
569         LDAP                    *ld,
570         LDAPMessage             *res,
571         char                    **retoidp,
572         struct berval   **retdatap,
573         int                             freeit ));
574
575 /*
576  * in abandon.c:
577  */
578 LDAP_F( int )
579 ldap_abandon LDAP_P((
580         LDAP *ld,
581         int msgid ));
582
583 LDAP_F( int )
584 ldap_abandon_ext LDAP_P((
585         LDAP                    *ld,
586         int                             msgid,
587         LDAPControl             **serverctrls,
588         LDAPControl             **clientctrls ));
589
590
591 /*
592  * in add.c:
593  */
594 LDAP_F( int )
595 ldap_add_ext LDAP_P((
596         LDAP                    *ld,
597         LDAP_CONST char *dn,
598         LDAPMod                 **attrs,
599         LDAPControl             **serverctrls,
600         LDAPControl             **clientctrls,
601         int                     *msgidp ));
602
603 LDAP_F( int )
604 ldap_add_ext_s LDAP_P((
605         LDAP                    *ld,
606         LDAP_CONST char *dn,
607         LDAPMod                 **attrs,
608         LDAPControl             **serverctrls,
609         LDAPControl             **clientctrls ));
610
611 LDAP_F( int )
612 ldap_add LDAP_P((
613         LDAP *ld,
614         LDAP_CONST char *dn,
615         LDAPMod **attrs ));
616
617 LDAP_F( int )
618 ldap_add_s LDAP_P((
619         LDAP *ld,
620         LDAP_CONST char *dn,
621         LDAPMod **attrs ));
622
623
624 /*
625  * in saslbind.c:
626  */
627 LDAP_F( int )
628 ldap_sasl_bind LDAP_P((
629         LDAP                    *ld,
630         LDAP_CONST char *dn,
631         LDAP_CONST char *mechanism,
632         struct berval   *cred,
633         LDAPControl             **serverctrls,
634         LDAPControl             **clientctrls,
635         int                             msgidp ));
636
637 LDAP_F( int )
638 ldap_sasl_bind_s LDAP_P((
639         LDAP                    *ld,
640         LDAP_CONST char *dn,
641         LDAP_CONST char *mechanism,
642         struct berval   *cred,
643         LDAPControl             **serverctrls,
644         LDAPControl             **clientctrls,
645         struct berval   **servercredp ));
646
647 LDAP_F( int )
648 ldap_parse_sasl_bind_result LDAP_P((
649         LDAP                    *ld,
650         LDAPMessage             *res,
651         struct berval   **servercredp,
652         int                             freeit ));
653
654 /*
655  * in bind.c:
656  *      (deprecated)
657  */
658 LDAP_F( int )
659 ldap_bind LDAP_P((
660         LDAP *ld,
661         LDAP_CONST char *who,
662         LDAP_CONST char *passwd,
663         int authmethod ));
664
665 LDAP_F( int )
666 ldap_bind_s LDAP_P((
667         LDAP *ld,
668         LDAP_CONST char *who,
669         LDAP_CONST char *cred,
670         int authmethod ));
671
672 LDAP_F( void )
673 ldap_set_rebind_proc LDAP_P((
674         LDAP *ld,
675         int (*rebindproc) LDAP_P((
676                 LDAP *ld,
677                 char **dnp,
678                 char **passwdp,
679                 int *authmethodp,
680                 int freeit ))));
681
682
683 /*
684  * in sbind.c:
685  */
686 LDAP_F( int )
687 ldap_simple_bind LDAP_P((
688         LDAP *ld,
689         LDAP_CONST char *who,
690         LDAP_CONST char *passwd ));
691
692 LDAP_F( int )
693 ldap_simple_bind_s LDAP_P((
694         LDAP *ld,
695         LDAP_CONST char *who,
696         LDAP_CONST char *passwd ));
697
698
699 /*
700  * in kbind.c:
701  *      (deprecated)
702  */
703 LDAP_F( int )
704 ldap_kerberos_bind_s LDAP_P((
705         LDAP *ld,
706         LDAP_CONST char *who ));
707
708 LDAP_F( int )
709 ldap_kerberos_bind1 LDAP_P((
710         LDAP *ld,
711         LDAP_CONST char *who ));
712
713 LDAP_F( int )
714 ldap_kerberos_bind1_s LDAP_P((
715         LDAP *ld,
716         LDAP_CONST char *who ));
717
718 LDAP_F( int )
719 ldap_kerberos_bind2 LDAP_P((
720         LDAP *ld,
721         LDAP_CONST char *who ));
722
723 LDAP_F( int )
724 ldap_kerberos_bind2_s LDAP_P((
725         LDAP *ld,
726         LDAP_CONST char *who ));
727
728 /*
729  * in cache.c
730  * (deprecated)
731  */
732 LDAP_F( int )
733 ldap_enable_cache LDAP_P(( LDAP *ld, long timeout, long maxmem ));
734
735 LDAP_F( void )
736 ldap_disable_cache LDAP_P(( LDAP *ld ));
737
738 LDAP_F( void )
739 ldap_set_cache_options LDAP_P(( LDAP *ld, unsigned long opts ));
740
741 LDAP_F( void )
742 ldap_destroy_cache LDAP_P(( LDAP *ld ));
743
744 LDAP_F( void )
745 ldap_flush_cache LDAP_P(( LDAP *ld ));
746
747 LDAP_F( void )
748 ldap_uncache_entry LDAP_P(( LDAP *ld, LDAP_CONST char *dn ));
749
750 LDAP_F( void )
751 ldap_uncache_request LDAP_P(( LDAP *ld, int msgid ));
752
753
754 /*
755  * in compare.c:
756  */
757 LDAP_F( int )
758 ldap_compare_ext LDAP_P((
759         LDAP                    *ld,
760         LDAP_CONST char *dn,
761         LDAP_CONST char *attr,
762         struct berval   *bvalue,
763         LDAPControl             **serverctrls,
764         LDAPControl             **clientctrls,
765         int                     *msgidp ));
766
767 LDAP_F( int )
768 ldap_compare_ext_s LDAP_P((
769         LDAP                    *ld,
770         LDAP_CONST char *dn,
771         LDAP_CONST char *attr,
772         struct berval   *bvalue,
773         LDAPControl             **serverctrls,
774         LDAPControl             **clientctrls ));
775
776 LDAP_F( int )
777 ldap_compare LDAP_P((
778         LDAP *ld,
779         LDAP_CONST char *dn,
780         LDAP_CONST char *attr,
781         LDAP_CONST char *value ));
782
783 LDAP_F( int )
784 ldap_compare_s LDAP_P((
785         LDAP *ld,
786         LDAP_CONST char *dn,
787         LDAP_CONST char *attr,
788         LDAP_CONST char *value ));
789
790
791 /*
792  * in delete.c:
793  */
794 LDAP_F( int )
795 ldap_delete_ext LDAP_P((
796         LDAP                    *ld,
797         LDAP_CONST char *dn,
798         LDAPControl             **serverctrls,
799         LDAPControl             **clientctrls,
800         int                     *msgidp ));
801
802 LDAP_F( int )
803 ldap_delete_ext_s LDAP_P((
804         LDAP                    *ld,
805         LDAP_CONST char *dn,
806         LDAPControl             **serverctrls,
807         LDAPControl             **clientctrls ));
808
809 LDAP_F( int )
810 ldap_delete LDAP_P((
811         LDAP *ld,
812         LDAP_CONST char *dn ));
813
814 LDAP_F( int )
815 ldap_delete_s LDAP_P((
816         LDAP *ld,
817         LDAP_CONST char *dn ));
818
819
820 /*
821  * in error.c:
822  */
823 LDAP_F( int )
824 ldap_result2error LDAP_P((      /* deprecated */
825         LDAP *ld,
826         LDAPMessage *r,
827         int freeit ));
828
829 LDAP_F( char *)
830 ldap_err2string LDAP_P((
831         int err ));
832
833 LDAP_F( void )
834 ldap_perror LDAP_P((    /* deprecated */
835         LDAP *ld,
836         LDAP_CONST char *s ));
837
838
839 /*
840  * in modify.c:
841  */
842 LDAP_F( int )
843 ldap_modify_ext LDAP_P((
844         LDAP                    *ld,
845         LDAP_CONST char *dn,
846         LDAPMod                 **mods,
847         LDAPControl             **serverctrls,
848         LDAPControl             **clientctrls,
849         int                     *msgidp ));
850
851 LDAP_F( int )
852 ldap_modify_ext_s LDAP_P((
853         LDAP                    *ld,
854         LDAP_CONST char *dn,
855         LDAPMod                 **mods,
856         LDAPControl             **serverctrls,
857         LDAPControl             **clientctrls ));
858
859 LDAP_F( int )
860 ldap_modify LDAP_P((
861         LDAP *ld,
862         LDAP_CONST char *dn,
863         LDAPMod **mods ));
864
865 LDAP_F( int )
866 ldap_modify_s LDAP_P((
867         LDAP *ld,
868         LDAP_CONST char *dn,
869         LDAPMod **mods ));
870
871
872 /*
873  * in modrdn.c:
874  */
875 LDAP_F( int )
876 ldap_rename_ext LDAP_P((
877         LDAP                    *ld,
878         LDAP_CONST char *dn,
879         LDAP_CONST char *newrdn,
880         LDAP_CONST char *newparent,
881         int                             deleteoldrdn,
882         LDAPControl             **serverctrls,
883         LDAPControl             **clientctrls,
884         int                     *msgidp ));
885
886 LDAP_F( int )
887 ldap_rename_ext_s LDAP_P((
888         LDAP                    *ld,
889         LDAP_CONST char *dn,
890         LDAP_CONST char *newrdn,
891         LDAP_CONST char *newparent,
892         int                             deleteoldrdn,
893         LDAPControl             **serverctrls,
894         LDAPControl             **clientctrls ));
895
896 LDAP_F( int )
897 ldap_rename2 LDAP_P((
898         LDAP *ld,
899         LDAP_CONST char *dn,
900         LDAP_CONST char *newrdn,
901         int deleteoldrdn,
902         LDAP_CONST char *newSuperior ));
903
904 LDAP_F( int )
905 ldap_rename2_s LDAP_P((
906         LDAP *ld,
907         LDAP_CONST char *dn,
908         LDAP_CONST char *newrdn,
909         int deleteoldrdn,
910         LDAP_CONST char *newSuperior));
911
912 LDAP_F( int )
913 ldap_modrdn LDAP_P((
914         LDAP *ld,
915         LDAP_CONST char *dn,
916         LDAP_CONST char *newrdn ));
917
918 LDAP_F( int )
919 ldap_modrdn_s LDAP_P((
920         LDAP *ld,
921         LDAP_CONST char *dn,
922         LDAP_CONST char *newrdn ));
923
924 LDAP_F( int )
925 ldap_modrdn2 LDAP_P((
926         LDAP *ld,
927         LDAP_CONST char *dn,
928         LDAP_CONST char *newrdn,
929         int deleteoldrdn ));
930
931 LDAP_F( int )
932 ldap_modrdn2_s LDAP_P((
933         LDAP *ld,
934         LDAP_CONST char *dn,
935         LDAP_CONST char *newrdn,
936         int deleteoldrdn));
937
938
939 /*
940  * in open.c:
941  */
942 LDAP_F( LDAP *)
943 ldap_open LDAP_P((
944         LDAP_CONST char *host,
945         int port ));
946
947 LDAP_F( LDAP *)
948 ldap_init LDAP_P((
949         LDAP_CONST char *host,
950         int port ));
951
952
953 /*
954  * in messages.c:
955  */
956 LDAP_F( LDAPMessage *)
957 ldap_first_message LDAP_P((
958         LDAP *ld,
959         LDAPMessage *chain ));
960
961 LDAP_F( LDAPMessage *)
962 ldap_next_message LDAP_P((
963         LDAP *ld,
964         LDAPMessage *msg ));
965
966 LDAP_F( int )
967 ldap_count_messages LDAP_P((
968         LDAP *ld,
969         LDAPMessage *chain ));
970
971
972 /*
973  * in references.c:
974  */
975 LDAP_F( LDAPMessage *)
976 ldap_first_reference LDAP_P((
977         LDAP *ld,
978         LDAPMessage *chain ));
979
980 LDAP_F( LDAPMessage *)
981 ldap_next_reference LDAP_P((
982         LDAP *ld,
983         LDAPMessage *ref ));
984
985 LDAP_F( int )
986 ldap_count_references LDAP_P((
987         LDAP *ld,
988         LDAPMessage *chain ));
989
990 LDAP_F( int )
991 ldap_parse_reference LDAP_P((
992         LDAP                    *ld,
993         LDAPMessage             *ref,
994         char                    ***referralsp,
995         LDAPControl             ***serverctrls,
996         int                             freeit));
997
998
999 /*
1000  * in getentry.c:
1001  */
1002 LDAP_F( LDAPMessage *)
1003 ldap_first_entry LDAP_P((
1004         LDAP *ld,
1005         LDAPMessage *chain ));
1006
1007 LDAP_F( LDAPMessage *)
1008 ldap_next_entry LDAP_P((
1009         LDAP *ld,
1010         LDAPMessage *entry ));
1011
1012 LDAP_F( int )
1013 ldap_count_entries LDAP_P((
1014         LDAP *ld,
1015         LDAPMessage *chain ));
1016
1017 LDAP_F( int )
1018 ldap_get_entry_controls LDAP_P((
1019         LDAP                    *ld,
1020         LDAPMessage             *entry,
1021         LDAPControl             ***serverctrls));
1022
1023
1024 /*
1025  * in addentry.c
1026  */
1027 LDAP_F( LDAPMessage *)
1028 ldap_delete_result_entry LDAP_P((
1029         LDAPMessage **list,
1030         LDAPMessage *e ));
1031
1032 LDAP_F( void )
1033 ldap_add_result_entry LDAP_P((
1034         LDAPMessage **list,
1035         LDAPMessage *e ));
1036
1037
1038 /*
1039  * in getdn.c
1040  */
1041 LDAP_F( char *)
1042 ldap_get_dn LDAP_P((
1043         LDAP *ld,
1044         LDAPMessage *entry ));
1045
1046 LDAP_F( char *)
1047 ldap_dn2ufn LDAP_P((
1048         LDAP_CONST char *dn ));
1049
1050 LDAP_F( char **)
1051 ldap_explode_dn LDAP_P((
1052         LDAP_CONST char *dn,
1053         int notypes ));
1054
1055 LDAP_F( char **)
1056 ldap_explode_rdn LDAP_P((
1057         LDAP_CONST char *rdn,
1058         int notypes ));
1059
1060 LDAP_F( char *)
1061 ldap_parent_dn LDAP_P(( /* new (from slapd) */
1062         LDAP_CONST char *dn ));
1063
1064 LDAP_F( char *)
1065 ldap_relative_dn LDAP_P((       /* new (from slapd) */
1066         LDAP_CONST char *dn ));
1067
1068 LDAP_F( char *)
1069 ldap_normalize_dn LDAP_P((      /* new (from slapd) */
1070         LDAP_CONST char *dn ));
1071
1072 LDAP_F( char **)
1073 ldap_explode_dns LDAP_P(( /* deprecated */
1074         LDAP_CONST char *dn ));
1075
1076 LDAP_F( int )
1077 ldap_is_dns_dn LDAP_P(( /* deprecated */
1078         LDAP_CONST char *dn ));
1079
1080
1081 /*
1082  * in getattr.c
1083  */
1084 LDAP_F( char *)
1085 ldap_first_attribute LDAP_P((                                                                    
1086         LDAP *ld,
1087         LDAPMessage *entry,
1088         BerElement **ber ));
1089
1090 LDAP_F( char *)
1091 ldap_next_attribute LDAP_P((
1092         LDAP *ld,
1093         LDAPMessage *entry,
1094         BerElement *ber ));
1095
1096
1097 /*
1098  * in getvalues.c
1099  */
1100 LDAP_F( char **)
1101 ldap_get_values LDAP_P((
1102         LDAP *ld,
1103         LDAPMessage *entry,
1104         LDAP_CONST char *target ));
1105
1106 LDAP_F( struct berval **)
1107 ldap_get_values_len LDAP_P((
1108         LDAP *ld,
1109         LDAPMessage *entry,
1110         LDAP_CONST char *target ));
1111
1112 LDAP_F( int )
1113 ldap_count_values LDAP_P((
1114         char **vals ));
1115
1116 LDAP_F( int )
1117 ldap_count_values_len LDAP_P((
1118         struct berval **vals ));
1119
1120 LDAP_F( void )
1121 ldap_value_free LDAP_P((
1122         char **vals ));
1123
1124 LDAP_F( void )
1125 ldap_value_free_len LDAP_P((
1126         struct berval **vals ));
1127
1128 /*
1129  * in result.c:
1130  */
1131 LDAP_F( int )
1132 ldap_result LDAP_P((
1133         LDAP *ld,
1134         int msgid,
1135         int all,
1136         struct timeval *timeout,
1137         LDAPMessage **result ));
1138
1139 LDAP_F( int )
1140 ldap_parse_result LDAP_P((
1141         LDAP                    *ld,
1142         LDAPMessage             *res,
1143         int                             *errcodep,
1144         char                    **matcheddnp,
1145         char                    **errmsgp,
1146         char                    ***referralsp,
1147         LDAPControl             ***serverctrls,
1148         int                             freeit ));
1149
1150 LDAP_F( int )
1151 ldap_msgtype LDAP_P((
1152         LDAPMessage *lm ));
1153
1154 LDAP_F( int )
1155 ldap_msgid   LDAP_P((
1156         LDAPMessage *lm ));
1157
1158 LDAP_F( int )
1159 ldap_msgfree LDAP_P((
1160         LDAPMessage *lm ));
1161
1162 LDAP_F( int )
1163 ldap_msgdelete LDAP_P((
1164         LDAP *ld,
1165         int msgid ));
1166
1167
1168 /*
1169  * in search.c:
1170  */
1171 LDAP_F( int )
1172 ldap_search_ext LDAP_P((
1173         LDAP                    *ld,
1174         LDAP_CONST char *base,
1175         int                             scope,
1176         LDAP_CONST char *filter,
1177         char                    **attrs,
1178         int                             attrsonly,
1179         LDAPControl             **serverctrls,
1180         LDAPControl             **clientctrls,
1181         struct timeval  *timeout,
1182         int                             sizelimit,
1183         int                             *msgidp ));
1184
1185 LDAP_F( int )
1186 ldap_search_ext_s LDAP_P((
1187         LDAP                    *ld,
1188         LDAP_CONST char *base,
1189         int                             scope,
1190         LDAP_CONST char *filter,
1191         char                    **attrs,
1192         int                             attrsonly,
1193         LDAPControl             **serverctrls,
1194         LDAPControl             **clientctrls,
1195         struct timeval  *timeout,
1196         int                             sizelimit,
1197         LDAPMessage             **res ));
1198
1199 LDAP_F( int )
1200 ldap_search LDAP_P((
1201         LDAP *ld,
1202         LDAP_CONST char *base,
1203         int scope,
1204         LDAP_CONST char *filter,
1205         char **attrs,
1206         int attrsonly ));
1207
1208 LDAP_F( int )
1209 ldap_search_s LDAP_P((
1210         LDAP *ld,
1211         LDAP_CONST char *base,
1212         int scope,
1213         LDAP_CONST char *filter,
1214         char **attrs,
1215         int attrsonly,
1216         LDAPMessage **res ));
1217
1218 LDAP_F( int )
1219 ldap_search_st LDAP_P((                                                  
1220         LDAP *ld,
1221         LDAP_CONST char *base,
1222         int scope,
1223         LDAP_CONST char *filter,
1224     char **attrs,
1225         int attrsonly,
1226         struct timeval *timeout,
1227         LDAPMessage **res ));
1228
1229
1230 /*
1231  * in ufn.c
1232  */
1233 LDAP_F( int )
1234 ldap_ufn_search_c LDAP_P((
1235         LDAP *ld,
1236         LDAP_CONST char *ufn,
1237         char **attrs,
1238         int attrsonly,
1239         LDAPMessage **res,
1240         int (*cancelproc)( void *cl ),
1241         void *cancelparm ));
1242
1243 LDAP_F( int )
1244 ldap_ufn_search_ct LDAP_P((
1245         LDAP *ld,
1246         LDAP_CONST char *ufn,
1247         char **attrs,
1248         int attrsonly,
1249         LDAPMessage **res,
1250         int (*cancelproc)( void *cl ),
1251         void *cancelparm,
1252         char *tag1,
1253         char *tag2,
1254         char *tag3 ));
1255
1256 LDAP_F( int )
1257 ldap_ufn_search_s LDAP_P((
1258         LDAP *ld,
1259         LDAP_CONST char *ufn,
1260         char **attrs,
1261         int attrsonly,
1262         LDAPMessage **res ));
1263
1264 LDAP_F( LDAPFiltDesc *)
1265 ldap_ufn_setfilter LDAP_P((
1266         LDAP *ld,
1267         LDAP_CONST char *fname ));
1268
1269 LDAP_F( void )
1270 ldap_ufn_setprefix LDAP_P((
1271         LDAP *ld,
1272         LDAP_CONST char *prefix ));
1273
1274 LDAP_F( int )
1275 ldap_ufn_timeout LDAP_P((
1276         void *tvparam ));
1277
1278
1279 /*
1280  * in unbind.c
1281  */
1282 LDAP_F( int )
1283 ldap_unbind LDAP_P((
1284         LDAP *ld ));
1285
1286 LDAP_F( int )
1287 ldap_unbind_s LDAP_P((
1288         LDAP *ld ));
1289
1290 LDAP_F( int )
1291 ldap_unbind_ext LDAP_P((
1292         LDAP                    *ld,
1293         LDAPControl             **serverctrls,
1294         LDAPControl             **clientctrls));
1295
1296 LDAP_F( int )
1297 ldap_unbind_ext_s LDAP_P((
1298         LDAP                    *ld,
1299         LDAPControl             **serverctrls,
1300         LDAPControl             **clientctrls));
1301
1302 /*
1303  * in getfilter.c
1304  */
1305 LDAP_F( LDAPFiltDesc *)
1306 ldap_init_getfilter LDAP_P((
1307         LDAP_CONST char *fname ));
1308
1309 LDAP_F( LDAPFiltDesc *)
1310 ldap_init_getfilter_buf LDAP_P((
1311         /* LDAP_CONST */ char *buf,
1312         long buflen ));
1313
1314 LDAP_F( LDAPFiltInfo *)
1315 ldap_getfirstfilter LDAP_P((
1316         LDAPFiltDesc *lfdp,
1317         /* LDAP_CONST */ char *tagpat,
1318         /* LDAP_CONST */ char *value ));
1319
1320 LDAP_F( LDAPFiltInfo *)
1321 ldap_getnextfilter LDAP_P((
1322         LDAPFiltDesc *lfdp ));
1323
1324 LDAP_F( void )
1325 ldap_setfilteraffixes LDAP_P((
1326         LDAPFiltDesc *lfdp,
1327         LDAP_CONST char *prefix,
1328         LDAP_CONST char *suffix ));
1329
1330 LDAP_F( void )
1331 ldap_build_filter LDAP_P((
1332         char *buf,
1333         unsigned long buflen,
1334         LDAP_CONST char *pattern,
1335         LDAP_CONST char *prefix,
1336         LDAP_CONST char *suffix,
1337         LDAP_CONST char *attr,
1338         LDAP_CONST char *value,
1339         char **valwords ));
1340
1341
1342 /*
1343  * in free.c
1344  */
1345
1346 LDAP_F( void * )
1347 ldap_memalloc LDAP_P((
1348         size_t s ));
1349
1350 LDAP_F( void * )
1351 ldap_memrealloc LDAP_P((
1352         void* p,
1353         size_t s ));
1354
1355 LDAP_F( void * )
1356 ldap_memcalloc LDAP_P((
1357         size_t n,
1358         size_t s ));
1359
1360 LDAP_F( void )
1361 ldap_memfree LDAP_P((
1362         void* p ));
1363
1364 LDAP_F( void )
1365 ldap_memvfree LDAP_P((
1366         void** v ));
1367
1368 LDAP_F( char * )
1369 ldap_strdup LDAP_P((
1370         LDAP_CONST char * ));
1371
1372 LDAP_F( void )
1373 ldap_getfilter_free LDAP_P((
1374         LDAPFiltDesc *lfdp ));
1375
1376 LDAP_F( void )
1377 ldap_mods_free LDAP_P((
1378         LDAPMod **mods,
1379         int freemods ));
1380
1381
1382 /*
1383  * in friendly.c
1384  */
1385 LDAP_F( char * )
1386 ldap_friendly_name LDAP_P((
1387         LDAP_CONST char *filename,
1388         /* LDAP_CONST */ char *uname,
1389         LDAPFriendlyMap **map ));
1390
1391 LDAP_F( void )
1392 ldap_free_friendlymap LDAP_P((
1393         LDAPFriendlyMap **map ));
1394
1395
1396 /*
1397  * in cldap.c
1398  */
1399 LDAP_F( LDAP * )
1400 cldap_open LDAP_P((
1401         LDAP_CONST char *host,
1402         int port ));
1403
1404 LDAP_F( void )
1405 cldap_close LDAP_P((
1406         LDAP *ld ));
1407
1408 LDAP_F( int )
1409 cldap_search_s LDAP_P(( LDAP *ld,
1410         LDAP_CONST char *base,
1411         int scope,
1412         LDAP_CONST char *filter,
1413         char **attrs,
1414         int attrsonly,
1415         LDAPMessage **res,
1416         char *logdn ));
1417
1418 LDAP_F( void )
1419 cldap_setretryinfo LDAP_P((
1420         LDAP *ld,
1421         int tries,
1422         int timeout ));
1423
1424
1425 /*
1426  * in sort.c
1427  */
1428 LDAP_F( int )
1429 ldap_sort_entries LDAP_P(( LDAP *ld,
1430         LDAPMessage **chain,
1431         LDAP_CONST char *attr,
1432         int (*cmp) (LDAP_CONST char *, LDAP_CONST char *) ));
1433
1434 LDAP_F( int )
1435 ldap_sort_values LDAP_P((
1436         LDAP *ld,
1437         char **vals,
1438         int (*cmp) (LDAP_CONST void *, LDAP_CONST void *) ));
1439
1440 LDAP_F( int )
1441 ldap_sort_strcasecmp LDAP_P((
1442         LDAP_CONST void *a,
1443         LDAP_CONST void *b ));
1444
1445
1446 /*
1447  * in url.c
1448  *
1449  * need _ext varients
1450  */
1451 LDAP_F( int )
1452 ldap_is_ldap_url LDAP_P((
1453         LDAP_CONST char *url ));
1454
1455 LDAP_F( int )
1456 ldap_url_parse LDAP_P((
1457         LDAP_CONST char *url,
1458         LDAPURLDesc **ludpp ));
1459
1460 LDAP_F( void )
1461 ldap_free_urldesc LDAP_P((
1462         LDAPURLDesc *ludp ));
1463
1464 LDAP_F( int )
1465 ldap_url_search LDAP_P((
1466         LDAP *ld,
1467         LDAP_CONST char *url,
1468         int attrsonly ));
1469
1470 LDAP_F( int )
1471 ldap_url_search_s LDAP_P((
1472         LDAP *ld,
1473         LDAP_CONST char *url,
1474         int attrsonly,
1475         LDAPMessage **res ));
1476
1477 LDAP_F( int )
1478 ldap_url_search_st LDAP_P((
1479         LDAP *ld,
1480         LDAP_CONST char *url,
1481         int attrsonly,
1482         struct timeval *timeout,
1483         LDAPMessage **res ));
1484
1485
1486 /*
1487  * in charset.c
1488  *      DEPRECATED
1489  */
1490 LDAP_F( void )
1491 ldap_set_string_translators LDAP_P((
1492         LDAP *ld,
1493         BERTranslateProc encode_proc,
1494         BERTranslateProc decode_proc ));
1495
1496 LDAP_F( int )
1497 ldap_translate_from_t61 LDAP_P((
1498         LDAP *ld,
1499         char **bufp,
1500         unsigned long *lenp,
1501         int free_input ));
1502
1503 LDAP_F( int )
1504 ldap_translate_to_t61 LDAP_P((
1505         LDAP *ld,
1506         char **bufp,
1507         unsigned long *lenp, int free_input ));
1508
1509 LDAP_F( void )
1510 ldap_enable_translation LDAP_P((
1511         LDAP *ld,
1512         LDAPMessage *entry,
1513         int enable ));
1514
1515 LDAP_F( int )
1516 ldap_t61_to_8859 LDAP_P((
1517         char **bufp,
1518         unsigned long *buflenp,
1519         int free_input ));
1520
1521 LDAP_F( int )
1522 ldap_8859_to_t61 LDAP_P((
1523         char **bufp,
1524         unsigned long *buflenp,
1525         int free_input ));
1526
1527 LDAP_END_DECL
1528
1529 #endif /* _LDAP_H */