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