]> git.sur5r.net Git - openldap/blob - libraries/libldap/ldap-int.h
a49d7427244fcf03ab084f69a904c5d3125d4b8f
[openldap] / libraries / libldap / ldap-int.h
1 /*  ldap-int.h - defines & prototypes internal to the LDAP library */
2 /* $OpenLDAP$ */
3 /* This work is part of OpenLDAP Software <http://www.openldap.org/>.
4  *
5  * Copyright 1998-2007 The OpenLDAP Foundation.
6  * All rights reserved.
7  *
8  * Redistribution and use in source and binary forms, with or without
9  * modification, are permitted only as authorized by the OpenLDAP
10  * Public License.
11  *
12  * A copy of this license is available in the file LICENSE in the
13  * top-level directory of the distribution or, alternatively, at
14  * <http://www.OpenLDAP.org/license.html>.
15  */
16 /*  Portions Copyright (c) 1995 Regents of the University of Michigan.
17  *  All rights reserved.
18  */
19
20 #ifndef _LDAP_INT_H
21 #define _LDAP_INT_H 1
22
23 #ifdef LDAP_R_COMPILE
24 #define LDAP_THREAD_SAFE 1
25 #endif
26
27 #include "../liblber/lber-int.h"
28
29 #ifdef LDAP_R_COMPILE
30 #include <ldap_pvt_thread.h>
31 #endif
32
33 #ifdef HAVE_CYRUS_SASL
34         /* the need for this should be removed */
35 #ifdef HAVE_SASL_SASL_H
36 #include <sasl/sasl.h>
37 #else
38 #include <sasl.h>
39 #endif
40
41 #define SASL_MAX_BUFF_SIZE      65536
42 #define SASL_MIN_BUFF_SIZE      4096
43 #endif
44
45 #undef TV2MILLISEC
46 #define TV2MILLISEC(tv) (((tv)->tv_sec * 1000) + ((tv)->tv_usec/1000))
47
48 /* 
49  * Support needed if the library is running in the kernel
50  */
51 #if LDAP_INT_IN_KERNEL
52         /* 
53          * Platform specific function to return a pointer to the
54          * process-specific global options. 
55          *
56          * This function should perform the following functions:
57          *  Allocate and initialize a global options struct on a per process basis
58          *  Use callers process identifier to return its global options struct
59          *  Note: Deallocate structure when the process exits
60          */
61 #       define LDAP_INT_GLOBAL_OPT() ldap_int_global_opt()
62         struct ldapoptions *ldap_int_global_opt(void);
63 #else
64 #       define LDAP_INT_GLOBAL_OPT() (&ldap_int_global_options)
65 #endif
66
67 #define ldap_debug      ((LDAP_INT_GLOBAL_OPT())->ldo_debug)
68
69 #include "ldap_log.h"
70
71 #undef Debug
72
73 #ifdef LDAP_DEBUG
74
75 #define Debug( level, fmt, arg1, arg2, arg3 ) \
76         do { if ( ldap_debug & level ) \
77         ldap_log_printf( NULL, (level), (fmt), (arg1), (arg2), (arg3) ); \
78         } while ( 0 )
79
80 #define LDAP_Debug( subsystem, level, fmt, arg1, arg2, arg3 )\
81         ldap_log_printf( NULL, (level), (fmt), (arg1), (arg2), (arg3) )
82
83 #else
84
85 #define Debug( level, fmt, arg1, arg2, arg3 )                 ((void)0)
86 #define LDAP_Debug( subsystem, level, fmt, arg1, arg2, arg3 ) ((void)0)
87
88 #endif /* LDAP_DEBUG */
89
90 #define LDAP_DEPRECATED 1
91 #include "ldap.h"
92
93 #include "ldap_pvt.h"
94
95 LDAP_BEGIN_DECL
96
97 #define LDAP_URL_PREFIX         "ldap://"
98 #define LDAP_URL_PREFIX_LEN     STRLENOF(LDAP_URL_PREFIX)
99 #define LDAPS_URL_PREFIX        "ldaps://"
100 #define LDAPS_URL_PREFIX_LEN    STRLENOF(LDAPS_URL_PREFIX)
101 #define LDAPI_URL_PREFIX        "ldapi://"
102 #define LDAPI_URL_PREFIX_LEN    STRLENOF(LDAPI_URL_PREFIX)
103 #ifdef LDAP_CONNECTIONLESS
104 #define LDAPC_URL_PREFIX        "cldap://"
105 #define LDAPC_URL_PREFIX_LEN    STRLENOF(LDAPC_URL_PREFIX)
106 #endif
107 #define LDAP_URL_URLCOLON       "URL:"
108 #define LDAP_URL_URLCOLON_LEN   STRLENOF(LDAP_URL_URLCOLON)
109
110 #define LDAP_REF_STR            "Referral:\n"
111 #define LDAP_REF_STR_LEN        STRLENOF(LDAP_REF_STR)
112 #define LDAP_LDAP_REF_STR       LDAP_URL_PREFIX
113 #define LDAP_LDAP_REF_STR_LEN   LDAP_URL_PREFIX_LEN
114
115 #define LDAP_DEFAULT_REFHOPLIMIT 5
116
117 #define LDAP_BOOL_REFERRALS             0
118 #define LDAP_BOOL_RESTART               1
119 #define LDAP_BOOL_TLS                   3
120 #define LDAP_BOOL_CONNECT_ASYNC         4
121
122 #define LDAP_BOOLEANS   unsigned long
123 #define LDAP_BOOL(n)    ((LDAP_BOOLEANS)1 << (n))
124 #define LDAP_BOOL_GET(lo, bool) \
125         ((lo)->ldo_booleans & LDAP_BOOL(bool) ? -1 : 0)
126 #define LDAP_BOOL_SET(lo, bool) ((lo)->ldo_booleans |= LDAP_BOOL(bool))
127 #define LDAP_BOOL_CLR(lo, bool) ((lo)->ldo_booleans &= ~LDAP_BOOL(bool))
128 #define LDAP_BOOL_ZERO(lo) ((lo)->ldo_booleans = 0)
129
130 /*
131  * This structure represents both ldap messages and ldap responses.
132  * These are really the same, except in the case of search responses,
133  * where a response has multiple messages.
134  */
135
136 struct ldapmsg {
137         ber_int_t               lm_msgid;       /* the message id */
138         ber_tag_t               lm_msgtype;     /* the message type */
139         BerElement      *lm_ber;        /* the ber encoded message contents */
140         struct ldapmsg  *lm_chain;      /* for search - next msg in the resp */
141         struct ldapmsg  *lm_chain_tail;
142         struct ldapmsg  *lm_next;       /* next response */
143         time_t  lm_time;        /* used to maintain cache */
144 };
145
146 #ifdef HAVE_TLS
147 struct ldaptls {
148         char            *lt_certfile;
149         char            *lt_keyfile;
150         char            *lt_dhfile;
151         char            *lt_cacertfile;
152         char            *lt_cacertdir;
153         char            *lt_ciphersuite;
154 };
155 #endif
156
157 /*
158  * structure representing get/set'able options
159  * which have global defaults.
160  */
161 struct ldapoptions {
162         short ldo_valid;
163 #define LDAP_UNINITIALIZED      0x0
164 #define LDAP_INITIALIZED        0x1
165 #define LDAP_VALID_SESSION      0x2
166 #define LDAP_TRASHED_SESSION    0xFF
167         int   ldo_debug;
168 #ifdef LDAP_CONNECTIONLESS
169 #define LDAP_IS_UDP(ld)         ((ld)->ld_options.ldo_is_udp)
170         void*                   ldo_peer;       /* struct sockaddr* */
171         char*                   ldo_cldapdn;
172         int                     ldo_is_udp;
173 #endif
174
175         /* per API call timeout */
176         struct timeval          ldo_tm_api;
177         struct timeval          ldo_tm_net;
178
179         ber_int_t               ldo_version;
180         ber_int_t               ldo_deref;
181         ber_int_t               ldo_timelimit;
182         ber_int_t               ldo_sizelimit;
183
184 #ifdef HAVE_TLS
185         /* tls context */
186         void            *ldo_tls_ctx;
187         LDAP_TLS_CONNECT_CB     *ldo_tls_connect_cb;
188         void*                   ldo_tls_connect_arg;
189         struct ldaptls ldo_tls_info;
190 #define ldo_tls_certfile        ldo_tls_info.lt_certfile
191 #define ldo_tls_keyfile ldo_tls_info.lt_keyfile
192 #define ldo_tls_dhfile  ldo_tls_info.lt_dhfile
193 #define ldo_tls_cacertfile      ldo_tls_info.lt_cacertfile
194 #define ldo_tls_cacertdir       ldo_tls_info.lt_cacertdir
195 #define ldo_tls_ciphersuite     ldo_tls_info.lt_ciphersuite
196         int                     ldo_tls_mode;
197         int                     ldo_tls_require_cert;
198 #ifdef HAVE_OPENSSL_CRL
199         int                     ldo_tls_crlcheck;
200 #endif
201 #endif
202
203         LDAPURLDesc *ldo_defludp;
204         int             ldo_defport;
205         char*   ldo_defbase;
206         char*   ldo_defbinddn;  /* bind dn */
207
208 #ifdef HAVE_CYRUS_SASL
209         char*   ldo_def_sasl_mech;              /* SASL Mechanism(s) */
210         char*   ldo_def_sasl_realm;             /* SASL realm */
211         char*   ldo_def_sasl_authcid;   /* SASL authentication identity */
212         char*   ldo_def_sasl_authzid;   /* SASL authorization identity */
213
214         /* SASL Security Properties */
215         struct sasl_security_properties ldo_sasl_secprops;
216 #endif
217
218         int             ldo_refhoplimit;        /* limit on referral nesting */
219
220         /* LDAPv3 server and client controls */
221         LDAPControl     **ldo_sctrls;
222         LDAPControl **ldo_cctrls;
223
224         /* LDAP rebind callback function */
225         LDAP_REBIND_PROC *ldo_rebind_proc;
226         void *ldo_rebind_params;
227         LDAP_NEXTREF_PROC *ldo_nextref_proc;
228         void *ldo_nextref_params;
229         LDAP_URLLIST_PROC *ldo_urllist_proc;
230         void *ldo_urllist_params;
231
232         LDAP_BOOLEANS ldo_booleans;     /* boolean options */
233 };
234
235
236 /*
237  * structure for representing an LDAP server connection
238  */
239 typedef struct ldap_conn {
240         Sockbuf         *lconn_sb;
241 #ifdef HAVE_CYRUS_SASL
242         void            *lconn_sasl_authctx;    /* context for bind */
243         void            *lconn_sasl_sockctx;    /* for security layer */
244 #endif
245         int                     lconn_refcnt;
246         time_t          lconn_created;  /* time */
247         time_t          lconn_lastused; /* time */
248         int                     lconn_rebind_inprogress;        /* set if rebind in progress */
249         char            ***lconn_rebind_queue;          /* used if rebind in progress */
250         int                     lconn_status;
251 #define LDAP_CONNST_NEEDSOCKET          1
252 #define LDAP_CONNST_CONNECTING          2
253 #define LDAP_CONNST_CONNECTED           3
254         LDAPURLDesc             *lconn_server;
255         BerElement              *lconn_ber;     /* ber receiving on this conn. */
256
257         struct ldap_conn *lconn_next;
258 } LDAPConn;
259
260
261 /*
262  * structure used to track outstanding requests
263  */
264 typedef struct ldapreq {
265         ber_int_t       lr_msgid;       /* the message id */
266         int             lr_status;      /* status of request */
267 #define LDAP_REQST_COMPLETED    0
268 #define LDAP_REQST_INPROGRESS   1
269 #define LDAP_REQST_CHASINGREFS  2
270 #define LDAP_REQST_NOTCONNECTED 3
271 #define LDAP_REQST_WRITING      4
272         int             lr_refcnt;      /* count of references */
273         int             lr_outrefcnt;   /* count of outstanding referrals */
274         int             lr_abandoned;   /* the request has been abandoned */
275         ber_int_t       lr_origid;      /* original request's message id */
276         int             lr_parentcnt;   /* count of parent requests */
277         ber_tag_t       lr_res_msgtype; /* result message type */
278         ber_int_t       lr_res_errno;   /* result LDAP errno */
279         char            *lr_res_error;  /* result error string */
280         char            *lr_res_matched;/* result matched DN string */
281         BerElement      *lr_ber;        /* ber encoded request contents */
282         LDAPConn        *lr_conn;       /* connection used to send request */
283         struct berval   lr_dn;          /* DN of request, in lr_ber */
284         struct ldapreq  *lr_parent;     /* request that spawned this referral */
285         struct ldapreq  *lr_child;      /* first child request */
286         struct ldapreq  *lr_refnext;    /* next referral spawned */
287         struct ldapreq  *lr_prev;       /* previous request */
288         struct ldapreq  *lr_next;       /* next request */
289 } LDAPRequest;
290
291 /*
292  * structure for client cache
293  */
294 #define LDAP_CACHE_BUCKETS      31      /* cache hash table size */
295 typedef struct ldapcache {
296         LDAPMessage     *lc_buckets[LDAP_CACHE_BUCKETS];/* hash table */
297         LDAPMessage     *lc_requests;                   /* unfulfilled reqs */
298         long            lc_timeout;                     /* request timeout */
299         ber_len_t               lc_maxmem;                      /* memory to use */
300         ber_len_t               lc_memused;                     /* memory in use */
301         int             lc_enabled;                     /* enabled? */
302         unsigned long   lc_options;                     /* options */
303 #define LDAP_CACHE_OPT_CACHENOERRS      0x00000001
304 #define LDAP_CACHE_OPT_CACHEALLERRS     0x00000002
305 }  LDAPCache;
306
307 /*
308  * structure containing referral request info for rebind procedure
309  */
310 typedef struct ldapreqinfo {
311         ber_len_t       ri_msgid;
312         int                     ri_request;
313         char            *ri_url;
314 } LDAPreqinfo;
315
316 /*
317  * structure representing an ldap connection
318  */
319
320 struct ldap {
321         Sockbuf         *ld_sb;         /* socket descriptor & buffer */
322
323         struct ldapoptions ld_options;
324
325 #define ld_valid                ld_options.ldo_valid
326 #define ld_debug                ld_options.ldo_debug
327
328 #define ld_deref                ld_options.ldo_deref
329 #define ld_timelimit    ld_options.ldo_timelimit
330 #define ld_sizelimit    ld_options.ldo_sizelimit
331
332 #define ld_defbinddn    ld_options.ldo_defbinddn
333 #define ld_defbase              ld_options.ldo_defbase
334 #define ld_defhost              ld_options.ldo_defhost
335 #define ld_defport              ld_options.ldo_defport
336
337 #define ld_refhoplimit  ld_options.ldo_refhoplimit
338
339 #define ld_sctrls               ld_options.ldo_sctrls
340 #define ld_cctrls               ld_options.ldo_cctrls
341 #define ld_rebind_proc          ld_options.ldo_rebind_proc
342 #define ld_rebind_params        ld_options.ldo_rebind_params
343 #define ld_nextref_proc         ld_options.ldo_nextref_proc
344 #define ld_nextref_params       ld_options.ldo_nextref_params
345 #define ld_urllist_proc         ld_options.ldo_urllist_proc
346 #define ld_urllist_params       ld_options.ldo_urllist_params
347
348 #define ld_version              ld_options.ldo_version
349
350         unsigned short  ld_lberoptions;
351
352         ber_int_t       ld_errno;
353         char    *ld_error;
354         char    *ld_matched;
355         char    **ld_referrals;
356         ber_len_t               ld_msgid;
357
358         /* do not mess with these */
359         LDAPRequest     *ld_requests;   /* list of outstanding requests */
360         LDAPMessage     *ld_responses;  /* list of outstanding responses */
361
362 #ifdef LDAP_R_COMPILE
363         ldap_pvt_thread_mutex_t ld_conn_mutex;
364         ldap_pvt_thread_mutex_t ld_req_mutex;
365         ldap_pvt_thread_mutex_t ld_res_mutex;
366 #endif
367
368         ber_len_t       ld_nabandoned;
369         ber_int_t       *ld_abandoned;  /* array of abandoned requests */
370
371         LDAPCache       *ld_cache;      /* non-null if cache is initialized */
372
373         /* do not mess with the rest though */
374
375         LDAPConn        *ld_defconn;    /* default connection */
376         LDAPConn        *ld_conns;      /* list of server connections */
377         void            *ld_selectinfo; /* platform specifics for select */
378 };
379 #define LDAP_VALID(ld)          ( (ld)->ld_valid == LDAP_VALID_SESSION )
380 #define LDAP_TRASHED(ld)        ( (ld)->ld_valid == LDAP_TRASHED_SESSION )
381 #define LDAP_TRASH(ld)          ( (ld)->ld_valid = LDAP_TRASHED_SESSION )
382
383 #ifdef LDAP_R_COMPILE
384 LDAP_V ( ldap_pvt_thread_mutex_t ) ldap_int_resolv_mutex;
385
386 #ifdef HAVE_CYRUS_SASL
387 LDAP_V( ldap_pvt_thread_mutex_t ) ldap_int_sasl_mutex;
388 #endif
389 #endif
390
391 #ifdef LDAP_R_COMPILE
392 #define LDAP_NEXT_MSGID(ld, id) \
393         ldap_pvt_thread_mutex_lock( &(ld)->ld_req_mutex ); \
394         id = ++(ld)->ld_msgid; \
395         ldap_pvt_thread_mutex_unlock( &(ld)->ld_req_mutex )
396 #else
397 #define LDAP_NEXT_MSGID(ld, id) id = ++(ld)->ld_msgid
398 #endif
399
400 /*
401  * in abandon.c
402  */
403
404 LDAP_F (int)
405 ldap_int_bisect_find( ber_int_t *v, ber_len_t n, ber_int_t id, int *idxp );
406 LDAP_F (int)
407 ldap_int_bisect_insert( ber_int_t **vp, ber_len_t *np, int id, int idx );
408 LDAP_F (int)
409 ldap_int_bisect_delete( ber_int_t **vp, ber_len_t *np, int id, int idx );
410
411 /*
412  * in init.c
413  */
414
415 LDAP_V ( struct ldapoptions ) ldap_int_global_options;
416
417 LDAP_F ( void ) ldap_int_initialize LDAP_P((struct ldapoptions *, int *));
418 LDAP_F ( void ) ldap_int_initialize_global_options LDAP_P((
419         struct ldapoptions *, int *));
420
421 /* memory.c */
422         /* simple macros to realloc for now */
423 #define LDAP_MALLOC(s)          (ber_memalloc_x((s),NULL))
424 #define LDAP_CALLOC(n,s)        (ber_memcalloc_x((n),(s),NULL))
425 #define LDAP_REALLOC(p,s)       (ber_memrealloc_x((p),(s),NULL))
426 #define LDAP_FREE(p)            (ber_memfree_x((p),NULL))
427 #define LDAP_VFREE(v)           (ber_memvfree_x((void **)(v),NULL))
428 #define LDAP_STRDUP(s)          (ber_strdup_x((s),NULL))
429 #define LDAP_STRNDUP(s,l)       (ber_strndup_x((s),(l),NULL))
430
431 #define LDAP_MALLOCX(s,x)       (ber_memalloc_x((s),(x)))
432 #define LDAP_CALLOCX(n,s,x)     (ber_memcalloc_x((n),(s),(x)))
433 #define LDAP_REALLOCX(p,s,x)    (ber_memrealloc_x((p),(s),(x)))
434 #define LDAP_FREEX(p,x)         (ber_memfree_x((p),(x)))
435 #define LDAP_VFREEX(v,x)        (ber_memvfree_x((void **)(v),(x)))
436 #define LDAP_STRDUPX(s,x)       (ber_strdup_x((s),(x)))
437 #define LDAP_STRNDUPX(s,l,x)    (ber_strndup_x((s),(l),(x)))
438
439 /*
440  * in error.c
441  */
442 LDAP_F (void) ldap_int_error_init( void );
443
444 /*
445  * in unit-int.c
446  */
447 LDAP_F (void) ldap_int_utils_init LDAP_P(( void ));
448
449
450 /*
451  * in print.c
452  */
453 LDAP_F (int) ldap_log_printf LDAP_P((LDAP *ld, int level, const char *fmt, ...)) LDAP_GCCATTR((format(printf, 3, 4)));
454
455 /*
456  * in cache.c
457  */
458 LDAP_F (void) ldap_add_request_to_cache LDAP_P(( LDAP *ld, ber_tag_t msgtype,
459         BerElement *request ));
460 LDAP_F (void) ldap_add_result_to_cache LDAP_P(( LDAP *ld, LDAPMessage *result ));
461 LDAP_F (int) ldap_check_cache LDAP_P(( LDAP *ld, ber_tag_t msgtype, BerElement *request ));
462
463 /*
464  * in controls.c
465  */
466 LDAP_F (int) ldap_int_put_controls LDAP_P((
467         LDAP *ld,
468         LDAPControl *const *ctrls,
469         BerElement *ber ));
470
471 LDAP_F (int) ldap_int_client_controls LDAP_P((
472         LDAP *ld,
473         LDAPControl **ctrlp ));
474
475 /*
476  * in dsparse.c
477  */
478 LDAP_F (int) ldap_int_next_line_tokens LDAP_P(( char **bufp, ber_len_t *blenp, char ***toksp ));
479
480
481 /*
482  * in open.c
483  */
484 LDAP_F (int) ldap_open_defconn( LDAP *ld );
485 LDAP_F (int) ldap_int_open_connection( LDAP *ld,
486         LDAPConn *conn, LDAPURLDesc *srvlist, int async );
487
488 /*
489  * in os-ip.c
490  */
491 #ifndef HAVE_POLL
492 LDAP_V (int) ldap_int_tblsize;
493 LDAP_F (void) ldap_int_ip_init( void );
494 #endif
495
496 LDAP_F (int) ldap_int_timeval_dup( struct timeval **dest,
497         const struct timeval *tm );
498 LDAP_F (int) ldap_connect_to_host( LDAP *ld, Sockbuf *sb,
499         int proto, const char *host, int port, int async );
500 LDAP_F (int) ldap_int_poll( LDAP *ld, ber_socket_t s,
501         struct timeval *tvp );
502
503 #if defined(HAVE_TLS) || defined(HAVE_CYRUS_SASL)
504 LDAP_V (char *) ldap_int_hostname;
505 LDAP_F (char *) ldap_host_connected_to( Sockbuf *sb,
506         const char *host );
507 #endif
508
509 LDAP_F (int) ldap_int_select( LDAP *ld, struct timeval *timeout );
510 LDAP_F (void *) ldap_new_select_info( void );
511 LDAP_F (void) ldap_free_select_info( void *sip );
512 LDAP_F (void) ldap_mark_select_write( LDAP *ld, Sockbuf *sb );
513 LDAP_F (void) ldap_mark_select_read( LDAP *ld, Sockbuf *sb );
514 LDAP_F (void) ldap_mark_select_clear( LDAP *ld, Sockbuf *sb );
515 LDAP_F (int) ldap_is_read_ready( LDAP *ld, Sockbuf *sb );
516 LDAP_F (int) ldap_is_write_ready( LDAP *ld, Sockbuf *sb );
517
518 /*
519  * in os-local.c
520  */
521 #ifdef LDAP_PF_LOCAL
522 LDAP_F (int) ldap_connect_to_path( LDAP *ld, Sockbuf *sb,
523         const char *path, int async );
524 #endif /* LDAP_PF_LOCAL */
525
526 /*
527  * in request.c
528  */
529 LDAP_F (ber_int_t) ldap_send_initial_request( LDAP *ld, ber_tag_t msgtype,
530         const char *dn, BerElement *ber, ber_int_t msgid );
531 LDAP_F (BerElement *) ldap_alloc_ber_with_options( LDAP *ld );
532 LDAP_F (void) ldap_set_ber_options( LDAP *ld, BerElement *ber );
533
534 LDAP_F (int) ldap_send_server_request( LDAP *ld, BerElement *ber, ber_int_t msgid, LDAPRequest *parentreq, LDAPURLDesc **srvlist, LDAPConn *lc, LDAPreqinfo *bind );
535 LDAP_F (LDAPConn *) ldap_new_connection( LDAP *ld, LDAPURLDesc **srvlist, int use_ldsb, int connect, LDAPreqinfo *bind );
536 LDAP_F (LDAPRequest *) ldap_find_request_by_msgid( LDAP *ld, ber_int_t msgid );
537 LDAP_F (void) ldap_return_request( LDAP *ld, LDAPRequest *lr, int freeit );
538 LDAP_F (void) ldap_free_request( LDAP *ld, LDAPRequest *lr );
539 LDAP_F (void) ldap_free_connection( LDAP *ld, LDAPConn *lc, int force, int unbind );
540 LDAP_F (void) ldap_dump_connection( LDAP *ld, LDAPConn *lconns, int all );
541 LDAP_F (void) ldap_dump_requests_and_responses( LDAP *ld );
542 LDAP_F (int) ldap_chase_referrals( LDAP *ld, LDAPRequest *lr,
543         char **errstrp, int sref, int *hadrefp );
544 LDAP_F (int) ldap_chase_v3referrals( LDAP *ld, LDAPRequest *lr,
545         char **refs, int sref, char **referralsp, int *hadrefp );
546 LDAP_F (int) ldap_append_referral( LDAP *ld, char **referralsp, char *s );
547 LDAP_F (int) ldap_int_flush_request( LDAP *ld, LDAPRequest *lr );
548
549 /*
550  * in result.c:
551  */
552 LDAP_F (const char *) ldap_int_msgtype2str( ber_tag_t tag );
553
554 /*
555  * in search.c
556  */
557 LDAP_F (BerElement *) ldap_build_search_req LDAP_P((
558         LDAP *ld,
559         const char *base,
560         ber_int_t scope,
561         const char *filter,
562         char **attrs,
563         ber_int_t attrsonly,
564         LDAPControl **sctrls,
565         LDAPControl **cctrls,
566         ber_int_t timelimit,
567         ber_int_t sizelimit,
568         ber_int_t *msgidp));
569
570
571 /*
572  * in unbind.c
573  */
574 LDAP_F (int) ldap_ld_free LDAP_P((
575         LDAP *ld,
576         int close,
577         LDAPControl **sctrls,
578         LDAPControl **cctrls ));
579
580 LDAP_F (int) ldap_send_unbind LDAP_P((
581         LDAP *ld,
582         Sockbuf *sb,
583         LDAPControl **sctrls,
584         LDAPControl **cctrls ));
585
586 /*
587  * in url.c
588  */
589 LDAP_F (LDAPURLDesc *) ldap_url_dup LDAP_P((
590         LDAPURLDesc *ludp ));
591
592 LDAP_F (LDAPURLDesc *) ldap_url_duplist LDAP_P((
593         LDAPURLDesc *ludlist ));
594
595 LDAP_F (int) ldap_url_parselist LDAP_P((
596         LDAPURLDesc **ludlist,
597         const char *url ));
598
599 LDAP_F (int) ldap_url_parsehosts LDAP_P((
600         LDAPURLDesc **ludlist,
601         const char *hosts,
602         int port ));
603
604 LDAP_F (char *) ldap_url_list2hosts LDAP_P((
605         LDAPURLDesc *ludlist ));
606
607 /*
608  * in cyrus.c
609  */
610
611 LDAP_F (int) ldap_int_sasl_init LDAP_P(( void ));
612
613 LDAP_F (int) ldap_int_sasl_open LDAP_P((
614         LDAP *ld, LDAPConn *conn,
615         const char* host ));
616 LDAP_F (int) ldap_int_sasl_close LDAP_P(( LDAP *ld, LDAPConn *conn ));
617
618 LDAP_F (int) ldap_int_sasl_external LDAP_P((
619         LDAP *ld, LDAPConn *conn,
620         const char* authid, ber_len_t ssf ));
621
622 LDAP_F (int) ldap_int_sasl_get_option LDAP_P(( LDAP *ld,
623         int option, void *arg ));
624 LDAP_F (int) ldap_int_sasl_set_option LDAP_P(( LDAP *ld,
625         int option, void *arg ));
626 LDAP_F (int) ldap_int_sasl_config LDAP_P(( struct ldapoptions *lo,
627         int option, const char *arg ));
628
629 LDAP_F (int) ldap_int_sasl_bind LDAP_P((
630         LDAP *ld,
631         const char *,
632         const char *,
633         LDAPControl **, LDAPControl **,
634
635         /* should be passed in client controls */
636         unsigned flags,
637         LDAP_SASL_INTERACT_PROC *interact,
638         void *defaults ));
639
640 /* in schema.c */
641 LDAP_F (char *) ldap_int_parse_numericoid LDAP_P((
642         const char **sp,
643         int *code,
644         const int flags ));
645
646 /*
647  * in tls.c
648  */
649 LDAP_F (int) ldap_int_tls_config LDAP_P(( LDAP *ld,
650         int option, const char *arg ));
651
652 LDAP_F (int) ldap_int_tls_start LDAP_P(( LDAP *ld,
653         LDAPConn *conn, LDAPURLDesc *srv ));
654
655 LDAP_F (void) ldap_int_tls_destroy LDAP_P(( struct ldapoptions *lo ));
656
657 /*
658  *      in getvalues.c
659  */
660 LDAP_F (char **) ldap_value_dup LDAP_P((
661         char *const *vals ));
662
663 LDAP_END_DECL
664
665 #endif /* _LDAP_INT_H */