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