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