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