]> git.sur5r.net Git - openldap/blob - servers/slapd/back-meta/bind.c
219e8b96d766db25e8f24ba05af58fab5133f9ea
[openldap] / servers / slapd / back-meta / bind.c
1 /*
2  * Copyright 1998-2001 The OpenLDAP Foundation, All Rights Reserved.
3  * COPYING RESTRICTIONS APPLY, see COPYRIGHT file
4  *
5  * Copyright 2001, Pierangelo Masarati, All rights reserved. <ando@sys-net.it>
6  *
7  * This work has been developed to fulfill the requirements
8  * of SysNet s.n.c. <http:www.sys-net.it> and it has been donated
9  * to the OpenLDAP Foundation in the hope that it may be useful
10  * to the Open Source community, but WITHOUT ANY WARRANTY.
11  *
12  * Permission is granted to anyone to use this software for any purpose
13  * on any computer system, and to alter it and redistribute it, subject
14  * to the following restrictions:
15  *
16  * 1. The author and SysNet s.n.c. are not responsible for the consequences
17  *    of use of this software, no matter how awful, even if they arise from 
18  *    flaws in it.
19  *
20  * 2. The origin of this software must not be misrepresented, either by
21  *    explicit claim or by omission.  Since few users ever read sources,
22  *    credits should appear in the documentation.
23  *
24  * 3. Altered versions must be plainly marked as such, and must not be
25  *    misrepresented as being the original software.  Since few users
26  *    ever read sources, credits should appear in the documentation.
27  *    SysNet s.n.c. cannot be responsible for the consequences of the
28  *    alterations.
29  *
30  * 4. This notice may not be removed or altered.
31  *
32  *
33  * This software is based on the backend back-ldap, implemented
34  * by Howard Chu <hyc@highlandsun.com>, and modified by Mark Valence
35  * <kurash@sassafras.com>, Pierangelo Masarati <ando@sys-net.it> and other
36  * contributors. The contribution of the original software to the present
37  * implementation is acknowledged in this copyright statement.
38  *
39  * A special acknowledgement goes to Howard for the overall architecture
40  * (and for borrowing large pieces of code), and to Mark, who implemented
41  * from scratch the attribute/objectclass mapping.
42  *
43  * The original copyright statement follows.
44  *
45  * Copyright 1999, Howard Chu, All rights reserved. <hyc@highlandsun.com>
46  *
47  * Permission is granted to anyone to use this software for any purpose
48  * on any computer system, and to alter it and redistribute it, subject
49  * to the following restrictions:
50  *
51  * 1. The author is not responsible for the consequences of use of this
52  *    software, no matter how awful, even if they arise from flaws in it.
53  *
54  * 2. The origin of this software must not be misrepresented, either by
55  *    explicit claim or by omission.  Since few users ever read sources,
56  *    credits should appear in the documentation.
57  *
58  * 3. Altered versions must be plainly marked as such, and must not be
59  *    misrepresented as being the original software.  Since few users
60  *    ever read sources, credits should appear in the
61  *    documentation.
62  *
63  * 4. This notice may not be removed or altered.
64  *
65  */
66
67 #include "portable.h"
68
69 #include <stdio.h>
70
71 #include <ac/socket.h>
72 #include <ac/string.h>
73
74
75 #define AVL_INTERNAL
76 #include "slap.h"
77 #include "../back-ldap/back-ldap.h"
78 #include "back-meta.h"
79
80 int
81 meta_back_bind(
82                 Backend         *be,
83                 Connection      *conn,
84                 Operation       *op,
85                 const char      *dn,
86                 const char      *ndn,
87                 int             method,
88                 struct berval   *cred,
89                 char            **edn
90 )
91 {
92         struct metainfo *li = ( struct metainfo * )be->be_private;
93         struct metaconn *lc;
94
95         int rc = -1, i, gotit = 0, ndnlen, err = LDAP_SUCCESS;
96
97 #ifdef NEW_LOGGING
98         LDAP_LOG(( "backend", LDAP_LEVEL_ENTRY,
99                                 "meta_back_bind: dn: %s.\n", dn ));
100 #else /* !NEW_LOGGING */
101         Debug( LDAP_DEBUG_ARGS, "meta_back_bind: dn: %s.\n%s%s", dn, "", "" );
102 #endif /* !NEW_LOGGING */
103
104         *edn = NULL;
105
106         lc = meta_back_getconn( li, conn, op, META_OP_ALLOW_MULTIPLE,
107                         ndn, NULL );
108         if ( !lc ) {
109 #ifdef NEW_LOGGING
110                 LDAP_LOG(( "backend", LDAP_LEVEL_NOTICE,
111                                 "meta_back_bind: no target for dn %s.\n", dn ));
112 #else /* !NEW_LOGGING */
113                 Debug( LDAP_DEBUG_ANY,
114                                 "meta_back_bind: no target for dn %s.\n%s%s",
115                                 dn, "", "");
116 #endif /* !NEW_LOGGING */
117                 return -1;
118         }
119
120         /*
121          * Each target is scanned ...
122          */
123         ndnlen = strlen( ndn );
124         for ( i = 0; i < li->ntargets; i++ ) {
125                 int lerr;
126
127                 /*
128                  * Skip non-candidates
129                  */
130                 if ( lc->conns[ i ]->candidate != META_CANDIDATE ) {
131                         continue;
132                 }
133
134                 if ( gotit == 0 ) {
135                         gotit = 1;
136                 } else {
137                         /*
138                          * A bind operation is expected to have
139                          * ONE CANDIDATE ONLY!
140                          */
141 #ifdef NEW_LOGGING
142                         LDAP_LOG(( "backend", LDAP_LEVEL_WARNING,
143 "==>meta_back_bind: more that one candidate is attempting to bind ...%s%s%s\n" ));
144 #else /* !NEW_LOGGING */
145                         Debug( LDAP_DEBUG_ANY,
146 "==>meta_back_bind: more that one candidate is attempting to bind ...%s%s%s\n", 
147                                 "", "", "" );
148 #endif /* !NEW_LOGGING */
149                 }
150
151
152                 lerr = meta_back_do_single_bind( op, li, lc, dn, ndn, cred,
153                                 method, i );
154                 if ( lerr != LDAP_SUCCESS ) {
155                         err = lerr;
156                         ( void )meta_clear_one_candidate( lc->conns[ i ], 1 );
157                 } else {
158                         rc = LDAP_SUCCESS;
159                 }
160         }
161
162         if ( rc != LDAP_SUCCESS && err != LDAP_SUCCESS ) {
163                 
164                 /*
165                  * deal with bind failure ...
166                  */
167                 err = ldap_back_map_result( err );
168                 send_ldap_result( conn, op, err, NULL, "", NULL, NULL );
169         }
170
171         return LDAP_SUCCESS;
172 }
173
174 /*
175  * meta_back_do_single_bind
176  *
177  * attempts to perform a bind with creds
178  */
179 int
180 meta_back_do_single_bind(
181                 Operation               *op,
182                 struct metainfo         *li,
183                 struct metaconn         *lc,
184                 const char              *dn,
185                 const char              *ndn,
186                 struct berval           *cred,
187                 int                     method,
188                 int                     candidate
189 )
190 {
191         char *mdn = NULL;
192         int rc;
193         
194         /*
195          * Rewrite the bind dn if needed
196          */
197         switch ( rewrite_session( li->targets[ candidate ]->rwinfo,
198                                 "bindDn", dn, lc->conn, &mdn ) ) {
199         case REWRITE_REGEXEC_OK:
200                 if ( mdn == NULL ) {
201                         mdn = ( char * )dn;
202                 }
203                 Debug( LDAP_DEBUG_ARGS,
204                                 "rw> bindDn: \"%s\" -> \"%s\"\n%s",
205                                 dn, mdn, "" );
206                 break;
207                 
208         case REWRITE_REGEXEC_UNWILLING:
209                 send_ldap_result( lc->conn, op, LDAP_UNWILLING_TO_PERFORM,
210                                 NULL, "Unwilling to perform",
211                                 NULL, NULL );
212                 /* continues to next case */
213
214         case REWRITE_REGEXEC_ERR:
215                 return -1;
216         }
217
218         rc = ldap_bind_s( lc->conns[ candidate ]->ld, mdn,
219                         cred->bv_val, method );
220         if ( rc != LDAP_SUCCESS ) {
221                 rc = ldap_back_map_result( rc );
222         } else {
223                 lc->conns[ candidate ]->bound_dn = ch_strdup( dn );
224                 lc->conns[ candidate ]->bound = META_BOUND;
225                 lc->bound_target = candidate;
226
227                 if ( li->cache.ttl != META_DNCACHE_DISABLED
228                                 && ndn[ 0 ] != '\0' ) {
229                         ( void )meta_dncache_update_entry( &li->cache,
230                                         ch_strdup( ndn ), candidate );
231                 }
232         }
233         
234         if ( mdn != dn ) {
235                 free( mdn );
236         }
237
238         return rc;
239 }
240
241 /*
242  * meta_back_dobind
243  */
244 int
245 meta_back_dobind( struct metaconn *lc, Operation *op )
246 {
247         struct metasingleconn **lsc;
248         int bound = 0, i;
249
250         for ( i = 0, lsc = lc->conns; lsc[ 0 ] != NULL; ++i, ++lsc ) {
251                 int rc;
252
253                 /*
254                  * Not a candidate or something wrong with this target ...
255                  */
256                 if ( lsc[ 0 ]->ld == NULL ) {
257                         continue;
258                 }
259
260                 /*
261                  * If the target is already bound it is skipped
262                  */
263                 if ( lsc[ 0 ]->bound == META_BOUND && lc->bound_target == i ) {
264                         ++bound;
265                         continue;
266                 }
267
268                 /*
269                  * Otherwise an anonymous bind is performed
270                  * (note: if the target was already bound, the anonymous
271                  * bind clears the previous bind).
272                  */
273                 rc = ldap_bind_s( lsc[ 0 ]->ld, lsc[ 0 ]->bound_dn,
274                                 NULL, LDAP_AUTH_SIMPLE );
275                 if ( rc != LDAP_SUCCESS ) {
276                         
277                         /*
278                          * This way, the first bind error would be fatal ...
279                          */
280                         Debug( LDAP_DEBUG_ANY,
281         "==>meta_back_dobind: (anonymous) bind as \"%s\" failed"
282         " with error \"%s\"\n%s",
283                                 lsc[ 0 ]->bound_dn,
284                                 ldap_err2string( rc ), "" );
285
286                         /*
287                          * null cred bind should always succeed
288                          * as anonymous, so a failure means
289                          * the target is no longer candidate possibly
290                          * due to technical reasons (remote host down?)
291                          *
292                          * so better clear the handle
293                          */
294                         ( void )meta_clear_one_candidate( lsc[ 0 ], 1 );
295                         continue;
296                 } /* else */
297                 
298                 lsc[ 0 ]->bound = META_ANONYMOUS;
299                 ++bound;
300         }
301
302         return( bound > 0 );
303 }
304
305 /*
306  * FIXME: error return must be handled in a cleaner way ...
307  */
308 int
309 meta_back_op_result( struct metaconn *lc, Operation *op )
310 {
311         int i, err = LDAP_SUCCESS;
312         char *msg = NULL;
313         char *match = NULL;
314         struct metasingleconn **lsc;
315
316         for ( i = 0, lsc = lc->conns; lsc[ 0 ] != NULL; ++i, ++lsc ) {
317                 ldap_get_option( lsc[ 0 ]->ld, LDAP_OPT_ERROR_NUMBER, &err );
318                 if ( err != LDAP_SUCCESS ) {
319                         /*
320                          * better check the type of error. In some cases
321                          * (search ?) it might be better to return a
322                          * success if at least one of the targets gave
323                          * positive result ...
324                          */
325                         ldap_get_option( lsc[ 0 ]->ld,
326                                         LDAP_OPT_ERROR_STRING, &msg );
327                         ldap_get_option( lsc[ 0 ]->ld,
328                                         LDAP_OPT_MATCHED_DN, &match );
329                         err = ldap_back_map_result( err );
330
331                         /*
332                          * FIXME: need to rewrite "match"
333                          */
334                         send_ldap_result( lc->conn, op, err, match, msg,
335                                         NULL, NULL );
336                         
337                         Debug(LDAP_DEBUG_ANY,
338 "==> meta_back_op_result: target <%d> sending msg \"%s\" (matched \"%s\")\n", 
339                                 i,
340                                 ( msg ? msg : "" ),
341                                 ( match ? match : "" ) );
342
343                         /* better test the pointers before freeing? */
344                         if ( match ) {
345                                 free( match );
346                         }
347                         if ( msg ) {
348                                 free( msg );
349                         }
350                         return -1;
351                 }
352         }
353
354         return ( err == LDAP_SUCCESS ) ? 0 : -1;
355 }
356