]> git.sur5r.net Git - openldap/blob - servers/slapd/back-ldap/bind.c
cleanup and fixes
[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(li, 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         rc = 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( li, lc, op, rs, msgid, rc, 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 (int)lc1->conn - (int)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(struct ldapinfo *li, Operation *op, SlapReply *rs)
240 {
241         struct ldapconn *lc, lc_curr;
242         LDAP *ld;
243         int is_priv = 0;
244
245         /* Searches for a ldapconn in the avl tree */
246
247         /* Explicit binds must not be shared */
248         if ( op->o_tag == LDAP_REQ_BIND ) {
249                 lc_curr.conn = op->o_conn;
250         } else {
251                 lc_curr.conn = NULL;
252         }
253         
254         /* Internal searches are privileged. So is root. */
255         if ( op->o_do_not_cache || be_isroot( li->be, &op->o_ndn ) ) {
256                 lc_curr.local_dn = li->be->be_rootndn;
257                 is_priv = 1;
258         } else {
259                 lc_curr.local_dn = op->o_ndn;
260         }
261         ldap_pvt_thread_mutex_lock( &li->conn_mutex );
262         lc = (struct ldapconn *)avl_find( li->conntree, 
263                 (caddr_t)&lc_curr, ldap_back_conn_cmp );
264         ldap_pvt_thread_mutex_unlock( &li->conn_mutex );
265
266         /* Looks like we didn't get a bind. Open a new session... */
267         if (!lc) {
268                 int vers = op->o_conn->c_protocol;
269                 rs->sr_err = ldap_initialize(&ld, li->url);
270                 
271                 if (rs->sr_err != LDAP_SUCCESS) {
272                         rs->sr_err = ldap_back_map_result(rs->sr_err);
273                         rs->sr_text = "ldap_initialize() failed";
274                         send_ldap_result( op, rs );
275                         return( NULL );
276                 }
277                 /* Set LDAP version. This will always succeed: If the client
278                  * bound with a particular version, then so can we.
279                  */
280                 ldap_set_option(ld, LDAP_OPT_PROTOCOL_VERSION, &vers);
281
282                 lc = (struct ldapconn *)ch_malloc(sizeof(struct ldapconn));
283                 lc->conn = lc_curr.conn;
284                 lc->ld = ld;
285                 ber_dupbv( &lc->local_dn, &lc_curr.local_dn );
286
287                 if ( is_priv ) {
288                         ber_dupbv( &lc->cred, &li->bindpw );
289                 } else {
290                         lc->cred.bv_len = 0;
291                         lc->cred.bv_val = NULL;
292                 }
293
294                 ldap_pvt_thread_mutex_init( &lc->lc_mutex );
295
296 #ifdef ENABLE_REWRITE
297                 /*
298                  * Sets a cookie for the rewrite session
299                  */
300                 ( void )rewrite_session_init( li->rwinfo, op->o_conn );
301 #endif /* ENABLE_REWRITE */
302
303                 if ( op->o_conn->c_dn.bv_len != 0 ) {
304                         
305                         /*
306                          * Rewrite the bind dn if needed
307                          */
308 #ifdef ENABLE_REWRITE                   
309                         lc->bound_dn.bv_val = NULL;
310                         lc->bound_dn.bv_len = 0;
311                         switch ( rewrite_session( li->rwinfo, "bindDn",
312                                                 op->o_conn->c_dn.bv_val,
313                                                 op->o_conn,
314                                                 &lc->bound_dn.bv_val ) ) {
315                         case REWRITE_REGEXEC_OK:
316                                 if ( lc->bound_dn.bv_val == NULL ) {
317                                         ber_dupbv( &lc->bound_dn,
318                                                         &op->o_conn->c_dn );
319                                 } else {
320                                         lc->bound_dn.bv_len = strlen( lc->bound_dn.bv_val );
321                                 }
322 #ifdef NEW_LOGGING
323                                 LDAP_LOG( BACK_LDAP, DETAIL1, 
324                                                 "[rw] bindDn: \"%s\" ->" 
325                                                 " \"%s\"\n",
326                                                 op->o_conn->c_dn.bv_val, 
327                                                 lc->bound_dn.bv_val, 0 );
328 #else /* !NEW_LOGGING */
329                                 Debug( LDAP_DEBUG_ARGS,
330                                                 "rw> bindDn: \"%s\" ->"
331                                                 " \"%s\"\n",
332                                                 op->o_conn->c_dn.bv_val,
333                                                 lc->bound_dn.bv_val, 0 );
334 #endif /* !NEW_LOGGING */
335                                 break;
336                                 
337                         case REWRITE_REGEXEC_UNWILLING:
338                                 send_ldap_error( op, rs,
339                                                 LDAP_UNWILLING_TO_PERFORM,
340                                                 "Operation not allowed" );
341                                 return( NULL );
342                                 
343                         case REWRITE_REGEXEC_ERR:
344                                 send_ldap_error( op, rs,
345                                                 LDAP_OTHER,
346                                                 "Rewrite error" );
347                                 return( NULL );
348                         }
349
350 #else /* !ENABLE_REWRITE */
351                         struct berval bv;
352                         ldap_back_dn_massage( li, &op->o_conn->c_dn, &bv, 0, 1 );
353                         if ( bv.bv_val == op->o_conn->c_dn.bv_val ) {
354                                 ber_dupbv( &lc->bound_dn, &bv );
355                         } else {
356                                 lc->bound_dn = bv;
357                         }
358 #endif /* !ENABLE_REWRITE */
359
360                 } else {
361                         lc->bound_dn.bv_val = NULL;
362                         lc->bound_dn.bv_len = 0;
363                 }
364                 lc->bound = 0;
365
366                 /* Inserts the newly created ldapconn in the avl tree */
367                 ldap_pvt_thread_mutex_lock( &li->conn_mutex );
368                 rs->sr_err = avl_insert( &li->conntree, (caddr_t)lc,
369                         ldap_back_conn_cmp, ldap_back_conn_dup );
370
371 #if PRINT_CONNTREE > 0
372                 myprint( li->conntree );
373 #endif /* PRINT_CONNTREE */
374         
375                 ldap_pvt_thread_mutex_unlock( &li->conn_mutex );
376
377 #ifdef NEW_LOGGING
378                 LDAP_LOG( BACK_LDAP, INFO, 
379                         "ldap_back_getconn: conn %lx inserted\n", lc, 0, 0);
380 #else /* !NEW_LOGGING */
381                 Debug( LDAP_DEBUG_TRACE,
382                         "=>ldap_back_getconn: conn %lx inserted\n", lc, 0, 0 );
383 #endif /* !NEW_LOGGING */
384         
385                 /* Err could be -1 in case a duplicate ldapconn is inserted */
386                 if ( rs->sr_err != 0 ) {
387                         ldap_back_conn_free( lc );
388                         send_ldap_error( op, rs, LDAP_OTHER,
389                         "internal server error" );
390                         return( NULL );
391                 }
392         } else {
393 #ifdef NEW_LOGGING
394                 LDAP_LOG( BACK_LDAP, INFO, 
395                         "ldap_back_getconn: conn %lx fetched\n", 
396                         lc, 0, 0 );
397 #else /* !NEW_LOGGING */
398                 Debug( LDAP_DEBUG_TRACE,
399                         "=>ldap_back_getconn: conn %lx fetched\n", lc, 0, 0 );
400 #endif /* !NEW_LOGGING */
401         }
402         
403         return( lc );
404 }
405
406 /*
407  * ldap_back_dobind
408  *
409  * Note: as the check for the value of lc->bound was already here, I removed
410  * it from all the callers, and I made the function return the flag, so
411  * it can be used to simplify the check.
412  */
413 int
414 ldap_back_dobind( struct ldapinfo *li, struct ldapconn *lc, Operation *op, SlapReply *rs )
415 {       
416         int rc;
417         ber_int_t msgid;
418
419         ldap_pvt_thread_mutex_lock( &lc->lc_mutex );
420         if ( !lc->bound ) {
421                 rc = ldap_sasl_bind(lc->ld, lc->bound_dn.bv_val,
422                         LDAP_SASL_SIMPLE, &lc->cred, NULL, NULL, &msgid);
423                 rc = ldap_back_op_result( li, lc, op, rs, msgid, rc, 0 );
424                 if (rc == LDAP_SUCCESS) {
425                         lc->bound = 1;
426                 }
427         }
428         rc = lc->bound;
429         ldap_pvt_thread_mutex_unlock( &lc->lc_mutex );
430         return rc;
431 }
432
433 /*
434  * ldap_back_rebind
435  *
436  * This is a callback used for chasing referrals using the same
437  * credentials as the original user on this session.
438  */
439 static int 
440 ldap_back_rebind( LDAP *ld, LDAP_CONST char *url, ber_tag_t request,
441         ber_int_t msgid, void *params )
442 {
443         struct ldapconn *lc = params;
444
445         return ldap_bind_s( ld, lc->bound_dn.bv_val, lc->cred.bv_val, LDAP_AUTH_SIMPLE );
446 }
447
448 /* Map API errors to protocol errors... */
449
450 int
451 ldap_back_map_result(int err)
452 {
453         switch(err)
454         {
455         case LDAP_SERVER_DOWN:
456                 return LDAP_UNAVAILABLE;
457         case LDAP_LOCAL_ERROR:
458                 return LDAP_OTHER;
459         case LDAP_ENCODING_ERROR:
460         case LDAP_DECODING_ERROR:
461                 return LDAP_PROTOCOL_ERROR;
462         case LDAP_TIMEOUT:
463                 return LDAP_UNAVAILABLE;
464         case LDAP_AUTH_UNKNOWN:
465                 return LDAP_AUTH_METHOD_NOT_SUPPORTED;
466         case LDAP_FILTER_ERROR:
467                 return LDAP_OTHER;
468         case LDAP_USER_CANCELLED:
469                 return LDAP_OTHER;
470         case LDAP_PARAM_ERROR:
471                 return LDAP_PROTOCOL_ERROR;
472         case LDAP_NO_MEMORY:
473                 return LDAP_OTHER;
474         case LDAP_CONNECT_ERROR:
475                 return LDAP_UNAVAILABLE;
476         case LDAP_NOT_SUPPORTED:
477                 return LDAP_UNWILLING_TO_PERFORM;
478         case LDAP_CONTROL_NOT_FOUND:
479                 return LDAP_PROTOCOL_ERROR;
480         case LDAP_NO_RESULTS_RETURNED:
481                 return LDAP_NO_SUCH_OBJECT;
482         case LDAP_MORE_RESULTS_TO_RETURN:
483                 return LDAP_OTHER;
484         case LDAP_CLIENT_LOOP:
485         case LDAP_REFERRAL_LIMIT_EXCEEDED:
486                 return LDAP_LOOP_DETECT;
487         default:
488                 if LDAP_API_ERROR(err)
489                         return LDAP_OTHER;
490                 else
491                         return err;
492         }
493 }
494
495 int
496 ldap_back_op_result(struct ldapinfo *li, struct ldapconn *lc,
497         Operation *op, SlapReply *rs, ber_int_t msgid, int err, int sendok)
498 {
499         char *match = NULL;
500         LDAPMessage *res;
501         int rc;
502
503         rs->sr_text = NULL;
504         rs->sr_matched = NULL;
505
506         if (err == LDAP_SUCCESS) {
507                 if (ldap_result(lc->ld, msgid, 1, NULL, &res) == -1) {
508                         ldap_get_option(lc->ld, LDAP_OPT_ERROR_NUMBER, &err);
509                 } else {
510                         rc = ldap_parse_result(lc->ld, res, &err, &match,
511                                 (char **)&rs->sr_text, NULL, NULL, 1);
512                         if (rc != LDAP_SUCCESS) err = rc;
513                 }
514         }
515         if (err != LDAP_SUCCESS) {
516                 err = ldap_back_map_result(err);
517
518                 /* internal ops must not reply to client */
519                 if ( op->o_conn && !op->o_do_not_cache ) {
520 #ifdef ENABLE_REWRITE
521                         if (match) {
522                                 
523                                 switch(rewrite_session(li->rwinfo, "matchedDn", match, op->o_conn,
524                                         (char **)&rs->sr_matched)) {
525                                 case REWRITE_REGEXEC_OK:
526                                         if (!rs->sr_matched) rs->sr_matched = match; break;
527                                 case REWRITE_REGEXEC_UNWILLING:
528                                 case REWRITE_REGEXEC_ERR:
529                                         break;
530                                 }
531                         }
532 #else
533                         struct berval dn, mdn;
534                         if (match) {
535                                 ber_str2bv(match, 0, 0, &dn);
536                                 ldap_back_dn_massage(li, &dn, &mdn, 0, 0);
537                                 rs->sr_matched = mdn.bv_val;
538                         }
539 #endif
540                 }
541         }
542         if (sendok || err != LDAP_SUCCESS) {
543                 rs->sr_err = err;
544                 send_ldap_result( op, rs );
545         }
546         if (rs->sr_matched != match) free((char *)rs->sr_matched);
547         rs->sr_matched = NULL;
548         if ( match ) ldap_memfree( match );
549         if ( rs->sr_text ) {
550                 ldap_memfree( (char *)rs->sr_text );
551                 rs->sr_text = NULL;
552         }
553         return( (err==LDAP_SUCCESS) ? 0 : -1 );
554 }
555