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