]> git.sur5r.net Git - openldap/blob - servers/slapd/back-meta/bind.c
fix log message (ITS#2359)
[openldap] / servers / slapd / back-meta / bind.c
1 /*
2  * Copyright 1998-2003 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 static LDAP_REBIND_PROC meta_back_rebind;
81
82 static int
83 meta_back_do_single_bind(
84                 struct metainfo         *li,
85                 struct metaconn         *lc,
86                 Operation               *op,
87                 struct berval           *dn,
88                 struct berval           *ndn,
89                 struct berval           *cred,
90                 int                     method,
91                 int                     candidate
92 );
93
94 int
95 meta_back_bind(
96                 Backend         *be,
97                 Connection      *conn,
98                 Operation       *op,
99                 struct berval   *dn,
100                 struct berval   *ndn,
101                 int             method,
102                 struct berval   *cred,
103                 struct berval   *edn
104 )
105 {
106         struct metainfo *li = ( struct metainfo * )be->be_private;
107         struct metaconn *lc;
108
109         int rc = -1, i, gotit = 0, ndnlen, isroot = 0;
110         int op_type = META_OP_ALLOW_MULTIPLE;
111         int err = LDAP_SUCCESS;
112
113         struct berval *realdn = dn;
114         struct berval *realndn = ndn;
115         struct berval *realcred = cred;
116         int realmethod = method;
117
118 #ifdef NEW_LOGGING
119         LDAP_LOG( BACK_META, ENTRY,
120                         "meta_back_bind: dn: %s.\n", dn->bv_val, 0, 0 );
121 #else /* !NEW_LOGGING */
122         Debug( LDAP_DEBUG_ARGS, "meta_back_bind: dn: %s.\n%s%s", dn->bv_val, "", "" );
123 #endif /* !NEW_LOGGING */
124
125         if ( method == LDAP_AUTH_SIMPLE 
126                         && be_isroot_pw( be, conn, ndn, cred ) ) {
127                 isroot = 1;
128                 ber_dupbv( edn, be_root_dn( be ) );
129                 op_type = META_OP_REQUIRE_ALL;
130         }
131         lc = meta_back_getconn( li, conn, op, op_type, ndn, NULL );
132         if ( !lc ) {
133 #ifdef NEW_LOGGING
134                 LDAP_LOG( BACK_META, NOTICE,
135                                 "meta_back_bind: no target for dn %s.\n", dn->bv_val, 0, 0 );
136 #else /* !NEW_LOGGING */
137                 Debug( LDAP_DEBUG_ANY,
138                                 "meta_back_bind: no target for dn %s.\n%s%s",
139                                 dn->bv_val, "", "");
140 #endif /* !NEW_LOGGING */
141                 send_ldap_result( conn, op, LDAP_OTHER, 
142                                 NULL, NULL, NULL, NULL );
143                 return -1;
144         }
145
146         /*
147          * Each target is scanned ...
148          */
149         lc->bound_target = META_BOUND_NONE;
150         ndnlen = ndn->bv_len;
151         for ( i = 0; i < li->ntargets; i++ ) {
152                 int lerr;
153
154                 /*
155                  * Skip non-candidates
156                  */
157                 if ( lc->conns[ i ].candidate != META_CANDIDATE ) {
158                         continue;
159                 }
160
161                 if ( gotit == 0 ) {
162                         gotit = 1;
163                 } else {
164                         /*
165                          * A bind operation is expected to have
166                          * ONE CANDIDATE ONLY!
167                          */
168 #ifdef NEW_LOGGING
169                         LDAP_LOG( BACK_META, WARNING,
170                                         "==>meta_back_bind: more than one"
171                                         " candidate is attempting to bind"
172                                         " ...\n" , 0, 0, 0 );
173 #else /* !NEW_LOGGING */
174                         Debug( LDAP_DEBUG_ANY,
175                                         "==>meta_back_bind: more than one"
176                                         " candidate is attempting to bind"
177                                         " ...\n%s%s%s", 
178                                         "", "", "" );
179 #endif /* !NEW_LOGGING */
180                 }
181
182                 if ( isroot && li->targets[ i ]->pseudorootdn.bv_val != NULL ) {
183                         realdn = &li->targets[ i ]->pseudorootdn;
184                         realndn = &li->targets[ i ]->pseudorootdn;
185                         realcred = &li->targets[ i ]->pseudorootpw;
186                         realmethod = LDAP_AUTH_SIMPLE;
187                 } else {
188                         realdn = dn;
189                         realndn = ndn;
190                         realcred = cred;
191                         realmethod = method;
192                 }
193                 
194                 lerr = meta_back_do_single_bind( li, lc, op,
195                                 realdn, realndn, realcred, realmethod, i );
196                 if ( lerr != LDAP_SUCCESS ) {
197                         err = lerr;
198                         ( void )meta_clear_one_candidate( &lc->conns[ i ], 1 );
199                 } else {
200                         rc = LDAP_SUCCESS;
201                 }
202         }
203
204         if ( isroot ) {
205                 lc->bound_target = META_BOUND_ALL;
206         }
207
208         /*
209          * rc is LDAP_SUCCESS if at least one bind succeeded,
210          * err is the last error that occurred during a bind;
211          * if at least (and at most?) one bind succeedes, fine.
212          */
213         if ( rc != LDAP_SUCCESS /* && err != LDAP_SUCCESS */ ) {
214                 
215                 /*
216                  * deal with bind failure ...
217                  */
218
219                 /*
220                  * no target was found within the naming context, 
221                  * so bind must fail with invalid credentials
222                  */
223                 if ( err == LDAP_SUCCESS && gotit == 0 ) {
224                         err = LDAP_INVALID_CREDENTIALS;
225                 }
226
227                 err = ldap_back_map_result( err );
228                 send_ldap_result( conn, op, err, NULL, NULL, NULL, NULL );
229                 return -1;
230         }
231
232         return 0;
233 }
234
235 /*
236  * meta_back_do_single_bind
237  *
238  * attempts to perform a bind with creds
239  */
240 static int
241 meta_back_do_single_bind(
242                 struct metainfo         *li,
243                 struct metaconn         *lc,
244                 Operation               *op,
245                 struct berval           *dn,
246                 struct berval           *ndn,
247                 struct berval           *cred,
248                 int                     method,
249                 int                     candidate
250 )
251 {
252         struct berval mdn = { 0, NULL };
253         int rc;
254         
255         /*
256          * Rewrite the bind dn if needed
257          */
258         switch ( rewrite_session( li->targets[ candidate ]->rwinfo,
259                                 "bindDn", dn->bv_val, lc->conn, &mdn.bv_val ) ) {
260         case REWRITE_REGEXEC_OK:
261                 if ( mdn.bv_val == NULL ) {
262                         mdn = *dn;
263                 }
264 #ifdef NEW_LOGGING
265                 LDAP_LOG( BACK_META, DETAIL1,
266                                 "[rw] bindDn: \"%s\" -> \"%s\"\n", dn->bv_val, mdn.bv_val, 0 );
267 #else /* !NEW_LOGGING */
268                 Debug( LDAP_DEBUG_ARGS,
269                                 "rw> bindDn: \"%s\" -> \"%s\"\n%s",
270                                 dn->bv_val, mdn.bv_val, "" );
271 #endif /* !NEW_LOGGING */
272                 break;
273                 
274         case REWRITE_REGEXEC_UNWILLING:
275                 return LDAP_UNWILLING_TO_PERFORM;
276
277         case REWRITE_REGEXEC_ERR:
278                 return LDAP_OTHER;
279         }
280
281         if ( op->o_ctrls ) {
282                 rc = ldap_set_option( lc->conns[ candidate ].ld, 
283                                 LDAP_OPT_SERVER_CONTROLS, op->o_ctrls );
284                 if ( rc != LDAP_SUCCESS ) {
285                         rc = ldap_back_map_result( rc );
286                         goto return_results;
287                 }
288         }
289         
290         rc = ldap_bind_s( lc->conns[ candidate ].ld, mdn.bv_val, cred->bv_val, method );
291         if ( rc != LDAP_SUCCESS ) {
292                 rc = ldap_back_map_result( rc );
293         } else {
294                 ber_dupbv( &lc->conns[ candidate ].bound_dn, dn );
295                 lc->conns[ candidate ].bound = META_BOUND;
296                 lc->bound_target = candidate;
297
298                 if ( li->savecred ) {
299                         if ( lc->conns[ candidate ].cred.bv_val )
300                                 ch_free( lc->conns[ candidate ].cred.bv_val );
301                         ber_dupbv( &lc->conns[ candidate ].cred, cred );
302                         ldap_set_rebind_proc( lc->conns[ candidate ].ld, 
303                                         meta_back_rebind, 
304                                         &lc->conns[ candidate ] );
305                 }
306
307                 if ( li->cache.ttl != META_DNCACHE_DISABLED
308                                 && ndn->bv_len != 0 ) {
309                         ( void )meta_dncache_update_entry( &li->cache,
310                                         ndn, candidate );
311                 }
312         }
313
314 return_results:;
315         
316         if ( mdn.bv_val != dn->bv_val ) {
317                 free( mdn.bv_val );
318         }
319
320         return rc;
321 }
322
323 /*
324  * meta_back_dobind
325  */
326 int
327 meta_back_dobind( struct metaconn *lc, Operation *op )
328 {
329         struct metasingleconn *lsc;
330         int bound = 0, i;
331
332         /*
333          * all the targets are bound as pseudoroot
334          */
335         if ( lc->bound_target == META_BOUND_ALL ) {
336                 return 1;
337         }
338
339         for ( i = 0, lsc = lc->conns; !META_LAST(lsc); ++i, ++lsc ) {
340                 int rc;
341
342                 /*
343                  * Not a candidate or something wrong with this target ...
344                  */
345                 if ( lsc->ld == NULL ) {
346                         continue;
347                 }
348
349                 /*
350                  * If required, set controls
351                  */
352                 if ( op->o_ctrls ) {
353                         if ( ldap_set_option( lsc->ld, LDAP_OPT_SERVER_CONTROLS,
354                                         op->o_ctrls ) != LDAP_SUCCESS ) {
355                                 ( void )meta_clear_one_candidate( lsc, 1 );
356                                 continue;
357                         }
358                 }
359         
360                 /*
361                  * If the target is already bound it is skipped
362                  */
363                 if ( lsc->bound == META_BOUND && lc->bound_target == i ) {
364                         ++bound;
365                         continue;
366                 }
367
368                 /*
369                  * Otherwise an anonymous bind is performed
370                  * (note: if the target was already bound, the anonymous
371                  * bind clears the previous bind).
372                  */
373                 if ( lsc->bound_dn.bv_val ) {
374                         ch_free( lsc->bound_dn.bv_val );
375                         lsc->bound_dn.bv_val = NULL;
376                         lsc->bound_dn.bv_len = 0;
377                 }
378                 
379
380                 rc = ldap_bind_s( lsc->ld, 0, NULL, LDAP_AUTH_SIMPLE );
381                 if ( rc != LDAP_SUCCESS ) {
382                         
383 #ifdef NEW_LOGGING
384                         LDAP_LOG( BACK_META, WARNING,
385                                         "meta_back_dobind: (anonymous)"
386                                         " bind failed"
387                                         " with error %d (%s)\n",
388                                         rc, ldap_err2string( rc ), 0 );
389 #else /* !NEW_LOGGING */
390                         Debug( LDAP_DEBUG_ANY,
391                                         "==>meta_back_dobind: (anonymous)"
392                                         " bind failed"
393                                         " with error %d (%s)\n",
394                                         rc, ldap_err2string( rc ), 0 );
395 #endif /* !NEW_LOGGING */
396
397                         /*
398                          * null cred bind should always succeed
399                          * as anonymous, so a failure means
400                          * the target is no longer candidate possibly
401                          * due to technical reasons (remote host down?)
402                          * so better clear the handle
403                          */
404                         ( void )meta_clear_one_candidate( lsc, 1 );
405                         continue;
406                 } /* else */
407                 
408                 lsc->bound = META_ANONYMOUS;
409                 ++bound;
410         }
411
412         return( bound > 0 );
413 }
414
415 /*
416  *
417  */
418 int
419 meta_back_is_valid( struct metaconn *lc, int candidate )
420 {
421         struct metasingleconn   *lsc;
422         int                     i;
423
424         assert( lc );
425
426         if ( candidate < 0 ) {
427                 return 0;
428         }
429
430         for ( i = 0, lsc = lc->conns; !META_LAST(lsc) && i < candidate; 
431                         ++i, ++lsc );
432         
433         if ( !META_LAST(lsc) ) {
434                 return( lsc->ld != NULL );
435         }
436
437         return 0;
438 }
439
440 /*
441  * meta_back_rebind
442  *
443  * This is a callback used for chasing referrals using the same
444  * credentials as the original user on this session.
445  */
446 static int 
447 meta_back_rebind( LDAP *ld, LDAP_CONST char *url, ber_tag_t request,
448         ber_int_t msgid, void *params )
449 {
450         struct metasingleconn *lc = params;
451
452         return ldap_bind_s( ld, lc->bound_dn.bv_val, lc->cred.bv_val, LDAP_AUTH_SIMPLE );
453 }
454
455 /*
456  * FIXME: error return must be handled in a cleaner way ...
457  */
458 int
459 meta_back_op_result( struct metaconn *lc, Operation *op )
460 {
461         int i, rerr = LDAP_SUCCESS;
462         struct metasingleconn *lsc;
463         char *rmsg = NULL;
464         char *rmatch = NULL;
465
466         for ( i = 0, lsc = lc->conns; !META_LAST(lsc); ++i, ++lsc ) {
467                 int err = LDAP_SUCCESS;
468                 char *msg = NULL;
469                 char *match = NULL;
470
471                 ldap_get_option( lsc->ld, LDAP_OPT_ERROR_NUMBER, &err );
472                 if ( err != LDAP_SUCCESS ) {
473                         /*
474                          * better check the type of error. In some cases
475                          * (search ?) it might be better to return a
476                          * success if at least one of the targets gave
477                          * positive result ...
478                          */
479                         ldap_get_option( lsc->ld,
480                                         LDAP_OPT_ERROR_STRING, &msg );
481                         ldap_get_option( lsc->ld,
482                                         LDAP_OPT_MATCHED_DN, &match );
483                         err = ldap_back_map_result( err );
484
485 #ifdef NEW_LOGGING
486                         LDAP_LOG( BACK_META, RESULTS,
487                                         "meta_back_op_result: target"
488                                         " <%d> sending msg \"%s\""
489                                         " (matched \"%s\")\n",
490                                         i, ( msg ? msg : "" ),
491                                         ( match ? match : "" ) );
492 #else /* !NEW_LOGGING */
493                         Debug(LDAP_DEBUG_ANY,
494                                         "==> meta_back_op_result: target"
495                                         " <%d> sending msg \"%s\""
496                                         " (matched \"%s\")\n", 
497                                         i, ( msg ? msg : "" ),
498                                         ( match ? match : "" ) );
499 #endif /* !NEW_LOGGING */
500
501                         /*
502                          * FIXME: need to rewrite "match" (need rwinfo)
503                          */
504                         switch ( err ) {
505                         default:
506                                 rerr = err;
507                                 rmsg = msg;
508                                 msg = NULL;
509                                 rmatch = match;
510                                 match = NULL;
511                                 break;
512                         }
513
514                         /* better test the pointers before freeing? */
515                         if ( match ) {
516                                 free( match );
517                         }
518                         if ( msg ) {
519                                 free( msg );
520                         }
521                 }
522         }
523
524         send_ldap_result( lc->conn, op, rerr, rmatch, rmsg, NULL, NULL );
525
526         return ( ( rerr == LDAP_SUCCESS ) ? 0 : -1 );
527 }
528