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