]> git.sur5r.net Git - openldap/blob - servers/slapd/back-ldap/back-ldap.h
streamline back-ldap/slapo-chain configuration; add the possibility to cache non...
[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-2005 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 typedef struct ldapconn_t {
30         Connection              *lc_conn;
31 #define LDAP_BACK_PCONN         ((void *)0x0)
32 #define LDAP_BACK_PCONN_TLS     ((void *)0x1)
33 #define LDAP_BACK_PCONN_ID(c)   ((void *)(c) > LDAP_BACK_PCONN_TLS ? (c)->c_connid : -1)
34 #ifdef HAVE_TLS
35 #define LDAP_BACK_PCONN_SET(op) ((op)->o_conn->c_is_tls ? LDAP_BACK_PCONN_TLS : LDAP_BACK_PCONN)
36 #else /* ! HAVE_TLS */
37 #define LDAP_BACK_PCONN_SET(op) (LDAP_BACK_PCONN)
38 #endif /* ! HAVE_TLS */
39
40         LDAP                    *lc_ld;
41         struct berval           lc_cred;
42         struct berval           lc_bound_ndn;
43         struct berval           lc_local_ndn;
44         unsigned                lc_lcflags;
45 #define LDAP_BACK_CONN_ISSET(lc,f)      ((lc)->lc_lcflags & (f))
46 #define LDAP_BACK_CONN_SET(lc,f)        ((lc)->lc_lcflags |= (f))
47 #define LDAP_BACK_CONN_CLEAR(lc,f)      ((lc)->lc_lcflags &= ~(f))
48 #define LDAP_BACK_CONN_CPY(lc,f,mlc) \
49         do { \
50                 if ( ((f) & (mlc)->lc_lcflags) == (f) ) { \
51                         (lc)->lc_lcflags |= (f); \
52                 } else { \
53                         (lc)->lc_lcflags &= ~(f); \
54                 } \
55         } while ( 0 )
56
57 #define LDAP_BACK_FCONN_ISBOUND (0x01)
58 #define LDAP_BACK_FCONN_ISANON  (0x02)
59 #define LDAP_BACK_FCONN_ISBMASK (LDAP_BACK_FCONN_ISBOUND|LDAP_BACK_FCONN_ISANON)
60 #define LDAP_BACK_FCONN_ISPRIV  (0x04)
61 #define LDAP_BACK_FCONN_ISTLS   (0x08)
62
63 #define LDAP_BACK_CONN_ISBOUND(lc)              LDAP_BACK_CONN_ISSET((lc), LDAP_BACK_FCONN_ISBOUND)
64 #define LDAP_BACK_CONN_ISBOUND_SET(lc)          LDAP_BACK_CONN_SET((lc), LDAP_BACK_FCONN_ISBOUND)
65 #define LDAP_BACK_CONN_ISBOUND_CLEAR(lc)        LDAP_BACK_CONN_CLEAR((lc), LDAP_BACK_FCONN_ISBMASK)
66 #define LDAP_BACK_CONN_ISBOUND_CPY(lc, mlc)     LDAP_BACK_CONN_CPY((lc), LDAP_BACK_FCONN_ISBOUND, (mlc))
67 #define LDAP_BACK_CONN_ISANON(lc)               LDAP_BACK_CONN_ISSET((lc), LDAP_BACK_FCONN_ISANON)
68 #define LDAP_BACK_CONN_ISANON_SET(lc)           LDAP_BACK_CONN_SET((lc), LDAP_BACK_FCONN_ISANON)
69 #define LDAP_BACK_CONN_ISANON_CLEAR(lc)         LDAP_BACK_CONN_ISBOUND_CLEAR((lc))
70 #define LDAP_BACK_CONN_ISANON_CPY(lc, mlc)      LDAP_BACK_CONN_CPY((lc), LDAP_BACK_FCONN_ISANON, (mlc))
71 #define LDAP_BACK_CONN_ISPRIV(lc)               LDAP_BACK_CONN_ISSET((lc), LDAP_BACK_FCONN_ISPRIV)
72 #define LDAP_BACK_CONN_ISPRIV_SET(lc)           LDAP_BACK_CONN_SET((lc), LDAP_BACK_FCONN_ISPRIV)
73 #define LDAP_BACK_CONN_ISPRIV_CLEAR(lc)         LDAP_BACK_CONN_CLEAR((lc), LDAP_BACK_FCONN_ISPRIV)
74 #define LDAP_BACK_CONN_ISPRIV_CPY(lc, mlc)      LDAP_BACK_CONN_CPY((lc), LDAP_BACK_FCONN_ISPRIV, (mlc))
75 #define LDAP_BACK_CONN_ISTLS(lc)                LDAP_BACK_CONN_ISSET((lc), LDAP_BACK_FCONN_ISTLS)
76 #define LDAP_BACK_CONN_ISTLS_SET(lc)            LDAP_BACK_CONN_SET((lc), LDAP_BACK_FCONN_ISTLS)
77 #define LDAP_BACK_CONN_ISTLS_CLEAR(lc)          LDAP_BACK_CONN_CLEAR((lc), LDAP_BACK_FCONN_ISTLS)
78 #define LDAP_BACK_CONN_ISTLS_CPY(lc, mlc)       LDAP_BACK_CONN_CPY((lc), LDAP_BACK_FCONN_ISTLS, (mlc))
79
80         unsigned                lc_refcnt;
81         unsigned                lc_flags;
82 } ldapconn_t;
83
84 /*
85  * identity assertion modes
86  */
87 enum {
88         LDAP_BACK_IDASSERT_LEGACY = 1,
89         LDAP_BACK_IDASSERT_NOASSERT,
90         LDAP_BACK_IDASSERT_ANONYMOUS,
91         LDAP_BACK_IDASSERT_SELF,
92         LDAP_BACK_IDASSERT_OTHERDN,
93         LDAP_BACK_IDASSERT_OTHERID
94 };
95
96 /*
97  * operation enumeration for timeouts
98  */
99 enum {
100         LDAP_BACK_OP_ADD = 0,
101         LDAP_BACK_OP_DELETE,
102         LDAP_BACK_OP_MODIFY,
103         LDAP_BACK_OP_MODRDN,
104         LDAP_BACK_OP_LAST
105 };
106
107 typedef struct ldap_avl_info_t {
108         ldap_pvt_thread_mutex_t         lai_mutex;
109         Avlnode                         *lai_tree;
110 } ldap_avl_info_t;
111
112 typedef struct ldapinfo_t {
113         /* li_uri: the string that goes into ldap_initialize()
114          * TODO: use li_acl.sb_uri instead */
115         char            *li_uri;
116         /* li_bvuri: an array of each single URI that is equivalent;
117          * to be checked for the presence of a certain item */
118         BerVarray       li_bvuri;
119
120         slap_bindconf   li_acl;
121 #define li_acl_authcID  li_acl.sb_authcId
122 #define li_acl_authcDN  li_acl.sb_binddn
123 #define li_acl_passwd   li_acl.sb_cred
124 #define li_acl_authzID  li_acl.sb_authzId
125 #define li_acl_authmethod       li_acl.sb_method
126 #define li_acl_sasl_mech        li_acl.sb_saslmech
127 #define li_acl_sasl_realm       li_acl.sb_realm
128 #define li_acl_secprops li_acl.sb_secprops
129
130         /* ID assert stuff */
131         int             li_idassert_mode;
132
133         slap_bindconf   li_idassert;
134 #define li_idassert_authcID     li_idassert.sb_authcId
135 #define li_idassert_authcDN     li_idassert.sb_binddn
136 #define li_idassert_passwd      li_idassert.sb_cred
137 #define li_idassert_authzID     li_idassert.sb_authzId
138 #define li_idassert_authmethod  li_idassert.sb_method
139 #define li_idassert_sasl_mech   li_idassert.sb_saslmech
140 #define li_idassert_sasl_realm  li_idassert.sb_realm
141 #define li_idassert_secprops    li_idassert.sb_secprops
142
143         unsigned        li_idassert_flags;
144 #define LDAP_BACK_AUTH_NONE             0x00U
145 #define LDAP_BACK_AUTH_NATIVE_AUTHZ     0x01U
146 #define LDAP_BACK_AUTH_OVERRIDE         0x02U
147 #define LDAP_BACK_AUTH_PRESCRIPTIVE     0x04U
148
149         BerVarray       li_idassert_authz;
150         /* end of ID assert stuff */
151
152         int             li_nretries;
153 #define LDAP_BACK_RETRY_UNDEFINED       (-2)
154 #define LDAP_BACK_RETRY_FOREVER         (-1)
155 #define LDAP_BACK_RETRY_NEVER           (0)
156 #define LDAP_BACK_RETRY_DEFAULT         (3)
157
158         unsigned        li_flags;
159 #define LDAP_BACK_F_NONE                0x00U
160 #define LDAP_BACK_F_SAVECRED            0x01U
161 #define LDAP_BACK_F_USE_TLS             0x02U
162 #define LDAP_BACK_F_PROPAGATE_TLS       0x04U
163 #define LDAP_BACK_F_TLS_CRITICAL        0x08U
164 #define LDAP_BACK_F_TLS_USE_MASK        (LDAP_BACK_F_USE_TLS|LDAP_BACK_F_TLS_CRITICAL)
165 #define LDAP_BACK_F_TLS_PROPAGATE_MASK  (LDAP_BACK_F_PROPAGATE_TLS|LDAP_BACK_F_TLS_CRITICAL)
166 #define LDAP_BACK_F_TLS_MASK            (LDAP_BACK_F_TLS_USE_MASK|LDAP_BACK_F_TLS_PROPAGATE_MASK)
167 #define LDAP_BACK_F_CHASE_REFERRALS     0x10U
168 #define LDAP_BACK_F_PROXY_WHOAMI        0x20U
169
170 #define LDAP_BACK_F_SUPPORT_T_F                 0x80U
171 #define LDAP_BACK_F_SUPPORT_T_F_DISCOVER        0x40U
172 #define LDAP_BACK_F_SUPPORT_T_F_MASK            (LDAP_BACK_F_SUPPORT_T_F|LDAP_BACK_F_SUPPORT_T_F_DISCOVER)
173
174 #define LDAP_BACK_ISSET(li,f)           ( ( (li)->li_flags & (f) ) == (f) )
175 #define LDAP_BACK_SAVECRED(li)          LDAP_BACK_ISSET( (li), LDAP_BACK_F_SAVECRED )
176 #define LDAP_BACK_USE_TLS(li)           LDAP_BACK_ISSET( (li), LDAP_BACK_F_USE_TLS )
177 #define LDAP_BACK_PROPAGATE_TLS(li)     LDAP_BACK_ISSET( (li), LDAP_BACK_F_PROPAGATE_TLS )
178 #define LDAP_BACK_TLS_CRITICAL(li)      LDAP_BACK_ISSET( (li), LDAP_BACK_F_TLS_CRITICAL )
179 #define LDAP_BACK_CHASE_REFERRALS(li)   LDAP_BACK_ISSET( (li), LDAP_BACK_F_CHASE_REFERRALS )
180 #define LDAP_BACK_PROXY_WHOAMI(li)      LDAP_BACK_ISSET( (li), LDAP_BACK_F_PROXY_WHOAMI )
181
182         int             li_version;
183
184         ldap_avl_info_t li_conninfo;
185
186         time_t          li_timeout[ LDAP_BACK_OP_LAST ];
187 } ldapinfo_t;
188
189 typedef enum ldap_back_send_t {
190         LDAP_BACK_DONTSEND              = 0x00,
191         LDAP_BACK_SENDOK                = 0x01,
192         LDAP_BACK_SENDERR               = 0x02,
193         LDAP_BACK_SENDRESULT            = (LDAP_BACK_SENDOK|LDAP_BACK_SENDERR)
194 } ldap_back_send_t;
195
196 /* define to use asynchronous StartTLS */
197 #define SLAP_STARTTLS_ASYNCHRONOUS
198
199 /* timeout to use when calling ldap_result() */
200 #define LDAP_BACK_RESULT_TIMEOUT        (0)
201 #define LDAP_BACK_RESULT_UTIMEOUT       (100000)
202 #define LDAP_BACK_TV_SET(tv) \
203         do { \
204                 (tv)->tv_sec = LDAP_BACK_RESULT_TIMEOUT; \
205                 (tv)->tv_usec = LDAP_BACK_RESULT_UTIMEOUT; \
206         } while ( 0 )
207
208 LDAP_END_DECL
209
210 #include "proto-ldap.h"
211
212 #endif /* SLAPD_LDAP_H */