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