]> git.sur5r.net Git - openldap/blob - libraries/libldap/ldap-int.h
ITS#897 Internal connection that is closed on one end and about to
[openldap] / libraries / libldap / ldap-int.h
1 /*  ldap-int.h - defines & prototypes internal to the LDAP library */
2 /* $OpenLDAP$ */
3 /*
4  * Copyright 1998-2000 The OpenLDAP Foundation, All Rights Reserved.
5  * COPYING RESTRICTIONS APPLY, see COPYRIGHT file
6  */
7 /*  Portions
8  *  Copyright (c) 1995 Regents of the University of Michigan.
9  *  All rights reserved.
10  */
11
12 #ifndef _LDAP_INT_H
13 #define _LDAP_INT_H 1
14
15 #ifdef LDAP_R_COMPILE
16 #define LDAP_THREAD_SAFE 1
17 #endif
18
19 #include "../liblber/lber-int.h"
20
21 #ifdef HAVE_CYRUS_SASL
22         /* the need for this should be removed */
23 #include <sasl.h>
24 #endif
25
26 /* 
27  * Support needed if the library is running in the kernel
28  */
29 #if LDAP_INT_IN_KERNEL
30         /* 
31          * Platform specific function to return a pointer to the
32          * process-specific global options. 
33          *
34          * This function should perform the following functions:
35          *  Allocate and initialize a global options struct on a per process basis
36          *  Use callers process identifier to return its global options struct
37          *  Note: Deallocate structure when the process exits
38          */
39 #       define LDAP_INT_GLOBAL_OPT() ldap_int_global_opt()
40    struct ldapoptions *ldap_int_global_opt(void);
41 #else
42 #       define LDAP_INT_GLOBAL_OPT() (&ldap_int_global_options)
43 #endif
44
45 #define ldap_debug      ((LDAP_INT_GLOBAL_OPT())->ldo_debug)
46
47 #include "ldap_log.h"
48
49 #undef Debug
50 #define Debug( level, fmt, arg1, arg2, arg3 ) \
51         ldap_log_printf( NULL, (level), (fmt), (arg1), (arg2), (arg3) )
52
53 #define LDAP_Debug( subsystem, level, fmt, arg1, arg2, arg3 )\
54         ldap_log_printf( NULL, (level), (fmt), (arg1), (arg2), (arg3) )
55
56 #include "ldap.h"
57
58 #include "ldap_pvt.h"
59
60 LDAP_BEGIN_DECL
61
62 #define LDAP_URL_PREFIX         "ldap://"
63 #define LDAP_URL_PREFIX_LEN     (sizeof(LDAP_URL_PREFIX)-1)
64 #define LDAPS_URL_PREFIX                "ldaps://"
65 #define LDAPS_URL_PREFIX_LEN    (sizeof(LDAPS_URL_PREFIX)-1)
66 #define LDAPI_URL_PREFIX        "ldapi://"
67 #define LDAPI_URL_PREFIX_LEN    (sizeof(LDAPI_URL_PREFIX)-1)
68 #define LDAP_URL_URLCOLON               "URL:"
69 #define LDAP_URL_URLCOLON_LEN   (sizeof(LDAP_URL_URLCOLON)-1)
70
71 #define CLDAP_URL_PREFIX         "cldap://"
72 #define CLDAP_URL_PREFIX_LEN     (sizeof(CLDAP_URL_PREFIX)-1)
73
74 #define LDAP_REF_STR            "Referral:\n"
75 #define LDAP_REF_STR_LEN        (sizeof(LDAP_REF_STR)-1)
76 #define LDAP_LDAP_REF_STR       LDAP_URL_PREFIX
77 #define LDAP_LDAP_REF_STR_LEN   LDAP_URL_PREFIX_LEN
78
79 #define LDAP_DEFAULT_REFHOPLIMIT 5
80
81 #define LDAP_BOOL_REFERRALS             0
82 #define LDAP_BOOL_RESTART               1
83 #define LDAP_BOOL_TLS                   3
84
85 #define LDAP_BOOLEANS   unsigned long
86 #define LDAP_BOOL(n)    (1 << (n))
87 #define LDAP_BOOL_GET(lo, bool) \
88         ((lo)->ldo_booleans & LDAP_BOOL(bool) ? -1 : 0)
89 #define LDAP_BOOL_SET(lo, bool) ((lo)->ldo_booleans |= LDAP_BOOL(bool))
90 #define LDAP_BOOL_CLR(lo, bool) ((lo)->ldo_booleans &= ~LDAP_BOOL(bool))
91 #define LDAP_BOOL_ZERO(lo) ((lo)->ldo_booleans = 0)
92
93 /*
94  * This structure represents both ldap messages and ldap responses.
95  * These are really the same, except in the case of search responses,
96  * where a response has multiple messages.
97  */
98
99 struct ldapmsg {
100         ber_int_t               lm_msgid;       /* the message id */
101         ber_tag_t               lm_msgtype;     /* the message type */
102         BerElement      *lm_ber;        /* the ber encoded message contents */
103         struct ldapmsg  *lm_chain;      /* for search - next msg in the resp */
104         struct ldapmsg  *lm_next;       /* next response */
105         time_t  lm_time;        /* used to maintain cache */
106 };
107
108 /*
109  * structure representing get/set'able options
110  * which have global defaults.
111  */
112 struct ldapoptions {
113         short ldo_valid;
114 #define LDAP_UNINITIALIZED      0x0
115 #define LDAP_INITIALIZED        0x1
116 #define LDAP_VALID_SESSION      0x2
117
118         int             ldo_debug;
119         /* per API call timeout */
120         struct timeval          *ldo_tm_api;
121         struct timeval          *ldo_tm_net;
122
123         ber_int_t               ldo_version;
124         ber_int_t               ldo_deref;
125         ber_int_t               ldo_timelimit;
126         ber_int_t               ldo_sizelimit;
127
128         LDAPURLDesc *ldo_defludp;
129         int             ldo_defport;
130         char*   ldo_defbase;
131         char*   ldo_defbinddn;  /* bind dn */
132
133 #ifdef HAVE_CYRUS_SASL
134         char*   ldo_def_sasl_mech;              /* SASL Mechanism(s) */
135         char*   ldo_def_sasl_realm;             /* SASL realm */
136         char*   ldo_def_sasl_authcid;   /* SASL authentication identity */
137         char*   ldo_def_sasl_authzid;   /* SASL authorization identity */
138
139         /* SASL Security Properties */
140         struct sasl_security_properties ldo_sasl_secprops;
141 #endif
142
143         int             ldo_refhoplimit;        /* limit on referral nesting */
144
145         /* LDAPv3 server and client controls */
146         LDAPControl     **ldo_sctrls;
147         LDAPControl **ldo_cctrls;
148
149         /* LDAP rebind callback function */
150         LDAP_REBIND_PROC                *ldo_rebindproc;
151
152 #ifdef HAVE_TLS
153         /* tls context */
154         void            *ldo_tls_ctx;
155         int             ldo_tls_mode;
156 #endif
157         LDAP_BOOLEANS ldo_booleans;     /* boolean options */
158 };
159
160
161 /*
162  * structure for tracking LDAP server host, ports, DNs, etc.
163  */
164 typedef struct ldap_server {
165         char                    *lsrv_host;
166         char                    *lsrv_dn;       /* if NULL, use default */
167         int                     lsrv_port;
168         struct ldap_server      *lsrv_next;
169 } LDAPServer;
170
171
172 /*
173  * structure for representing an LDAP server connection
174  */
175 typedef struct ldap_conn {
176         Sockbuf         *lconn_sb;
177         void            *lconn_sasl_ctx;
178         int                     lconn_refcnt;
179         time_t          lconn_lastused; /* time */
180         int                     lconn_rebind_inprogress;        /* set if rebind in progress */
181         char            ***lconn_rebind_queue;          /* used if rebind in progress */
182         int                     lconn_status;
183 #define LDAP_CONNST_NEEDSOCKET          1
184 #define LDAP_CONNST_CONNECTING          2
185 #define LDAP_CONNST_CONNECTED           3
186         LDAPURLDesc             *lconn_server;
187 #ifdef LDAP_API_FEATURE_X_OPENLDAP_V2_KBIND
188         char                    *lconn_krbinstance;
189 #endif
190         struct ldap_conn        *lconn_next;
191         BerElement              *lconn_ber;/* ber receiving on this conn. */
192 } LDAPConn;
193
194
195 /*
196  * structure used to track outstanding requests
197  */
198 typedef struct ldapreq {
199         ber_int_t               lr_msgid;       /* the message id */
200         int             lr_status;      /* status of request */
201 #define LDAP_REQST_COMPLETED    0
202 #define LDAP_REQST_INPROGRESS   1
203 #define LDAP_REQST_CHASINGREFS  2
204 #define LDAP_REQST_NOTCONNECTED 3
205 #define LDAP_REQST_WRITING      4
206         int             lr_outrefcnt;   /* count of outstanding referrals */
207         ber_int_t               lr_origid;      /* original request's message id */
208         int             lr_parentcnt;   /* count of parent requests */
209         ber_tag_t               lr_res_msgtype; /* result message type */
210         ber_int_t               lr_res_errno;   /* result LDAP errno */
211         char            *lr_res_error;  /* result error string */
212         char            *lr_res_matched;/* result matched DN string */
213         BerElement      *lr_ber;        /* ber encoded request contents */
214         LDAPConn        *lr_conn;       /* connection used to send request */
215         struct ldapreq  *lr_parent;     /* request that spawned this referral */
216         struct ldapreq  *lr_refnext;    /* next referral spawned */
217         struct ldapreq  *lr_prev;       /* previous request */
218         struct ldapreq  *lr_next;       /* next request */
219 } LDAPRequest;
220
221 /*
222  * structure for client cache
223  */
224 #define LDAP_CACHE_BUCKETS      31      /* cache hash table size */
225 typedef struct ldapcache {
226         LDAPMessage     *lc_buckets[LDAP_CACHE_BUCKETS];/* hash table */
227         LDAPMessage     *lc_requests;                   /* unfulfilled reqs */
228         long            lc_timeout;                     /* request timeout */
229         ber_len_t               lc_maxmem;                      /* memory to use */
230         ber_len_t               lc_memused;                     /* memory in use */
231         int             lc_enabled;                     /* enabled? */
232         unsigned long   lc_options;                     /* options */
233 #define LDAP_CACHE_OPT_CACHENOERRS      0x00000001
234 #define LDAP_CACHE_OPT_CACHEALLERRS     0x00000002
235 }  LDAPCache;
236
237 /*
238  * structure containing referral request info for rebind procedure
239  */
240 typedef struct ldapreqinfo {
241         ber_len_t       ri_msgid;
242         int                     ri_request;
243         char            *ri_url;
244 } LDAPreqinfo;
245
246 /*
247  * structure representing an ldap connection
248  */
249
250 struct ldap {
251         Sockbuf         *ld_sb;         /* socket descriptor & buffer */
252
253         struct ldapoptions ld_options;
254
255 #define ld_valid                ld_options.ldo_valid
256 #define ld_debug                ld_options.ldo_debug
257
258 #define ld_deref                ld_options.ldo_deref
259 #define ld_timelimit    ld_options.ldo_timelimit
260 #define ld_sizelimit    ld_options.ldo_sizelimit
261
262 #define ld_defbinddn    ld_options.ldo_defbinddn
263 #define ld_defbase              ld_options.ldo_defbase
264 #define ld_defhost              ld_options.ldo_defhost
265 #define ld_defport              ld_options.ldo_defport
266
267 #define ld_refhoplimit  ld_options.ldo_refhoplimit
268
269 #define ld_sctrls               ld_options.ldo_sctrls
270 #define ld_cctrls               ld_options.ldo_cctrls
271 #define ld_rebindproc   ld_options.ldo_rebindproc
272
273 #define ld_version              ld_options.ldo_version
274
275         char    *ld_host;
276         int             ld_port;
277
278         unsigned short  ld_lberoptions;
279
280         LDAPFiltDesc    *ld_filtd;      /* from getfilter for ufn searches */
281         char            *ld_ufnprefix;  /* for incomplete ufn's */
282
283         ber_int_t       ld_errno;
284         char    *ld_error;
285         char    *ld_matched;
286         ber_len_t               ld_msgid;
287
288         /* do not mess with these */
289         LDAPRequest     *ld_requests;   /* list of outstanding requests */
290         LDAPMessage     *ld_responses;  /* list of outstanding responses */
291
292         ber_int_t               *ld_abandoned;  /* array of abandoned requests */
293
294         LDAPCache       *ld_cache;      /* non-null if cache is initialized */
295
296         /* do not mess with the rest though */
297
298         LDAPConn        *ld_defconn;    /* default connection */
299         LDAPConn        *ld_conns;      /* list of server connections */
300         void            *ld_selectinfo; /* platform specifics for select */
301 };
302 #define LDAP_VALID(ld)  ( (ld)->ld_valid == LDAP_VALID_SESSION )
303
304 #if defined(HAVE_RES_QUERY) && defined(LDAP_R_COMPILE)
305 #include <ldap_pvt_thread.h>
306 LDAP_V ( ldap_pvt_thread_mutex_t ) ldap_int_resolv_mutex;
307 #endif /* HAVE_RES_QUERY && LDAP_R_COMPILE */
308
309 /*
310  * in init.c
311  */
312
313 LDAP_V ( struct ldapoptions ) ldap_int_global_options;
314
315 LDAP_F ( void ) ldap_int_initialize LDAP_P((struct ldapoptions *, int *));
316 LDAP_F ( void ) ldap_int_initialize_global_options LDAP_P((
317         struct ldapoptions *, int *));
318
319 /* memory.c */
320         /* simple macros to realloc for now */
321 #define LDAP_INT_MALLOC(s)              (LBER_MALLOC((s)))
322 #define LDAP_INT_CALLOC(n,s)    (LBER_CALLOC((n),(s)))
323 #define LDAP_INT_REALLOC(p,s)   (LBER_REALLOC((p),(s)))
324 #define LDAP_INT_FREE(p)                (LBER_FREE((p)))
325 #define LDAP_INT_VFREE(v)               (LBER_VFREE((void **)(v)))
326 #define LDAP_INT_STRDUP(s)              (LBER_STRDUP((s)))
327
328 #define LDAP_MALLOC(s)          (LBER_MALLOC((s)))
329 #define LDAP_CALLOC(n,s)        (LBER_CALLOC((n),(s)))
330 #define LDAP_REALLOC(p,s)       (LBER_REALLOC((p),(s)))
331 #define LDAP_FREE(p)            (LBER_FREE((p)))
332 #define LDAP_VFREE(v)           (LBER_VFREE((void **)(v)))
333 #define LDAP_STRDUP(s)          (LBER_STRDUP((s)))
334
335 /*
336  * in unit-int.c
337  */
338 LDAP_F (void) ldap_int_utils_init LDAP_P(( void ));
339
340
341 /*
342  * in print.c
343  */
344 LDAP_F (int) ldap_log_printf LDAP_P((LDAP *ld, int level, const char *fmt, ...)) LDAP_GCCATTR((format(printf, 3, 4)));
345
346 /*
347  * in cache.c
348  */
349 LDAP_F (void) ldap_add_request_to_cache LDAP_P(( LDAP *ld, ber_tag_t msgtype,
350         BerElement *request ));
351 LDAP_F (void) ldap_add_result_to_cache LDAP_P(( LDAP *ld, LDAPMessage *result ));
352 LDAP_F (int) ldap_check_cache LDAP_P(( LDAP *ld, ber_tag_t msgtype, BerElement *request ));
353
354 /*
355  * in controls.c
356  */
357 LDAP_F (LDAPControl *) ldap_control_dup LDAP_P((
358         const LDAPControl *ctrl ));
359
360 LDAP_F (LDAPControl **) ldap_controls_dup LDAP_P((
361         LDAPControl *const *ctrls ));
362
363 LDAP_F (int) ldap_int_get_controls LDAP_P((
364         BerElement *be,
365         LDAPControl ***ctrlsp));
366
367 LDAP_F (int) ldap_int_put_controls LDAP_P((
368         LDAP *ld,
369         LDAPControl *const *ctrls,
370         BerElement *ber ));
371
372
373 /*
374  * in dsparse.c
375  */
376 LDAP_F (int) ldap_int_next_line_tokens LDAP_P(( char **bufp, ber_len_t *blenp, char ***toksp ));
377
378 #ifdef LDAP_API_FEATURE_X_OPENLDAP_V2_KBIND
379 /*
380  * in kerberos.c
381  */
382 LDAP_F (char *) ldap_get_kerberosv4_credentials LDAP_P((
383         LDAP *ld,
384         LDAP_CONST char *who,
385         LDAP_CONST char *service,
386         ber_len_t *len ));
387
388 #endif /* LDAP_API_FEATURE_X_OPENLDAP_V2_KBIND */
389
390
391 /*
392  * in open.c
393  */
394 LDAP_F (int) ldap_open_defconn( LDAP *ld );
395 LDAP_F (int) ldap_int_open_connection( LDAP *ld,
396         LDAPConn *conn, LDAPURLDesc *srvlist, int async );
397
398 /*
399  * in os-ip.c
400  */
401 LDAP_F (int) ldap_int_tblsize;
402 LDAP_F (int) ldap_int_timeval_dup( struct timeval **dest, const struct timeval *tm );
403 LDAP_F (int) ldap_connect_to_host( LDAP *ld, Sockbuf *sb,
404         int proto, const char *host, unsigned long address, int port,
405         int async );
406
407 #if defined(LDAP_API_FEATURE_X_OPENLDAP_V2_KBIND) || defined(HAVE_TLS) || defined(HAVE_CYRUS_SASL)
408 LDAP_V (char *) ldap_int_hostname;
409 LDAP_F (char *) ldap_host_connected_to( Sockbuf *sb );
410 #endif /* LDAP_API_FEATURE_X_OPENLDAP_V2_KBIND */
411
412 LDAP_F (void) ldap_int_ip_init( void );
413 LDAP_F (int) do_ldap_select( LDAP *ld, struct timeval *timeout );
414 LDAP_F (void *) ldap_new_select_info( void );
415 LDAP_F (void) ldap_free_select_info( void *sip );
416 LDAP_F (void) ldap_mark_select_write( LDAP *ld, Sockbuf *sb );
417 LDAP_F (void) ldap_mark_select_read( LDAP *ld, Sockbuf *sb );
418 LDAP_F (void) ldap_mark_select_clear( LDAP *ld, Sockbuf *sb );
419 LDAP_F (int) ldap_is_read_ready( LDAP *ld, Sockbuf *sb );
420 LDAP_F (int) ldap_is_write_ready( LDAP *ld, Sockbuf *sb );
421
422 /*
423  * in os-local.c
424  */
425 #ifdef LDAP_PF_LOCAL
426 LDAP_F (int) ldap_connect_to_path( LDAP *ld, Sockbuf *sb,
427         const char *path, int async );
428 #endif /* LDAP_PF_LOCAL */
429
430 /*
431  * in request.c
432  */
433 LDAP_F (ber_int_t) ldap_send_initial_request( LDAP *ld, ber_tag_t msgtype,
434         const char *dn, BerElement *ber );
435 LDAP_F (BerElement *) ldap_alloc_ber_with_options( LDAP *ld );
436 LDAP_F (void) ldap_set_ber_options( LDAP *ld, BerElement *ber );
437
438 LDAP_F (int) ldap_send_server_request( LDAP *ld, BerElement *ber, ber_int_t msgid, LDAPRequest *parentreq, LDAPURLDesc *srvlist, LDAPConn *lc, LDAPreqinfo *bind );
439 LDAP_F (LDAPConn *) ldap_new_connection( LDAP *ld, LDAPURLDesc *srvlist, int use_ldsb, int connect, LDAPreqinfo *bind );
440 LDAP_F (LDAPRequest *) ldap_find_request_by_msgid( LDAP *ld, ber_int_t msgid );
441 LDAP_F (void) ldap_free_request( LDAP *ld, LDAPRequest *lr );
442 LDAP_F (void) ldap_free_connection( LDAP *ld, LDAPConn *lc, int force, int unbind );
443 LDAP_F (void) ldap_dump_connection( LDAP *ld, LDAPConn *lconns, int all );
444 LDAP_F (void) ldap_dump_requests_and_responses( LDAP *ld );
445 LDAP_F (int) ldap_chase_referrals( LDAP *ld, LDAPRequest *lr, char **errstrp, int *hadrefp );
446 LDAP_F (int) ldap_chase_v3referrals( LDAP *ld, LDAPRequest *lr, char **refs, int sref, char **referralsp, int *hadrefp );
447 LDAP_F (int) ldap_append_referral( LDAP *ld, char **referralsp, char *s );
448
449 /*
450  * in result.c:
451  */
452 LDAP_F (char *) ldap_int_msgtype2str( ber_tag_t tag );
453
454 /*
455  * in search.c
456  */
457 LDAP_F (BerElement *) ldap_build_search_req LDAP_P((
458         LDAP *ld,
459         const char *base,
460         ber_int_t scope,
461         const char *filter,
462         char **attrs,
463         ber_int_t attrsonly,
464         LDAPControl **sctrls,
465         LDAPControl **cctrls,
466         ber_int_t timelimit,
467         ber_int_t sizelimit ));
468
469 /*
470  * in string.c
471  */
472         /* see <ac/string.h> */
473
474 /*
475  * in unbind.c
476  */
477 LDAP_F (int) ldap_ld_free LDAP_P((
478         LDAP *ld,
479         int close,
480         LDAPControl **sctrls,
481         LDAPControl **cctrls ));
482
483 LDAP_F (int) ldap_send_unbind LDAP_P((
484         LDAP *ld,
485         Sockbuf *sb,
486         LDAPControl **sctrls,
487         LDAPControl **cctrls ));
488
489 /*
490  * in url.c
491  */
492 LDAP_F (LDAPURLDesc *) ldap_url_dup LDAP_P((
493         LDAPURLDesc *ludp ));
494
495 LDAP_F (LDAPURLDesc *) ldap_url_duplist LDAP_P((
496         LDAPURLDesc *ludlist ));
497
498 LDAP_F (int) ldap_url_parselist LDAP_P((
499         LDAPURLDesc **ludlist,
500         const char *url ));
501
502 LDAP_F (int) ldap_url_parsehosts LDAP_P((
503         LDAPURLDesc **ludlist,
504         const char *hosts,
505         int port ));
506
507 LDAP_F (char *) ldap_url_list2hosts LDAP_P((
508         LDAPURLDesc *ludlist ));
509
510 LDAP_F (char *) ldap_url_list2urls LDAP_P((
511         LDAPURLDesc *ludlist ));
512
513 LDAP_F (void) ldap_free_urllist LDAP_P((
514         LDAPURLDesc *ludlist ));
515
516 /*
517  * in cyrus.c
518  */
519 LDAP_F (int) ldap_int_sasl_init LDAP_P(( void ));
520
521 LDAP_F (int) ldap_int_sasl_open LDAP_P((
522         LDAP *ld, LDAPConn *conn,
523         const char* host, ber_len_t ssf ));
524 LDAP_F (int) ldap_int_sasl_close LDAP_P(( LDAP *ld, LDAPConn *conn ));
525
526 LDAP_F (int) ldap_int_sasl_external LDAP_P((
527         LDAP *ld, const char* authid, ber_len_t ssf ));
528
529 LDAP_F (int) ldap_int_sasl_get_option LDAP_P(( LDAP *ld,
530         int option, void *arg ));
531 LDAP_F (int) ldap_int_sasl_set_option LDAP_P(( LDAP *ld,
532         int option, void *arg ));
533 LDAP_F (int) ldap_int_sasl_config LDAP_P(( struct ldapoptions *lo,
534         int option, const char *arg ));
535
536 LDAP_F (int) ldap_int_sasl_bind LDAP_P((
537         struct ldap *ld,
538         const char *,
539         const char *,
540         LDAPControl **, LDAPControl **,
541
542         /* should be passed in client controls */
543         unsigned flags,
544         LDAP_SASL_INTERACT_PROC *interact,
545         void *defaults ));
546
547 /*
548  * in tls.c
549  */
550 LDAP_F (int) ldap_int_tls_config LDAP_P(( struct ldapoptions *lo, int option, const char *arg ));
551
552 LDAP_END_DECL
553
554 #endif /* _LDAP_INT_H */