]> git.sur5r.net Git - openldap/blob - include/ldap.h
e2d8d4fca048dfedc9bfd85e3f1bd61833d1cc71
[openldap] / include / ldap.h
1 /*
2  * Copyright (c) 1990 Regents of the University of Michigan.
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms are permitted
6  * provided that this notice is preserved and that due credit is given
7  * to the University of Michigan at Ann Arbor. The name of the University
8  * may not be used to endorse or promote products derived from this
9  * software without specific prior written permission. This software
10  * is provided ``as is'' without express or implied warranty.
11  */
12
13 #ifndef _LDAP_H
14 #define _LDAP_H
15
16 #include <ldap_cdefs.h>
17
18 LDAP_BEGIN_DECL
19
20 #define LDAP_PORT       389
21 #define LDAP_VERSION1   1
22 #define LDAP_VERSION2   2
23 #define LDAP_VERSION3   3
24 #define LDAP_VERSION            LDAP_VERSION2
25 #define LDAP_VERSION_MAX        LDAP_VERSION2
26
27 /*
28  * We'll use 2000+draft revision for our API version number
29  * As such, the number will be above the old RFC but below 
30  * whatever number does finally get assigned
31  */
32 #define LDAP_API_VERSION        2001
33 #define LDAP_VENDOR                     "OpenLDAP"
34 /* We'll eventually release as 200 */
35 #define LDAP_VENDOR_VERSION     190
36
37 #define LDAP_COMPAT20
38 #define LDAP_COMPAT30
39 #if defined(LDAP_COMPAT20) || defined(LDAP_COMPAT30)
40 #define LDAP_COMPAT
41 #endif
42
43 #define LDAP_OPT_API_INFO                       0x0000
44 #define LDAP_OPT_DESC                           0x0001
45 #define LDAP_OPT_DEREF                          0x0002
46 #define LDAP_OPT_SIZELIMIT                      0x0003
47 #define LDAP_OPT_TIMELIMIT                      0x0004
48 #define LDAP_OPT_REFERRALS                      0x0008
49 #define LDAP_OPT_RESTART                        0x0009
50 #define LDAP_OPT_PROTOCOL_VERSION       0x0011
51 #define LDAP_OPT_SERVER_CONTROLS        0x0012
52 #define LDAP_OPT_CLIENT_CONTROLS        0x0013
53 #define LDAP_OPT_HOST_NAME                      0x0030
54 #define LDAP_OPT_ERROR_NUMBER           0x0031
55 #define LDAP_OPT_ERROR_STRING           0x0032
56
57 /* for LDAPv2 compatibility */
58 #define LDAP_OPT_DNS                            0x0101  /* use DN & DNS */
59
60 /* on/off values */
61 #define LDAP_OPT_ON             ((void *) 1)
62 #define LDAP_OPT_OFF    ((void *) 0)
63
64 #define LDAP_OPT_SUCCESS        0
65 #define LDAP_OPT_ERROR          (-1)
66
67 extern int ldap_debug;
68
69 typedef struct ldapapiinfo {
70         int             ldapai_info_version;            /* version of LDAPAPIInfo (1) */
71         int             ldapai_api_version;                     /* revision of API supported */
72         int             ldapai_protocol_version;        /* highest LDAP version supported */
73         char    **ldapai_extensions;            /* names of API extensions */
74         char    *ldapai_vendor_name;            /* name of supplier */
75         int             ldapai_vendor_version;          /* supplier-specific version times 100 */
76 } LDAPAPIInfo;
77
78 typedef struct ldapcontrol {
79         char                    *ldctl_oid;
80         struct berval   ldctl_value;
81         char                    ldctl_iscritical;
82 } LDAPControl, *PLDAPControl;
83
84 #define LDAP_MAX_ATTR_LEN       100
85
86 /* 
87  * specific LDAP instantiations of BER types we know about
88  */
89
90 /* general stuff */
91 #define LDAP_TAG_MESSAGE        0x30L   /* tag is 16 + constructed bit */
92 #define OLD_LDAP_TAG_MESSAGE    0x10L   /* forgot the constructed bit  */
93 #define LDAP_TAG_MSGID          0x02L
94
95 /* possible operations a client can invoke */
96 #define LDAP_REQ_BIND                   0x60L   /* application + constructed */
97 #define LDAP_REQ_UNBIND                 0x42L   /* application + primitive   */
98 #define LDAP_REQ_SEARCH                 0x63L   /* application + constructed */
99 #define LDAP_REQ_MODIFY                 0x66L   /* application + constructed */
100 #define LDAP_REQ_ADD                    0x68L   /* application + constructed */
101 #define LDAP_REQ_DELETE                 0x4aL   /* application + primitive   */
102 #define LDAP_REQ_MODRDN                 0x6cL   /* application + constructed */
103 #define LDAP_REQ_COMPARE                0x6eL   /* application + constructed */
104 #define LDAP_REQ_ABANDON                0x50L   /* application + primitive   */
105
106 /* version 3.0 compatibility stuff */
107 #define LDAP_REQ_UNBIND_30              0x62L
108 #define LDAP_REQ_DELETE_30              0x6aL
109 #define LDAP_REQ_ABANDON_30             0x70L
110
111 /* 
112  * old broken stuff for backwards compatibility - forgot application tag
113  * and constructed/primitive bit
114  */
115 #define OLD_LDAP_REQ_BIND               0x00L
116 #define OLD_LDAP_REQ_UNBIND             0x02L
117 #define OLD_LDAP_REQ_SEARCH             0x03L
118 #define OLD_LDAP_REQ_MODIFY             0x06L
119 #define OLD_LDAP_REQ_ADD                0x08L
120 #define OLD_LDAP_REQ_DELETE             0x0aL
121 #define OLD_LDAP_REQ_MODRDN             0x0cL
122 #define OLD_LDAP_REQ_COMPARE            0x0eL
123 #define OLD_LDAP_REQ_ABANDON            0x10L
124
125 /* possible result types a server can return */
126 #define LDAP_RES_BIND                   0x61L   /* application + constructed */
127 #define LDAP_RES_SEARCH_ENTRY           0x64L   /* application + constructed */
128 #define LDAP_RES_SEARCH_RESULT          0x65L   /* application + constructed */
129 #define LDAP_RES_MODIFY                 0x67L   /* application + constructed */
130 #define LDAP_RES_ADD                    0x69L   /* application + constructed */
131 #define LDAP_RES_DELETE                 0x6bL   /* application + constructed */
132 #define LDAP_RES_MODRDN                 0x6dL   /* application + constructed */
133 #define LDAP_RES_COMPARE                0x6fL   /* application + constructed */
134 #define LDAP_RES_ANY                    (-1L)
135
136 /* old broken stuff for backwards compatibility */
137 #define OLD_LDAP_RES_BIND               0x01L
138 #define OLD_LDAP_RES_SEARCH_ENTRY       0x04L
139 #define OLD_LDAP_RES_SEARCH_RESULT      0x05L
140 #define OLD_LDAP_RES_MODIFY             0x07L
141 #define OLD_LDAP_RES_ADD                0x09L
142 #define OLD_LDAP_RES_DELETE             0x0bL
143 #define OLD_LDAP_RES_MODRDN             0x0dL
144 #define OLD_LDAP_RES_COMPARE            0x0fL
145
146 /* authentication methods available */
147 #define LDAP_AUTH_NONE          0x00L   /* no authentication              */
148 #define LDAP_AUTH_SIMPLE        0x80L   /* context specific + primitive   */
149 #define LDAP_AUTH_KRBV4         0xffL   /* means do both of the following */
150 #define LDAP_AUTH_KRBV41        0x81L   /* context specific + primitive   */
151 #define LDAP_AUTH_KRBV42        0x82L   /* context specific + primitive   */
152
153 /* 3.0 compatibility auth methods */
154 #define LDAP_AUTH_SIMPLE_30     0xa0L   /* context specific + constructed */
155 #define LDAP_AUTH_KRBV41_30     0xa1L   /* context specific + constructed */
156 #define LDAP_AUTH_KRBV42_30     0xa2L   /* context specific + constructed */
157
158 /* old broken stuff */
159 #define OLD_LDAP_AUTH_SIMPLE    0x00L
160 #define OLD_LDAP_AUTH_KRBV4     0x01L
161 #define OLD_LDAP_AUTH_KRBV42    0x02L
162
163 /* filter types */
164 #define LDAP_FILTER_AND         0xa0L   /* context specific + constructed */
165 #define LDAP_FILTER_OR          0xa1L   /* context specific + constructed */
166 #define LDAP_FILTER_NOT         0xa2L   /* context specific + constructed */
167 #define LDAP_FILTER_EQUALITY    0xa3L   /* context specific + constructed */
168 #define LDAP_FILTER_SUBSTRINGS  0xa4L   /* context specific + constructed */
169 #define LDAP_FILTER_GE          0xa5L   /* context specific + constructed */
170 #define LDAP_FILTER_LE          0xa6L   /* context specific + constructed */
171 #define LDAP_FILTER_PRESENT     0x87L   /* context specific + primitive   */
172 #define LDAP_FILTER_APPROX      0xa8L   /* context specific + constructed */
173
174 /* 3.0 compatibility filter types */
175 #define LDAP_FILTER_PRESENT_30  0xa7L   /* context specific + constructed */
176
177 /* old broken stuff */
178 #define OLD_LDAP_FILTER_AND             0x00L
179 #define OLD_LDAP_FILTER_OR              0x01L
180 #define OLD_LDAP_FILTER_NOT             0x02L
181 #define OLD_LDAP_FILTER_EQUALITY        0x03L
182 #define OLD_LDAP_FILTER_SUBSTRINGS      0x04L
183 #define OLD_LDAP_FILTER_GE              0x05L
184 #define OLD_LDAP_FILTER_LE              0x06L
185 #define OLD_LDAP_FILTER_PRESENT         0x07L
186 #define OLD_LDAP_FILTER_APPROX          0x08L
187
188 /* substring filter component types */
189 #define LDAP_SUBSTRING_INITIAL  0x80L   /* context specific */
190 #define LDAP_SUBSTRING_ANY      0x81L   /* context specific */
191 #define LDAP_SUBSTRING_FINAL    0x82L   /* context specific */
192
193 /* 3.0 compatibility substring filter component types */
194 #define LDAP_SUBSTRING_INITIAL_30       0xa0L   /* context specific */
195 #define LDAP_SUBSTRING_ANY_30           0xa1L   /* context specific */
196 #define LDAP_SUBSTRING_FINAL_30         0xa2L   /* context specific */
197
198 /* old broken stuff */
199 #define OLD_LDAP_SUBSTRING_INITIAL      0x00L
200 #define OLD_LDAP_SUBSTRING_ANY          0x01L
201 #define OLD_LDAP_SUBSTRING_FINAL        0x02L
202
203 /* search scopes */
204 #define LDAP_SCOPE_BASE         0x00
205 #define LDAP_SCOPE_ONELEVEL     0x01
206 #define LDAP_SCOPE_SUBTREE      0x02
207
208 /* for modifications */
209 typedef struct ldapmod {
210         int             mod_op;
211 #define LDAP_MOD_ADD            0x00
212 #define LDAP_MOD_DELETE         0x01
213 #define LDAP_MOD_REPLACE        0x02
214 #define LDAP_MOD_BVALUES        0x80
215         char            *mod_type;
216         union {
217                 char            **modv_strvals;
218                 struct berval   **modv_bvals;
219         } mod_vals;
220 #define mod_values      mod_vals.modv_strvals
221 #define mod_bvalues     mod_vals.modv_bvals
222         struct ldapmod  *mod_next;
223 } LDAPMod;
224
225 /* 
226  * possible error codes we can return
227  */
228
229 #define LDAP_SUCCESS                    0x00
230 #define LDAP_OPERATIONS_ERROR           0x01
231 #define LDAP_PROTOCOL_ERROR             0x02
232 #define LDAP_TIMELIMIT_EXCEEDED         0x03
233 #define LDAP_SIZELIMIT_EXCEEDED         0x04
234 #define LDAP_COMPARE_FALSE              0x05
235 #define LDAP_COMPARE_TRUE               0x06
236 #define LDAP_STRONG_AUTH_NOT_SUPPORTED  0x07
237 #define LDAP_STRONG_AUTH_REQUIRED       0x08
238 #define LDAP_PARTIAL_RESULTS            0x09
239 #define LDAP_REFERRAL           0x0a /* LDAPv3 */
240 #define LDAP_ADMINLIMIT_EXCEEDED        0x0b /* LDAPv3 */
241 #define LDAP_UNAVAILABLE_CRITICIAL_EXTENSION    0x0c /* LDAPv3 */
242 #define LDAP_CONFIDENTIALITY_REQUIRED   0x0d /* LDAPv3 */
243 #define LDAP_SASL_BIND_IN_PROGRESS      0x0e /* LDAPv3 */       
244
245 #define LDAP_NO_SUCH_ATTRIBUTE          0x10
246 #define LDAP_UNDEFINED_TYPE             0x11
247 #define LDAP_INAPPROPRIATE_MATCHING     0x12
248 #define LDAP_CONSTRAINT_VIOLATION       0x13
249 #define LDAP_TYPE_OR_VALUE_EXISTS       0x14
250 #define LDAP_INVALID_SYNTAX             0x15
251
252 #define LDAP_NO_SUCH_OBJECT             0x20
253 #define LDAP_ALIAS_PROBLEM              0x21
254 #define LDAP_INVALID_DN_SYNTAX          0x22
255 #define LDAP_IS_LEAF                    0x23 /* not LDAPv3 */
256 #define LDAP_ALIAS_DEREF_PROBLEM        0x24
257
258 #define NAME_ERROR(n)   ((n & 0xf0) == 0x20)
259
260 #define LDAP_INAPPROPRIATE_AUTH         0x30
261 #define LDAP_INVALID_CREDENTIALS        0x31
262 #define LDAP_INSUFFICIENT_ACCESS        0x32
263 #define LDAP_BUSY                       0x33
264 #define LDAP_UNAVAILABLE                0x34
265 #define LDAP_UNWILLING_TO_PERFORM       0x35
266 #define LDAP_LOOP_DETECT                0x36
267
268 #define LDAP_NAMING_VIOLATION           0x40
269 #define LDAP_OBJECT_CLASS_VIOLATION     0x41
270 #define LDAP_NOT_ALLOWED_ON_NONLEAF     0x42
271 #define LDAP_NOT_ALLOWED_ON_RDN         0x43
272 #define LDAP_ALREADY_EXISTS             0x44
273 #define LDAP_NO_OBJECT_CLASS_MODS       0x45
274 #define LDAP_RESULTS_TOO_LARGE          0x46 /* CLDAP */
275 #define LDAP_AFFECTS_MULTIPLE_DSAS      0x47 /* LDAPv3 */
276
277 #define LDAP_OTHER                      0x50
278 #define LDAP_SERVER_DOWN                0x51
279 #define LDAP_LOCAL_ERROR                0x52
280 #define LDAP_ENCODING_ERROR             0x53
281 #define LDAP_DECODING_ERROR             0x54
282 #define LDAP_TIMEOUT                    0x55
283 #define LDAP_AUTH_UNKNOWN               0x56
284 #define LDAP_FILTER_ERROR               0x57
285 #define LDAP_USER_CANCELLED             0x58
286 #define LDAP_PARAM_ERROR                0x59
287 #define LDAP_NO_MEMORY                  0x5a
288
289
290 /* default limit on nesting of referrals */
291 #define LDAP_DEFAULT_REFHOPLIMIT        5
292
293 /*
294  * This structure represents both ldap messages and ldap responses.
295  * These are really the same, except in the case of search responses,
296  * where a response has multiple messages.
297  */
298
299 typedef struct ldapmsg LDAPMessage;
300 #define NULLMSG ((LDAPMessage *) NULL)
301
302
303 #ifdef LDAP_REFERRALS
304 /*
305  * structure for tracking LDAP server host, ports, DNs, etc.
306  */
307 typedef struct ldap_server {
308         char                    *lsrv_host;
309         char                    *lsrv_dn;       /* if NULL, use default */
310         int                     lsrv_port;
311         struct ldap_server      *lsrv_next;
312 } LDAPServer;
313
314
315 /*
316  * structure for representing an LDAP server connection
317  */
318 typedef struct ldap_conn {
319         Sockbuf                 *lconn_sb;
320         int                     lconn_refcnt;
321         time_t          lconn_lastused; /* time */
322         int                     lconn_status;
323 #define LDAP_CONNST_NEEDSOCKET          1
324 #define LDAP_CONNST_CONNECTING          2
325 #define LDAP_CONNST_CONNECTED           3
326         LDAPServer              *lconn_server;
327         char                    *lconn_krbinstance;
328         struct ldap_conn        *lconn_next;
329 } LDAPConn;
330
331
332 /*
333  * structure used to track outstanding requests
334  */
335 typedef struct ldapreq {
336         int             lr_msgid;       /* the message id */
337         int             lr_status;      /* status of request */
338 #define LDAP_REQST_INPROGRESS   1
339 #define LDAP_REQST_CHASINGREFS  2
340 #define LDAP_REQST_NOTCONNECTED 3
341 #define LDAP_REQST_WRITING      4
342         int             lr_outrefcnt;   /* count of outstanding referrals */
343         int             lr_origid;      /* original request's message id */
344         int             lr_parentcnt;   /* count of parent requests */
345         int             lr_res_msgtype; /* result message type */
346         int             lr_res_errno;   /* result LDAP errno */
347         char            *lr_res_error;  /* result error string */
348         char            *lr_res_matched;/* result matched DN string */
349         BerElement      *lr_ber;        /* ber encoded request contents */
350         LDAPConn        *lr_conn;       /* connection used to send request */
351         struct ldapreq  *lr_parent;     /* request that spawned this referral */
352         struct ldapreq  *lr_refnext;    /* next referral spawned */
353         struct ldapreq  *lr_prev;       /* previous request */
354         struct ldapreq  *lr_next;       /* next request */
355 } LDAPRequest;
356 #endif /* LDAP_REFERRALS */
357
358
359 /*
360  * structure for client cache
361  */
362 #define LDAP_CACHE_BUCKETS      31      /* cache hash table size */
363 typedef struct ldapcache {
364         LDAPMessage     *lc_buckets[LDAP_CACHE_BUCKETS];/* hash table */
365         LDAPMessage     *lc_requests;                   /* unfulfilled reqs */
366         long            lc_timeout;                     /* request timeout */
367         long            lc_maxmem;                      /* memory to use */
368         long            lc_memused;                     /* memory in use */
369         int             lc_enabled;                     /* enabled? */
370         unsigned long   lc_options;                     /* options */
371 #define LDAP_CACHE_OPT_CACHENOERRS      0x00000001
372 #define LDAP_CACHE_OPT_CACHEALLERRS     0x00000002
373 }  LDAPCache;
374 #define NULLLDCACHE ((LDAPCache *)NULL)
375
376 /*
377  * structures for ldap getfilter routines
378  */
379
380 typedef struct ldap_filt_info {
381         char                    *lfi_filter;
382         char                    *lfi_desc;
383         int                     lfi_scope;      /* LDAP_SCOPE_BASE, etc */
384         int                     lfi_isexact;    /* exact match filter? */
385         struct ldap_filt_info   *lfi_next;
386 } LDAPFiltInfo;
387
388 typedef struct ldap_filt_list {
389     char                        *lfl_tag;
390     char                        *lfl_pattern;
391     char                        *lfl_delims;
392     LDAPFiltInfo                *lfl_ilist;
393     struct ldap_filt_list       *lfl_next;
394 } LDAPFiltList;
395
396
397 #define LDAP_FILT_MAXSIZ        1024
398
399 typedef struct ldap_filt_desc {
400         LDAPFiltList            *lfd_filtlist;
401         LDAPFiltInfo            *lfd_curfip;
402         LDAPFiltInfo            lfd_retfi;
403         char                    lfd_filter[ LDAP_FILT_MAXSIZ ];
404         char                    *lfd_curval;
405         char                    *lfd_curvalcopy;
406         char                    **lfd_curvalwords;
407         char                    *lfd_filtprefix;
408         char                    *lfd_filtsuffix;
409 } LDAPFiltDesc;
410
411
412 /*
413  * structure representing an ldap connection
414  */
415
416 typedef struct ldap LDAP;
417
418 #define LDAP_DEREF_NEVER        0x00
419 #define LDAP_DEREF_SEARCHING    0x01
420 #define LDAP_DEREF_FINDING      0x02
421 #define LDAP_DEREF_ALWAYS       0x03
422
423 #define LDAP_NO_LIMIT           0
424
425
426 /*
427  * structure for ldap friendly mapping routines
428  */
429
430 typedef struct friendly {
431         char    *f_unfriendly;
432         char    *f_friendly;
433 } FriendlyMap;
434
435
436 /*
437  * handy macro to check whether LDAP struct is set up for CLDAP or not
438  */
439 #define LDAP_IS_CLDAP( ld )     ( (ld)->ld_sb.sb_naddr > 0 )
440
441
442 /*
443  * types for ldap URL handling
444  */
445 typedef struct ldap_url_desc {
446     char        *lud_host;
447     int         lud_port;
448     char        *lud_dn;
449     char        **lud_attrs;
450     int         lud_scope;
451     char        *lud_filter;
452     char        *lud_string;    /* for internal use only */
453 } LDAPURLDesc;
454 #define NULLLDAPURLDESC ((LDAPURLDesc *)NULL)
455
456 #define LDAP_URL_ERR_NOTLDAP    1       /* URL doesn't begin with "ldap://" */
457 #define LDAP_URL_ERR_NODN       2       /* URL has no DN (required) */
458 #define LDAP_URL_ERR_BADSCOPE   3       /* URL scope string is invalid */
459 #define LDAP_URL_ERR_MEM        4       /* can't allocate memory space */
460
461 /* avoid pulling in headers */
462 struct timeval;
463
464 LDAP_F int ldap_get_option LDAP_P((LDAP *ld, int option, void *outvalue));
465 LDAP_F int ldap_set_option LDAP_P((LDAP *ld, int option, void *invalue));
466
467 LDAP_F void ldap_control_free LDAP_P(( LDAPControl *ctrl ));
468 LDAP_F void ldap_controls_free LDAP_P(( LDAPControl **ctrls ));
469   
470 /*
471  * in abandon.c:
472  */
473 LDAP_F int ldap_abandon LDAP_P(( LDAP *ld, int msgid ));
474
475 /*
476  * in add.c:
477  */
478 LDAP_F int ldap_add LDAP_P(( LDAP *ld, char *dn, LDAPMod **attrs ));
479 LDAP_F int ldap_add_s LDAP_P(( LDAP *ld, char *dn, LDAPMod **attrs ));
480
481 /*
482  * in bind.c:
483  */
484 LDAP_F int ldap_bind LDAP_P(( LDAP *ld, char *who, char *passwd, int authmethod ));
485 LDAP_F int ldap_bind_s LDAP_P(( LDAP *ld, char *who, char *cred, int method ));
486 LDAP_F void ldap_set_rebind_proc LDAP_P(( LDAP *ld,
487         int (*rebindproc) LDAP_P(( LDAP *ld, char **dnp, char **passwdp, int *authmethodp, int freeit ))
488 ));
489
490 /*
491  * in sbind.c:
492  */
493 LDAP_F int ldap_simple_bind LDAP_P(( LDAP *ld, char *who, char *passwd ));
494 LDAP_F int ldap_simple_bind_s LDAP_P(( LDAP *ld, char *who, char *passwd ));
495
496 /*
497  * in kbind.c:
498  */
499 LDAP_F int ldap_kerberos_bind_s LDAP_P(( LDAP *ld, char *who ));
500 LDAP_F int ldap_kerberos_bind1 LDAP_P(( LDAP *ld, char *who ));
501 LDAP_F int ldap_kerberos_bind1_s LDAP_P(( LDAP *ld, char *who ));
502 LDAP_F int ldap_kerberos_bind2 LDAP_P(( LDAP *ld, char *who ));
503 LDAP_F int ldap_kerberos_bind2_s LDAP_P(( LDAP *ld, char *who ));
504  
505
506 /*
507  * in cache.c
508  */
509 LDAP_F int ldap_enable_cache LDAP_P(( LDAP *ld, long timeout, long maxmem ));
510 LDAP_F void ldap_disable_cache LDAP_P(( LDAP *ld ));
511 LDAP_F void ldap_set_cache_options LDAP_P(( LDAP *ld, unsigned long opts ));
512 LDAP_F void ldap_destroy_cache LDAP_P(( LDAP *ld ));
513 LDAP_F void ldap_flush_cache LDAP_P(( LDAP *ld ));
514 LDAP_F void ldap_uncache_entry LDAP_P(( LDAP *ld, char *dn ));
515 LDAP_F void ldap_uncache_request LDAP_P(( LDAP *ld, int msgid ));
516
517 /*
518  * in compare.c:
519  */
520 LDAP_F int ldap_compare LDAP_P(( LDAP *ld, char *dn, char *attr, char *value ));
521 LDAP_F int ldap_compare_s LDAP_P(( LDAP *ld, char *dn, char *attr, char *value ));
522
523 /*
524  * in delete.c:
525  */
526 LDAP_F int ldap_delete LDAP_P(( LDAP *ld, char *dn ));
527 LDAP_F int ldap_delete_s LDAP_P(( LDAP *ld, char *dn ));
528
529 /*
530  * in error.c:
531  */
532 LDAP_F int ldap_result2error LDAP_P(( LDAP *ld, LDAPMessage *r, int freeit ));
533 LDAP_F char *ldap_err2string LDAP_P(( int err ));
534 LDAP_F void ldap_perror LDAP_P(( LDAP *ld, char *s ));
535 LDAP_F int ldap_get_lderrno LDAP_P((LDAP *ld, char **matched, char **msg));
536
537 /*
538  * in modify.c:
539  */
540 LDAP_F int ldap_modify LDAP_P(( LDAP *ld, char *dn, LDAPMod **mods ));
541 LDAP_F int ldap_modify_s LDAP_P(( LDAP *ld, char *dn, LDAPMod **mods ));
542
543 /*
544  * in modrdn.c:
545  */
546 LDAP_F int ldap_modrdn LDAP_P(( LDAP *ld, char *dn, char *newrdn ));
547 LDAP_F int ldap_modrdn_s LDAP_P(( LDAP *ld, char *dn, char *newrdn ));
548 LDAP_F int ldap_modrdn2 LDAP_P(( LDAP *ld, char *dn, char *newrdn,
549         int deleteoldrdn ));
550 LDAP_F int ldap_modrdn2_s LDAP_P(( LDAP *ld, char *dn, char *newrdn,
551         int deleteoldrdn));
552
553 /*
554  * in open.c:
555  */
556 LDAP_F LDAP *ldap_open LDAP_P(( char *host, int port ));
557 LDAP_F LDAP *ldap_init LDAP_P(( char *defhost, int defport ));
558
559 /*
560  * in getentry.c:
561  */
562 LDAP_F LDAPMessage *ldap_first_entry LDAP_P(( LDAP *ld, LDAPMessage *chain ));
563 LDAP_F LDAPMessage *ldap_next_entry LDAP_P(( LDAP *ld, LDAPMessage *entry ));
564 LDAP_F int ldap_count_entries LDAP_P(( LDAP *ld, LDAPMessage *chain ));
565
566 /*
567  * in addentry.c
568  */
569 LDAP_F LDAPMessage *ldap_delete_result_entry LDAP_P(( LDAPMessage **list,
570         LDAPMessage *e ));
571 LDAP_F void ldap_add_result_entry LDAP_P(( LDAPMessage **list, LDAPMessage *e ));
572
573 /*
574  * in getdn.c
575  */
576 LDAP_F char *ldap_get_dn LDAP_P(( LDAP *ld, LDAPMessage *entry ));
577 LDAP_F char *ldap_dn2ufn LDAP_P(( char *dn ));
578 LDAP_F char **ldap_explode_dn LDAP_P(( char *dn, int notypes ));
579 LDAP_F char **ldap_explode_dns LDAP_P(( char *dn ));
580 LDAP_F int ldap_is_dns_dn LDAP_P(( char *dn ));
581
582 /*
583  * in getattr.c
584  */
585 LDAP_F char *ldap_first_attribute LDAP_P(( LDAP *ld, LDAPMessage *entry,
586         BerElement **ber ));
587 LDAP_F char *ldap_next_attribute LDAP_P(( LDAP *ld, LDAPMessage *entry,
588         BerElement *ber ));
589
590 /*
591  * in getvalues.c
592  */
593 LDAP_F char **ldap_get_values LDAP_P(( LDAP *ld, LDAPMessage *entry, char *target ));
594 LDAP_F struct berval **ldap_get_values_len LDAP_P(( LDAP *ld, LDAPMessage *entry,
595         char *target ));
596 LDAP_F int ldap_count_values LDAP_P(( char **vals ));
597 LDAP_F int ldap_count_values_len LDAP_P(( struct berval **vals ));
598 LDAP_F void ldap_value_free LDAP_P(( char **vals ));
599 LDAP_F void ldap_value_free_len LDAP_P(( struct berval **vals ));
600
601 /*
602  * in result.c:
603  */
604 LDAP_F int ldap_result LDAP_P(( LDAP *ld, int msgid, int all,
605         struct timeval *timeout, LDAPMessage **result ));
606 LDAP_F int ldap_msgfree LDAP_P(( LDAPMessage *lm ));
607 LDAP_F int ldap_msgdelete LDAP_P(( LDAP *ld, int msgid ));
608
609 /*
610  * in search.c:
611  */
612 LDAP_F int ldap_search LDAP_P(( LDAP *ld, char *base, int scope, char *filter,
613         char **attrs, int attrsonly ));
614 LDAP_F int ldap_search_s LDAP_P(( LDAP *ld, char *base, int scope, char *filter,
615         char **attrs, int attrsonly, LDAPMessage **res ));
616 LDAP_F int ldap_search_st LDAP_P(( LDAP *ld, char *base, int scope, char *filter,
617     char **attrs, int attrsonly, struct timeval *timeout, LDAPMessage **res ));
618
619 /*
620  * in ufn.c
621  */
622 LDAP_F int ldap_ufn_search_c LDAP_P(( LDAP *ld, char *ufn, char **attrs,
623         int attrsonly, LDAPMessage **res, int (*cancelproc)( void *cl ),
624         void *cancelparm ));
625 LDAP_F int ldap_ufn_search_ct LDAP_P(( LDAP *ld, char *ufn, char **attrs,
626         int attrsonly, LDAPMessage **res, int (*cancelproc)( void *cl ),
627         void *cancelparm, char *tag1, char *tag2, char *tag3 ));
628 LDAP_F int ldap_ufn_search_s LDAP_P(( LDAP *ld, char *ufn, char **attrs,
629         int attrsonly, LDAPMessage **res ));
630 LDAP_F LDAPFiltDesc *ldap_ufn_setfilter LDAP_P(( LDAP *ld, char *fname ));
631 LDAP_F void ldap_ufn_setprefix LDAP_P(( LDAP *ld, char *prefix ));
632 LDAP_F int ldap_ufn_timeout LDAP_P(( void *tvparam ));
633
634
635 /*
636  * in unbind.c
637  */
638 LDAP_F int ldap_unbind LDAP_P(( LDAP *ld ));
639 LDAP_F int ldap_unbind_s LDAP_P(( LDAP *ld ));
640
641
642 /*
643  * in getfilter.c
644  */
645 LDAP_F LDAPFiltDesc *ldap_init_getfilter LDAP_P(( char *fname ));
646 LDAP_F LDAPFiltDesc *ldap_init_getfilter_buf LDAP_P(( char *buf, long buflen ));
647 LDAP_F LDAPFiltInfo *ldap_getfirstfilter LDAP_P(( LDAPFiltDesc *lfdp, char *tagpat,
648         char *value ));
649 LDAP_F LDAPFiltInfo *ldap_getnextfilter LDAP_P(( LDAPFiltDesc *lfdp ));
650 LDAP_F void ldap_setfilteraffixes LDAP_P(( LDAPFiltDesc *lfdp, char *prefix, char *suffix ));
651 LDAP_F void ldap_build_filter LDAP_P(( char *buf, unsigned long buflen,
652         char *pattern, char *prefix, char *suffix, char *attr,
653         char *value, char **valwords ));
654
655 /*
656  * in free.c
657  */
658 LDAP_F void ldap_getfilter_free LDAP_P(( LDAPFiltDesc *lfdp ));
659 LDAP_F void ldap_mods_free LDAP_P(( LDAPMod **mods, int freemods ));
660
661 /*
662  * in friendly.c
663  */
664 LDAP_F char *ldap_friendly_name LDAP_P(( char *filename, char *uname,
665         FriendlyMap **map ));
666 LDAP_F void ldap_free_friendlymap LDAP_P(( FriendlyMap **map ));
667
668
669 /*
670  * in cldap.c
671  */
672 LDAP_F LDAP *cldap_open LDAP_P(( char *host, int port ));
673 LDAP_F void cldap_close LDAP_P(( LDAP *ld ));
674 LDAP_F int cldap_search_s LDAP_P(( LDAP *ld, char *base, int scope, char *filter,
675         char **attrs, int attrsonly, LDAPMessage **res, char *logdn ));
676 LDAP_F void cldap_setretryinfo LDAP_P(( LDAP *ld, int tries, int timeout ));
677
678
679 /*
680  * in sort.c
681  */
682 LDAP_F int ldap_sort_entries LDAP_P(( LDAP *ld,
683         LDAPMessage **chain, char *attr, int (*cmp) () ));
684 LDAP_F int ldap_sort_values LDAP_P(( LDAP *ld,
685         char **vals, int (*cmp) LDAP_P((const void *, const void *)) ));
686 LDAP_F int ldap_sort_strcasecmp LDAP_P(( char **a, char **b ));
687
688
689 /*
690  * in url.c
691  */
692 LDAP_F int ldap_is_ldap_url LDAP_P(( char *url ));
693 LDAP_F int ldap_url_parse LDAP_P(( char *url, LDAPURLDesc **ludpp ));
694 LDAP_F void ldap_free_urldesc LDAP_P(( LDAPURLDesc *ludp ));
695 LDAP_F int ldap_url_search LDAP_P(( LDAP *ld, char *url, int attrsonly ));
696 LDAP_F int ldap_url_search_s LDAP_P(( LDAP *ld, char *url, int attrsonly,
697         LDAPMessage **res ));
698 LDAP_F int ldap_url_search_st LDAP_P(( LDAP *ld, char *url, int attrsonly,
699         struct timeval *timeout, LDAPMessage **res ));
700
701
702 /*
703  * in charset.c
704  */
705 LDAP_F void ldap_set_string_translators LDAP_P(( LDAP *ld,
706         BERTranslateProc encode_proc, BERTranslateProc decode_proc ));
707 LDAP_F int ldap_translate_from_t61 LDAP_P(( LDAP *ld, char **bufp,
708         unsigned long *lenp, int free_input ));
709 LDAP_F int ldap_translate_to_t61 LDAP_P(( LDAP *ld, char **bufp,
710         unsigned long *lenp, int free_input ));
711 LDAP_F void ldap_enable_translation LDAP_P(( LDAP *ld, LDAPMessage *entry,
712         int enable ));
713
714 LDAP_F int ldap_t61_to_8859 LDAP_P(( char **bufp, unsigned long *buflenp,
715         int free_input ));
716 LDAP_F int ldap_8859_to_t61 LDAP_P(( char **bufp, unsigned long *buflenp,
717         int free_input ));
718
719
720 /*
721  * in msdos/winsock/wsa.c
722  */
723 LDAP_F void ldap_memfree LDAP_P(( void *p ));
724
725 LDAP_END_DECL
726
727 #endif /* _LDAP_H */