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