]> git.sur5r.net Git - openldap/blob - servers/slapd/back-meta/bind.c
conversion to berval DN
[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                 struct berval   *dn,
86                 struct berval   *ndn,
87                 int             method,
88                 struct berval   *cred,
89                 struct berval   *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, isroot = 0;
96         int op_type = META_OP_ALLOW_MULTIPLE;
97         int err = LDAP_SUCCESS;
98
99         struct berval *realdn = dn;
100         struct berval *realndn = ndn;
101         struct berval *realcred = cred;
102         int realmethod = method;
103
104 #ifdef NEW_LOGGING
105         LDAP_LOG(( "backend", LDAP_LEVEL_ENTRY,
106                         "meta_back_bind: dn: %s.\n", dn->bv_val ));
107 #else /* !NEW_LOGGING */
108         Debug( LDAP_DEBUG_ARGS, "meta_back_bind: dn: %s.\n%s%s", dn->bv_val, "", "" );
109 #endif /* !NEW_LOGGING */
110
111         if ( method == LDAP_AUTH_SIMPLE 
112                         && be_isroot_pw( be, conn, ndn, cred ) ) {
113                 isroot = 1;
114                 ber_dupbv( edn, be_root_dn( be ) );
115                 op_type = META_OP_REQUIRE_ALL;
116         }
117         lc = meta_back_getconn( li, conn, op, op_type, ndn, NULL );
118         if ( !lc ) {
119 #ifdef NEW_LOGGING
120                 LDAP_LOG(( "backend", LDAP_LEVEL_NOTICE,
121                                 "meta_back_bind: no target for dn %s.\n",
122                                 dn->bv_val ));
123 #else /* !NEW_LOGGING */
124                 Debug( LDAP_DEBUG_ANY,
125                                 "meta_back_bind: no target for dn %s.\n%s%s",
126                                 dn->bv_val, "", "");
127 #endif /* !NEW_LOGGING */
128                 send_ldap_result( conn, op, LDAP_OPERATIONS_ERROR, 
129                                 NULL, NULL, NULL, NULL );
130                 return -1;
131         }
132
133         /*
134          * Each target is scanned ...
135          */
136         lc->bound_target = META_BOUND_NONE;
137         ndnlen = ndn->bv_len;
138         for ( i = 0; i < li->ntargets; i++ ) {
139                 int lerr;
140
141                 /*
142                  * Skip non-candidates
143                  */
144                 if ( lc->conns[ i ]->candidate != META_CANDIDATE ) {
145                         continue;
146                 }
147
148                 if ( gotit == 0 ) {
149                         gotit = 1;
150                 } else {
151                         /*
152                          * A bind operation is expected to have
153                          * ONE CANDIDATE ONLY!
154                          */
155 #ifdef NEW_LOGGING
156                         LDAP_LOG(( "backend", LDAP_LEVEL_WARNING,
157                                         "==>meta_back_bind: more than one"
158                                         " candidate is attempting to bind"
159                                         " ...\n" ));
160 #else /* !NEW_LOGGING */
161                         Debug( LDAP_DEBUG_ANY,
162                                         "==>meta_back_bind: more than one"
163                                         " candidate is attempting to bind"
164                                         " ...\n%s%s%s", 
165                                         "", "", "" );
166 #endif /* !NEW_LOGGING */
167                 }
168
169                 if ( isroot && li->targets[ i ]->pseudorootdn != NULL ) {
170                         realdn = li->targets[ i ]->pseudorootdn;
171                         realndn = li->targets[ i ]->pseudorootdn;
172                         realcred = li->targets[ i ]->pseudorootpw;
173                         realmethod = LDAP_AUTH_SIMPLE;
174                 }
175                 
176                 lerr = meta_back_do_single_bind( li, lc,
177                                 realdn, realndn, realcred, realmethod, i );
178                 if ( lerr != LDAP_SUCCESS ) {
179                         err = lerr;
180                         ( void )meta_clear_one_candidate( lc->conns[ i ], 1 );
181                 } else {
182                         rc = LDAP_SUCCESS;
183                 }
184         }
185
186         if ( isroot ) {
187                 lc->bound_target = META_BOUND_ALL;
188         }
189
190         /*
191          * rc is LDAP_SUCCESS if at least one bind succeeded,
192          * err is the last error that occurred during a bind;
193          * if at least (and at most?) one bind succeedes, fine.
194          */
195         if ( rc != LDAP_SUCCESS /* && err != LDAP_SUCCESS */ ) {
196                 
197                 /*
198                  * deal with bind failure ...
199                  */
200                 err = ldap_back_map_result( err );
201                 send_ldap_result( conn, op, err, NULL, NULL, NULL, NULL );
202                 return -1;
203         }
204
205         return 0;
206 }
207
208 /*
209  * meta_back_do_single_bind
210  *
211  * attempts to perform a bind with creds
212  */
213 int
214 meta_back_do_single_bind(
215                 struct metainfo         *li,
216                 struct metaconn         *lc,
217                 struct berval           *dn,
218                 struct berval           *ndn,
219                 struct berval           *cred,
220                 int                     method,
221                 int                     candidate
222 )
223 {
224         char *mdn = NULL;
225         int rc;
226         
227         /*
228          * Rewrite the bind dn if needed
229          */
230         switch ( rewrite_session( li->targets[ candidate ]->rwinfo,
231                                 "bindDn", dn->bv_val, lc->conn, &mdn ) ) {
232         case REWRITE_REGEXEC_OK:
233                 if ( mdn == NULL ) {
234                         mdn = ( char * )dn->bv_val;
235                 }
236 #ifdef NEW_LOGGING
237                 LDAP_LOG(( "backend", LDAP_LEVEL_DETAIL1,
238                                 "[rw] bindDn: \"%s\" -> \"%s\"\n", dn->bv_val, mdn ));
239 #else /* !NEW_LOGGING */
240                 Debug( LDAP_DEBUG_ARGS,
241                                 "rw> bindDn: \"%s\" -> \"%s\"\n%s",
242                                 dn->bv_val, mdn, "" );
243 #endif /* !NEW_LOGGING */
244                 break;
245                 
246         case REWRITE_REGEXEC_UNWILLING:
247                 return LDAP_UNWILLING_TO_PERFORM;
248
249         case REWRITE_REGEXEC_ERR:
250                 return LDAP_OPERATIONS_ERROR;
251         }
252
253         rc = ldap_bind_s( lc->conns[ candidate ]->ld, mdn, cred->bv_val, method );
254         if ( rc != LDAP_SUCCESS ) {
255                 rc = ldap_back_map_result( rc );
256         } else {
257                 lc->conns[ candidate ]->bound_dn = ber_bvdup( dn );
258                 lc->conns[ candidate ]->bound = META_BOUND;
259                 lc->bound_target = candidate;
260
261                 if ( li->cache.ttl != META_DNCACHE_DISABLED
262                                 && ndn->bv_len != 0 ) {
263                         ( void )meta_dncache_update_entry( &li->cache,
264                                         ber_bvdup( ndn ), candidate );
265                 }
266         }
267         
268         if ( mdn != dn->bv_val ) {
269                 free( mdn );
270         }
271
272         return rc;
273 }
274
275 /*
276  * meta_back_dobind
277  */
278 int
279 meta_back_dobind( struct metaconn *lc, Operation *op )
280 {
281         struct metasingleconn **lsc;
282         int bound = 0, i;
283
284         /*
285          * all the targets are bound as pseudoroot
286          */
287         if ( lc->bound_target == META_BOUND_ALL ) {
288                 return 1;
289         }
290
291         for ( i = 0, lsc = lc->conns; lsc[ 0 ] != NULL; ++i, ++lsc ) {
292                 int rc;
293
294                 /*
295                  * Not a candidate or something wrong with this target ...
296                  */
297                 if ( lsc[ 0 ]->ld == NULL ) {
298                         continue;
299                 }
300
301                 /*
302                  * If the target is already bound it is skipped
303                  */
304                 if ( lsc[ 0 ]->bound == META_BOUND && lc->bound_target == i ) {
305                         ++bound;
306                         continue;
307                 }
308
309                 /*
310                  * Otherwise an anonymous bind is performed
311                  * (note: if the target was already bound, the anonymous
312                  * bind clears the previous bind).
313                  */
314                 rc = ldap_bind_s( lsc[ 0 ]->ld, lsc[ 0 ]->bound_dn->bv_val,
315                                 NULL, LDAP_AUTH_SIMPLE );
316                 if ( rc != LDAP_SUCCESS ) {
317                         
318 #ifdef NEW_LOGGING
319                         LDAP_LOG(( "backend", LDAP_LEVEL_WARNING,
320                                         "meta_back_dobind: (anonymous)"
321                                         " bind as \"%s\" failed"
322                                         " with error \"%s\"\n",
323                                         lsc[ 0 ]->bound_dn->bv_val,
324                                         ldap_err2string( rc ) ));
325 #else /* !NEW_LOGGING */
326                         Debug( LDAP_DEBUG_ANY,
327                                         "==>meta_back_dobind: (anonymous)"
328                                         " bind as \"%s\" failed"
329                                         " with error \"%s\"\n%s",
330                                         lsc[ 0 ]->bound_dn->bv_val,
331                                         ldap_err2string( rc ), "" );
332 #endif /* !NEW_LOGGING */
333
334                         /*
335                          * null cred bind should always succeed
336                          * as anonymous, so a failure means
337                          * the target is no longer candidate possibly
338                          * due to technical reasons (remote host down?)
339                          * so better clear the handle
340                          */
341                         ( void )meta_clear_one_candidate( lsc[ 0 ], 1 );
342                         continue;
343                 } /* else */
344                 
345                 lsc[ 0 ]->bound = META_ANONYMOUS;
346                 ++bound;
347         }
348
349         return( bound > 0 );
350 }
351
352 /*
353  *
354  */
355 int
356 meta_back_is_valid( struct metaconn *lc, int candidate )
357 {
358         struct metasingleconn   **lsc;
359         int                     i;
360
361         assert( lc );
362
363         if ( candidate < 0 ) {
364                 return 0;
365         }
366
367         for ( i = 0, lsc = lc->conns; 
368                         lsc[ 0 ] != NULL && i < candidate; 
369                         ++i, ++lsc );
370         
371         if ( lsc[ 0 ] ) {
372                 return( lsc[ 0 ]->ld != NULL );
373         }
374
375         return 0;
376 }
377
378 /*
379  * FIXME: error return must be handled in a cleaner way ...
380  */
381 int
382 meta_back_op_result( struct metaconn *lc, Operation *op )
383 {
384         int i, rerr = LDAP_SUCCESS;
385         struct metasingleconn **lsc;
386         char *rmsg = NULL;
387         char *rmatch = NULL;
388
389         for ( i = 0, lsc = lc->conns; lsc[ 0 ] != NULL; ++i, ++lsc ) {
390                 int err = LDAP_SUCCESS;
391                 char *msg = NULL;
392                 char *match = NULL;
393
394                 ldap_get_option( lsc[ 0 ]->ld, LDAP_OPT_ERROR_NUMBER, &err );
395                 if ( err != LDAP_SUCCESS ) {
396                         /*
397                          * better check the type of error. In some cases
398                          * (search ?) it might be better to return a
399                          * success if at least one of the targets gave
400                          * positive result ...
401                          */
402                         ldap_get_option( lsc[ 0 ]->ld,
403                                         LDAP_OPT_ERROR_STRING, &msg );
404                         ldap_get_option( lsc[ 0 ]->ld,
405                                         LDAP_OPT_MATCHED_DN, &match );
406                         err = ldap_back_map_result( err );
407
408 #ifdef NEW_LOGGING
409                         LDAP_LOG(( "backend", LDAP_DEBUG_NOTICE,
410                                         "meta_back_op_result: target"
411                                         " <%d> sending msg \"%s\""
412                                         " (matched \"%s\")\n",
413                                         i, ( msg ? msg : "" ),
414                                         ( match ? match : "" ) ));
415 #else /* !NEW_LOGGING */
416                         Debug(LDAP_DEBUG_ANY,
417                                         "==> meta_back_op_result: target"
418                                         " <%d> sending msg \"%s\""
419                                         " (matched \"%s\")\n", 
420                                         i, ( msg ? msg : "" ),
421                                         ( match ? match : "" ) );
422 #endif /* !NEW_LOGGING */
423
424                         /*
425                          * FIXME: need to rewrite "match" (need rwinfo)
426                          */
427                         switch ( err ) {
428                         default:
429                                 rerr = err;
430                                 rmsg = msg;
431                                 msg = NULL;
432                                 rmatch = match;
433                                 match = NULL;
434                                 break;
435                         }
436
437                         /* better test the pointers before freeing? */
438                         if ( match ) {
439                                 free( match );
440                         }
441                         if ( msg ) {
442                                 free( msg );
443                         }
444                 }
445         }
446
447         send_ldap_result( lc->conn, op, rerr, rmatch, rmsg, NULL, NULL );
448
449         return ( ( rerr == LDAP_SUCCESS ) ? 0 : -1 );
450 }
451