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