]> git.sur5r.net Git - openldap/blob - servers/slapd/back-ldap/bind.c
141c8db487537283a70c3c4a279a690108ad0edf
[openldap] / servers / slapd / back-ldap / bind.c
1 /* bind.c - ldap backend bind function */
2 /* $OpenLDAP$ */
3 /*
4  * Copyright 1998-2003 The OpenLDAP Foundation, All Rights Reserved.
5  * COPYING RESTRICTIONS APPLY, see COPYRIGHT file
6  */
7 /* This is an altered version */
8 /*
9  * Copyright 1999, Howard Chu, All rights reserved. <hyc@highlandsun.com>
10  * 
11  * Permission is granted to anyone to use this software for any purpose
12  * on any computer system, and to alter it and redistribute it, subject
13  * to the following restrictions:
14  * 
15  * 1. The author is not responsible for the consequences of use of this
16  *    software, no matter how awful, even if they arise from flaws in it.
17  * 
18  * 2. The origin of this software must not be misrepresented, either by
19  *    explicit claim or by omission.  Since few users ever read sources,
20  *    credits should appear in the documentation.
21  * 
22  * 3. Altered versions must be plainly marked as such, and must not be
23  *    misrepresented as being the original software.  Since few users
24  *    ever read sources, credits should appear in the documentation.
25  * 
26  * 4. This notice may not be removed or altered.
27  *
28  *
29  *
30  * Copyright 2000, Pierangelo Masarati, All rights reserved. <ando@sys-net.it>
31  * 
32  * This software is being modified by Pierangelo Masarati.
33  * The previously reported conditions apply to the modified code as well.
34  * Changes in the original code are highlighted where required.
35  * Credits for the original code go to the author, Howard Chu.
36  */
37
38 #include "portable.h"
39
40 #include <stdio.h>
41
42 #include <ac/socket.h>
43 #include <ac/string.h>
44
45
46 #define AVL_INTERNAL
47 #include "slap.h"
48 #include "back-ldap.h"
49
50 #define PRINT_CONNTREE 0
51
52 static LDAP_REBIND_PROC ldap_back_rebind;
53
54 int
55 ldap_back_bind(
56     Operation           *op,
57     SlapReply           *rs )
58 {
59         struct ldapinfo *li = (struct ldapinfo *) op->o_bd->be_private;
60         struct ldapconn *lc;
61
62         struct berval mdn = { 0, NULL };
63         int rc = 0;
64         ber_int_t msgid;
65
66         lc = ldap_back_getconn(op, rs);
67         if ( !lc ) {
68                 return( -1 );
69         }
70
71         /*
72          * Rewrite the bind dn if needed
73          */
74 #ifdef ENABLE_REWRITE
75         switch ( rewrite_session( li->rwinfo, "bindDn",
76                                 op->o_req_dn.bv_val,
77                                 op->o_conn, &mdn.bv_val ) ) {
78         case REWRITE_REGEXEC_OK:
79                 if ( mdn.bv_val == NULL ) {
80                         mdn = op->o_req_dn;
81                 } else {
82                         mdn.bv_len = strlen( mdn.bv_val );
83                 }
84
85 #ifdef NEW_LOGGING
86                 LDAP_LOG( BACK_LDAP, DETAIL1, 
87                                 "[rw] bindDn: \"%s\" -> \"%s\"\n",
88                                 op->o_req_dn.bv_val, mdn.bv_val, 0 );
89 #else /* !NEW_LOGGING */
90                 Debug( LDAP_DEBUG_ARGS, "rw> bindDn: \"%s\" -> \"%s\"\n",
91                                 op->o_req_dn.bv_val, mdn.bv_val, 0 );
92 #endif /* !NEW_LOGGING */
93                 break;
94                 
95         case REWRITE_REGEXEC_UNWILLING:
96                 send_ldap_error( op, rs, LDAP_UNWILLING_TO_PERFORM,
97                                 "Operation not allowed" );
98                 return( -1 );
99
100         case REWRITE_REGEXEC_ERR:
101                 send_ldap_error( op, rs, LDAP_OTHER,
102                                 "Rewrite error" );
103                 return( -1 );
104         }
105 #else /* !ENABLE_REWRITE */
106         ldap_back_dn_massage( li, &op->o_req_dn, &mdn, 0, 1 );
107 #endif /* !ENABLE_REWRITE */
108
109         if ( lc->bound_dn.bv_val ) {
110                 ch_free( lc->bound_dn.bv_val );
111                 lc->bound_dn.bv_len = 0;
112                 lc->bound_dn.bv_val = NULL;
113         }
114         lc->bound = 0;
115         /* method is always LDAP_AUTH_SIMPLE if we got here */
116         rs->sr_err = ldap_sasl_bind(lc->ld, mdn.bv_val, LDAP_SASL_SIMPLE,
117                 &op->oq_bind.rb_cred, op->o_ctrls, NULL, &msgid);
118         rc = ldap_back_op_result( lc, op, rs, msgid, 1 );
119         if (rc == LDAP_SUCCESS) {
120                 lc->bound = 1;
121                 if ( mdn.bv_val != op->o_req_dn.bv_val ) {
122                         lc->bound_dn = mdn;
123                 } else {
124                         ber_dupbv( &lc->bound_dn, &op->o_req_dn );
125                 }
126                 if ( li->savecred ) {
127                         if ( lc->cred.bv_val )
128                                 ch_free( lc->cred.bv_val );
129                         ber_dupbv( &lc->cred, &op->oq_bind.rb_cred );
130                         ldap_set_rebind_proc( lc->ld, ldap_back_rebind, lc );
131                 }
132         }
133
134         /* must re-insert if local DN changed as result of bind */
135         if ( lc->bound && !bvmatch(&op->o_req_ndn, &lc->local_dn ) ) {
136                 int lerr;
137
138                 ldap_pvt_thread_mutex_lock( &li->conn_mutex );
139                 lc = avl_delete( &li->conntree, (caddr_t)lc,
140                                 ldap_back_conn_cmp );
141                 if ( lc->local_dn.bv_val )
142                         ch_free( lc->local_dn.bv_val );
143                 ber_dupbv( &lc->local_dn, &op->o_req_ndn );
144                 lerr = avl_insert( &li->conntree, (caddr_t)lc,
145                         ldap_back_conn_cmp, ldap_back_conn_dup );
146                 ldap_pvt_thread_mutex_unlock( &li->conn_mutex );
147                 if ( lerr == -1 ) {
148                         ldap_back_conn_free( lc );
149                 }
150         }
151
152         return( rc );
153 }
154
155 /*
156  * ldap_back_conn_cmp
157  *
158  * compares two struct ldapconn based on the value of the conn pointer;
159  * used by avl stuff
160  */
161 int
162 ldap_back_conn_cmp(
163         const void *c1,
164         const void *c2
165         )
166 {
167         const struct ldapconn *lc1 = (const struct ldapconn *)c1;
168         const struct ldapconn *lc2 = (const struct ldapconn *)c2;
169         int rc;
170         
171         /* If local DNs don't match, it is definitely not a match */
172         if ( ( rc = ber_bvcmp( &lc1->local_dn, &lc2->local_dn )) )
173                 return rc;
174
175         /* For shared sessions, conn is NULL. Only explicitly
176          * bound sessions will have non-NULL conn.
177          */
178         return lc1->conn - lc2->conn;
179 }
180
181 /*
182  * ldap_back_conn_dup
183  *
184  * returns -1 in case a duplicate struct ldapconn has been inserted;
185  * used by avl stuff
186  */
187 int
188 ldap_back_conn_dup(
189         void *c1,
190         void *c2
191         )
192 {
193         struct ldapconn *lc1 = (struct ldapconn *)c1;
194         struct ldapconn *lc2 = (struct ldapconn *)c2;
195
196         /* Cannot have more than one shared session with same DN */
197         if ( dn_match( &lc1->local_dn, &lc2->local_dn ) &&
198                  lc1->conn == lc2->conn ) return -1;
199                 
200         return 0;
201 }
202
203 #if PRINT_CONNTREE > 0
204 static void ravl_print( Avlnode *root, int depth )
205 {
206         int     i;
207         struct ldapconn *lc;
208         
209         if ( root == 0 )
210                 return;
211         
212         ravl_print( root->avl_right, depth+1 );
213         
214         for ( i = 0; i < depth; i++ )
215                 printf( "   " );
216
217         lc = root->avl_data;
218         printf( "lc(%lx) local(%s) conn(%lx) %d\n",
219                         lc, lc->local_dn.bv_val, lc->conn, root->avl_bf );
220         
221         ravl_print( root->avl_left, depth+1 );
222 }
223
224 static void myprint( Avlnode *root )
225 {
226         printf( "********\n" );
227         
228         if ( root == 0 )
229                 printf( "\tNULL\n" );
230
231         else
232                 ravl_print( root, 0 );
233         
234         printf( "********\n" );
235 }
236 #endif /* PRINT_CONNTREE */
237
238 struct ldapconn *
239 ldap_back_getconn(Operation *op, SlapReply *rs)
240 {
241         struct ldapinfo *li = (struct ldapinfo *)op->o_bd->be_private;
242         struct ldapconn *lc, lc_curr;
243         LDAP *ld;
244         int is_priv = 0;
245
246         /* Searches for a ldapconn in the avl tree */
247
248         /* Explicit binds must not be shared */
249         if ( op->o_tag == LDAP_REQ_BIND
250                 || (op->o_conn
251                   && (op->o_bd == op->o_conn->c_authz_backend ))) {
252                 lc_curr.conn = op->o_conn;
253         } else {
254                 lc_curr.conn = NULL;
255         }
256         
257         /* Internal searches are privileged and shared. So is root. */
258         if ( op->o_do_not_cache || be_isroot( li->be, &op->o_ndn ) ) {
259                 lc_curr.local_dn = li->be->be_rootndn;
260                 lc_curr.conn = NULL;
261                 is_priv = 1;
262         } else {
263                 lc_curr.local_dn = op->o_ndn;
264         }
265         ldap_pvt_thread_mutex_lock( &li->conn_mutex );
266         lc = (struct ldapconn *)avl_find( li->conntree, 
267                 (caddr_t)&lc_curr, ldap_back_conn_cmp );
268         ldap_pvt_thread_mutex_unlock( &li->conn_mutex );
269
270         /* Looks like we didn't get a bind. Open a new session... */
271         if (!lc) {
272                 int vers = op->o_conn->c_protocol;
273                 rs->sr_err = ldap_initialize(&ld, li->url);
274                 
275                 if (rs->sr_err != LDAP_SUCCESS) {
276                         rs->sr_err = ldap_back_map_result(rs);
277                         if (rs->sr_text == NULL) {
278                                 rs->sr_text = "ldap_initialize() failed";
279                         }
280                         send_ldap_result( op, rs );
281                         return( NULL );
282                 }
283                 /* Set LDAP version. This will always succeed: If the client
284                  * bound with a particular version, then so can we.
285                  */
286                 ldap_set_option(ld, LDAP_OPT_PROTOCOL_VERSION,
287                                 (const void *)&vers);
288                 /* FIXME: configurable? */
289                 ldap_set_option(ld, LDAP_OPT_REFERRALS, LDAP_OPT_ON);
290
291                 lc = (struct ldapconn *)ch_malloc(sizeof(struct ldapconn));
292                 lc->conn = lc_curr.conn;
293                 lc->ld = ld;
294                 ber_dupbv( &lc->local_dn, &lc_curr.local_dn );
295
296 #ifdef ENABLE_REWRITE
297                 /*
298                  * Sets a cookie for the rewrite session
299                  *
300                  * FIXME: the o_conn might be no longer valid,
301                  * since we may have different entries
302                  * for the same connection
303                  */
304                 ( void )rewrite_session_init( li->rwinfo, op->o_conn );
305 #endif /* ENABLE_REWRITE */
306
307                 ldap_pvt_thread_mutex_init( &lc->lc_mutex );
308
309                 if ( is_priv ) {
310                         ber_dupbv( &lc->cred, &li->bindpw );
311                         ber_dupbv( &lc->bound_dn, &li->binddn );
312                 } else {
313                         lc->cred.bv_len = 0;
314                         lc->cred.bv_val = NULL;
315                         if ( op->o_conn->c_dn.bv_len != 0 ) {
316                                 
317                                 /*
318                                  * Rewrite the bind dn if needed
319                                  */
320 #ifdef ENABLE_REWRITE                   
321                                 lc->bound_dn.bv_val = NULL;
322                                 lc->bound_dn.bv_len = 0;
323                                 switch ( rewrite_session( li->rwinfo, "bindDn",
324                                                         op->o_conn->c_dn.bv_val,
325                                                         op->o_conn,
326                                                         &lc->bound_dn.bv_val ) ) {
327                                 case REWRITE_REGEXEC_OK:
328                                         if ( lc->bound_dn.bv_val == NULL ) {
329                                                 ber_dupbv( &lc->bound_dn,
330                                                                 &op->o_conn->c_dn );
331                                         } else {
332                                                 lc->bound_dn.bv_len = strlen( lc->bound_dn.bv_val );
333                                         }
334 #ifdef NEW_LOGGING
335                                         LDAP_LOG( BACK_LDAP, DETAIL1, 
336                                                         "[rw] bindDn: \"%s\" ->" 
337                                                         " \"%s\"\n",
338                                                         op->o_conn->c_dn.bv_val, 
339                                                         lc->bound_dn.bv_val, 0 );
340 #else /* !NEW_LOGGING */
341                                         Debug( LDAP_DEBUG_ARGS,
342                                                         "rw> bindDn: \"%s\" ->"
343                                                         " \"%s\"\n",
344                                                         op->o_conn->c_dn.bv_val,
345                                                         lc->bound_dn.bv_val, 0 );
346 #endif /* !NEW_LOGGING */
347                                         break;
348                                         
349                                 case REWRITE_REGEXEC_UNWILLING:
350                                         send_ldap_error( op, rs,
351                                                         LDAP_UNWILLING_TO_PERFORM,
352                                                         "Operation not allowed" );
353                                         return( NULL );
354                                         
355                                 case REWRITE_REGEXEC_ERR:
356                                         send_ldap_error( op, rs,
357                                                         LDAP_OTHER,
358                                                         "Rewrite error" );
359                                         return( NULL );
360                                 }
361
362 #else /* !ENABLE_REWRITE */
363                                 struct berval bv;
364                                 ldap_back_dn_massage( li, &op->o_conn->c_dn, &bv, 0, 1 );
365                                 if ( bv.bv_val == op->o_conn->c_dn.bv_val ) {
366                                         ber_dupbv( &lc->bound_dn, &bv );
367                                 } else {
368                                         lc->bound_dn = bv;
369                                 }
370 #endif /* !ENABLE_REWRITE */
371
372                         } else {
373                                 lc->bound_dn.bv_val = NULL;
374                                 lc->bound_dn.bv_len = 0;
375                         }
376                 }
377
378                 lc->bound = 0;
379
380                 /* Inserts the newly created ldapconn in the avl tree */
381                 ldap_pvt_thread_mutex_lock( &li->conn_mutex );
382                 rs->sr_err = avl_insert( &li->conntree, (caddr_t)lc,
383                         ldap_back_conn_cmp, ldap_back_conn_dup );
384
385 #if PRINT_CONNTREE > 0
386                 myprint( li->conntree );
387 #endif /* PRINT_CONNTREE */
388         
389                 ldap_pvt_thread_mutex_unlock( &li->conn_mutex );
390
391 #ifdef NEW_LOGGING
392                 LDAP_LOG( BACK_LDAP, INFO, 
393                         "ldap_back_getconn: conn %lx inserted\n", lc, 0, 0);
394 #else /* !NEW_LOGGING */
395                 Debug( LDAP_DEBUG_TRACE,
396                         "=>ldap_back_getconn: conn %lx inserted\n", lc, 0, 0 );
397 #endif /* !NEW_LOGGING */
398         
399                 /* Err could be -1 in case a duplicate ldapconn is inserted */
400                 if ( rs->sr_err != 0 ) {
401                         ldap_back_conn_free( lc );
402                         send_ldap_error( op, rs, LDAP_OTHER,
403                         "internal server error" );
404                         return( NULL );
405                 }
406         } else {
407 #ifdef NEW_LOGGING
408                 LDAP_LOG( BACK_LDAP, INFO, 
409                         "ldap_back_getconn: conn %lx fetched\n", 
410                         lc, 0, 0 );
411 #else /* !NEW_LOGGING */
412                 Debug( LDAP_DEBUG_TRACE,
413                         "=>ldap_back_getconn: conn %lx fetched\n", lc, 0, 0 );
414 #endif /* !NEW_LOGGING */
415         }
416         
417         return( lc );
418 }
419
420 /*
421  * ldap_back_dobind
422  *
423  * Note: as the check for the value of lc->bound was already here, I removed
424  * it from all the callers, and I made the function return the flag, so
425  * it can be used to simplify the check.
426  */
427 int
428 ldap_back_dobind( struct ldapconn *lc, Operation *op, SlapReply *rs )
429 {       
430         int rc;
431         ber_int_t msgid;
432
433         ldap_pvt_thread_mutex_lock( &lc->lc_mutex );
434         if ( !lc->bound ) {
435                 rs->sr_err = ldap_sasl_bind(lc->ld, lc->bound_dn.bv_val,
436                         LDAP_SASL_SIMPLE, &lc->cred, NULL, NULL, &msgid);
437                 rc = ldap_back_op_result( lc, op, rs, msgid, 0 );
438                 if (rc == LDAP_SUCCESS) {
439                         lc->bound = 1;
440                 }
441         }
442         rc = lc->bound;
443         ldap_pvt_thread_mutex_unlock( &lc->lc_mutex );
444         return rc;
445 }
446
447 /*
448  * ldap_back_rebind
449  *
450  * This is a callback used for chasing referrals using the same
451  * credentials as the original user on this session.
452  */
453 static int 
454 ldap_back_rebind( LDAP *ld, LDAP_CONST char *url, ber_tag_t request,
455         ber_int_t msgid, void *params )
456 {
457         struct ldapconn *lc = params;
458
459         return ldap_bind_s( ld, lc->bound_dn.bv_val, lc->cred.bv_val, LDAP_AUTH_SIMPLE );
460 }
461
462 /* Map API errors to protocol errors... */
463
464 int
465 ldap_back_map_result(SlapReply *rs)
466 {
467         switch(rs->sr_err)
468         {
469         case LDAP_SERVER_DOWN:
470                 return LDAP_UNAVAILABLE;
471         case LDAP_LOCAL_ERROR:
472                 return LDAP_OTHER;
473         case LDAP_ENCODING_ERROR:
474         case LDAP_DECODING_ERROR:
475                 return LDAP_PROTOCOL_ERROR;
476         case LDAP_TIMEOUT:
477                 return LDAP_UNAVAILABLE;
478         case LDAP_AUTH_UNKNOWN:
479                 return LDAP_AUTH_METHOD_NOT_SUPPORTED;
480         case LDAP_FILTER_ERROR:
481                 rs->sr_text = "Filter error";
482                 return LDAP_OTHER;
483         case LDAP_USER_CANCELLED:
484                 rs->sr_text = "User cancelled";
485                 return LDAP_OTHER;
486         case LDAP_PARAM_ERROR:
487                 return LDAP_PROTOCOL_ERROR;
488         case LDAP_NO_MEMORY:
489                 return LDAP_OTHER;
490         case LDAP_CONNECT_ERROR:
491                 return LDAP_UNAVAILABLE;
492         case LDAP_NOT_SUPPORTED:
493                 return LDAP_UNWILLING_TO_PERFORM;
494         case LDAP_CONTROL_NOT_FOUND:
495                 return LDAP_PROTOCOL_ERROR;
496         case LDAP_NO_RESULTS_RETURNED:
497                 return LDAP_NO_SUCH_OBJECT;
498         case LDAP_MORE_RESULTS_TO_RETURN:
499                 rs->sr_text = "More results to return";
500                 return LDAP_OTHER;
501         case LDAP_CLIENT_LOOP:
502         case LDAP_REFERRAL_LIMIT_EXCEEDED:
503                 return LDAP_LOOP_DETECT;
504         default:
505                 if LDAP_API_ERROR(rs->sr_err)
506                         return LDAP_OTHER;
507                 else
508                         return rs->sr_err;
509         }
510 }
511
512 int
513 ldap_back_op_result(struct ldapconn *lc, Operation *op, SlapReply *rs,
514         ber_int_t msgid, int sendok)
515 {
516         struct ldapinfo *li = (struct ldapinfo *)op->o_bd->be_private;
517         char *match = NULL;
518         LDAPMessage *res;
519         int rc;
520         char *text = NULL;
521
522         rs->sr_text = NULL;
523         rs->sr_matched = NULL;
524
525         if (rs->sr_err == LDAP_SUCCESS) {
526                 if (ldap_result(lc->ld, msgid, 1, NULL, &res) == -1) {
527                         ldap_get_option(lc->ld, LDAP_OPT_ERROR_NUMBER,
528                                         &rs->sr_err);
529                 } else {
530                         rc = ldap_parse_result(lc->ld, res, &rs->sr_err, &match,
531                                 &text, NULL, NULL, 1);
532                         rs->sr_text = text;
533                         if (rc != LDAP_SUCCESS) rs->sr_err = rc;
534                 }
535         }
536
537         if (rs->sr_err != LDAP_SUCCESS) {
538                 rs->sr_err = ldap_back_map_result(rs);
539
540                 /* internal ops must not reply to client */
541                 if ( op->o_conn && !op->o_do_not_cache ) {
542 #ifdef ENABLE_REWRITE
543                         if (match) {
544                                 
545                                 switch(rewrite_session(li->rwinfo, "matchedDn", match, op->o_conn,
546                                         (char **)&rs->sr_matched)) {
547                                 case REWRITE_REGEXEC_OK:
548                                         if (!rs->sr_matched) rs->sr_matched = match; break;
549                                 case REWRITE_REGEXEC_UNWILLING:
550                                 case REWRITE_REGEXEC_ERR:
551                                         break;
552                                 }
553                         }
554 #else
555                         struct berval dn, mdn;
556                         if (match) {
557                                 ber_str2bv(match, 0, 0, &dn);
558                                 ldap_back_dn_massage(li, &dn, &mdn, 0, 0);
559                                 rs->sr_matched = mdn.bv_val;
560                         }
561 #endif
562                 }
563         }
564         if (op->o_conn && (sendok || rs->sr_err != LDAP_SUCCESS)) {
565                 send_ldap_result( op, rs );
566         }
567         if (rs->sr_matched != match) free((char *)rs->sr_matched);
568         rs->sr_matched = NULL;
569         if ( match ) ldap_memfree( match );
570         if ( text ) {
571                 ldap_memfree( text );
572         }
573         rs->sr_text = NULL;
574         return( (rs->sr_err == LDAP_SUCCESS) ? 0 : -1 );
575 }
576