]> git.sur5r.net Git - openldap/blob - servers/slapd/back-ldap/bind.c
fix server-size controls handling in back-{ldap,meta}
[openldap] / servers / slapd / back-ldap / bind.c
1 /* bind.c - ldap backend bind function */
2 /* $OpenLDAP$ */
3 /*
4  * Copyright 1998-2002 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     Backend             *be,
57     Connection          *conn,
58     Operation           *op,
59     struct berval       *dn,
60     struct berval       *ndn,
61     int                 method,
62     struct berval       *cred,
63     struct berval       *edn
64 )
65 {
66         struct ldapinfo *li = (struct ldapinfo *) be->be_private;
67         struct ldapconn *lc;
68
69         struct berval mdn = { 0, NULL };
70         int rc = 0;
71
72         lc = ldap_back_getconn(li, conn, op);
73         if ( !lc ) {
74                 return( -1 );
75         }
76
77         if ( op->o_ctrls ) {
78                 if ( ldap_set_option( lc->ld, LDAP_OPT_SERVER_CONTROLS,
79                                         op->o_ctrls ) != LDAP_SUCCESS ) {
80                         ldap_back_op_result( lc, op );
81                         return( -1 );
82                 }
83         }
84         
85         /*
86          * Rewrite the bind dn if needed
87          */
88 #ifdef ENABLE_REWRITE
89         switch ( rewrite_session( li->rwinfo, "bindDn", dn->bv_val, conn, &mdn.bv_val ) ) {
90         case REWRITE_REGEXEC_OK:
91                 if ( mdn.bv_val == NULL ) {
92                         mdn.bv_val = ( char * )dn->bv_val;
93                 }
94 #ifdef NEW_LOGGING
95                 LDAP_LOG( BACK_LDAP, DETAIL1, 
96                         "[rw] bindDn: \"%s\" -> \"%s\"\n", dn->bv_val, mdn.bv_val, 0 );
97 #else /* !NEW_LOGGING */
98                 Debug( LDAP_DEBUG_ARGS, "rw> bindDn: \"%s\" -> \"%s\"\n%s",
99                                 dn->bv_val, mdn.bv_val, "" );
100 #endif /* !NEW_LOGGING */
101                 break;
102                 
103         case REWRITE_REGEXEC_UNWILLING:
104                 send_ldap_result( conn, op, LDAP_UNWILLING_TO_PERFORM,
105                                 NULL, "Unwilling to perform", NULL, NULL );
106                 return( -1 );
107
108         case REWRITE_REGEXEC_ERR:
109                 send_ldap_result( conn, op, LDAP_OTHER,
110                                 NULL, "Operations error", NULL, NULL );
111                 return( -1 );
112         }
113 #else /* !ENABLE_REWRITE */
114         ldap_back_dn_massage( li, dn, &mdn, 0, 1 );
115 #endif /* !ENABLE_REWRITE */
116
117         rc = ldap_bind_s(lc->ld, mdn.bv_val, cred->bv_val, method);
118         if (rc != LDAP_SUCCESS) {
119                 rc = ldap_back_op_result( lc, op );
120         } else {
121                 lc->bound = 1;
122         }
123
124         if ( li->savecred ) {
125                 if ( lc->cred.bv_val )
126                         ch_free( lc->cred.bv_val );
127                 ber_dupbv( &lc->cred, cred );
128                 ldap_set_rebind_proc( lc->ld, ldap_back_rebind, lc );
129         }
130
131         if ( lc->bound_dn.bv_val )
132                 ch_free( lc->bound_dn.bv_val );
133         if ( mdn.bv_val != dn->bv_val ) {
134                 lc->bound_dn = mdn;
135         } else {
136                 ber_dupbv( &lc->bound_dn, dn );
137         }
138         
139         return( rc );
140 }
141
142 /*
143  * ldap_back_conn_cmp
144  *
145  * compares two struct ldapconn based on the value of the conn pointer;
146  * used by avl stuff
147  */
148 int
149 ldap_back_conn_cmp(
150         const void *c1,
151         const void *c2
152         )
153 {
154         const struct ldapconn *lc1 = (const struct ldapconn *)c1;
155         const struct ldapconn *lc2 = (const struct ldapconn *)c2;
156         
157         return ( ( lc1->conn < lc2->conn ) ? -1 : ( ( lc1->conn > lc2-> conn ) ? 1 : 0 ) );
158 }
159
160 /*
161  * ldap_back_conn_dup
162  *
163  * returns -1 in case a duplicate struct ldapconn has been inserted;
164  * used by avl stuff
165  */
166 int
167 ldap_back_conn_dup(
168         void *c1,
169         void *c2
170         )
171 {
172         struct ldapconn *lc1 = (struct ldapconn *)c1;
173         struct ldapconn *lc2 = (struct ldapconn *)c2;
174
175         return( ( lc1->conn == lc2->conn ) ? -1 : 0 );
176 }
177
178 #if PRINT_CONNTREE > 0
179 static void ravl_print( Avlnode *root, int depth )
180 {
181         int     i;
182         
183         if ( root == 0 )
184                 return;
185         
186         ravl_print( root->avl_right, depth+1 );
187         
188         for ( i = 0; i < depth; i++ )
189                 printf( "   " );
190
191         printf( "c(%ld) %d\n", ((struct ldapconn *) root->avl_data)->conn->c_connid, root->avl_bf );
192         
193         ravl_print( root->avl_left, depth+1 );
194 }
195
196 static void myprint( Avlnode *root )
197 {
198         printf( "********\n" );
199         
200         if ( root == 0 )
201                 printf( "\tNULL\n" );
202
203         else
204                 ravl_print( root, 0 );
205         
206         printf( "********\n" );
207 }
208 #endif /* PRINT_CONNTREE */
209
210 struct ldapconn *
211 ldap_back_getconn(struct ldapinfo *li, Connection *conn, Operation *op)
212 {
213         struct ldapconn *lc, lc_curr;
214         LDAP *ld;
215
216         /* Searches for a ldapconn in the avl tree */
217         lc_curr.conn = conn;
218         ldap_pvt_thread_mutex_lock( &li->conn_mutex );
219         lc = (struct ldapconn *)avl_find( li->conntree, 
220                 (caddr_t)&lc_curr, ldap_back_conn_cmp );
221         ldap_pvt_thread_mutex_unlock( &li->conn_mutex );
222
223         /* Looks like we didn't get a bind. Open a new session... */
224         if (!lc) {
225                 int vers = conn->c_protocol;
226                 int err = ldap_initialize(&ld, li->url);
227                 
228                 if (err != LDAP_SUCCESS) {
229                         err = ldap_back_map_result(err);
230                         send_ldap_result( conn, op, err,
231                                 NULL, "ldap_init failed", NULL, NULL );
232                         return( NULL );
233                 }
234                 /* Set LDAP version. This will always succeed: If the client
235                  * bound with a particular version, then so can we.
236                  */
237                 ldap_set_option(ld, LDAP_OPT_PROTOCOL_VERSION, &vers);
238
239                 lc = (struct ldapconn *)ch_malloc(sizeof(struct ldapconn));
240                 lc->conn = conn;
241                 lc->ld = ld;
242
243                 lc->cred.bv_len = 0;
244                 lc->cred.bv_val = NULL;
245
246 #ifdef ENABLE_REWRITE
247                 /*
248                  * Sets a cookie for the rewrite session
249                  */
250                 ( void )rewrite_session_init( li->rwinfo, conn );
251 #endif /* ENABLE_REWRITE */
252
253                 if ( lc->conn->c_dn.bv_len != 0 ) {
254                         
255                         /*
256                          * Rewrite the bind dn if needed
257                          */
258 #ifdef ENABLE_REWRITE                   
259                         lc->bound_dn.bv_val = NULL;
260                         lc->bound_dn.bv_len = 0;
261                         switch ( rewrite_session( li->rwinfo, "bindDn",
262                                                 lc->conn->c_dn.bv_val, conn,
263                                                 &lc->bound_dn.bv_val ) ) {
264                         case REWRITE_REGEXEC_OK:
265                                 if ( lc->bound_dn.bv_val == NULL ) {
266                                         ber_dupbv( &lc->bound_dn, &lc->conn->c_dn );
267                                 }
268 #ifdef NEW_LOGGING
269                                 LDAP_LOG( BACK_LDAP, DETAIL1, 
270                                                 "[rw] bindDn: \"%s\" ->" 
271                                                 " \"%s\"\n%s",
272                                                 lc->conn->c_dn.bv_val, 
273                                                 lc->bound_dn.bv_val, "" );
274 #else /* !NEW_LOGGING */
275                                 Debug( LDAP_DEBUG_ARGS,
276                                                 "rw> bindDn: \"%s\" ->"
277                                                 " \"%s\"\n%s",
278                                                 lc->conn->c_dn.bv_val,
279                                                 lc->bound_dn.bv_val, "" );
280 #endif /* !NEW_LOGGING */
281                                 break;
282                                 
283                         case REWRITE_REGEXEC_UNWILLING:
284                                 send_ldap_result( conn, op,
285                                                 LDAP_UNWILLING_TO_PERFORM,
286                                                 NULL, "Unwilling to perform",
287                                                 NULL, NULL );
288                                 return( NULL );
289                                 
290                         case REWRITE_REGEXEC_ERR:
291                                 send_ldap_result( conn, op,
292                                                 LDAP_OTHER,
293                                                 NULL, "Operations error",
294                                                 NULL, NULL );
295                                 return( NULL );
296                         }
297 #else /* !ENABLE_REWRITE */
298                         struct berval bv;
299                         ldap_back_dn_massage( li, &lc->conn->c_dn, &bv, 0, 1 );
300                         if ( bv.bv_val == lc->conn->c_dn.bv_val )
301                                 ber_dupbv( &lc->bound_dn, &bv );
302                         else
303                                 lc->bound_dn = bv;
304 #endif /* !ENABLE_REWRITE */
305                 } else {
306                         lc->bound_dn.bv_val = NULL;
307                         lc->bound_dn.bv_len = 0;
308                 }
309                 lc->bound = 0;
310
311                 /* Inserts the newly created ldapconn in the avl tree */
312                 ldap_pvt_thread_mutex_lock( &li->conn_mutex );
313                 err = avl_insert( &li->conntree, (caddr_t)lc,
314                         ldap_back_conn_cmp, ldap_back_conn_dup );
315
316 #if PRINT_CONNTREE > 0
317                 myprint( li->conntree );
318 #endif /* PRINT_CONNTREE */
319                 
320                 ldap_pvt_thread_mutex_unlock( &li->conn_mutex );
321
322 #ifdef NEW_LOGGING
323                 LDAP_LOG( BACK_LDAP, INFO, 
324                         "ldap_back_getconn: conn %ld inserted\n", lc->conn->c_connid, 0, 0);
325 #else /* !NEW_LOGGING */
326                 Debug( LDAP_DEBUG_TRACE,
327                         "=>ldap_back_getconn: conn %ld inserted\n%s%s",
328                         lc->conn->c_connid, "", "" );
329 #endif /* !NEW_LOGGING */
330                 
331                 /* Err could be -1 in case a duplicate ldapconn is inserted */
332                 if ( err != 0 ) {
333                         send_ldap_result( conn, op, LDAP_OTHER,
334                         NULL, "internal server error", NULL, NULL );
335                         /* better destroy the ldapconn struct? */
336                         return( NULL );
337                 }
338         } else {
339 #ifdef NEW_LOGGING
340                 LDAP_LOG( BACK_LDAP, INFO, 
341                         "ldap_back_getconn: conn %ld inserted\n", 
342                         lc->conn->c_connid, 0, 0 );
343 #else /* !NEW_LOGGING */
344                 Debug( LDAP_DEBUG_TRACE,
345                         "=>ldap_back_getconn: conn %ld fetched%s%s\n",
346                         lc->conn->c_connid, "", "" );
347 #endif /* !NEW_LOGGING */
348         }
349         
350         return( lc );
351 }
352
353 /*
354  * ldap_back_dobind
355  *
356  * Note: as the check for the value of lc->bound was already here, I removed
357  * it from all the callers, and I made the function return the flag, so
358  * it can be used to simplify the check.
359  */
360 int
361 ldap_back_dobind( struct ldapconn *lc, Operation *op )
362 {       
363         if ( op->o_ctrls ) {
364                 if ( ldap_set_option( lc->ld, LDAP_OPT_SERVER_CONTROLS,
365                                 op->o_ctrls ) != LDAP_SUCCESS ) {
366                         ldap_back_op_result( lc, op );
367                         return( 0 );
368                 }
369         }
370         
371         if ( lc->bound ) {
372                 return( lc->bound );
373         }
374
375         if ( ldap_bind_s( lc->ld, lc->bound_dn.bv_val, lc->cred.bv_val, 
376                                 LDAP_AUTH_SIMPLE ) != LDAP_SUCCESS ) {
377                 ldap_back_op_result( lc, op );
378                 return( 0 );
379         } /* else */
380         return( lc->bound = 1 );
381 }
382
383 /*
384  * ldap_back_rebind
385  *
386  * This is a callback used for chasing referrals using the same
387  * credentials as the original user on this session.
388  */
389 static int 
390 ldap_back_rebind( LDAP *ld, LDAP_CONST char *url, ber_tag_t request,
391         ber_int_t msgid, void *params )
392 {
393         struct ldapconn *lc = params;
394
395         return ldap_bind_s( ld, lc->bound_dn.bv_val, lc->cred.bv_val, LDAP_AUTH_SIMPLE );
396 }
397
398 /* Map API errors to protocol errors... */
399
400 int
401 ldap_back_map_result(int err)
402 {
403         switch(err)
404         {
405         case LDAP_SERVER_DOWN:
406                 return LDAP_UNAVAILABLE;
407         case LDAP_LOCAL_ERROR:
408                 return LDAP_OTHER;
409         case LDAP_ENCODING_ERROR:
410         case LDAP_DECODING_ERROR:
411                 return LDAP_PROTOCOL_ERROR;
412         case LDAP_TIMEOUT:
413                 return LDAP_UNAVAILABLE;
414         case LDAP_AUTH_UNKNOWN:
415                 return LDAP_AUTH_METHOD_NOT_SUPPORTED;
416         case LDAP_FILTER_ERROR:
417                 return LDAP_OTHER;
418         case LDAP_USER_CANCELLED:
419                 return LDAP_OTHER;
420         case LDAP_PARAM_ERROR:
421                 return LDAP_PROTOCOL_ERROR;
422         case LDAP_NO_MEMORY:
423                 return LDAP_OTHER;
424         case LDAP_CONNECT_ERROR:
425                 return LDAP_UNAVAILABLE;
426         case LDAP_NOT_SUPPORTED:
427                 return LDAP_UNWILLING_TO_PERFORM;
428         case LDAP_CONTROL_NOT_FOUND:
429                 return LDAP_PROTOCOL_ERROR;
430         case LDAP_NO_RESULTS_RETURNED:
431                 return LDAP_NO_SUCH_OBJECT;
432         case LDAP_MORE_RESULTS_TO_RETURN:
433                 return LDAP_OTHER;
434         case LDAP_CLIENT_LOOP:
435         case LDAP_REFERRAL_LIMIT_EXCEEDED:
436                 return LDAP_LOOP_DETECT;
437         default:
438                 if LDAP_API_ERROR(err)
439                         return LDAP_OTHER;
440                 else
441                         return err;
442         }
443 }
444
445 int
446 ldap_back_op_result(struct ldapconn *lc, Operation *op)
447 {
448         int err = LDAP_SUCCESS;
449         char *msg = NULL;
450         char *match = NULL;
451
452         ldap_get_option(lc->ld, LDAP_OPT_ERROR_NUMBER, &err);
453         ldap_get_option(lc->ld, LDAP_OPT_ERROR_STRING, &msg);
454         ldap_get_option(lc->ld, LDAP_OPT_MATCHED_DN, &match);
455         err = ldap_back_map_result(err);
456
457 #ifdef ENABLE_REWRITE
458         
459         /*
460          * FIXME: need rewrite info for match; mmmh ...
461          */
462         send_ldap_result( lc->conn, op, err, match, msg, NULL, NULL );
463         /* better test the pointers before freeing? */
464         if ( match ) {
465                 free( match );
466         }
467
468 #else /* !ENABLE_REWRITE */
469
470         send_ldap_result( lc->conn, op, err, match, msg, NULL, NULL );
471         /* better test the pointers before freeing? */
472         if ( match ) {
473                 free( match );
474         }
475
476 #endif /* !ENABLE_REWRITE */
477
478         if ( msg ) free( msg );
479         return( (err==LDAP_SUCCESS) ? 0 : -1 );
480 }
481