]> git.sur5r.net Git - openldap/blob - servers/slapd/back-ldap/back-ldap.h
fe02dbc1b859d6aa182f3c6bc0280aeffaf58f5b
[openldap] / servers / slapd / back-ldap / back-ldap.h
1 /* back-ldap.h - ldap backend header file */
2 /* $OpenLDAP$ */
3 /* This work is part of OpenLDAP Software <http://www.openldap.org/>.
4  *
5  * Copyright 1999-2006 The OpenLDAP Foundation.
6  * Portions Copyright 2000-2003 Pierangelo Masarati.
7  * Portions Copyright 1999-2003 Howard Chu.
8  * All rights reserved.
9  *
10  * Redistribution and use in source and binary forms, with or without
11  * modification, are permitted only as authorized by the OpenLDAP
12  * Public License.
13  *
14  * A copy of this license is available in the file LICENSE in the
15  * top-level directory of the distribution or, alternatively, at
16  * <http://www.OpenLDAP.org/license.html>.
17  */
18 /* ACKNOWLEDGEMENTS:
19  * This work was initially developed by the Howard Chu for inclusion
20  * in OpenLDAP Software and subsequently enhanced by Pierangelo
21  * Masarati.
22  */
23
24 #ifndef SLAPD_LDAP_H
25 #define SLAPD_LDAP_H
26
27 #include "../back-monitor/back-monitor.h"
28
29 LDAP_BEGIN_DECL
30
31 struct ldapinfo_t;
32
33 /* stuff required for monitoring */
34 typedef struct ldap_monitor_info_t {
35         monitor_subsys_t        lmi_mss;
36         struct ldapinfo_t       *lmi_li;
37
38         struct berval           lmi_rdn;
39         struct berval           lmi_nrdn;
40         monitor_callback_t      *lmi_cb;
41         struct berval           lmi_base;
42         int                     lmi_scope;
43         struct berval           lmi_filter;
44         struct berval           lmi_more_filter;
45 } ldap_monitor_info_t;
46
47 typedef struct ldapconn_t {
48         Connection              *lc_conn;
49 #define LDAP_BACK_PCONN         ((void *)0x0)
50 #define LDAP_BACK_PCONN_TLS     ((void *)0x1)
51 #define LDAP_BACK_PCONN_ID(c)   ((void *)(c) > LDAP_BACK_PCONN_TLS ? (c)->c_connid : -1)
52 #ifdef HAVE_TLS
53 #define LDAP_BACK_PCONN_SET(op) ((op)->o_conn->c_is_tls ? LDAP_BACK_PCONN_TLS : LDAP_BACK_PCONN)
54 #else /* ! HAVE_TLS */
55 #define LDAP_BACK_PCONN_SET(op) (LDAP_BACK_PCONN)
56 #endif /* ! HAVE_TLS */
57
58         LDAP                    *lc_ld;
59         struct berval           lc_cred;
60         struct berval           lc_bound_ndn;
61         struct berval           lc_local_ndn;
62         unsigned                lc_lcflags;
63 #define LDAP_BACK_CONN_ISSET_F(fp,f)    (*(fp) & (f))
64 #define LDAP_BACK_CONN_SET_F(fp,f)      (*(fp) |= (f))
65 #define LDAP_BACK_CONN_CLEAR_F(fp,f)    (*(fp) &= ~(f))
66 #define LDAP_BACK_CONN_CPY_F(fp,f,mfp) \
67         do { \
68                 if ( ((f) & *(mfp)) == (f) ) { \
69                         *(fp) |= (f); \
70                 } else { \
71                         *(fp) &= ~(f); \
72                 } \
73         } while ( 0 )
74
75 #define LDAP_BACK_CONN_ISSET(lc,f)      LDAP_BACK_CONN_ISSET_F(&(lc)->lc_lcflags, (f))
76 #define LDAP_BACK_CONN_SET(lc,f)        LDAP_BACK_CONN_SET_F(&(lc)->lc_lcflags, (f))
77 #define LDAP_BACK_CONN_CLEAR(lc,f)      LDAP_BACK_CONN_CLEAR_F(&(lc)->lc_lcflags, (f))
78 #define LDAP_BACK_CONN_CPY(lc,f,mlc)    LDAP_BACK_CONN_CPY_F(&(lc)->lc_lcflags, (f), &(mlc)->lc_lcflags)
79
80 #define LDAP_BACK_FCONN_ISBOUND (0x00000001U)
81 #define LDAP_BACK_FCONN_ISANON  (0x00000002U)
82 #define LDAP_BACK_FCONN_ISBMASK (LDAP_BACK_FCONN_ISBOUND|LDAP_BACK_FCONN_ISANON)
83 #define LDAP_BACK_FCONN_ISPRIV  (0x00000004U)
84 #define LDAP_BACK_FCONN_ISTLS   (0x00000008U)
85 #define LDAP_BACK_FCONN_BINDING (0x00000010U)
86 #define LDAP_BACK_FCONN_TAINTED (0x00000020U)
87
88 /* 0x00FF0000 are reserved for back-meta */
89
90 #define LDAP_BACK_CONN_ISBOUND(lc)              LDAP_BACK_CONN_ISSET((lc), LDAP_BACK_FCONN_ISBOUND)
91 #define LDAP_BACK_CONN_ISBOUND_SET(lc)          LDAP_BACK_CONN_SET((lc), LDAP_BACK_FCONN_ISBOUND)
92 #define LDAP_BACK_CONN_ISBOUND_CLEAR(lc)        LDAP_BACK_CONN_CLEAR((lc), LDAP_BACK_FCONN_ISBMASK)
93 #define LDAP_BACK_CONN_ISBOUND_CPY(lc, mlc)     LDAP_BACK_CONN_CPY((lc), LDAP_BACK_FCONN_ISBOUND, (mlc))
94 #define LDAP_BACK_CONN_ISANON(lc)               LDAP_BACK_CONN_ISSET((lc), LDAP_BACK_FCONN_ISANON)
95 #define LDAP_BACK_CONN_ISANON_SET(lc)           LDAP_BACK_CONN_SET((lc), LDAP_BACK_FCONN_ISANON)
96 #define LDAP_BACK_CONN_ISANON_CLEAR(lc)         LDAP_BACK_CONN_ISBOUND_CLEAR((lc))
97 #define LDAP_BACK_CONN_ISANON_CPY(lc, mlc)      LDAP_BACK_CONN_CPY((lc), LDAP_BACK_FCONN_ISANON, (mlc))
98 #define LDAP_BACK_CONN_ISPRIV(lc)               LDAP_BACK_CONN_ISSET((lc), LDAP_BACK_FCONN_ISPRIV)
99 #define LDAP_BACK_CONN_ISPRIV_SET(lc)           LDAP_BACK_CONN_SET((lc), LDAP_BACK_FCONN_ISPRIV)
100 #define LDAP_BACK_CONN_ISPRIV_CLEAR(lc)         LDAP_BACK_CONN_CLEAR((lc), LDAP_BACK_FCONN_ISPRIV)
101 #define LDAP_BACK_CONN_ISPRIV_CPY(lc, mlc)      LDAP_BACK_CONN_CPY((lc), LDAP_BACK_FCONN_ISPRIV, (mlc))
102 #define LDAP_BACK_CONN_ISTLS(lc)                LDAP_BACK_CONN_ISSET((lc), LDAP_BACK_FCONN_ISTLS)
103 #define LDAP_BACK_CONN_ISTLS_SET(lc)            LDAP_BACK_CONN_SET((lc), LDAP_BACK_FCONN_ISTLS)
104 #define LDAP_BACK_CONN_ISTLS_CLEAR(lc)          LDAP_BACK_CONN_CLEAR((lc), LDAP_BACK_FCONN_ISTLS)
105 #define LDAP_BACK_CONN_ISTLS_CPY(lc, mlc)       LDAP_BACK_CONN_CPY((lc), LDAP_BACK_FCONN_ISTLS, (mlc))
106 #define LDAP_BACK_CONN_BINDING(lc)              LDAP_BACK_CONN_ISSET((lc), LDAP_BACK_FCONN_BINDING)
107 #define LDAP_BACK_CONN_BINDING_SET(lc)          LDAP_BACK_CONN_SET((lc), LDAP_BACK_FCONN_BINDING)
108 #define LDAP_BACK_CONN_BINDING_CLEAR(lc)        LDAP_BACK_CONN_CLEAR((lc), LDAP_BACK_FCONN_BINDING)
109 #define LDAP_BACK_CONN_TAINTED(lc)              LDAP_BACK_CONN_ISSET((lc), LDAP_BACK_FCONN_TAINTED)
110 #define LDAP_BACK_CONN_TAINTED_SET(lc)          LDAP_BACK_CONN_SET((lc), LDAP_BACK_FCONN_TAINTED)
111 #define LDAP_BACK_CONN_TAINTED_CLEAR(lc)        LDAP_BACK_CONN_CLEAR((lc), LDAP_BACK_FCONN_TAINTED)
112
113         unsigned                lc_refcnt;
114         unsigned                lc_binding;
115         unsigned                lc_flags;
116         time_t                  lc_create_time;
117         time_t                  lc_time;
118 } ldapconn_t;
119
120 typedef struct ldap_avl_info_t {
121         ldap_pvt_thread_mutex_t         lai_mutex;
122         Avlnode                         *lai_tree;
123 } ldap_avl_info_t;
124
125 typedef struct slap_retry_info_t {
126         time_t          *ri_interval;
127         int             *ri_num;
128         int             ri_idx;
129         int             ri_count;
130         time_t          ri_last;
131
132 #define SLAP_RETRYNUM_FOREVER   (-1)            /* retry forever */
133 #define SLAP_RETRYNUM_TAIL      (-2)            /* end of retrynum array */
134 #define SLAP_RETRYNUM_VALID(n)  ((n) >= SLAP_RETRYNUM_FOREVER)  /* valid retrynum */
135 #define SLAP_RETRYNUM_FINITE(n) ((n) > SLAP_RETRYNUM_FOREVER)   /* not forever */
136 } slap_retry_info_t;
137
138 /*
139  * identity assertion modes
140  */
141 typedef enum {
142         LDAP_BACK_IDASSERT_LEGACY = 1,
143         LDAP_BACK_IDASSERT_NOASSERT,
144         LDAP_BACK_IDASSERT_ANONYMOUS,
145         LDAP_BACK_IDASSERT_SELF,
146         LDAP_BACK_IDASSERT_OTHERDN,
147         LDAP_BACK_IDASSERT_OTHERID
148 } slap_idassert_mode_t;
149
150 /* ID assert stuff */
151 typedef struct slap_idassert_t {
152         slap_idassert_mode_t    si_mode;
153 #define li_idassert_mode        li_idassert.si_mode
154
155         slap_bindconf   si_bc;
156 #define li_idassert_authcID     li_idassert.si_bc.sb_authcId
157 #define li_idassert_authcDN     li_idassert.si_bc.sb_binddn
158 #define li_idassert_passwd      li_idassert.si_bc.sb_cred
159 #define li_idassert_authzID     li_idassert.si_bc.sb_authzId
160 #define li_idassert_authmethod  li_idassert.si_bc.sb_method
161 #define li_idassert_sasl_mech   li_idassert.si_bc.sb_saslmech
162 #define li_idassert_sasl_realm  li_idassert.si_bc.sb_realm
163 #define li_idassert_secprops    li_idassert.si_bc.sb_secprops
164 #define li_idassert_tls         li_idassert.si_bc.sb_tls
165
166         unsigned        si_flags;
167 #define LDAP_BACK_AUTH_NONE                             0x00U
168 #define LDAP_BACK_AUTH_NATIVE_AUTHZ                     0x01U
169 #define LDAP_BACK_AUTH_OVERRIDE                         0x02U
170 #define LDAP_BACK_AUTH_PRESCRIPTIVE                     0x04U
171 #define LDAP_BACK_AUTH_OBSOLETE_PROXY_AUTHZ             0x08U
172 #define LDAP_BACK_AUTH_OBSOLETE_ENCODING_WORKAROUND     0x10U
173 #define li_idassert_flags       li_idassert.si_flags
174
175         BerVarray       si_authz;
176 #define li_idassert_authz       li_idassert.si_authz
177 } slap_idassert_t;
178
179 /*
180  * Hook to allow mucking with ldapinfo_t when quarantine is over
181  */
182 typedef int (*ldap_back_quarantine_f)( struct ldapinfo_t *, void * );
183
184 typedef struct ldapinfo_t {
185         /* li_uri: the string that goes into ldap_initialize()
186          * TODO: use li_acl.sb_uri instead */
187         char                    *li_uri;
188         /* li_bvuri: an array of each single URI that is equivalent;
189          * to be checked for the presence of a certain item */
190         BerVarray               li_bvuri;
191         ldap_pvt_thread_mutex_t li_uri_mutex;
192
193         LDAP_REBIND_PROC        *li_rebind_f;
194         LDAP_URLLIST_PROC       *li_urllist_f;
195         void                    *li_urllist_p;
196
197         slap_bindconf   li_acl;
198 #define li_acl_authcID  li_acl.sb_authcId
199 #define li_acl_authcDN  li_acl.sb_binddn
200 #define li_acl_passwd   li_acl.sb_cred
201 #define li_acl_authzID  li_acl.sb_authzId
202 #define li_acl_authmethod       li_acl.sb_method
203 #define li_acl_sasl_mech        li_acl.sb_saslmech
204 #define li_acl_sasl_realm       li_acl.sb_realm
205 #define li_acl_secprops li_acl.sb_secprops
206
207         /* ID assert stuff */
208         slap_idassert_t li_idassert;
209         /* end of ID assert stuff */
210
211         int             li_nretries;
212 #define LDAP_BACK_RETRY_UNDEFINED       (-2)
213 #define LDAP_BACK_RETRY_FOREVER         (-1)
214 #define LDAP_BACK_RETRY_NEVER           (0)
215 #define LDAP_BACK_RETRY_DEFAULT         (3)
216
217         unsigned        li_flags;
218 #define LDAP_BACK_F_NONE                (0x0000U)
219 #define LDAP_BACK_F_SAVECRED            (0x0001U)
220 #define LDAP_BACK_F_USE_TLS             (0x0002U)
221 #define LDAP_BACK_F_PROPAGATE_TLS       (0x0004U)
222 #define LDAP_BACK_F_TLS_CRITICAL        (0x0008U)
223 #define LDAP_BACK_F_TLS_USE_MASK        (LDAP_BACK_F_USE_TLS|LDAP_BACK_F_TLS_CRITICAL)
224 #define LDAP_BACK_F_TLS_PROPAGATE_MASK  (LDAP_BACK_F_PROPAGATE_TLS|LDAP_BACK_F_TLS_CRITICAL)
225 #define LDAP_BACK_F_TLS_MASK            (LDAP_BACK_F_TLS_USE_MASK|LDAP_BACK_F_TLS_PROPAGATE_MASK)
226 #define LDAP_BACK_F_CHASE_REFERRALS     (0x0010U)
227 #define LDAP_BACK_F_PROXY_WHOAMI        (0x0020U)
228
229 #define LDAP_BACK_F_T_F                 (0x0040U)
230 #define LDAP_BACK_F_T_F_DISCOVER        (0x0080U)
231 #define LDAP_BACK_F_T_F_MASK            (LDAP_BACK_F_T_F)
232 #define LDAP_BACK_F_T_F_MASK2           (LDAP_BACK_F_T_F_MASK|LDAP_BACK_F_T_F_DISCOVER)
233
234 #define LDAP_BACK_F_MONITOR             (0x0100U)
235 #define LDAP_BACK_F_SINGLECONN          (0x0200U)
236
237 #define LDAP_BACK_F_ISOPEN              (0x0400U)
238
239 #define LDAP_BACK_F_CANCEL_ABANDON      (0x0000U)
240 #define LDAP_BACK_F_CANCEL_IGNORE       (0x1000U)
241 #define LDAP_BACK_F_CANCEL_EXOP         (0x2000U)
242 #define LDAP_BACK_F_CANCEL_EXOP_DISCOVER        (0x4000U)
243 #define LDAP_BACK_F_CANCEL_MASK         (LDAP_BACK_F_CANCEL_IGNORE|LDAP_BACK_F_CANCEL_EXOP)
244 #define LDAP_BACK_F_CANCEL_MASK2        (LDAP_BACK_F_CANCEL_MASK|LDAP_BACK_F_CANCEL_EXOP_DISCOVER)
245
246 #define LDAP_BACK_ISSET(li,f)           ( ( (li)->li_flags & (f) ) == (f) )
247 #define LDAP_BACK_ISMASK(li,m,f)        ( ( (li)->li_flags & (m) ) == (f) )
248
249 #define LDAP_BACK_SAVECRED(li)          LDAP_BACK_ISSET( (li), LDAP_BACK_F_SAVECRED )
250 #define LDAP_BACK_USE_TLS(li)           LDAP_BACK_ISSET( (li), LDAP_BACK_F_USE_TLS )
251 #define LDAP_BACK_PROPAGATE_TLS(li)     LDAP_BACK_ISSET( (li), LDAP_BACK_F_PROPAGATE_TLS )
252 #define LDAP_BACK_TLS_CRITICAL(li)      LDAP_BACK_ISSET( (li), LDAP_BACK_F_TLS_CRITICAL )
253 #define LDAP_BACK_CHASE_REFERRALS(li)   LDAP_BACK_ISSET( (li), LDAP_BACK_F_CHASE_REFERRALS )
254 #define LDAP_BACK_PROXY_WHOAMI(li)      LDAP_BACK_ISSET( (li), LDAP_BACK_F_PROXY_WHOAMI )
255
256 #define LDAP_BACK_T_F(li)               LDAP_BACK_ISMASK( (li), LDAP_BACK_F_T_F_MASK, LDAP_BACK_F_T_F )
257 #define LDAP_BACK_T_F_DISCOVER(li)      LDAP_BACK_ISMASK( (li), LDAP_BACK_F_T_F_MASK2, LDAP_BACK_F_T_F_DISCOVER )
258
259 #define LDAP_BACK_MONITOR(li)           LDAP_BACK_ISSET( (li), LDAP_BACK_F_MONITOR )
260 #define LDAP_BACK_SINGLECONN(li)        LDAP_BACK_ISSET( (li), LDAP_BACK_F_SINGLECONN )
261
262 #define LDAP_BACK_ISOPEN(li)            LDAP_BACK_ISSET( (li), LDAP_BACK_F_ISOPEN )
263
264 #define LDAP_BACK_ABANDON(li)           LDAP_BACK_ISMASK( (li), LDAP_BACK_F_CANCEL_MASK, LDAP_BACK_F_CANCEL_ABANDON )
265 #define LDAP_BACK_IGNORE(li)            LDAP_BACK_ISMASK( (li), LDAP_BACK_F_CANCEL_MASK, LDAP_BACK_F_CANCEL_IGNORE )
266 #define LDAP_BACK_CANCEL(li)            LDAP_BACK_ISMASK( (li), LDAP_BACK_F_CANCEL_MASK, LDAP_BACK_F_CANCEL_EXOP )
267 #define LDAP_BACK_CANCEL_DISCOVER(li)   LDAP_BACK_ISMASK( (li), LDAP_BACK_F_CANCEL_MASK2, LDAP_BACK_F_CANCEL_EXOP_DISCOVER )
268
269         int             li_version;
270
271         ldap_avl_info_t li_conninfo;
272
273         ldap_monitor_info_t     li_monitor_info;
274
275         sig_atomic_t            li_isquarantined;
276 #define LDAP_BACK_FQ_NO         (0)
277 #define LDAP_BACK_FQ_YES        (1)
278 #define LDAP_BACK_FQ_RETRYING   (2)
279
280         slap_retry_info_t       li_quarantine;
281 #define LDAP_BACK_QUARANTINE(li)        ( (li)->li_quarantine.ri_num != NULL )
282         ldap_pvt_thread_mutex_t li_quarantine_mutex;
283         ldap_back_quarantine_f  li_quarantine_f;
284         void                    *li_quarantine_p;
285
286         time_t          li_network_timeout;
287         time_t          li_conn_ttl;
288         time_t          li_idle_timeout;
289         time_t          li_timeout[ SLAP_OP_LAST ];
290 } ldapinfo_t;
291
292 typedef enum ldap_back_send_t {
293         LDAP_BACK_DONTSEND              = 0x00,
294         LDAP_BACK_SENDOK                = 0x01,
295         LDAP_BACK_SENDERR               = 0x02,
296         LDAP_BACK_SENDRESULT            = (LDAP_BACK_SENDOK|LDAP_BACK_SENDERR),
297         LDAP_BACK_BINDING               = 0x04,
298
299         LDAP_BACK_BIND_DONTSEND         = (LDAP_BACK_BINDING),
300         LDAP_BACK_BIND_SOK              = (LDAP_BACK_BINDING|LDAP_BACK_SENDOK),
301         LDAP_BACK_BIND_SERR             = (LDAP_BACK_BINDING|LDAP_BACK_SENDERR),
302         LDAP_BACK_BIND_SRES             = (LDAP_BACK_BINDING|LDAP_BACK_SENDRESULT),
303
304         LDAP_BACK_RETRYING              = 0x08,
305         LDAP_BACK_RETRY_DONTSEND        = (LDAP_BACK_RETRYING),
306         LDAP_BACK_RETRY_SOK             = (LDAP_BACK_RETRYING|LDAP_BACK_SENDOK),
307         LDAP_BACK_RETRY_SERR            = (LDAP_BACK_RETRYING|LDAP_BACK_SENDERR),
308         LDAP_BACK_RETRY_SRES            = (LDAP_BACK_RETRYING|LDAP_BACK_SENDRESULT)
309 } ldap_back_send_t;
310
311 /* define to use asynchronous StartTLS */
312 #define SLAP_STARTTLS_ASYNCHRONOUS
313
314 /* timeout to use when calling ldap_result() */
315 #define LDAP_BACK_RESULT_TIMEOUT        (0)
316 #define LDAP_BACK_RESULT_UTIMEOUT       (100000)
317 #define LDAP_BACK_TV_SET(tv) \
318         do { \
319                 (tv)->tv_sec = LDAP_BACK_RESULT_TIMEOUT; \
320                 (tv)->tv_usec = LDAP_BACK_RESULT_UTIMEOUT; \
321         } while ( 0 )
322
323 LDAP_END_DECL
324
325 #include "proto-ldap.h"
326
327 #endif /* SLAPD_LDAP_H */