1 /* bind.c - decode an ldap bind operation and pass it to a backend db */
3 /* This work is part of OpenLDAP Software <http://www.openldap.org/>.
5 * Copyright 1998-2004 The OpenLDAP Foundation.
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted only as authorized by the OpenLDAP
12 * A copy of this license is available in the file LICENSE in the
13 * top-level directory of the distribution or, alternatively, at
14 * <http://www.OpenLDAP.org/license.html>.
16 /* Portions Copyright (c) 1995 Regents of the University of Michigan.
17 * All rights reserved.
19 * Redistribution and use in source and binary forms are permitted
20 * provided that this notice is preserved and that due credit is given
21 * to the University of Michigan at Ann Arbor. The name of the University
22 * may not be used to endorse or promote products derived from this
23 * software without specific prior written permission. This software
24 * is provided ``as is'' without express or implied warranty.
31 #include <ac/string.h>
32 #include <ac/socket.h>
37 #include "slapi/slapi.h"
47 BerElement *ber = op->o_ber;
50 struct berval mech = { 0, NULL };
51 struct berval dn = { 0, NULL };
56 LDAP_LOG( OPERATION, ENTRY, "do_bind: conn %d\n", op->o_connid, 0, 0 );
58 Debug( LDAP_DEBUG_TRACE, "do_bind\n", 0, 0, 0 );
62 * Force to connection to "anonymous" until bind succeeds.
64 ldap_pvt_thread_mutex_lock( &op->o_conn->c_mutex );
65 if ( op->o_conn->c_sasl_bind_in_progress ) {
66 be = op->o_conn->c_authz_backend;
68 if ( op->o_conn->c_dn.bv_len ) {
69 /* log authorization identity demotion */
70 Statslog( LDAP_DEBUG_STATS,
71 "conn=%lu op=%lu BIND anonymous mech=implicit ssf=0\n",
72 op->o_connid, op->o_opid, 0, 0, 0 );
74 connection2anonymous( op->o_conn );
75 if ( op->o_conn->c_sasl_bind_in_progress ) {
76 op->o_conn->c_authz_backend = be;
78 ldap_pvt_thread_mutex_unlock( &op->o_conn->c_mutex );
79 if ( op->o_dn.bv_val != NULL ) {
80 free( op->o_dn.bv_val );
81 op->o_dn.bv_val = ch_strdup( "" );
84 if ( op->o_ndn.bv_val != NULL ) {
85 free( op->o_ndn.bv_val );
86 op->o_ndn.bv_val = ch_strdup( "" );
91 * Parse the bind request. It looks like this:
93 * BindRequest ::= SEQUENCE {
94 * version INTEGER, -- version
95 * name DistinguishedName, -- dn
96 * authentication CHOICE {
97 * simple [0] OCTET STRING -- passwd
98 * krbv42ldap [1] OCTET STRING
99 * krbv42dsa [2] OCTET STRING
100 * SASL [3] SaslCredentials
104 * SaslCredentials ::= SEQUENCE {
105 * mechanism LDAPString,
106 * credentials OCTET STRING OPTIONAL
110 tag = ber_scanf( ber, "{imt" /*}*/, &version, &dn, &method );
112 if ( tag == LBER_ERROR ) {
114 LDAP_LOG( OPERATION, ERR,
115 "do_bind: conn %d ber_scanf failed\n", op->o_connid, 0, 0 );
117 Debug( LDAP_DEBUG_ANY, "bind: ber_scanf failed\n", 0, 0, 0 );
119 send_ldap_discon( op, rs, LDAP_PROTOCOL_ERROR, "decoding error" );
124 op->o_protocol = version;
126 if( method != LDAP_AUTH_SASL ) {
127 tag = ber_scanf( ber, /*{*/ "m}", &op->orb_cred );
130 tag = ber_scanf( ber, "{m" /*}*/, &mech );
132 if ( tag != LBER_ERROR ) {
134 tag = ber_peek_tag( ber, &len );
136 if ( tag == LDAP_TAG_LDAPCRED ) {
137 tag = ber_scanf( ber, "m", &op->orb_cred );
139 tag = LDAP_TAG_LDAPCRED;
140 op->orb_cred.bv_val = NULL;
141 op->orb_cred.bv_len = 0;
144 if ( tag != LBER_ERROR ) {
145 tag = ber_scanf( ber, /*{{*/ "}}" );
150 if ( tag == LBER_ERROR ) {
151 send_ldap_discon( op, rs, LDAP_PROTOCOL_ERROR, "decoding error" );
152 rs->sr_err = SLAPD_DISCONNECT;
156 if( get_ctrls( op, rs, 1 ) != LDAP_SUCCESS ) {
158 LDAP_LOG( OPERATION, INFO,
159 "do_bind: conn %d get_ctrls failed\n", op->o_connid, 0, 0 );
161 Debug( LDAP_DEBUG_ANY, "do_bind: get_ctrls failed\n", 0, 0, 0 );
166 /* We use the tmpmemctx here because it speeds up normalization.
167 * However, we must dup with regular malloc when storing any
168 * resulting DNs in the op or conn structures.
170 rs->sr_err = dnPrettyNormal( NULL, &dn, &op->o_req_dn, &op->o_req_ndn,
172 if ( rs->sr_err != LDAP_SUCCESS ) {
174 LDAP_LOG( OPERATION, INFO,
175 "do_bind: conn %d invalid dn (%s)\n",
176 op->o_connid, dn.bv_val, 0 );
178 Debug( LDAP_DEBUG_ANY, "bind: invalid dn (%s)\n",
181 send_ldap_error( op, rs, LDAP_INVALID_DN_SYNTAX, "invalid DN" );
185 if( method == LDAP_AUTH_SASL ) {
187 LDAP_LOG( OPERATION, DETAIL1,
188 "do_sasl_bind: conn %d dn (%s) mech %s\n",
189 op->o_connid, op->o_req_dn.bv_val, mech.bv_val );
191 Debug( LDAP_DEBUG_TRACE, "do_sasl_bind: dn (%s) mech %s\n",
192 op->o_req_dn.bv_val, mech.bv_val, NULL );
197 LDAP_LOG( OPERATION, DETAIL1,
198 "do_bind: version=%ld dn=\"%s\" method=%ld\n",
199 (unsigned long) version, op->o_req_dn.bv_val,
200 (unsigned long) method );
202 Debug( LDAP_DEBUG_TRACE,
203 "do_bind: version=%ld dn=\"%s\" method=%ld\n",
204 (unsigned long) version, op->o_req_dn.bv_val,
205 (unsigned long) method );
209 Statslog( LDAP_DEBUG_STATS, "conn=%lu op=%lu BIND dn=\"%s\" method=%ld\n",
210 op->o_connid, op->o_opid, op->o_req_dn.bv_val, (unsigned long) method,
213 if ( version < LDAP_VERSION_MIN || version > LDAP_VERSION_MAX ) {
215 LDAP_LOG( OPERATION, INFO,
216 "do_bind: conn %d unknown version = %ld\n",
217 op->o_connid, (unsigned long)version, 0 );
219 Debug( LDAP_DEBUG_ANY, "do_bind: unknown version=%ld\n",
220 (unsigned long) version, 0, 0 );
222 send_ldap_error( op, rs, LDAP_PROTOCOL_ERROR,
223 "requested protocol version not supported" );
226 } else if (!( global_allows & SLAP_ALLOW_BIND_V2 ) &&
227 version < LDAP_VERSION3 )
229 send_ldap_error( op, rs, LDAP_PROTOCOL_ERROR,
230 "historical protocol version requested, use LDAPv3 instead" );
235 * we set connection version regardless of whether bind succeeds or not.
237 ldap_pvt_thread_mutex_lock( &op->o_conn->c_mutex );
238 op->o_conn->c_protocol = version;
239 ldap_pvt_thread_mutex_unlock( &op->o_conn->c_mutex );
241 /* check for inappropriate controls */
242 if( get_manageDSAit( op ) == SLAP_CRITICAL_CONTROL ) {
243 send_ldap_error( op, rs,
244 LDAP_UNAVAILABLE_CRITICAL_EXTENSION,
245 "manageDSAit control inappropriate" );
249 /* Set the bindop for the benefit of in-directory SASL lookups */
250 op->o_conn->c_sasl_bindop = op;
252 if ( method == LDAP_AUTH_SASL ) {
253 if ( version < LDAP_VERSION3 ) {
255 LDAP_LOG( OPERATION, INFO,
256 "do_bind: conn %d sasl with LDAPv%ld\n",
257 op->o_connid, (unsigned long)version , 0 );
259 Debug( LDAP_DEBUG_ANY, "do_bind: sasl with LDAPv%ld\n",
260 (unsigned long) version, 0, 0 );
262 send_ldap_discon( op, rs,
263 LDAP_PROTOCOL_ERROR, "SASL bind requires LDAPv3" );
264 rs->sr_err = SLAPD_DISCONNECT;
268 if( mech.bv_len == 0 ) {
270 LDAP_LOG( OPERATION, INFO,
271 "do_bind: conn %d no SASL mechanism provided\n",
272 op->o_connid, 0, 0 );
274 Debug( LDAP_DEBUG_ANY,
275 "do_bind: no sasl mechanism provided\n",
278 send_ldap_error( op, rs, LDAP_AUTH_METHOD_NOT_SUPPORTED,
279 "no SASL mechanism provided" );
283 /* check restrictions */
284 if( backend_check_restrictions( op, rs, &mech ) != LDAP_SUCCESS ) {
285 send_ldap_result( op, rs );
289 ldap_pvt_thread_mutex_lock( &op->o_conn->c_mutex );
290 if ( op->o_conn->c_sasl_bind_in_progress ) {
291 if( !bvmatch( &op->o_conn->c_sasl_bind_mech, &mech ) ) {
292 /* mechanism changed between bind steps */
293 slap_sasl_reset(op->o_conn);
296 ber_dupbv(&op->o_conn->c_sasl_bind_mech, &mech);
298 ldap_pvt_thread_mutex_unlock( &op->o_conn->c_mutex );
300 rs->sr_err = slap_sasl_bind( op, rs );
302 ldap_pvt_thread_mutex_lock( &op->o_conn->c_mutex );
303 if( rs->sr_err == LDAP_SUCCESS ) {
304 ber_dupbv(&op->o_conn->c_dn, &op->orb_edn);
305 if( op->orb_edn.bv_len != 0 ) {
306 /* edn is always normalized already */
307 ber_dupbv( &op->o_conn->c_ndn, &op->o_conn->c_dn );
309 op->o_tmpfree( op->orb_edn.bv_val, op->o_tmpmemctx );
310 op->orb_edn.bv_val = NULL;
311 op->orb_edn.bv_len = 0;
312 op->o_conn->c_authmech = op->o_conn->c_sasl_bind_mech;
313 op->o_conn->c_sasl_bind_mech.bv_val = NULL;
314 op->o_conn->c_sasl_bind_mech.bv_len = 0;
315 op->o_conn->c_sasl_bind_in_progress = 0;
317 op->o_conn->c_sasl_ssf = op->orb_ssf;
318 if( op->orb_ssf > op->o_conn->c_ssf ) {
319 op->o_conn->c_ssf = op->orb_ssf;
322 if( op->o_conn->c_dn.bv_len != 0 ) {
323 ber_len_t max = sockbuf_max_incoming_auth;
324 ber_sockbuf_ctrl( op->o_conn->c_sb,
325 LBER_SB_OPT_SET_MAX_INCOMING, &max );
328 /* log authorization identity */
329 Statslog( LDAP_DEBUG_STATS,
330 "conn=%lu op=%lu BIND dn=\"%s\" mech=%s ssf=%d\n",
331 op->o_connid, op->o_opid,
332 op->o_conn->c_dn.bv_val ? op->o_conn->c_dn.bv_val : "<empty>",
333 op->o_conn->c_authmech.bv_val, op->orb_ssf );
336 LDAP_LOG( OPERATION, DETAIL1,
337 "do_bind: SASL/%s bind: dn=\"%s\" ssf=%d\n",
338 op->o_conn->c_authmech.bv_val,
339 op->o_conn->c_dn.bv_val ? op->o_conn->c_dn.bv_val : "<empty>",
342 Debug( LDAP_DEBUG_TRACE,
343 "do_bind: SASL/%s bind: dn=\"%s\" ssf=%d\n",
344 op->o_conn->c_authmech.bv_val,
345 op->o_conn->c_dn.bv_val ? op->o_conn->c_dn.bv_val : "<empty>",
349 } else if ( rs->sr_err == LDAP_SASL_BIND_IN_PROGRESS ) {
350 op->o_conn->c_sasl_bind_in_progress = 1;
353 if ( op->o_conn->c_sasl_bind_mech.bv_val ) {
354 free( op->o_conn->c_sasl_bind_mech.bv_val );
355 op->o_conn->c_sasl_bind_mech.bv_val = NULL;
356 op->o_conn->c_sasl_bind_mech.bv_len = 0;
358 op->o_conn->c_sasl_bind_in_progress = 0;
364 * Normally post-operation plugins are called only after the
365 * backend operation. Because the front-end performs SASL
366 * binds on behalf of the backend, we'll make a special
367 * exception to call the post-operation plugins after a
371 slapi_int_pblock_set_operation( pb, op );
372 slapi_pblock_set( pb, SLAPI_BIND_TARGET, (void *)dn.bv_val );
373 slapi_pblock_set( pb, SLAPI_BIND_METHOD, (void *)method );
374 slapi_pblock_set( pb, SLAPI_BIND_CREDENTIALS, (void *)&op->orb_cred );
375 slapi_pblock_set( pb, SLAPI_MANAGEDSAIT, (void *)(0) );
376 (void) slapi_int_call_plugins( op->o_bd, SLAPI_PLUGIN_POST_BIND_FN, pb );
378 #endif /* LDAP_SLAPI */
380 ldap_pvt_thread_mutex_unlock( &op->o_conn->c_mutex );
385 /* Not SASL, cancel any in-progress bind */
386 ldap_pvt_thread_mutex_lock( &op->o_conn->c_mutex );
388 if ( op->o_conn->c_sasl_bind_mech.bv_val != NULL ) {
389 free(op->o_conn->c_sasl_bind_mech.bv_val);
390 op->o_conn->c_sasl_bind_mech.bv_val = NULL;
391 op->o_conn->c_sasl_bind_mech.bv_len = 0;
393 op->o_conn->c_sasl_bind_in_progress = 0;
395 slap_sasl_reset( op->o_conn );
396 ldap_pvt_thread_mutex_unlock( &op->o_conn->c_mutex );
399 if ( method == LDAP_AUTH_SIMPLE ) {
400 ber_str2bv( "SIMPLE", sizeof("SIMPLE")-1, 0, &mech );
401 /* accept "anonymous" binds */
402 if ( op->orb_cred.bv_len == 0 || op->o_req_ndn.bv_len == 0 ) {
403 rs->sr_err = LDAP_SUCCESS;
405 if( op->orb_cred.bv_len &&
406 !( global_allows & SLAP_ALLOW_BIND_ANON_CRED ))
408 /* cred is not empty, disallow */
409 rs->sr_err = LDAP_INVALID_CREDENTIALS;
411 } else if ( op->o_req_ndn.bv_len &&
412 !( global_allows & SLAP_ALLOW_BIND_ANON_DN ))
414 /* DN is not empty, disallow */
415 rs->sr_err = LDAP_UNWILLING_TO_PERFORM;
417 "unauthenticated bind (DN with no password) disallowed";
419 } else if ( global_disallows & SLAP_DISALLOW_BIND_ANON ) {
421 rs->sr_err = LDAP_INAPPROPRIATE_AUTH;
422 rs->sr_text = "anonymous bind disallowed";
425 backend_check_restrictions( op, rs, &mech );
429 * we already forced connection to "anonymous",
430 * just need to send success
432 send_ldap_result( op, rs );
434 LDAP_LOG( OPERATION, DETAIL1,
435 "do_bind: conn %d v%d anonymous bind\n",
436 op->o_connid, version , 0 );
438 Debug( LDAP_DEBUG_TRACE, "do_bind: v%d anonymous bind\n",
443 } else if ( global_disallows & SLAP_DISALLOW_BIND_SIMPLE ) {
444 /* disallow simple authentication */
445 rs->sr_err = LDAP_UNWILLING_TO_PERFORM;
446 rs->sr_text = "unwilling to perform simple authentication";
448 send_ldap_result( op, rs );
450 LDAP_LOG( OPERATION, INFO,
451 "do_bind: conn %d v%d simple bind(%s) disallowed\n",
452 op->o_connid, version, op->o_req_ndn.bv_val );
454 Debug( LDAP_DEBUG_TRACE,
455 "do_bind: v%d simple bind(%s) disallowed\n",
456 version, op->o_req_ndn.bv_val, 0 );
461 #ifdef LDAP_API_FEATURE_X_OPENLDAP_V2_KBIND
462 } else if ( method == LDAP_AUTH_KRBV41 || method == LDAP_AUTH_KRBV42 ) {
463 if ( global_disallows & SLAP_DISALLOW_BIND_KRBV4 ) {
464 /* disallow simple authentication */
465 rs->sr_err = LDAP_UNWILLING_TO_PERFORM;
466 rs->sr_text = "unwilling to perform Kerberos V4 bind";
468 send_ldap_result( op, rs );
470 LDAP_LOG( OPERATION, DETAIL1,
471 "do_bind: conn %d v%d Kerberos V4 bind\n",
472 op->o_connid, version , 0 );
474 Debug( LDAP_DEBUG_TRACE, "do_bind: v%d Kerberos V4 bind\n",
479 ber_str2bv( "KRBV4", sizeof("KRBV4")-1, 0, &mech );
483 rs->sr_err = LDAP_AUTH_METHOD_NOT_SUPPORTED;
484 rs->sr_text = "unknown authentication method";
486 send_ldap_result( op, rs );
488 LDAP_LOG( OPERATION, INFO,
489 "do_bind: conn %ld v%d unknown authentication method (%ld)\n",
490 op->o_connid, version, method );
492 Debug( LDAP_DEBUG_TRACE,
493 "do_bind: v%d unknown authentication method (%ld)\n",
494 version, method, 0 );
500 * We could be serving multiple database backends. Select the
501 * appropriate one, or send a referral to our "referral server"
502 * if we don't hold it.
505 if ( (op->o_bd = select_backend( &op->o_req_ndn, 0, 0 )) == NULL ) {
506 if ( default_referral ) {
507 rs->sr_ref = referral_rewrite( default_referral,
508 NULL, &op->o_req_dn, LDAP_SCOPE_DEFAULT );
509 if (!rs->sr_ref) rs->sr_ref = default_referral;
511 rs->sr_err = LDAP_REFERRAL;
512 send_ldap_result( op, rs );
514 if (rs->sr_ref != default_referral) ber_bvarray_free( rs->sr_ref );
517 /* noSuchObject is not allowed to be returned by bind */
518 rs->sr_err = LDAP_INVALID_CREDENTIALS;
519 send_ldap_result( op, rs );
525 /* check restrictions */
526 if( backend_check_restrictions( op, rs, NULL ) != LDAP_SUCCESS ) {
527 send_ldap_result( op, rs );
531 #if defined( LDAP_SLAPI )
534 slapi_int_pblock_set_operation( pb, op );
535 slapi_pblock_set( pb, SLAPI_BIND_TARGET, (void *)dn.bv_val );
536 slapi_pblock_set( pb, SLAPI_BIND_METHOD, (void *)method );
537 slapi_pblock_set( pb, SLAPI_BIND_CREDENTIALS, (void *)&op->orb_cred );
538 slapi_pblock_set( pb, SLAPI_MANAGEDSAIT, (void *)(0) );
539 slapi_pblock_set( pb, SLAPI_CONN_DN, (void *)(0) );
541 rc = slapi_int_call_plugins( op->o_bd, SLAPI_PLUGIN_PRE_BIND_FN, pb );
544 LDAP_LOG( OPERATION, INFO,
545 "do_bind: Bind preoperation plugin returned %d\n",
548 Debug(LDAP_DEBUG_TRACE,
549 "do_bind: Bind preoperation plugin returned %d.\n",
554 case SLAPI_BIND_SUCCESS:
555 /* Continue with backend processing */
557 case SLAPI_BIND_FAIL:
558 /* Failure, server sends result */
559 rs->sr_err = LDAP_INVALID_CREDENTIALS;
560 send_ldap_result( op, rs );
563 case SLAPI_BIND_ANONYMOUS:
564 /* SLAPI_BIND_ANONYMOUS is undocumented XXX */
566 /* Authoritative, plugin sent result, or no plugins called. */
567 if ( slapi_pblock_get( op->o_pb, SLAPI_RESULT_CODE,
568 (void *)&rs->sr_err) != 0 )
570 rs->sr_err = LDAP_OTHER;
573 op->orb_edn.bv_val = NULL;
574 op->orb_edn.bv_len = 0;
576 if ( rs->sr_err == LDAP_SUCCESS ) {
577 slapi_pblock_get( pb, SLAPI_CONN_DN, (void *)&op->orb_edn.bv_val );
578 if ( op->orb_edn.bv_val == NULL ) {
580 /* No plugins were called; continue. */
584 op->orb_edn.bv_len = strlen( op->orb_edn.bv_val );
586 rs->sr_err = dnPrettyNormal( NULL, &op->orb_edn,
587 &op->o_req_dn, &op->o_req_ndn, op->o_tmpmemctx );
588 ldap_pvt_thread_mutex_lock( &op->o_conn->c_mutex );
589 ber_dupbv(&op->o_conn->c_dn, &op->o_req_dn);
590 ber_dupbv(&op->o_conn->c_ndn, &op->o_req_ndn);
591 op->o_tmpfree( op->o_req_dn.bv_val, op->o_tmpmemctx );
592 op->o_req_dn.bv_val = NULL;
593 op->o_req_dn.bv_len = 0;
594 op->o_tmpfree( op->o_req_ndn.bv_val, op->o_tmpmemctx );
595 op->o_req_ndn.bv_val = NULL;
596 op->o_req_ndn.bv_len = 0;
597 if ( op->o_conn->c_dn.bv_len != 0 ) {
598 ber_len_t max = sockbuf_max_incoming_auth;
599 ber_sockbuf_ctrl( op->o_conn->c_sb,
600 LBER_SB_OPT_SET_MAX_INCOMING, &max );
602 /* log authorization identity */
603 Statslog( LDAP_DEBUG_STATS,
604 "conn=%lu op=%lu BIND dn=\"%s\" mech=%s (SLAPI) ssf=0\n",
605 op->o_connid, op->o_opid,
606 op->o_conn->c_dn.bv_val ? op->o_conn->c_dn.bv_val : "<empty>",
608 ldap_pvt_thread_mutex_unlock( &op->o_conn->c_mutex );
614 #endif /* defined( LDAP_SLAPI ) */
616 if( op->o_bd->be_bind ) {
617 op->orb_method = method;
618 rs->sr_err = (op->o_bd->be_bind)( op, rs );
620 if ( rs->sr_err == 0 ) {
621 ldap_pvt_thread_mutex_lock( &op->o_conn->c_mutex );
623 if( op->o_conn->c_authz_backend == NULL ) {
624 op->o_conn->c_authz_backend = op->o_bd;
627 /* be_bind returns regular/global edn */
628 if( op->orb_edn.bv_len ) {
629 op->o_conn->c_dn = op->orb_edn;
631 ber_dupbv(&op->o_conn->c_dn, &op->o_req_dn);
634 ber_dupbv( &op->o_conn->c_ndn, &op->o_req_ndn );
636 if( op->o_conn->c_dn.bv_len != 0 ) {
637 ber_len_t max = sockbuf_max_incoming_auth;
638 ber_sockbuf_ctrl( op->o_conn->c_sb,
639 LBER_SB_OPT_SET_MAX_INCOMING, &max );
642 /* log authorization identity */
643 Statslog( LDAP_DEBUG_STATS,
644 "conn=%lu op=%lu BIND dn=\"%s\" mech=%s ssf=0\n",
645 op->o_connid, op->o_opid,
646 op->o_conn->c_dn.bv_val, mech.bv_val, 0 );
649 LDAP_LOG( OPERATION, DETAIL1,
650 "do_bind: v%d bind: \"%s\" to \"%s\" \n",
651 version, op->o_conn->c_dn.bv_val, op->o_conn->c_dn.bv_val );
653 Debug( LDAP_DEBUG_TRACE,
654 "do_bind: v%d bind: \"%s\" to \"%s\"\n",
655 version, dn.bv_val, op->o_conn->c_dn.bv_val );
658 ldap_pvt_thread_mutex_unlock( &op->o_conn->c_mutex );
660 /* send this here to avoid a race condition */
661 send_ldap_result( op, rs );
663 } else if (op->orb_edn.bv_val != NULL) {
664 free( op->orb_edn.bv_val );
668 send_ldap_error( op, rs, LDAP_UNWILLING_TO_PERFORM,
669 "operation not supported within naming context" );
672 #if defined( LDAP_SLAPI )
673 if ( pb != NULL && slapi_int_call_plugins( op->o_bd, SLAPI_PLUGIN_POST_BIND_FN, pb ) < 0 ) {
675 LDAP_LOG( OPERATION, INFO,
676 "do_bind: Bind postoperation plugins failed\n",
679 Debug(LDAP_DEBUG_TRACE,
680 "do_bind: Bind postoperation plugins failed.\n",
684 #endif /* defined( LDAP_SLAPI ) */
687 if ( rs->sr_err == LDAP_SUCCESS ) {
688 if ( method != LDAP_AUTH_SASL ) {
689 ber_dupbv( &op->o_conn->c_authmech, &mech );
691 op->o_conn->c_authtype = method;
694 op->o_conn->c_sasl_bindop = NULL;
696 if( op->o_req_dn.bv_val != NULL ) {
697 sl_free( op->o_req_dn.bv_val, op->o_tmpmemctx );
698 op->o_req_dn.bv_val = NULL;
700 if( op->o_req_ndn.bv_val != NULL ) {
701 sl_free( op->o_req_ndn.bv_val, op->o_tmpmemctx );
702 op->o_req_ndn.bv_val = NULL;