1 /* backend.c - routines for dealing with back-end databases */
3 /* This work is part of OpenLDAP Software <http://www.openldap.org/>.
5 * Copyright 1998-2014 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.
32 #include <ac/string.h>
33 #include <ac/socket.h>
42 * If a module is configured as dynamic, its header should not
43 * get included into slapd. While this is a general rule and does
44 * not have much of an effect in UNIX, this rule should be adhered
45 * to for Windows, where dynamic object code should not be implicitly
46 * imported into slapd without appropriate __declspec(dllimport) directives.
50 slap_bi_head backendInfo = LDAP_STAILQ_HEAD_INITIALIZER(backendInfo);
53 slap_be_head backendDB = LDAP_STAILQ_HEAD_INITIALIZER(backendDB);
56 backend_init_controls( BackendInfo *bi )
58 if ( bi->bi_controls ) {
61 for ( i = 0; bi->bi_controls[ i ]; i++ ) {
64 if ( slap_find_control_id( bi->bi_controls[ i ], &cid )
65 == LDAP_CONTROL_NOT_FOUND )
67 if ( !( slapMode & SLAP_TOOL_MODE ) ) {
74 bi->bi_ctrls[ cid ] = 1;
81 int backend_init(void)
86 if((nBackendInfo != 0) || !LDAP_STAILQ_EMPTY(&backendInfo)) {
87 /* already initialized */
88 Debug( LDAP_DEBUG_ANY,
89 "backend_init: already initialized\n", 0, 0, 0 );
93 for( bi=slap_binfo; bi->bi_type != NULL; bi++,nBackendInfo++ ) {
94 assert( bi->bi_init != 0 );
96 rc = bi->bi_init( bi );
99 Debug( LDAP_DEBUG_ANY,
100 "backend_init: initialized for type \"%s\"\n",
102 /* destroy those we've already inited */
107 if ( slap_binfo[nBackendInfo].bi_destroy ) {
108 slap_binfo[nBackendInfo].bi_destroy(
109 &slap_binfo[nBackendInfo] );
115 LDAP_STAILQ_INSERT_TAIL(&backendInfo, bi, bi_next);
118 if ( nBackendInfo > 0) {
126 Debug( LDAP_DEBUG_ANY,
127 "backend_init: failed\n",
131 #endif /* SLAPD_MODULES */
134 int backend_add(BackendInfo *aBackendInfo)
138 if ( aBackendInfo->bi_init == NULL ) {
139 Debug( LDAP_DEBUG_ANY, "backend_add: "
140 "backend type \"%s\" does not have the (mandatory)init function\n",
141 aBackendInfo->bi_type, 0, 0 );
145 rc = aBackendInfo->bi_init(aBackendInfo);
147 Debug( LDAP_DEBUG_ANY,
148 "backend_add: initialization for type \"%s\" failed\n",
149 aBackendInfo->bi_type, 0, 0 );
153 (void)backend_init_controls( aBackendInfo );
155 /* now add the backend type to the Backend Info List */
156 LDAP_STAILQ_INSERT_TAIL( &backendInfo, aBackendInfo, bi_next );
162 backend_set_controls( BackendDB *be )
164 BackendInfo *bi = be->bd_info;
166 /* back-relay takes care of itself; so may do other */
167 if ( overlay_is_over( be ) ) {
168 bi = ((slap_overinfo *)be->bd_info->bi_private)->oi_orig;
171 if ( bi->bi_controls ) {
172 if ( be->be_ctrls[ SLAP_MAX_CIDS ] == 0 ) {
173 AC_MEMCPY( be->be_ctrls, bi->bi_ctrls,
174 sizeof( be->be_ctrls ) );
175 be->be_ctrls[ SLAP_MAX_CIDS ] = 1;
180 for ( i = 0; i < SLAP_MAX_CIDS; i++ ) {
181 if ( bi->bi_ctrls[ i ] ) {
182 be->be_ctrls[ i ] = bi->bi_ctrls[ i ];
192 /* startup a specific backend database */
193 int backend_startup_one(Backend *be, ConfigReply *cr)
197 assert( be != NULL );
199 be->be_pending_csn_list = (struct be_pcl *)
200 ch_calloc( 1, sizeof( struct be_pcl ) );
202 LDAP_TAILQ_INIT( be->be_pending_csn_list );
204 Debug( LDAP_DEBUG_TRACE,
205 "backend_startup_one: starting \"%s\"\n",
206 be->be_suffix ? be->be_suffix[0].bv_val : "(unknown)",
209 /* set database controls */
210 (void)backend_set_controls( be );
213 if ( !BER_BVISEMPTY( &be->be_rootndn )
214 && select_backend( &be->be_rootndn, 0 ) == be
215 && BER_BVISNULL( &be->be_rootpw ) )
217 /* warning: if rootdn entry is created,
218 * it can take rootdn privileges;
219 * set empty rootpw to prevent */
223 if ( be->bd_info->bi_db_open ) {
224 rc = be->bd_info->bi_db_open( be, cr );
226 (void)backend_set_controls( be );
229 char *type = be->bd_info->bi_type;
230 char *suffix = "(null)";
232 if ( overlay_is_over( be ) ) {
233 slap_overinfo *oi = (slap_overinfo *)be->bd_info->bi_private;
234 type = oi->oi_orig->bi_type;
237 if ( be->be_suffix != NULL && !BER_BVISNULL( &be->be_suffix[0] ) ) {
238 suffix = be->be_suffix[0].bv_val;
241 Debug( LDAP_DEBUG_ANY,
242 "backend_startup_one (type=%s, suffix=\"%s\"): "
243 "bi_db_open failed! (%d)\n",
251 int backend_startup(Backend *be)
256 ConfigReply cr={0, ""};
258 if( ! ( nBackendDB > 0 ) ) {
260 Debug( LDAP_DEBUG_ANY,
261 "backend_startup: %d databases to startup.\n",
267 /* silent noop if disabled */
268 if ( SLAP_DBDISABLED( be ))
270 if ( be->bd_info->bi_open ) {
271 rc = be->bd_info->bi_open( be->bd_info );
273 Debug( LDAP_DEBUG_ANY,
274 "backend_startup: bi_open failed!\n",
281 return backend_startup_one( be, &cr );
284 /* open frontend, if required */
285 if ( frontendDB->bd_info->bi_db_open ) {
286 rc = frontendDB->bd_info->bi_db_open( frontendDB, &cr );
288 Debug( LDAP_DEBUG_ANY,
289 "backend_startup: bi_db_open(frontend) failed! (%d)\n",
295 /* open each backend type */
297 LDAP_STAILQ_FOREACH(bi, &backendInfo, bi_next) {
299 if( bi->bi_nDB == 0) {
300 /* no database of this type, don't open */
305 rc = bi->bi_open( bi );
307 Debug( LDAP_DEBUG_ANY,
308 "backend_startup: bi_open %d (%s) failed!\n",
314 (void)backend_init_controls( bi );
317 /* open each backend database */
319 LDAP_STAILQ_FOREACH(be, &backendDB, be_next) {
321 if ( SLAP_DBDISABLED( be ))
323 if ( be->be_suffix == NULL ) {
324 Debug( LDAP_DEBUG_ANY,
325 "backend_startup: warning, database %d (%s) "
327 i, be->bd_info->bi_type, 0 );
330 rc = backend_startup_one( be, &cr );
338 int backend_num( Backend *be )
343 if( be == NULL ) return -1;
345 LDAP_STAILQ_FOREACH( b2, &backendDB, be_next ) {
346 if( be == b2 ) return i;
352 int backend_shutdown( Backend *be )
358 /* shutdown a specific backend database */
360 if ( be->bd_info->bi_nDB == 0 ) {
361 /* no database of this type, we never opened it */
365 if ( be->bd_info->bi_db_close ) {
366 rc = be->bd_info->bi_db_close( be, NULL );
370 if( be->bd_info->bi_close ) {
371 rc = be->bd_info->bi_close( be->bd_info );
378 /* close each backend database */
379 LDAP_STAILQ_FOREACH( be, &backendDB, be_next ) {
380 if ( SLAP_DBDISABLED( be ))
382 if ( be->bd_info->bi_db_close ) {
383 be->bd_info->bi_db_close( be, NULL );
387 Debug( LDAP_DEBUG_ANY,
388 "backend_close: bi_db_close %s failed!\n",
393 /* close each backend type */
394 LDAP_STAILQ_FOREACH( bi, &backendInfo, bi_next ) {
395 if( bi->bi_nDB == 0 ) {
396 /* no database of this type */
405 /* close frontend, if required */
406 if ( frontendDB->bd_info->bi_db_close ) {
407 rc = frontendDB->bd_info->bi_db_close ( frontendDB, NULL );
409 Debug( LDAP_DEBUG_ANY,
410 "backend_startup: bi_db_close(frontend) failed! (%d)\n",
419 * This function is supposed to be the exact counterpart
420 * of backend_startup_one(), although this one calls bi_db_destroy()
421 * while backend_startup_one() calls bi_db_open().
423 * Make sure backend_stopdown_one() destroys resources allocated
424 * by backend_startup_one(); only call backend_destroy_one() when
425 * all stuff in a BackendDB needs to be destroyed
428 backend_stopdown_one( BackendDB *bd )
430 if ( bd->be_pending_csn_list ) {
431 struct slap_csn_entry *csne;
432 csne = LDAP_TAILQ_FIRST( bd->be_pending_csn_list );
434 struct slap_csn_entry *tmp_csne = csne;
436 LDAP_TAILQ_REMOVE( bd->be_pending_csn_list, csne, ce_csn_link );
437 ch_free( csne->ce_csn.bv_val );
438 csne = LDAP_TAILQ_NEXT( csne, ce_csn_link );
441 ch_free( bd->be_pending_csn_list );
444 if ( bd->bd_info->bi_db_destroy ) {
445 bd->bd_info->bi_db_destroy( bd, NULL );
449 void backend_destroy_one( BackendDB *bd, int dynamic )
452 LDAP_STAILQ_REMOVE(&backendDB, bd, BackendDB, be_next );
455 if ( bd->be_syncinfo ) {
456 syncinfo_free( bd->be_syncinfo, 1 );
459 backend_stopdown_one( bd );
461 ber_bvarray_free( bd->be_suffix );
462 ber_bvarray_free( bd->be_nsuffix );
463 if ( !BER_BVISNULL( &bd->be_rootdn ) ) {
464 free( bd->be_rootdn.bv_val );
466 if ( !BER_BVISNULL( &bd->be_rootndn ) ) {
467 free( bd->be_rootndn.bv_val );
469 if ( !BER_BVISNULL( &bd->be_rootpw ) ) {
470 free( bd->be_rootpw.bv_val );
472 acl_destroy( bd->be_acl );
473 limits_destroy( bd->be_limits );
474 if ( bd->be_extra_anlist ) {
475 anlist_free( bd->be_extra_anlist, 1, NULL );
477 if ( !BER_BVISNULL( &bd->be_update_ndn ) ) {
478 ch_free( bd->be_update_ndn.bv_val );
480 if ( bd->be_update_refs ) {
481 ber_bvarray_free( bd->be_update_refs );
484 ldap_pvt_thread_mutex_destroy( &bd->be_pcl_mutex );
491 int backend_destroy(void)
496 /* destroy each backend database */
497 while (( bd = LDAP_STAILQ_FIRST(&backendDB))) {
498 backend_destroy_one( bd, 1 );
501 /* destroy each backend type */
502 LDAP_STAILQ_FOREACH( bi, &backendInfo, bi_next ) {
503 if( bi->bi_destroy ) {
504 bi->bi_destroy( bi );
509 LDAP_STAILQ_INIT(&backendInfo);
511 /* destroy frontend database */
514 if ( bd->bd_info->bi_db_destroy ) {
515 bd->bd_info->bi_db_destroy( bd, NULL );
517 ber_bvarray_free( bd->be_suffix );
518 ber_bvarray_free( bd->be_nsuffix );
519 if ( !BER_BVISNULL( &bd->be_rootdn ) ) {
520 free( bd->be_rootdn.bv_val );
522 if ( !BER_BVISNULL( &bd->be_rootndn ) ) {
523 free( bd->be_rootndn.bv_val );
525 if ( !BER_BVISNULL( &bd->be_rootpw ) ) {
526 free( bd->be_rootpw.bv_val );
528 acl_destroy( bd->be_acl );
535 BackendInfo* backend_info(const char *type)
539 /* search for the backend type */
540 LDAP_STAILQ_FOREACH(bi,&backendInfo,bi_next) {
541 if( strcasecmp(bi->bi_type, type) == 0 ) {
555 /* If idx < 0, just add to end of list */
557 LDAP_STAILQ_INSERT_TAIL(&backendDB, be, be_next);
558 } else if ( idx == 0 ) {
559 LDAP_STAILQ_INSERT_HEAD(&backendDB, be, be_next);
564 b2 = LDAP_STAILQ_FIRST(&backendDB);
566 for (i=0; i<idx; i++) {
567 b2 = LDAP_STAILQ_NEXT(b2, be_next);
569 LDAP_STAILQ_INSERT_AFTER(&backendDB, b2, be, be_next);
579 LDAP_STAILQ_REMOVE(&backendDB, be, BackendDB, be_next);
580 backend_db_insert(be, idx);
590 BackendInfo *bi = backend_info(type);
595 fprintf( stderr, "Unrecognized database type (%s)\n", type );
599 /* If be is provided, treat it as private. Otherwise allocate
600 * one and add it to the global list.
603 be = ch_calloc( 1, sizeof(Backend) );
605 if ( idx >= nbackends )
608 backend_db_insert( be, idx );
614 be->be_def_limit = frontendDB->be_def_limit;
615 be->be_dfltaccess = frontendDB->be_dfltaccess;
617 be->be_restrictops = frontendDB->be_restrictops;
618 be->be_requires = frontendDB->be_requires;
619 be->be_ssf_set = frontendDB->be_ssf_set;
621 ldap_pvt_thread_mutex_init( &be->be_pcl_mutex );
623 /* assign a default depth limit for alias deref */
624 be->be_max_deref_depth = SLAPD_DEFAULT_MAXDEREFDEPTH;
626 if ( bi->bi_db_init ) {
627 rc = bi->bi_db_init( be, cr );
631 fprintf( stderr, "database init failed (%s)\n", type );
632 /* If we created and linked this be, remove it and free it */
634 LDAP_STAILQ_REMOVE(&backendDB, be, BackendDB, be_next);
635 ldap_pvt_thread_mutex_destroy( &be->be_pcl_mutex );
642 backend_init_controls( bi );
654 LDAP_STAILQ_FOREACH( be, &backendDB, be_next ) {
655 if ( be->bd_info->bi_db_close ) {
656 be->bd_info->bi_db_close( be, NULL );
660 if ( frontendDB->bd_info->bi_db_close ) {
661 frontendDB->bd_info->bi_db_close( frontendDB, NULL );
672 ber_len_t len, dnlen = dn->bv_len;
675 LDAP_STAILQ_FOREACH( be, &backendDB, be_next ) {
676 if ( be->be_nsuffix == NULL || SLAP_DBHIDDEN( be ) || SLAP_DBDISABLED( be )) {
680 for ( j = 0; !BER_BVISNULL( &be->be_nsuffix[j] ); j++ )
682 if ( ( SLAP_GLUE_SUBORDINATE( be ) ) && noSubs )
687 len = be->be_nsuffix[j].bv_len;
690 /* suffix is longer than DN */
695 * input DN is normalized, so the separator check
696 * need not look at escaping
698 if ( len && len < dnlen &&
699 !DN_SEPARATOR( dn->bv_val[(dnlen-len)-1] ))
704 if ( strcmp( be->be_nsuffix[j].bv_val,
705 &dn->bv_val[dnlen-len] ) == 0 )
718 struct berval *bvsuffix )
722 if ( be->be_nsuffix == NULL ) {
726 for ( i = 0; !BER_BVISNULL( &be->be_nsuffix[i] ); i++ ) {
727 if ( bvmatch( &be->be_nsuffix[i], bvsuffix ) ) {
738 struct berval *bvsubordinate )
742 if ( be->be_nsuffix == NULL ) {
746 for ( i = 0; !BER_BVISNULL( &be->be_nsuffix[i] ); i++ ) {
747 if ( dnIsSuffix( bvsubordinate, &be->be_nsuffix[i] ) ) {
756 be_isroot_dn( Backend *be, struct berval *ndn )
758 if ( BER_BVISEMPTY( ndn ) || BER_BVISEMPTY( &be->be_rootndn ) ) {
762 return dn_match( &be->be_rootndn, ndn );
766 be_slurp_update( Operation *op )
768 return ( SLAP_SLURP_SHADOW( op->o_bd ) &&
769 be_isupdate_dn( op->o_bd, &op->o_ndn ) );
773 be_shadow_update( Operation *op )
775 /* This assumes that all internal ops (connid <= -1000) on a syncrepl
776 * database are syncrepl operations.
778 return ( ( SLAP_SYNC_SHADOW( op->o_bd ) && SLAPD_SYNC_IS_SYNCCONN( op->o_connid ) ) ||
779 ( SLAP_SHADOW( op->o_bd ) && be_isupdate_dn( op->o_bd, &op->o_ndn ) ) );
783 be_isupdate_dn( Backend *be, struct berval *ndn )
785 if ( BER_BVISEMPTY( ndn ) || BER_BVISEMPTY( &be->be_update_ndn ) ) {
789 return dn_match( &be->be_update_ndn, ndn );
793 be_root_dn( Backend *be )
795 return &be->be_rootdn;
799 be_isroot( Operation *op )
801 return be_isroot_dn( op->o_bd, &op->o_ndn );
805 be_isroot_pw( Operation *op )
807 return be_rootdn_bind( op, NULL ) == LDAP_SUCCESS;
811 * checks if binding as rootdn
814 * SLAP_CB_CONTINUE if not the rootdn, or if rootpw is null
815 * LDAP_SUCCESS if rootdn & rootpw
816 * LDAP_INVALID_CREDENTIALS if rootdn & !rootpw
819 * if LDAP_SUCCESS, op->orb_edn is set
820 * if LDAP_INVALID_CREDENTIALS, response is sent to client
823 be_rootdn_bind( Operation *op, SlapReply *rs )
827 void *old_authctx = NULL;
830 assert( op->o_tag == LDAP_REQ_BIND );
831 assert( op->orb_method == LDAP_AUTH_SIMPLE );
833 if ( !be_isroot_dn( op->o_bd, &op->o_req_ndn ) ) {
834 return SLAP_CB_CONTINUE;
837 if ( BER_BVISNULL( &op->o_bd->be_rootpw ) ) {
838 /* give the database a chance */
839 return SLAP_CB_CONTINUE;
842 if ( BER_BVISEMPTY( &op->o_bd->be_rootpw ) ) {
843 /* rootdn bind explicitly disallowed */
844 rc = LDAP_INVALID_CREDENTIALS;
853 ldap_pvt_thread_pool_setkey( op->o_threadctx, (void *)slap_sasl_bind,
854 op->o_conn->c_sasl_authctx, 0, &old_authctx, NULL );
857 rc = lutil_passwd( &op->o_bd->be_rootpw, &op->orb_cred, NULL, NULL );
860 ldap_pvt_thread_pool_setkey( op->o_threadctx, (void *)slap_sasl_bind,
861 old_authctx, 0, NULL, NULL );
864 rc = ( rc == 0 ? LDAP_SUCCESS : LDAP_INVALID_CREDENTIALS );
869 Debug( LDAP_DEBUG_TRACE, "%s: rootdn=\"%s\" bind%s\n",
870 op->o_log_prefix, op->o_bd->be_rootdn.bv_val,
871 rc == LDAP_SUCCESS ? " succeeded" : " failed" );
873 if ( rc == LDAP_SUCCESS ) {
874 /* Set to the pretty rootdn */
875 ber_dupbv( &op->orb_edn, &op->o_bd->be_rootdn );
878 send_ldap_result( op, rs );
885 /* Inlined in proto-slap.h, sans assertions, when !(USE_RS_ASSERT) */
889 slap_operation_t which,
895 void (*rsCheck)( const SlapReply *rs ) =
896 which < op_aux_operational ? rs_assert_ready : rs_assert_ok;
898 # define rsCheck(rs) ((void) 0)
902 assert( bi != NULL );
903 assert( (unsigned) which < (unsigned) op_last );
905 fn = (&bi->bi_op_bind)[ which ];
907 assert( op != NULL );
908 assert( rs != NULL );
915 if ( rc != SLAP_CB_CONTINUE && rc != SLAP_CB_BYPASS ) {
916 int err = rs->sr_err;
919 if ( err == LDAP_COMPARE_TRUE || err == LDAP_COMPARE_FALSE ) {
920 assert( which == op_compare );
921 assert( rc == LDAP_SUCCESS );
924 rsCheck = which < op_extended ? rs_assert_done : rs_assert_ok;
925 if ( which == op_aux_chk_referrals ) {
926 if ( rc == LDAP_SUCCESS ) rsCheck = rs_assert_ready;
927 else if ( rc == LDAP_REFERRAL ) rsCheck = rs_assert_done;
928 } else if ( which == op_bind ) {
929 if ( rc == LDAP_SUCCESS ) rsCheck = rs_assert_ok;
932 /* TODO: Just what is the relation between rc and rs->sr_err? */
934 (rc != LDAP_SUCCESS ||
935 (err != LDAP_COMPARE_TRUE && err != LDAP_COMPARE_FALSE)) )
954 if ( op->o_bd->be_release ) {
955 /* free and release entry from backend */
956 return op->o_bd->be_release( op, e, rw );
965 backend_unbind( Operation *op, SlapReply *rs )
969 LDAP_STAILQ_FOREACH( be, &backendDB, be_next ) {
970 if ( be->be_unbind ) {
972 be->be_unbind( op, rs );
980 backend_connection_init(
985 LDAP_STAILQ_FOREACH( be, &backendDB, be_next ) {
986 if ( be->be_connection_init ) {
987 be->be_connection_init( be, conn );
995 backend_connection_destroy(
1000 LDAP_STAILQ_FOREACH( be, &backendDB, be_next ) {
1001 if ( be->be_connection_destroy ) {
1002 be->be_connection_destroy( be, conn);
1010 backend_check_controls(
1014 LDAPControl **ctrls = op->o_ctrls;
1015 rs->sr_err = LDAP_SUCCESS;
1018 for( ; *ctrls != NULL ; ctrls++ ) {
1021 switch ( slap_global_control( op, (*ctrls)->ldctl_oid, &cid ) ) {
1022 case LDAP_CONTROL_NOT_FOUND:
1023 /* unrecognized control */
1024 if ( (*ctrls)->ldctl_iscritical ) {
1025 /* should not be reachable */
1026 Debug( LDAP_DEBUG_ANY, "backend_check_controls: "
1027 "unrecognized critical control: %s\n",
1028 (*ctrls)->ldctl_oid, 0, 0 );
1031 Debug( LDAP_DEBUG_TRACE, "backend_check_controls: "
1032 "unrecognized non-critical control: %s\n",
1033 (*ctrls)->ldctl_oid, 0, 0 );
1037 case LDAP_COMPARE_FALSE:
1038 if ( !op->o_bd->be_ctrls[cid] && (*ctrls)->ldctl_iscritical ) {
1039 #ifdef SLAP_CONTROL_X_WHATFAILED
1040 if ( get_whatFailed( op ) ) {
1042 oids[ 0 ] = (*ctrls)->ldctl_oid;
1044 slap_ctrl_whatFailed_add( op, rs, oids );
1047 /* RFC 4511 allows unavailableCriticalExtension to be
1048 * returned when the server is unwilling to perform
1049 * an operation extended by a recognized critical
1052 rs->sr_text = "critical control unavailable in context";
1053 rs->sr_err = LDAP_UNAVAILABLE_CRITICAL_EXTENSION;
1058 case LDAP_COMPARE_TRUE:
1063 Debug( LDAP_DEBUG_ANY,
1064 "backend_check_controls: unable to check control: %s\n",
1065 (*ctrls)->ldctl_oid, 0, 0 );
1068 rs->sr_text = "unable to check control";
1069 rs->sr_err = LDAP_OTHER;
1075 #if 0 /* temporarily removed */
1076 /* check should be generalized */
1077 if( get_relax(op) && !be_isroot(op)) {
1078 rs->sr_text = "requires manager authorization";
1079 rs->sr_err = LDAP_UNWILLING_TO_PERFORM;
1088 backend_check_restrictions(
1091 struct berval *opdata )
1093 slap_mask_t restrictops;
1094 slap_mask_t requires;
1096 slap_mask_t exopflag = 0;
1097 slap_ssf_set_t ssfs, *ssf;
1102 restrictops = frontendDB->be_restrictops;
1103 requires = frontendDB->be_requires;
1104 ssfs = frontendDB->be_ssf_set;
1108 slap_ssf_t *fssf, *bssf;
1109 int rc = SLAP_CB_CONTINUE, i;
1111 if ( op->o_bd->be_chk_controls ) {
1112 rc = ( *op->o_bd->be_chk_controls )( op, rs );
1115 if ( rc == SLAP_CB_CONTINUE ) {
1116 rc = backend_check_controls( op, rs );
1119 if ( rc != LDAP_SUCCESS ) {
1123 restrictops |= op->o_bd->be_restrictops;
1124 requires |= op->o_bd->be_requires;
1125 bssf = &op->o_bd->be_ssf_set.sss_ssf;
1126 fssf = &ssfs.sss_ssf;
1127 for ( i=0; i < (int)(sizeof(ssfs)/sizeof(slap_ssf_t)); i++ ) {
1128 if ( bssf[i] ) fssf[i] = bssf[i];
1132 switch( op->o_tag ) {
1134 opflag = SLAP_RESTRICT_OP_ADD;
1138 opflag = SLAP_RESTRICT_OP_BIND;
1141 case LDAP_REQ_COMPARE:
1142 opflag = SLAP_RESTRICT_OP_COMPARE;
1144 case LDAP_REQ_DELETE:
1146 opflag = SLAP_RESTRICT_OP_DELETE;
1148 case LDAP_REQ_EXTENDED:
1149 opflag = SLAP_RESTRICT_OP_EXTENDED;
1152 /* treat unspecified as a modify */
1153 opflag = SLAP_RESTRICT_OP_MODIFY;
1158 if( bvmatch( opdata, &slap_EXOP_START_TLS ) ) {
1161 exopflag = SLAP_RESTRICT_EXOP_START_TLS;
1165 if( bvmatch( opdata, &slap_EXOP_WHOAMI ) ) {
1166 exopflag = SLAP_RESTRICT_EXOP_WHOAMI;
1170 if ( bvmatch( opdata, &slap_EXOP_CANCEL ) ) {
1171 exopflag = SLAP_RESTRICT_EXOP_CANCEL;
1175 if ( bvmatch( opdata, &slap_EXOP_MODIFY_PASSWD ) ) {
1176 exopflag = SLAP_RESTRICT_EXOP_MODIFY_PASSWD;
1181 /* treat everything else as a modify */
1182 opflag = SLAP_RESTRICT_OP_MODIFY;
1186 case LDAP_REQ_MODIFY:
1188 opflag = SLAP_RESTRICT_OP_MODIFY;
1190 case LDAP_REQ_RENAME:
1192 opflag = SLAP_RESTRICT_OP_RENAME;
1194 case LDAP_REQ_SEARCH:
1195 opflag = SLAP_RESTRICT_OP_SEARCH;
1197 case LDAP_REQ_UNBIND:
1202 rs->sr_text = "restrict operations internal error";
1203 rs->sr_err = LDAP_OTHER;
1208 /* these checks don't apply to StartTLS */
1210 rs->sr_err = LDAP_CONFIDENTIALITY_REQUIRED;
1211 if( op->o_transport_ssf < ssf->sss_transport ) {
1212 rs->sr_text = op->o_transport_ssf
1213 ? "stronger transport confidentiality required"
1214 : "transport confidentiality required";
1218 if( op->o_tls_ssf < ssf->sss_tls ) {
1219 rs->sr_text = op->o_tls_ssf
1220 ? "stronger TLS confidentiality required"
1221 : "TLS confidentiality required";
1226 if( op->o_tag == LDAP_REQ_BIND && opdata == NULL ) {
1227 /* simple bind specific check */
1228 if( op->o_ssf < ssf->sss_simple_bind ) {
1229 rs->sr_text = op->o_ssf
1230 ? "stronger confidentiality required"
1231 : "confidentiality required";
1236 if( op->o_tag != LDAP_REQ_BIND || opdata == NULL ) {
1237 /* these checks don't apply to SASL bind */
1239 if( op->o_sasl_ssf < ssf->sss_sasl ) {
1240 rs->sr_text = op->o_sasl_ssf
1241 ? "stronger SASL confidentiality required"
1242 : "SASL confidentiality required";
1246 if( op->o_ssf < ssf->sss_ssf ) {
1247 rs->sr_text = op->o_ssf
1248 ? "stronger confidentiality required"
1249 : "confidentiality required";
1255 if( op->o_transport_ssf < ssf->sss_update_transport ) {
1256 rs->sr_text = op->o_transport_ssf
1257 ? "stronger transport confidentiality required for update"
1258 : "transport confidentiality required for update";
1262 if( op->o_tls_ssf < ssf->sss_update_tls ) {
1263 rs->sr_text = op->o_tls_ssf
1264 ? "stronger TLS confidentiality required for update"
1265 : "TLS confidentiality required for update";
1269 if( op->o_sasl_ssf < ssf->sss_update_sasl ) {
1270 rs->sr_text = op->o_sasl_ssf
1271 ? "stronger SASL confidentiality required for update"
1272 : "SASL confidentiality required for update";
1276 if( op->o_ssf < ssf->sss_update_ssf ) {
1277 rs->sr_text = op->o_ssf
1278 ? "stronger confidentiality required for update"
1279 : "confidentiality required for update";
1283 if( !( global_allows & SLAP_ALLOW_UPDATE_ANON ) &&
1284 BER_BVISEMPTY( &op->o_ndn ) )
1286 rs->sr_text = "modifications require authentication";
1287 rs->sr_err = LDAP_STRONG_AUTH_REQUIRED;
1291 #ifdef SLAP_X_LISTENER_MOD
1292 if ( op->o_conn->c_listener &&
1293 ! ( op->o_conn->c_listener->sl_perms & ( !BER_BVISEMPTY( &op->o_ndn )
1294 ? (S_IWUSR|S_IWOTH) : S_IWOTH ) ) )
1296 /* no "w" mode means readonly */
1297 rs->sr_text = "modifications not allowed on this listener";
1298 rs->sr_err = LDAP_UNWILLING_TO_PERFORM;
1301 #endif /* SLAP_X_LISTENER_MOD */
1306 /* these checks don't apply to Bind, StartTLS, or Unbind */
1308 if( requires & SLAP_REQUIRE_STRONG ) {
1309 /* should check mechanism */
1310 if( ( op->o_transport_ssf < ssf->sss_transport
1311 && op->o_authtype == LDAP_AUTH_SIMPLE )
1312 || BER_BVISEMPTY( &op->o_dn ) )
1314 rs->sr_text = "strong(er) authentication required";
1315 rs->sr_err = LDAP_STRONG_AUTH_REQUIRED;
1320 if( requires & SLAP_REQUIRE_SASL ) {
1321 if( op->o_authtype != LDAP_AUTH_SASL || BER_BVISEMPTY( &op->o_dn ) ) {
1322 rs->sr_text = "SASL authentication required";
1323 rs->sr_err = LDAP_STRONG_AUTH_REQUIRED;
1328 if( requires & SLAP_REQUIRE_AUTHC ) {
1329 if( BER_BVISEMPTY( &op->o_dn ) ) {
1330 rs->sr_text = "authentication required";
1331 rs->sr_err = LDAP_UNWILLING_TO_PERFORM;
1336 if( requires & SLAP_REQUIRE_BIND ) {
1338 ldap_pvt_thread_mutex_lock( &op->o_conn->c_mutex );
1339 version = op->o_conn->c_protocol;
1340 ldap_pvt_thread_mutex_unlock( &op->o_conn->c_mutex );
1343 /* no bind has occurred */
1344 rs->sr_text = "BIND required";
1345 rs->sr_err = LDAP_OPERATIONS_ERROR;
1350 if( requires & SLAP_REQUIRE_LDAP_V3 ) {
1351 if( op->o_protocol < LDAP_VERSION3 ) {
1352 /* no bind has occurred */
1353 rs->sr_text = "operation restricted to LDAPv3 clients";
1354 rs->sr_err = LDAP_OPERATIONS_ERROR;
1359 #ifdef SLAP_X_LISTENER_MOD
1360 if ( !starttls && BER_BVISEMPTY( &op->o_dn ) ) {
1361 if ( op->o_conn->c_listener &&
1362 !( op->o_conn->c_listener->sl_perms & S_IXOTH ))
1364 /* no "x" mode means bind required */
1365 rs->sr_text = "bind required on this listener";
1366 rs->sr_err = LDAP_STRONG_AUTH_REQUIRED;
1371 if ( !starttls && !updateop ) {
1372 if ( op->o_conn->c_listener &&
1373 !( op->o_conn->c_listener->sl_perms &
1374 ( !BER_BVISEMPTY( &op->o_dn )
1375 ? (S_IRUSR|S_IROTH) : S_IROTH )))
1377 /* no "r" mode means no read */
1378 rs->sr_text = "read not allowed on this listener";
1379 rs->sr_err = LDAP_UNWILLING_TO_PERFORM;
1383 #endif /* SLAP_X_LISTENER_MOD */
1387 if( ( restrictops & opflag )
1388 || ( exopflag && ( restrictops & exopflag ) )
1389 || (( restrictops & SLAP_RESTRICT_READONLY ) && updateop )) {
1390 if( ( restrictops & SLAP_RESTRICT_OP_MASK) == SLAP_RESTRICT_OP_READS ) {
1391 rs->sr_text = "read operations restricted";
1392 } else if ( restrictops & exopflag ) {
1393 rs->sr_text = "extended operation restricted";
1395 rs->sr_text = "operation restricted";
1397 rs->sr_err = LDAP_UNWILLING_TO_PERFORM;
1401 rs->sr_err = LDAP_SUCCESS;
1405 int backend_check_referrals( Operation *op, SlapReply *rs )
1407 rs->sr_err = LDAP_SUCCESS;
1409 if( op->o_bd->be_chk_referrals ) {
1410 rs->sr_err = op->o_bd->be_chk_referrals( op, rs );
1412 if( rs->sr_err != LDAP_SUCCESS && rs->sr_err != LDAP_REFERRAL ) {
1413 send_ldap_result( op, rs );
1425 AttributeDescription *at,
1431 if ( op->o_bd == NULL ) {
1432 return LDAP_NO_SUCH_OBJECT;
1435 if ( op->o_bd->be_fetch ) {
1436 return op->o_bd->be_fetch( op, ndn, oc, at, rw, e );
1439 return LDAP_UNWILLING_TO_PERFORM;
1446 struct berval *gr_ndn,
1447 struct berval *op_ndn,
1448 ObjectClass *group_oc,
1449 AttributeDescription *group_at )
1452 void *o_priv = op->o_private, *e_priv = NULL;
1456 Backend *be = op->o_bd;
1459 LDAP_SLIST_FOREACH(oex, &op->o_extra, oe_next) {
1460 if ( oex->oe_key == (void *)backend_group )
1464 if ( oex && ((OpExtraDB *)oex)->oe_db )
1465 op->o_bd = ((OpExtraDB *)oex)->oe_db;
1467 if ( !op->o_bd || !SLAP_DBHIDDEN( op->o_bd ))
1468 op->o_bd = select_backend( gr_ndn, 0 );
1470 for ( g = op->o_groups; g; g = g->ga_next ) {
1471 if ( g->ga_be != op->o_bd || g->ga_oc != group_oc ||
1472 g->ga_at != group_at || g->ga_len != gr_ndn->bv_len )
1476 if ( strcmp( g->ga_ndn, gr_ndn->bv_val ) == 0 ) {
1486 if ( target && dn_match( &target->e_nname, gr_ndn ) ) {
1491 op->o_private = NULL;
1492 rc = be_entry_get_rw( op, gr_ndn, group_oc, group_at, 0, &e );
1493 e_priv = op->o_private;
1494 op->o_private = o_priv;
1498 a = attr_find( e->e_attrs, group_at );
1500 /* If the attribute is a subtype of labeledURI,
1501 * treat this as a dynamic group ala groupOfURLs
1503 if ( is_at_subtype( group_at->ad_type,
1504 slap_schema.si_ad_labeledURI->ad_type ) )
1508 struct berval bv, nbase;
1511 void *user_priv = NULL;
1512 Backend *b2 = op->o_bd;
1514 if ( target && dn_match( &target->e_nname, op_ndn ) ) {
1518 rc = LDAP_COMPARE_FALSE;
1519 for ( i = 0; !BER_BVISNULL( &a->a_vals[i] ); i++ ) {
1520 if ( ldap_url_parse( a->a_vals[i].bv_val, &ludp ) !=
1526 BER_BVZERO( &nbase );
1528 /* host, attrs and extensions parts must be empty */
1529 if ( ( ludp->lud_host && *ludp->lud_host )
1536 ber_str2bv( ludp->lud_dn, 0, 0, &bv );
1537 if ( dnNormalize( 0, NULL, NULL, &bv, &nbase,
1538 op->o_tmpmemctx ) != LDAP_SUCCESS )
1543 switch ( ludp->lud_scope ) {
1544 case LDAP_SCOPE_BASE:
1545 if ( !dn_match( &nbase, op_ndn ) ) {
1549 case LDAP_SCOPE_ONELEVEL:
1550 dnParent( op_ndn, &bv );
1551 if ( !dn_match( &nbase, &bv ) ) {
1555 case LDAP_SCOPE_SUBTREE:
1556 if ( !dnIsSuffix( op_ndn, &nbase ) ) {
1560 case LDAP_SCOPE_SUBORDINATE:
1561 if ( dn_match( &nbase, op_ndn ) ||
1562 !dnIsSuffix( op_ndn, &nbase ) )
1568 /* NOTE: this could be NULL
1569 * if no filter is provided,
1570 * or if filter parsing fails.
1571 * In the latter case,
1572 * we should give up. */
1573 if ( ludp->lud_filter != NULL && ludp->lud_filter != '\0') {
1574 filter = str2filter_x( op, ludp->lud_filter );
1575 if ( filter == NULL ) {
1581 /* only get user if required
1582 * and not available yet */
1583 if ( user == NULL ) {
1586 op->o_bd = select_backend( op_ndn, 0 );
1587 op->o_private = NULL;
1588 rc2 = be_entry_get_rw( op, op_ndn, NULL, NULL, 0, &user );
1589 user_priv = op->o_private;
1590 op->o_private = o_priv;
1598 if ( test_filter( NULL, user, filter ) ==
1603 filter_free_x( op, filter, 1 );
1606 ldap_free_urldesc( ludp );
1607 if ( !BER_BVISNULL( &nbase ) ) {
1608 op->o_tmpfree( nbase.bv_val, op->o_tmpmemctx );
1610 if ( rc != LDAP_COMPARE_FALSE ) {
1615 if ( user != NULL && user != target ) {
1616 op->o_private = user_priv;
1617 be_entry_release_r( op, user );
1618 op->o_private = o_priv;
1623 rc = attr_valfind( a,
1624 SLAP_MR_ATTRIBUTE_VALUE_NORMALIZED_MATCH |
1625 SLAP_MR_ASSERTED_VALUE_NORMALIZED_MATCH,
1626 op_ndn, NULL, op->o_tmpmemctx );
1627 if ( rc == LDAP_NO_SUCH_ATTRIBUTE ) {
1628 rc = LDAP_COMPARE_FALSE;
1633 rc = LDAP_NO_SUCH_ATTRIBUTE;
1636 if ( e != target ) {
1637 op->o_private = e_priv;
1638 be_entry_release_r( op, e );
1639 op->o_private = o_priv;
1643 rc = LDAP_NO_SUCH_OBJECT;
1646 if ( op->o_tag != LDAP_REQ_BIND && !op->o_do_not_cache ) {
1647 g = op->o_tmpalloc( sizeof( GroupAssertion ) + gr_ndn->bv_len,
1649 g->ga_be = op->o_bd;
1650 g->ga_oc = group_oc;
1651 g->ga_at = group_at;
1653 g->ga_len = gr_ndn->bv_len;
1654 strcpy( g->ga_ndn, gr_ndn->bv_val );
1655 g->ga_next = op->o_groups;
1668 struct berval *gr_ndn,
1669 struct berval *op_ndn,
1670 ObjectClass *group_oc,
1671 AttributeDescription *group_at )
1677 if ( op->o_abandon ) {
1678 return SLAPD_ABANDON;
1681 oex.oe_db = op->o_bd;
1682 oex.oe.oe_key = (void *)backend_group;
1683 LDAP_SLIST_INSERT_HEAD(&op->o_extra, &oex.oe, oe_next);
1686 op->o_bd = frontendDB;
1687 rc = frontendDB->be_group( op, target, gr_ndn,
1688 op_ndn, group_oc, group_at );
1690 LDAP_SLIST_REMOVE(&op->o_extra, &oex.oe, OpExtra, oe_next);
1700 AttributeDescription *entry_at,
1702 slap_access_t access )
1705 void *o_priv = op->o_private, *e_priv = NULL;
1706 Attribute *a = NULL;
1707 int freeattr = 0, i, j, rc = LDAP_SUCCESS;
1708 AccessControlState acl_state = ACL_STATE_INIT;
1709 Backend *be = op->o_bd;
1712 LDAP_SLIST_FOREACH(oex, &op->o_extra, oe_next) {
1713 if ( oex->oe_key == (void *)backend_attribute )
1717 if ( oex && ((OpExtraDB *)oex)->oe_db )
1718 op->o_bd = ((OpExtraDB *)oex)->oe_db;
1720 if ( !op->o_bd || !SLAP_DBHIDDEN( op->o_bd ))
1721 op->o_bd = select_backend( edn, 0 );
1723 if ( target && dn_match( &target->e_nname, edn ) ) {
1727 op->o_private = NULL;
1728 rc = be_entry_get_rw( op, edn, NULL, entry_at, 0, &e );
1729 e_priv = op->o_private;
1730 op->o_private = o_priv;
1734 if ( entry_at == slap_schema.si_ad_entry || entry_at == slap_schema.si_ad_children ) {
1735 assert( vals == NULL );
1738 if ( op->o_conn && access > ACL_NONE &&
1739 access_allowed( op, e, entry_at, NULL,
1740 access, &acl_state ) == 0 )
1742 rc = LDAP_INSUFFICIENT_ACCESS;
1747 a = attr_find( e->e_attrs, entry_at );
1749 SlapReply rs = { REP_SEARCH };
1750 AttributeName anlist[ 2 ];
1752 anlist[ 0 ].an_name = entry_at->ad_cname;
1753 anlist[ 0 ].an_desc = entry_at;
1754 BER_BVZERO( &anlist[ 1 ].an_name );
1755 rs.sr_attrs = anlist;
1757 /* NOTE: backend_operational() is also called
1758 * when returning results, so it's supposed
1759 * to do no harm to entries */
1761 rc = backend_operational( op, &rs );
1763 if ( rc == LDAP_SUCCESS ) {
1764 if ( rs.sr_operational_attrs ) {
1766 a = rs.sr_operational_attrs;
1769 rc = LDAP_NO_SUCH_ATTRIBUTE;
1777 if ( op->o_conn && access > ACL_NONE &&
1778 access_allowed( op, e, entry_at, NULL,
1779 access, &acl_state ) == 0 )
1781 rc = LDAP_INSUFFICIENT_ACCESS;
1786 v = op->o_tmpalloc( sizeof(struct berval) * ( i + 1 ),
1788 for ( i = 0, j = 0; !BER_BVISNULL( &a->a_vals[i] ); i++ )
1790 if ( op->o_conn && access > ACL_NONE &&
1791 access_allowed( op, e, entry_at,
1798 ber_dupbv_x( &v[j], &a->a_nvals[i],
1800 if ( !BER_BVISNULL( &v[j] ) ) {
1805 op->o_tmpfree( v, op->o_tmpmemctx );
1807 rc = LDAP_INSUFFICIENT_ACCESS;
1810 BER_BVZERO( &v[j] );
1815 freeit: if ( e != target ) {
1816 op->o_private = e_priv;
1817 be_entry_release_r( op, e );
1818 op->o_private = o_priv;
1834 AttributeDescription *entry_at,
1836 slap_access_t access )
1842 oex.oe_db = op->o_bd;
1843 oex.oe.oe_key = (void *)backend_attribute;
1844 LDAP_SLIST_INSERT_HEAD(&op->o_extra, &oex.oe, oe_next);
1847 op->o_bd = frontendDB;
1848 rc = frontendDB->be_attribute( op, target, edn,
1849 entry_at, vals, access );
1851 LDAP_SLIST_REMOVE(&op->o_extra, &oex.oe, OpExtra, oe_next);
1861 AttributeDescription *entry_at,
1862 struct berval *nval,
1863 slap_access_t access,
1867 void *o_priv, *e_priv = NULL;
1868 int rc = LDAP_INSUFFICIENT_ACCESS;
1872 assert( op != NULL );
1873 assert( op->o_conn != NULL );
1874 assert( edn != NULL );
1875 assert( access > ACL_NONE );
1878 o_priv = op->o_private;
1881 op->o_bd = select_backend( edn, 0 );
1884 if ( target && dn_match( &target->e_nname, edn ) ) {
1888 op->o_private = NULL;
1889 rc = be_entry_get_rw( op, edn, NULL, entry_at, 0, &e );
1890 e_priv = op->o_private;
1891 op->o_private = o_priv;
1895 Attribute *a = NULL;
1898 if ( entry_at == NULL ) {
1899 entry_at = slap_schema.si_ad_entry;
1902 if ( entry_at == slap_schema.si_ad_entry || entry_at == slap_schema.si_ad_children )
1904 if ( access_allowed_mask( op, e, entry_at,
1905 NULL, access, NULL, mask ) == 0 )
1907 rc = LDAP_INSUFFICIENT_ACCESS;
1914 a = attr_find( e->e_attrs, entry_at );
1916 SlapReply rs = { REP_SEARCH };
1917 AttributeName anlist[ 2 ];
1919 anlist[ 0 ].an_name = entry_at->ad_cname;
1920 anlist[ 0 ].an_desc = entry_at;
1921 BER_BVZERO( &anlist[ 1 ].an_name );
1922 rs.sr_attrs = anlist;
1924 rs.sr_attr_flags = slap_attr_flags( rs.sr_attrs );
1926 /* NOTE: backend_operational() is also called
1927 * when returning results, so it's supposed
1928 * to do no harm to entries */
1930 rc = backend_operational( op, &rs );
1932 if ( rc == LDAP_SUCCESS ) {
1933 if ( rs.sr_operational_attrs ) {
1935 a = rs.sr_operational_attrs;
1938 rc = LDAP_NO_SUCH_OBJECT;
1944 if ( access_allowed_mask( op, e, entry_at,
1945 nval, access, NULL, mask ) == 0 )
1947 rc = LDAP_INSUFFICIENT_ACCESS;
1953 freeit: if ( e != target ) {
1954 op->o_private = e_priv;
1955 be_entry_release_r( op, e );
1956 op->o_private = o_priv;
1973 int rc = LDAP_SUCCESS;
1974 BackendDB *be_orig = op->o_bd;
1977 LDAP_SLIST_FOREACH(oex, &op->o_extra, oe_next) {
1978 if ( oex->oe_key == (void *)backend_operational )
1982 for ( ap = &rs->sr_operational_attrs; *ap; ap = &(*ap)->a_next )
1983 /* just count them */ ;
1986 * If operational attributes (allegedly) are required,
1987 * and the backend supports specific operational attributes,
1988 * add them to the attribute list
1990 if ( !( rs->sr_flags & REP_NO_ENTRYDN )
1991 && ( SLAP_OPATTRS( rs->sr_attr_flags ) || ( rs->sr_attrs &&
1992 ad_inlist( slap_schema.si_ad_entryDN, rs->sr_attrs ) ) ) )
1994 *ap = slap_operational_entryDN( rs->sr_entry );
1995 ap = &(*ap)->a_next;
1998 if ( !( rs->sr_flags & REP_NO_SUBSCHEMA)
1999 && ( SLAP_OPATTRS( rs->sr_attr_flags ) || ( rs->sr_attrs &&
2000 ad_inlist( slap_schema.si_ad_subschemaSubentry, rs->sr_attrs ) ) ) )
2002 *ap = slap_operational_subschemaSubentry( op->o_bd );
2003 ap = &(*ap)->a_next;
2006 /* Let the overlays have a chance at this */
2007 if ( oex && ((OpExtraDB *)oex)->oe_db )
2008 op->o_bd = ((OpExtraDB *)oex)->oe_db;
2010 if ( !op->o_bd || !SLAP_DBHIDDEN( op->o_bd ))
2011 op->o_bd = select_backend( &op->o_req_ndn, 0 );
2013 if ( op->o_bd != NULL && !be_match( op->o_bd, frontendDB ) &&
2014 ( SLAP_OPATTRS( rs->sr_attr_flags ) || rs->sr_attrs ) &&
2015 op->o_bd->be_operational != NULL )
2017 rc = op->o_bd->be_operational( op, rs );
2024 int backend_operational( Operation *op, SlapReply *rs )
2030 oex.oe_db = op->o_bd;
2031 oex.oe.oe_key = (void *)backend_operational;
2032 LDAP_SLIST_INSERT_HEAD(&op->o_extra, &oex.oe, oe_next);
2034 /* Moved this into the frontend so global overlays are called */
2037 op->o_bd = frontendDB;
2038 rc = frontendDB->be_operational( op, rs );
2040 LDAP_SLIST_REMOVE(&op->o_extra, &oex.oe, OpExtra, oe_next);
2045 /* helper that calls the bi_tool_entry_first_x() variant with default args;
2046 * use to initialize a backend's bi_tool_entry_first() when appropriate
2049 backend_tool_entry_first( BackendDB *be )
2051 return be->bd_info->bi_tool_entry_first_x( be,
2052 NULL, LDAP_SCOPE_DEFAULT, NULL );