]> git.sur5r.net Git - openldap/blob - servers/slapd/back-ldap/back-ldap.h
787a27db980d4f5b713d3939ef6515c00f6a5d07
[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 struct ldapconn {
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 };
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 struct ldapinfo {
97         char            *url;
98         LDAPURLDesc     *lud;
99
100         slap_bindconf   acl_sb;
101 #define acl_authcID     acl_sb.sb_authcId
102 #define acl_authcDN     acl_sb.sb_binddn
103 #define acl_passwd      acl_sb.sb_cred
104 #define acl_authzID     acl_sb.sb_authzId
105 #define acl_authmethod  acl_sb.sb_method
106 #define acl_sasl_mech   acl_sb.sb_saslmech
107 #define acl_sasl_realm  acl_sb.sb_realm
108 #define acl_secprops    acl_sb.sb_secprops
109
110         /* ID assert stuff */
111         int             idassert_mode;
112
113         slap_bindconf   idassert_sb;
114 #define idassert_authcID        idassert_sb.sb_authcId
115 #define idassert_authcDN        idassert_sb.sb_binddn
116 #define idassert_passwd         idassert_sb.sb_cred
117 #define idassert_authzID        idassert_sb.sb_authzId
118 #define idassert_authmethod     idassert_sb.sb_method
119 #define idassert_sasl_mech      idassert_sb.sb_saslmech
120 #define idassert_sasl_realm     idassert_sb.sb_realm
121 #define idassert_secprops       idassert_sb.sb_secprops
122
123         unsigned        idassert_flags;
124 #define LDAP_BACK_AUTH_NONE             0x00U
125 #define LDAP_BACK_AUTH_NATIVE_AUTHZ     0x01U
126 #define LDAP_BACK_AUTH_OVERRIDE         0x02U
127 #define LDAP_BACK_AUTH_PRESCRIPTIVE     0x04U
128
129         BerVarray       idassert_authz;
130         /* end of ID assert stuff */
131
132         int             nretries;
133 #define LDAP_BACK_RETRY_UNDEFINED       (-2)
134 #define LDAP_BACK_RETRY_FOREVER         (-1)
135 #define LDAP_BACK_RETRY_NEVER           (0)
136 #define LDAP_BACK_RETRY_DEFAULT         (3)
137
138         ldap_pvt_thread_mutex_t         conn_mutex;
139         unsigned        flags;
140 #define LDAP_BACK_F_NONE                0x00U
141 #define LDAP_BACK_F_SAVECRED            0x01U
142 #define LDAP_BACK_F_USE_TLS             0x02U
143 #define LDAP_BACK_F_PROPAGATE_TLS       0x04U
144 #define LDAP_BACK_F_TLS_CRITICAL        0x08U
145 #define LDAP_BACK_F_TLS_USE_MASK        (LDAP_BACK_F_USE_TLS|LDAP_BACK_F_TLS_CRITICAL)
146 #define LDAP_BACK_F_TLS_PROPAGATE_MASK  (LDAP_BACK_F_PROPAGATE_TLS|LDAP_BACK_F_TLS_CRITICAL)
147 #define LDAP_BACK_F_TLS_MASK            (LDAP_BACK_F_TLS_USE_MASK|LDAP_BACK_F_TLS_PROPAGATE_MASK)
148 #define LDAP_BACK_F_CHASE_REFERRALS     0x10U
149 #define LDAP_BACK_F_PROXY_WHOAMI        0x20U
150
151 #define LDAP_BACK_F_SUPPORT_T_F                 0x80U
152 #define LDAP_BACK_F_SUPPORT_T_F_DISCOVER        0x40U
153 #define LDAP_BACK_F_SUPPORT_T_F_MASK            (LDAP_BACK_F_SUPPORT_T_F|LDAP_BACK_F_SUPPORT_T_F_DISCOVER)
154
155 #define LDAP_BACK_SAVECRED(li)          ( (li)->flags & LDAP_BACK_F_SAVECRED )
156 #define LDAP_BACK_USE_TLS(li)           ( (li)->flags & LDAP_BACK_F_USE_TLS )
157 #define LDAP_BACK_PROPAGATE_TLS(li)     ( (li)->flags & LDAP_BACK_F_PROPAGATE_TLS )
158 #define LDAP_BACK_TLS_CRITICAL(li)      ( (li)->flags & LDAP_BACK_F_TLS_CRITICAL )
159 #define LDAP_BACK_CHASE_REFERRALS(li)   ( (li)->flags & LDAP_BACK_F_CHASE_REFERRALS )
160
161         int             version;
162
163         Avlnode         *conntree;
164
165         int             rwm_started;
166 };
167
168 typedef enum ldap_back_send_t {
169         LDAP_BACK_DONTSEND              = 0x00,
170         LDAP_BACK_SENDOK                = 0x01,
171         LDAP_BACK_SENDERR               = 0x02,
172         LDAP_BACK_SENDRESULT            = (LDAP_BACK_SENDOK|LDAP_BACK_SENDERR)
173 } ldap_back_send_t;
174
175 /* define to use asynchronous StartTLS */
176 #define SLAP_STARTTLS_ASYNCHRONOUS
177
178 /* timeout to use when calling ldap_result() */
179 #define LDAP_BACK_RESULT_TIMEOUT        (0)
180 #define LDAP_BACK_RESULT_UTIMEOUT       (100000)
181 #define LDAP_BACK_TV_SET(tv) \
182         do { \
183                 (tv)->tv_sec = LDAP_BACK_RESULT_TIMEOUT; \
184                 (tv)->tv_usec = LDAP_BACK_RESULT_UTIMEOUT; \
185         } while ( 0 )
186
187 LDAP_END_DECL
188
189 #include "proto-ldap.h"
190
191 #endif /* SLAPD_LDAP_H */