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