]> git.sur5r.net Git - openldap/blob - libraries/libldap/ldap-int.h
experimental ITS#109 fix: make kbind open default connection if necessary.
[openldap] / libraries / libldap / ldap-int.h
1 /* $OpenLDAP$ */
2 /*
3  * Copyright 1998-1999 The OpenLDAP Foundation, All Rights Reserved.
4  * COPYING RESTRICTIONS APPLY, see COPYRIGHT file
5  */
6 /*  Portions
7  *  Copyright (c) 1995 Regents of the University of Michigan.
8  *  All rights reserved.
9  *
10  *  ldap-int.h - defines & prototypes internal to the LDAP library
11  */
12
13 #ifndef _LDAP_INT_H
14 #define _LDAP_INT_H 1
15
16 #ifdef LDAP_R_COMPILE
17 #define LDAP_THREAD_SAFE 1
18 #endif
19
20 #include "../liblber/lber-int.h"
21
22 #define ldap_debug      (ldap_int_global_options.ldo_debug)
23 #undef Debug
24 #define Debug( level, fmt, arg1, arg2, arg3 ) \
25         ldap_log_printf( NULL, (level), (fmt), (arg1), (arg2), (arg3) )
26
27 #include "ldap_log.h"
28
29 #include "ldap.h"
30
31 #include "ldap_pvt.h"
32
33 LDAP_BEGIN_DECL
34
35 #define LDAP_URL_PREFIX         "ldap://"
36 #define LDAP_URL_PREFIX_LEN     (sizeof(LDAP_URL_PREFIX)-1)
37 #define LDAPS_URL_PREFIX                "ldaps://"
38 #define LDAPS_URL_PREFIX_LEN    (sizeof(LDAPS_URL_PREFIX)-1)
39 #define LDAP_URL_URLCOLON               "URL:"
40 #define LDAP_URL_URLCOLON_LEN   (sizeof(LDAP_URL_URLCOLON)-1)
41 #define NULLLDAPURLDESC ((LDAPURLDesc *)NULL)
42
43 #define LDAP_REF_STR            "Referral:\n"
44 #define LDAP_REF_STR_LEN        (sizeof(LDAP_REF_STR)-1)
45 #define LDAP_LDAP_REF_STR       LDAP_URL_PREFIX
46 #define LDAP_LDAP_REF_STR_LEN   (sizeof(LDAP_LDAP_REF_STR)-1)
47
48 #ifdef LDAP_API_FEATURE_X_OPENLDAP_V2_DNS
49 #define LDAP_DX_REF_STR         "dx://"
50 #define LDAP_DX_REF_STR_LEN     (sizeof(LDAP_DX_REF_STR)-1)
51 #endif /* LDAP_API_FEATURE_X_OPENLDAP_V2_DNS */
52
53 #define LDAP_DEFAULT_REFHOPLIMIT 5
54
55 #define LDAP_BOOL_REFERRALS             0
56 #define LDAP_BOOL_RESTART               1
57 #define LDAP_BOOL_DNS                   2
58 #define LDAP_BOOL_TLS                   3
59
60 #define LDAP_BOOLEANS   unsigned long
61 #define LDAP_BOOL(n)    (1 << (n))
62 #define LDAP_BOOL_GET(lo, bool) ((lo)->ldo_booleans & LDAP_BOOL(bool) \
63                                                                         ?  -1 : 0)
64 #define LDAP_BOOL_SET(lo, bool) ((lo)->ldo_booleans |= LDAP_BOOL(bool))
65 #define LDAP_BOOL_CLR(lo, bool) ((lo)->ldo_booleans &= ~LDAP_BOOL(bool))
66 #define LDAP_BOOL_ZERO(lo) ((lo)->ldo_booleans = 0)
67
68 /*
69  * This structure represents both ldap messages and ldap responses.
70  * These are really the same, except in the case of search responses,
71  * where a response has multiple messages.
72  */
73
74 struct ldapmsg {
75         ber_int_t               lm_msgid;       /* the message id */
76         ber_tag_t               lm_msgtype;     /* the message type */
77         BerElement      *lm_ber;        /* the ber encoded message contents */
78         struct ldapmsg  *lm_chain;      /* for search - next msg in the resp */
79         struct ldapmsg  *lm_next;       /* next response */
80         time_t  lm_time;        /* used to maintain cache */
81 };
82
83 /*
84  * structure representing get/set'able options
85  * which have global defaults.
86  */
87 struct ldapoptions {
88         short ldo_valid;
89 #define LDAP_UNINITIALIZED      0x0
90 #define LDAP_INITIALIZED        0x1
91 #define LDAP_VALID_SESSION      0x2
92
93         int             ldo_debug;
94         /* per API call timeout */
95         struct timeval          *ldo_tm_api;
96         struct timeval          *ldo_tm_net;
97
98         ber_int_t               ldo_version;    /* version to connect at */
99         ber_int_t               ldo_deref;
100         ber_int_t               ldo_timelimit;
101         ber_int_t               ldo_sizelimit;
102
103         int             ldo_defport;
104         char*   ldo_defbase;
105         char*   ldo_defhost;
106
107 #ifdef LDAP_CONNECTIONLESS
108         int             ldo_cldaptries; /* connectionless search retry count */
109         int             ldo_cldaptimeout;/* time between retries */
110 #endif
111
112         int             ldo_refhoplimit;        /* limit on referral nesting */
113
114         /* LDAPv3 server and client controls */
115         LDAPControl     **ldo_sctrls;
116         LDAPControl **ldo_cctrls;
117
118 #ifdef HAVE_TLS
119         /* tls context */
120         void            *ldo_tls_ctx;
121         int             ldo_tls_mode;
122 #endif
123         LDAP_BOOLEANS ldo_booleans;     /* boolean options */
124 };
125
126
127 /*
128  * structure for tracking LDAP server host, ports, DNs, etc.
129  */
130 typedef struct ldap_server {
131         char                    *lsrv_host;
132         char                    *lsrv_dn;       /* if NULL, use default */
133         int                     lsrv_port;
134         struct ldap_server      *lsrv_next;
135 } LDAPServer;
136
137
138 /*
139  * structure for representing an LDAP server connection
140  */
141 typedef struct ldap_conn {
142         Sockbuf                 *lconn_sb;
143         int                     lconn_refcnt;
144         time_t          lconn_lastused; /* time */
145         int                     lconn_status;
146 #define LDAP_CONNST_NEEDSOCKET          1
147 #define LDAP_CONNST_CONNECTING          2
148 #define LDAP_CONNST_CONNECTED           3
149         LDAPServer              *lconn_server;
150         char                    *lconn_krbinstance;
151         struct ldap_conn        *lconn_next;
152         BerElement              *lconn_ber;/* ber receiving on this conn. */
153 } LDAPConn;
154
155
156 /*
157  * structure used to track outstanding requests
158  */
159 typedef struct ldapreq {
160         ber_int_t               lr_msgid;       /* the message id */
161         int             lr_status;      /* status of request */
162 #define LDAP_REQST_INPROGRESS   1
163 #define LDAP_REQST_CHASINGREFS  2
164 #define LDAP_REQST_NOTCONNECTED 3
165 #define LDAP_REQST_WRITING      4
166         int             lr_outrefcnt;   /* count of outstanding referrals */
167         ber_int_t               lr_origid;      /* original request's message id */
168         int             lr_parentcnt;   /* count of parent requests */
169         ber_tag_t               lr_res_msgtype; /* result message type */
170         ber_int_t               lr_res_errno;   /* result LDAP errno */
171         char            *lr_res_error;  /* result error string */
172         char            *lr_res_matched;/* result matched DN string */
173         BerElement      *lr_ber;        /* ber encoded request contents */
174         LDAPConn        *lr_conn;       /* connection used to send request */
175         struct ldapreq  *lr_parent;     /* request that spawned this referral */
176         struct ldapreq  *lr_refnext;    /* next referral spawned */
177         struct ldapreq  *lr_prev;       /* previous request */
178         struct ldapreq  *lr_next;       /* next request */
179 } LDAPRequest;
180
181 /*
182  * structure for client cache
183  */
184 #define LDAP_CACHE_BUCKETS      31      /* cache hash table size */
185 typedef struct ldapcache {
186         LDAPMessage     *lc_buckets[LDAP_CACHE_BUCKETS];/* hash table */
187         LDAPMessage     *lc_requests;                   /* unfulfilled reqs */
188         long            lc_timeout;                     /* request timeout */
189         ber_len_t               lc_maxmem;                      /* memory to use */
190         ber_len_t               lc_memused;                     /* memory in use */
191         int             lc_enabled;                     /* enabled? */
192         unsigned long   lc_options;                     /* options */
193 #define LDAP_CACHE_OPT_CACHENOERRS      0x00000001
194 #define LDAP_CACHE_OPT_CACHEALLERRS     0x00000002
195 }  LDAPCache;
196
197 /*
198  * handy macro for checking if handle is connectionless
199  */
200
201 #define LDAP_IS_CLDAP(ld) ((ld)->ld_cldapnaddr>0)
202
203 /*
204  * structure representing an ldap connection
205  */
206
207 struct ldap {
208         Sockbuf         ld_sb;          /* socket descriptor & buffer */
209
210         struct ldapoptions ld_options;
211
212 #define ld_valid                ld_options.ldo_valid
213 #define ld_debug                ld_options.ldo_debug
214
215 #define ld_deref                ld_options.ldo_deref
216 #define ld_timelimit    ld_options.ldo_timelimit
217 #define ld_sizelimit    ld_options.ldo_sizelimit
218
219 #define ld_defbase              ld_options.ldo_defbase
220 #define ld_defhost              ld_options.ldo_defhost
221 #define ld_defport              ld_options.ldo_defport
222
223 #define ld_cldaptries   ld_options.ldo_cldaptries
224 #define ld_cldaptimeout ld_options.ldo_cldaptimeout
225 #define ld_refhoplimit  ld_options.ldo_refhoplimit
226
227 #define ld_sctrls               ld_options.ldo_sctrls
228 #define ld_cctrls               ld_options.ldo_cctrls
229
230         ber_int_t               ld_version;             /* version connected at */
231         char    *ld_host;
232         int             ld_port;
233
234         unsigned short  ld_lberoptions;
235
236         LDAPFiltDesc    *ld_filtd;      /* from getfilter for ufn searches */
237         char            *ld_ufnprefix;  /* for incomplete ufn's */
238
239         ber_int_t       ld_errno;
240         char    *ld_error;
241         char    *ld_matched;
242         ber_len_t               ld_msgid;
243
244         /* do not mess with these */
245         LDAPRequest     *ld_requests;   /* list of outstanding requests */
246         LDAPMessage     *ld_responses;  /* list of outstanding responses */
247
248         ber_int_t               *ld_abandoned;  /* array of abandoned requests */
249
250         LDAPCache       *ld_cache;      /* non-null if cache is initialized */
251         /* stuff used by connectionless searches. */
252
253         char            *ld_cldapdn;    /* DN used in connectionless search */
254         int             ld_cldapnaddr; /* number of addresses */
255         void            **ld_cldapaddrs;/* addresses to send request to */
256
257         /* do not mess with the rest though */
258         BERTranslateProc ld_lber_encode_translate_proc;
259         BERTranslateProc ld_lber_decode_translate_proc;
260
261         LDAPConn        *ld_defconn;    /* default connection */
262         LDAPConn        *ld_conns;      /* list of server connections */
263         void            *ld_selectinfo; /* platform specifics for select */
264         int             (*ld_rebindproc)( struct ldap *ld, char **dnp,
265                                 char **passwdp, int *authmethodp, int freeit );
266                                 /* routine to get info needed for re-bind */
267 };
268 #define LDAP_VALID(ld)  ( (ld)->ld_valid == LDAP_VALID_SESSION )
269
270 /*
271  * in init.c
272  */
273
274 extern struct ldapoptions ldap_int_global_options;
275 void ldap_int_initialize LDAP_P((void));
276
277
278 /* memory.c */
279         /* simple macros to realloc for now */
280 #define LDAP_INT_MALLOC(s)              (LBER_MALLOC((s)))
281 #define LDAP_INT_CALLOC(n,s)    (LBER_CALLOC((n),(s)))
282 #define LDAP_INT_REALLOC(p,s)   (LBER_REALLOC((p),(s)))
283 #define LDAP_INT_FREE(p)                (LBER_FREE((p)))
284 #define LDAP_INT_VFREE(v)               (LBER_VFREE((void **)(v)))
285 #define LDAP_INT_STRDUP(s)              (LBER_STRDUP((s)))
286
287 #define LDAP_MALLOC(s)          (LBER_MALLOC((s)))
288 #define LDAP_CALLOC(n,s)        (LBER_CALLOC((n),(s)))
289 #define LDAP_REALLOC(p,s)       (LBER_REALLOC((p),(s)))
290 #define LDAP_FREE(p)            (LBER_FREE((p)))
291 #define LDAP_VFREE(v)           (LBER_VFREE((void **)(v)))
292 #define LDAP_STRDUP(s)          (LBER_STRDUP((s)))
293
294 /*
295  * in unit-int.c
296  */
297 void ldap_int_utils_init LDAP_P(( void ));
298
299
300 /*
301  * in print.c
302  */
303 int ldap_log_printf LDAP_P((LDAP *ld, int level, const char *fmt, ...))
304                     LDAP_GCCATTR((format(printf, 3, 4)));
305
306 /*
307  * in cache.c
308  */
309 void ldap_add_request_to_cache LDAP_P(( LDAP *ld, ber_tag_t msgtype,
310         BerElement *request ));
311 void ldap_add_result_to_cache LDAP_P(( LDAP *ld, LDAPMessage *result ));
312 int ldap_check_cache LDAP_P(( LDAP *ld, ber_tag_t msgtype, BerElement *request ));
313
314 /*
315  * in controls.c
316  */
317 LDAPControl *ldap_control_dup LDAP_P((
318         const LDAPControl *ctrl ));
319
320 LDAPControl **ldap_controls_dup LDAP_P((
321         LDAPControl *const *ctrls ));
322
323 int ldap_int_get_controls LDAP_P((
324         BerElement *be,
325         LDAPControl ***ctrlsp));
326
327 int ldap_int_put_controls LDAP_P((
328         LDAP *ld,
329         LDAPControl *const *ctrls,
330         BerElement *ber ));
331
332 /*
333  * in dsparse.c
334  */
335 int next_line_tokens LDAP_P(( char **bufp, ber_len_t *blenp, char ***toksp ));
336 void free_strarray LDAP_P(( char **sap ));
337
338 #ifdef HAVE_KERBEROS
339 /*
340  * in kerberos.c
341  */
342 char *ldap_get_kerberosv4_credentials LDAP_P((
343         LDAP *ld,
344         LDAP_CONST char *who,
345         LDAP_CONST char *service,
346         ber_len_t *len ));
347
348 #endif /* HAVE_KERBEROS */
349
350
351 /*
352  * in open.c
353  */
354 int ldap_open_defconn( LDAP *ld );
355 int open_ldap_connection( LDAP *ld, Sockbuf *sb, const char *host, int defport,
356         char **krbinstancep, int async );
357
358
359 /*
360  * in os-ip.c
361  */
362 extern int ldap_int_tblsize;
363 int ldap_int_timeval_dup( struct timeval **dest, const struct timeval *tm );
364 int ldap_connect_to_host( LDAP *ld, Sockbuf *sb, const char *host,
365         unsigned long address, int port, int async );
366
367 void ldap_close_connection( Sockbuf *sb );
368
369 #ifdef HAVE_KERBEROS
370 char *ldap_host_connected_to( Sockbuf *sb );
371 #endif /* HAVE_KERBEROS */
372
373 void ldap_int_ip_init( void );
374 int do_ldap_select( LDAP *ld, struct timeval *timeout );
375 void *ldap_new_select_info( void );
376 void ldap_free_select_info( void *sip );
377 void ldap_mark_select_write( LDAP *ld, Sockbuf *sb );
378 void ldap_mark_select_read( LDAP *ld, Sockbuf *sb );
379 void ldap_mark_select_clear( LDAP *ld, Sockbuf *sb );
380 int ldap_is_read_ready( LDAP *ld, Sockbuf *sb );
381 int ldap_is_write_ready( LDAP *ld, Sockbuf *sb );
382
383
384 /*
385  * in request.c
386  */
387 ber_int_t ldap_send_initial_request( LDAP *ld, ber_tag_t msgtype,
388         const char *dn, BerElement *ber );
389 BerElement *ldap_alloc_ber_with_options( LDAP *ld );
390 void ldap_set_ber_options( LDAP *ld, BerElement *ber );
391
392 int ldap_send_server_request( LDAP *ld, BerElement *ber, ber_int_t msgid,
393         LDAPRequest *parentreq, LDAPServer *srvlist, LDAPConn *lc,
394         int bind );
395 LDAPConn *ldap_new_connection( LDAP *ld, LDAPServer **srvlistp, int use_ldsb,
396         int connect, int bind );
397 LDAPRequest *ldap_find_request_by_msgid( LDAP *ld, ber_int_t msgid );
398 void ldap_free_request( LDAP *ld, LDAPRequest *lr );
399 void ldap_free_connection( LDAP *ld, LDAPConn *lc, int force, int unbind );
400 void ldap_dump_connection( LDAP *ld, LDAPConn *lconns, int all );
401 void ldap_dump_requests_and_responses( LDAP *ld );
402
403 int ldap_chase_referrals( LDAP *ld, LDAPRequest *lr, char **errstrp, int *hadrefp );
404 int ldap_append_referral( LDAP *ld, char **referralsp, char *s );
405
406 /*
407  * in result.c:
408  */
409 #ifdef LDAP_CONNECTIONLESS
410 int cldap_getmsg( LDAP *ld, struct timeval *timeout, BerElement *ber );
411 #endif
412
413 /*
414  * in search.c
415  */
416 BerElement *ldap_build_search_req LDAP_P((
417         LDAP *ld,
418         const char *base,
419         ber_int_t scope,
420         const char *filter,
421         char **attrs,
422         ber_int_t attrsonly,
423         LDAPControl **sctrls,
424         LDAPControl **cctrls,
425         ber_int_t timelimit,
426         ber_int_t sizelimit ));
427
428 /*
429  * in string.c
430  */
431         /* see <ac/string.h> */
432
433 /*
434  * in unbind.c
435  */
436 int ldap_ld_free LDAP_P((
437         LDAP *ld,
438         int close,
439         LDAPControl **sctrls,
440         LDAPControl **cctrls ));
441
442 int ldap_send_unbind LDAP_P((
443         LDAP *ld,
444         Sockbuf *sb,
445         LDAPControl **sctrls,
446         LDAPControl **cctrls ));
447
448 #ifdef LDAP_API_FEATURE_X_OPENLDAP_V2_DNS
449 /*
450  * in getdxbyname.c
451  */
452 char **ldap_getdxbyname( const char *domain );
453 #endif /* LDAP_API_FEATURE_X_OPENLDAP_V2_DNS */
454
455 #if defined( STR_TRANSLATION ) && defined( LDAP_DEFAULT_CHARSET )
456 /*
457  * in charset.c
458  *
459  * added-in this stuff so that libldap.a would build, i.e. refs to 
460  * these routines from open.c would resolve. 
461  * hodges@stanford.edu 5-Feb-96
462  */
463 #if LDAP_CHARSET_8859 == LDAP_DEFAULT_CHARSET
464 extern 
465 int ldap_t61_to_8859( char **bufp, ber_len_t *buflenp, int free_input );
466 extern 
467 int ldap_8859_to_t61( char **bufp, ber_len_t *buflenp, int free_input );
468 #endif /* LDAP_CHARSET_8859 == LDAP_DEFAULT_CHARSET */
469 #endif /* STR_TRANSLATION && LDAP_DEFAULT_CHARSET */
470
471 LDAP_END_DECL
472
473 #endif /* _LDAP_INT_H */