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-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.
32 #include <ac/string.h>
33 #include <ac/socket.h>
43 #include "slapi/slapi.h"
47 * If a module is configured as dynamic, its header should not
48 * get included into slapd. While this is a general rule and does
49 * not have much of an effect in UNIX, this rule should be adhered
50 * to for Windows, where dynamic object code should not be implicitly
51 * imported into slapd without appropriate __declspec(dllimport) directives.
54 #if defined(SLAPD_BDB) && !defined(SLAPD_BDB_DYNAMIC)
55 #include "back-bdb/external.h"
57 #if defined(SLAPD_DNSSRV) && !defined(SLAPD_DNSSRV_DYNAMIC)
58 #include "back-dnssrv/external.h"
60 #if defined(SLAPD_HDB) && !defined(SLAPD_HDB_DYNAMIC)
61 #include "back-hdb/external.h"
63 #if defined(SLAPD_LDAP) && !defined(SLAPD_LDAP_DYNAMIC)
64 #include "back-ldap/external.h"
66 #if defined(SLAPD_LDBM) && !defined(SLAPD_LDBM_DYNAMIC)
67 #include "back-ldbm/external.h"
69 #if defined(SLAPD_META) && !defined(SLAPD_META_DYNAMIC)
70 #include "back-meta/external.h"
72 #if defined(SLAPD_MONITOR) && !defined(SLAPD_MONITOR_DYNAMIC)
73 #include "back-monitor/external.h"
75 #if defined(SLAPD_NULL) && !defined(SLAPD_NULL_DYNAMIC)
76 #include "back-null/external.h"
78 #if defined(SLAPD_PASSWD) && !defined(SLAPD_PASSWD_DYNAMIC)
79 #include "back-passwd/external.h"
81 #if defined(SLAPD_PERL) && !defined(SLAPD_PERL_DYNAMIC)
82 #include "back-perl/external.h"
84 #if defined(SLAPD_SHELL) && !defined(SLAPD_SHELL_DYNAMIC)
85 #include "back-shell/external.h"
87 #if defined(SLAPD_TCL) && !defined(SLAPD_TCL_DYNAMIC)
88 #include "back-tcl/external.h"
90 #if defined(SLAPD_SQL) && !defined(SLAPD_SQL_DYNAMIC)
91 #include "back-sql/external.h"
93 #if defined(SLAPD_PRIVATE) && !defined(SLAPD_PRIVATE_DYNAMIC)
94 #include "private/external.h"
97 static BackendInfo binfo[] = {
98 #if defined(SLAPD_BDB) && !defined(SLAPD_BDB_DYNAMIC)
99 {"bdb", bdb_initialize},
101 #if defined(SLAPD_DNSSRV) && !defined(SLAPD_DNSSRV_DYNAMIC)
102 {"dnssrv", dnssrv_back_initialize},
104 #if defined(SLAPD_HDB) && !defined(SLAPD_HDB_DYNAMIC)
105 {"hdb", hdb_initialize},
107 #if defined(SLAPD_LDAP) && !defined(SLAPD_LDAP_DYNAMIC)
108 {"ldap", ldap_back_initialize},
110 #if defined(SLAPD_LDBM) && !defined(SLAPD_LDBM_DYNAMIC)
111 {"ldbm", ldbm_back_initialize},
113 #if defined(SLAPD_META) && !defined(SLAPD_META_DYNAMIC)
114 {"meta", meta_back_initialize},
116 #if defined(SLAPD_MONITOR) && !defined(SLAPD_MONITOR_DYNAMIC)
117 {"monitor", monitor_back_initialize},
119 #if defined(SLAPD_NULL) && !defined(SLAPD_NULL_DYNAMIC)
120 {"null", null_back_initialize},
122 #if defined(SLAPD_PASSWD) && !defined(SLAPD_PASSWD_DYNAMIC)
123 {"passwd", passwd_back_initialize},
125 #if defined(SLAPD_PERL) && !defined(SLAPD_PERL_DYNAMIC)
126 {"perl", perl_back_initialize},
128 #if defined(SLAPD_SHELL) && !defined(SLAPD_SHELL_DYNAMIC)
129 {"shell", shell_back_initialize},
131 #if defined(SLAPD_TCL) && !defined(SLAPD_TCL_DYNAMIC)
132 {"tcl", tcl_back_initialize},
134 #if defined(SLAPD_SQL) && !defined(SLAPD_SQL_DYNAMIC)
135 {"sql", sql_back_initialize},
137 /* for any private backend */
138 #if defined(SLAPD_PRIVATE) && !defined(SLAPD_PRIVATE_DYNAMIC)
139 {"private", private_back_initialize},
144 int nBackendInfo = 0;
145 BackendInfo *backendInfo = NULL;
148 BackendDB *backendDB = NULL;
150 ldap_pvt_thread_pool_t syncrepl_pool;
151 int syncrepl_pool_max = SLAP_MAX_SYNCREPL_THREADS;
153 int backend_init(void)
157 ldap_pvt_thread_pool_init( &syncrepl_pool, syncrepl_pool_max, 0 );
159 if((nBackendInfo != 0) || (backendInfo != NULL)) {
160 /* already initialized */
162 LDAP_LOG( BACKEND, ERR,
163 "backend_init: backend already initialized\n", 0, 0, 0 );
165 Debug( LDAP_DEBUG_ANY,
166 "backend_init: already initialized.\n", 0, 0, 0 );
172 binfo[nBackendInfo].bi_type != NULL;
175 assert( binfo[nBackendInfo].bi_init );
177 rc = binfo[nBackendInfo].bi_init( &binfo[nBackendInfo] );
181 LDAP_LOG( BACKEND, INFO,
182 "backend_init: initialized for type \"%s\"\n",
183 binfo[nBackendInfo].bi_type, 0, 0 );
185 Debug( LDAP_DEBUG_ANY,
186 "backend_init: initialized for type \"%s\"\n",
187 binfo[nBackendInfo].bi_type, 0, 0 );
189 /* destroy those we've already inited */
194 if ( binfo[nBackendInfo].bi_destroy ) {
195 binfo[nBackendInfo].bi_destroy(
196 &binfo[nBackendInfo] );
203 if ( nBackendInfo > 0) {
213 LDAP_LOG( BACKEND, ERR, "backend_init: failed\n", 0, 0, 0 );
215 Debug( LDAP_DEBUG_ANY,
216 "backend_init: failed\n",
221 #endif /* SLAPD_MODULES */
224 int backend_add(BackendInfo *aBackendInfo)
228 if ( aBackendInfo->bi_init == NULL ) {
230 LDAP_LOG( BACKEND, ERR,
231 "backend_add: backend type \"%s\" does not have the "
232 "(mandatory)init function\n",
233 aBackendInfo->bi_type, 0, 0 );
235 Debug( LDAP_DEBUG_ANY,
236 "backend_add: backend type \"%s\" does not have the "
237 "(mandatory)init function\n",
238 aBackendInfo->bi_type, 0, 0 );
243 if ((rc = aBackendInfo->bi_init(aBackendInfo)) != 0) {
245 LDAP_LOG( BACKEND, ERR,
246 "backend_add: initialization for type \"%s\" failed\n",
247 aBackendInfo->bi_type, 0, 0 );
249 Debug( LDAP_DEBUG_ANY,
250 "backend_add: initialization for type \"%s\" failed\n",
251 aBackendInfo->bi_type, 0, 0 );
256 /* now add the backend type to the Backend Info List */
258 BackendInfo *newBackendInfo = 0;
260 /* if backendInfo == binfo no deallocation of old backendInfo */
261 if (backendInfo == binfo) {
262 newBackendInfo = ch_calloc(nBackendInfo + 1, sizeof(BackendInfo));
263 AC_MEMCPY(newBackendInfo, backendInfo, sizeof(BackendInfo) *
266 newBackendInfo = ch_realloc(backendInfo, sizeof(BackendInfo) *
269 AC_MEMCPY(&newBackendInfo[nBackendInfo], aBackendInfo,
270 sizeof(BackendInfo));
271 backendInfo = newBackendInfo;
278 int backend_startup(Backend *be)
283 if( ! ( nBackendDB > 0 ) ) {
286 LDAP_LOG( BACKEND, INFO,
287 "backend_startup: %d databases to startup. \n", nBackendDB, 0, 0 );
289 Debug( LDAP_DEBUG_ANY,
290 "backend_startup: %d databases to startup.\n",
297 /* startup a specific backend database */
299 LDAP_TAILQ_INIT( &be->be_pending_csn_list );
302 LDAP_LOG( BACKEND, DETAIL1, "backend_startup: starting \"%s\"\n",
303 be->be_suffix ? be->be_suffix[0].bv_val : "(unknown)",
306 Debug( LDAP_DEBUG_TRACE,
307 "backend_startup: starting \"%s\"\n",
308 be->be_suffix ? be->be_suffix[0].bv_val : "(unknown)",
312 if ( be->bd_info->bi_open ) {
313 rc = be->bd_info->bi_open( be->bd_info );
316 LDAP_LOG( BACKEND, CRIT, "backend_startup: bi_open failed!\n", 0, 0, 0 );
318 Debug( LDAP_DEBUG_ANY,
319 "backend_startup: bi_open failed!\n",
327 if ( be->bd_info->bi_db_open ) {
328 rc = be->bd_info->bi_db_open( be );
331 LDAP_LOG( BACKEND, CRIT,
332 "backend_startup: bi_db_open failed! (%d)\n", rc, 0, 0 );
334 Debug( LDAP_DEBUG_ANY,
335 "backend_startup: bi_db_open failed! (%d)\n",
345 /* open each backend type */
346 for( i = 0; i < nBackendInfo; i++ ) {
347 if( backendInfo[i].bi_nDB == 0) {
348 /* no database of this type, don't open */
352 if( backendInfo[i].bi_open ) {
353 rc = backendInfo[i].bi_open(
357 LDAP_LOG( BACKEND, CRIT,
358 "backend_startup: bi_open %d failed!\n", i, 0, 0 );
360 Debug( LDAP_DEBUG_ANY,
361 "backend_startup: bi_open %d failed!\n",
369 ldap_pvt_thread_mutex_init( &syncrepl_rq.rq_mutex );
370 LDAP_STAILQ_INIT( &syncrepl_rq.task_list );
371 LDAP_STAILQ_INIT( &syncrepl_rq.run_list );
373 /* open each backend database */
374 for( i = 0; i < nBackendDB; i++ ) {
375 /* append global access controls */
376 acl_append( &backendDB[i].be_acl, global_acl );
378 LDAP_TAILQ_INIT( &backendDB[i].be_pending_csn_list );
380 if ( backendDB[i].be_suffix == NULL ) {
382 LDAP_LOG( BACKEND, CRIT,
383 "backend_startup: warning, database %d (%s) "
385 i, backendDB[i].bd_info->bi_type, 0 );
387 Debug( LDAP_DEBUG_ANY,
388 "backend_startup: warning, database %d (%s) "
390 i, backendDB[i].bd_info->bi_type, 0 );
394 if ( backendDB[i].bd_info->bi_db_open ) {
395 rc = backendDB[i].bd_info->bi_db_open(
399 LDAP_LOG( BACKEND, CRIT,
400 "backend_startup: bi_db_open(%d) failed! (%d)\n", i, rc, 0 );
402 Debug( LDAP_DEBUG_ANY,
403 "backend_startup: bi_db_open(%d) failed! (%d)\n",
410 if ( !LDAP_STAILQ_EMPTY( &backendDB[i].be_syncinfo )) {
412 LDAP_STAILQ_FOREACH( si, &backendDB[i].be_syncinfo, si_next ) {
413 si->si_be = &backendDB[i];
415 ldap_pvt_thread_mutex_lock( &syncrepl_rq.rq_mutex );
416 ldap_pvt_runqueue_insert( &syncrepl_rq,
417 si->si_interval, do_syncrepl, (void *) si );
418 ldap_pvt_thread_mutex_unlock( &syncrepl_rq.rq_mutex );
426 int backend_num( Backend *be )
430 if( be == NULL ) return -1;
432 for( i = 0; i < nBackendDB; i++ ) {
433 if( be == &backendDB[i] ) return i;
438 int backend_shutdown( Backend *be )
444 /* shutdown a specific backend database */
446 if ( be->bd_info->bi_nDB == 0 ) {
447 /* no database of this type, we never opened it */
451 if ( be->bd_info->bi_db_close ) {
452 be->bd_info->bi_db_close( be );
455 if( be->bd_info->bi_close ) {
456 be->bd_info->bi_close( be->bd_info );
462 /* close each backend database */
463 for( i = 0; i < nBackendDB; i++ ) {
464 if ( backendDB[i].bd_info->bi_db_close ) {
465 backendDB[i].bd_info->bi_db_close(
471 LDAP_LOG( BACKEND, NOTICE,
472 "backend_shutdown: bi_close %s failed!\n",
473 backendDB[i].be_type, 0, 0 );
475 Debug( LDAP_DEBUG_ANY,
476 "backend_close: bi_close %s failed!\n",
477 backendDB[i].be_type, 0, 0 );
482 /* close each backend type */
483 for( i = 0; i < nBackendInfo; i++ ) {
484 if( backendInfo[i].bi_nDB == 0 ) {
485 /* no database of this type */
489 if( backendInfo[i].bi_close ) {
490 backendInfo[i].bi_close(
498 int backend_destroy(void)
503 ldap_pvt_thread_pool_destroy( &syncrepl_pool, 1 );
505 /* destroy each backend database */
506 for( i = 0, bd = backendDB; i < nBackendDB; i++, bd++ ) {
507 if ( bd->bd_info->bi_db_destroy ) {
508 bd->bd_info->bi_db_destroy( bd );
510 ber_bvarray_free( bd->be_suffix );
511 ber_bvarray_free( bd->be_nsuffix );
512 if ( bd->be_rootdn.bv_val ) free( bd->be_rootdn.bv_val );
513 if ( bd->be_rootndn.bv_val ) free( bd->be_rootndn.bv_val );
514 if ( bd->be_rootpw.bv_val ) free( bd->be_rootpw.bv_val );
515 acl_destroy( bd->be_acl, global_acl );
519 /* destroy each backend type */
520 for( i = 0; i < nBackendInfo; i++ ) {
521 if( backendInfo[i].bi_destroy ) {
522 backendInfo[i].bi_destroy(
528 if (backendInfo != binfo) {
531 #endif /* SLAPD_MODULES */
539 BackendInfo* backend_info(const char *type)
543 /* search for the backend type */
544 for( i = 0; i < nBackendInfo; i++ ) {
545 if( strcasecmp(backendInfo[i].bi_type, type) == 0 ) {
546 return &backendInfo[i];
560 BackendInfo *bi = backend_info(type);
564 fprintf( stderr, "Unrecognized database type (%s)\n", type );
568 backendDB = (BackendDB *) ch_realloc(
570 (nBackendDB + 1) * sizeof(Backend) );
572 memset( &backendDB[nbackends], '\0', sizeof(Backend) );
574 be = &backends[nbackends++];
577 be->be_def_limit = deflimit;
578 be->be_dfltaccess = global_default_access;
580 be->be_restrictops = global_restrictops;
581 be->be_requires = global_requires;
582 be->be_ssf_set = global_ssf_set;
584 be->be_context_csn.bv_len = 0;
585 be->be_context_csn.bv_val = NULL;
586 ldap_pvt_thread_mutex_init( &be->be_pcl_mutex );
587 ldap_pvt_thread_mutex_init( &be->be_context_csn_mutex );
589 LDAP_STAILQ_INIT( &be->be_syncinfo );
591 /* assign a default depth limit for alias deref */
592 be->be_max_deref_depth = SLAPD_DEFAULT_MAXDEREFDEPTH;
595 rc = bi->bi_db_init( be );
599 fprintf( stderr, "database init failed (%s)\n", type );
613 for ( i = 0; i < nbackends; i++ ) {
614 if ( backends[i].bd_info->bi_db_close ) {
615 (*backends[i].bd_info->bi_db_close)( &backends[i] );
627 ber_len_t len, dnlen = dn->bv_len;
630 for ( i = 0; i < nbackends; i++ ) {
631 for ( j = 0; backends[i].be_nsuffix != NULL &&
632 backends[i].be_nsuffix[j].bv_val != NULL; j++ )
634 if ( ( SLAP_GLUE_SUBORDINATE( &backends[i] ) )
640 len = backends[i].be_nsuffix[j].bv_len;
643 /* suffix is longer than DN */
648 * input DN is normalized, so the separator check
649 * need not look at escaping
651 if ( len && len < dnlen &&
652 !DN_SEPARATOR( dn->bv_val[(dnlen-len)-1] ))
657 if ( strcmp( backends[i].be_nsuffix[j].bv_val,
658 &dn->bv_val[dnlen-len] ) == 0 )
663 if( manageDSAit && len == dnlen &&
664 !SLAP_GLUE_SUBORDINATE( be ) ) {
681 struct berval *bvsuffix
686 for ( i = 0; be->be_nsuffix != NULL && be->be_nsuffix[i].bv_val != NULL; i++ ) {
687 if ( bvmatch( &be->be_nsuffix[i], bvsuffix ) ) {
696 be_isroot( Backend *be, struct berval *ndn )
698 if ( !ndn->bv_len ) {
702 if ( !be->be_rootndn.bv_len ) {
706 return dn_match( &be->be_rootndn, ndn );
710 be_isupdate( Backend *be, struct berval *ndn )
712 if ( !ndn->bv_len ) {
716 if ( !be->be_update_ndn.bv_len ) {
720 return dn_match( &be->be_update_ndn, ndn );
724 be_root_dn( Backend *be )
726 return &be->be_rootdn;
730 be_isroot_pw( Operation *op )
735 if ( ! be_isroot( op->o_bd, &op->o_req_ndn ) ) {
739 if( op->o_bd->be_rootpw.bv_len == 0 ) {
743 #if defined( SLAPD_CRYPT ) || defined( SLAPD_SPASSWD )
744 ldap_pvt_thread_mutex_lock( &passwd_mutex );
746 lutil_passwd_sasl_conn = op->o_conn->c_sasl_authctx;
750 result = lutil_passwd( &op->o_bd->be_rootpw, &op->orb_cred, NULL, NULL );
752 #if defined( SLAPD_CRYPT ) || defined( SLAPD_SPASSWD )
754 lutil_passwd_sasl_conn = NULL;
756 ldap_pvt_thread_mutex_unlock( &passwd_mutex );
768 if ( op->o_bd->be_release ) {
769 /* free and release entry from backend */
770 return op->o_bd->be_release( op, e, rw );
779 backend_unbind( Operation *op, SlapReply *rs )
783 for ( i = 0; i < nbackends; i++ ) {
784 #if defined( LDAP_SLAPI )
787 if ( i == 0 ) slapi_int_pblock_set_operation( op->o_pb, op );
788 slapi_pblock_set( op->o_pb, SLAPI_BACKEND, (void *)&backends[i] );
789 rc = slapi_int_call_plugins( &backends[i], SLAPI_PLUGIN_PRE_UNBIND_FN,
790 (Slapi_PBlock *)op->o_pb );
793 * A preoperation plugin failure will abort the
797 LDAP_LOG( OPERATION, INFO, "do_bind: Unbind preoperation plugin "
798 "failed\n", 0, 0, 0);
800 Debug(LDAP_DEBUG_TRACE, "do_bind: Unbind preoperation plugin "
801 "failed.\n", 0, 0, 0);
806 #endif /* defined( LDAP_SLAPI ) */
808 if ( backends[i].be_unbind ) {
809 op->o_bd = &backends[i];
810 (*backends[i].be_unbind)( op, rs );
813 #if defined( LDAP_SLAPI )
814 if ( op->o_pb != NULL && slapi_int_call_plugins( &backends[i], SLAPI_PLUGIN_POST_UNBIND_FN,
815 (Slapi_PBlock *)op->o_pb ) < 0 ) {
817 LDAP_LOG( OPERATION, INFO, "do_unbind: Unbind postoperation plugins "
818 "failed\n", 0, 0, 0);
820 Debug(LDAP_DEBUG_TRACE, "do_unbind: Unbind postoperation plugins "
821 "failed.\n", 0, 0, 0);
824 #endif /* defined( LDAP_SLAPI ) */
831 backend_connection_init(
837 for ( i = 0; i < nbackends; i++ ) {
838 if ( backends[i].be_connection_init ) {
839 (*backends[i].be_connection_init)( &backends[i], conn);
847 backend_connection_destroy(
853 for ( i = 0; i < nbackends; i++ ) {
854 if ( backends[i].be_connection_destroy ) {
855 (*backends[i].be_connection_destroy)( &backends[i], conn);
863 backend_check_controls(
867 LDAPControl **ctrls = op->o_ctrls;
868 rs->sr_err = LDAP_SUCCESS;
871 for( ; *ctrls != NULL ; ctrls++ ) {
872 if( (*ctrls)->ldctl_iscritical && !ldap_charray_inlist(
873 op->o_bd->be_controls, (*ctrls)->ldctl_oid ) )
875 rs->sr_text = "control unavailable in context";
876 rs->sr_err = LDAP_UNAVAILABLE_CRITICAL_EXTENSION;
886 backend_check_restrictions(
889 struct berval *opdata )
891 slap_mask_t restrictops;
892 slap_mask_t requires;
900 if ( backend_check_controls( op, rs ) != LDAP_SUCCESS ) {
904 restrictops = op->o_bd->be_restrictops;
905 requires = op->o_bd->be_requires;
906 ssf = &op->o_bd->be_ssf_set;
909 restrictops = global_restrictops;
910 requires = global_requires;
911 ssf = &global_ssf_set;
914 switch( op->o_tag ) {
916 opflag = SLAP_RESTRICT_OP_ADD;
920 opflag = SLAP_RESTRICT_OP_BIND;
923 case LDAP_REQ_COMPARE:
924 opflag = SLAP_RESTRICT_OP_COMPARE;
926 case LDAP_REQ_DELETE:
928 opflag = SLAP_RESTRICT_OP_DELETE;
930 case LDAP_REQ_EXTENDED:
931 opflag = SLAP_RESTRICT_OP_EXTENDED;
934 /* treat unspecified as a modify */
935 opflag = SLAP_RESTRICT_OP_MODIFY;
940 if( bvmatch( opdata, &slap_EXOP_START_TLS ) ) {
946 if( bvmatch( opdata, &slap_EXOP_WHOAMI ) ) {
950 if ( bvmatch( opdata, &slap_EXOP_CANCEL ) ) {
954 /* treat everything else as a modify */
955 opflag = SLAP_RESTRICT_OP_MODIFY;
959 case LDAP_REQ_MODIFY:
961 opflag = SLAP_RESTRICT_OP_MODIFY;
963 case LDAP_REQ_RENAME:
965 opflag = SLAP_RESTRICT_OP_RENAME;
967 case LDAP_REQ_SEARCH:
968 opflag = SLAP_RESTRICT_OP_SEARCH;
970 case LDAP_REQ_UNBIND:
975 rs->sr_text = "restrict operations internal error";
976 rs->sr_err = LDAP_OTHER;
981 /* these checks don't apply to StartTLS */
983 rs->sr_err = LDAP_CONFIDENTIALITY_REQUIRED;
984 if( op->o_transport_ssf < ssf->sss_transport ) {
985 rs->sr_text = "transport confidentiality required";
989 if( op->o_tls_ssf < ssf->sss_tls ) {
990 rs->sr_text = "TLS confidentiality required";
995 if( op->o_tag == LDAP_REQ_BIND && opdata == NULL ) {
996 /* simple bind specific check */
997 if( op->o_ssf < ssf->sss_simple_bind ) {
998 rs->sr_text = "confidentiality required";
1003 if( op->o_tag != LDAP_REQ_BIND || opdata == NULL ) {
1004 /* these checks don't apply to SASL bind */
1006 if( op->o_sasl_ssf < ssf->sss_sasl ) {
1007 rs->sr_text = "SASL confidentiality required";
1011 if( op->o_ssf < ssf->sss_ssf ) {
1012 rs->sr_text = "confidentiality required";
1018 if( op->o_transport_ssf < ssf->sss_update_transport ) {
1019 rs->sr_text = "transport update confidentiality required";
1023 if( op->o_tls_ssf < ssf->sss_update_tls ) {
1024 rs->sr_text = "TLS update confidentiality required";
1028 if( op->o_sasl_ssf < ssf->sss_update_sasl ) {
1029 rs->sr_text = "SASL update confidentiality required";
1033 if( op->o_ssf < ssf->sss_update_ssf ) {
1034 rs->sr_text = "update confidentiality required";
1038 if( !( global_allows & SLAP_ALLOW_UPDATE_ANON ) &&
1039 op->o_ndn.bv_len == 0 )
1041 rs->sr_text = "modifications require authentication";
1042 rs->sr_err = LDAP_STRONG_AUTH_REQUIRED;
1046 #ifdef SLAP_X_LISTENER_MOD
1047 if ( op->o_conn->c_listener && ! ( op->o_conn->c_listener->sl_perms & ( op->o_ndn.bv_len > 0 ? S_IWUSR : S_IWOTH ) ) ) {
1048 /* no "w" mode means readonly */
1049 rs->sr_text = "modifications not allowed on this listener";
1050 rs->sr_err = LDAP_UNWILLING_TO_PERFORM;
1053 #endif /* SLAP_X_LISTENER_MOD */
1058 /* these checks don't apply to Bind, StartTLS, or Unbind */
1060 if( requires & SLAP_REQUIRE_STRONG ) {
1061 /* should check mechanism */
1062 if( ( op->o_transport_ssf < ssf->sss_transport
1063 && op->o_authtype == LDAP_AUTH_SIMPLE )
1064 || op->o_dn.bv_len == 0 )
1066 rs->sr_text = "strong(er) authentication required";
1067 rs->sr_err = LDAP_STRONG_AUTH_REQUIRED;
1072 if( requires & SLAP_REQUIRE_SASL ) {
1073 if( op->o_authtype != LDAP_AUTH_SASL || op->o_dn.bv_len == 0 ) {
1074 rs->sr_text = "SASL authentication required";
1075 rs->sr_err = LDAP_STRONG_AUTH_REQUIRED;
1080 if( requires & SLAP_REQUIRE_AUTHC ) {
1081 if( op->o_dn.bv_len == 0 ) {
1082 rs->sr_text = "authentication required";
1083 rs->sr_err = LDAP_UNWILLING_TO_PERFORM;
1088 if( requires & SLAP_REQUIRE_BIND ) {
1090 ldap_pvt_thread_mutex_lock( &op->o_conn->c_mutex );
1091 version = op->o_conn->c_protocol;
1092 ldap_pvt_thread_mutex_unlock( &op->o_conn->c_mutex );
1095 /* no bind has occurred */
1096 rs->sr_text = "BIND required";
1097 rs->sr_err = LDAP_OPERATIONS_ERROR;
1102 if( requires & SLAP_REQUIRE_LDAP_V3 ) {
1103 if( op->o_protocol < LDAP_VERSION3 ) {
1104 /* no bind has occurred */
1105 rs->sr_text = "operation restricted to LDAPv3 clients";
1106 rs->sr_err = LDAP_OPERATIONS_ERROR;
1111 #ifdef SLAP_X_LISTENER_MOD
1112 if ( !starttls && op->o_dn.bv_len == 0 ) {
1113 if ( op->o_conn->c_listener && ! ( op->o_conn->c_listener->sl_perms & S_IXOTH ) ) {
1114 /* no "x" mode means bind required */
1115 rs->sr_text = "bind required on this listener";
1116 rs->sr_err = LDAP_STRONG_AUTH_REQUIRED;
1121 if ( !starttls && !updateop ) {
1122 if ( op->o_conn->c_listener && ! ( op->o_conn->c_listener->sl_perms & ( op->o_dn.bv_len > 0 ? S_IRUSR : S_IROTH ) ) ) {
1123 /* no "r" mode means no read */
1124 rs->sr_text = "read not allowed on this listener";
1125 rs->sr_err = LDAP_UNWILLING_TO_PERFORM;
1129 #endif /* SLAP_X_LISTENER_MOD */
1133 if( restrictops & opflag ) {
1134 if( restrictops == SLAP_RESTRICT_OP_READS ) {
1135 rs->sr_text = "read operations restricted";
1137 rs->sr_text = "operation restricted";
1139 rs->sr_err = LDAP_UNWILLING_TO_PERFORM;
1143 rs->sr_err = LDAP_SUCCESS;
1147 int backend_check_referrals( Operation *op, SlapReply *rs )
1149 rs->sr_err = LDAP_SUCCESS;
1151 if( op->o_bd->be_chk_referrals ) {
1152 rs->sr_err = op->o_bd->be_chk_referrals( op, rs );
1154 if( rs->sr_err != LDAP_SUCCESS && rs->sr_err != LDAP_REFERRAL ) {
1155 send_ldap_result( op, rs );
1167 AttributeDescription *at,
1175 if (op->o_bd == NULL) {
1176 rc = LDAP_NO_SUCH_OBJECT;
1177 } else if ( op->o_bd->be_fetch ) {
1178 rc = ( op->o_bd->be_fetch )( op, ndn,
1181 rc = LDAP_UNWILLING_TO_PERFORM;
1190 struct berval *gr_ndn,
1191 struct berval *op_ndn,
1192 ObjectClass *group_oc,
1193 AttributeDescription *group_at
1200 Backend *be = op->o_bd;
1202 if ( op->o_abandon ) return SLAPD_ABANDON;
1204 op->o_bd = select_backend( gr_ndn, 0, 0 );
1206 for (g = op->o_groups; g; g=g->ga_next) {
1207 if (g->ga_be != op->o_bd || g->ga_oc != group_oc ||
1208 g->ga_at != group_at || g->ga_len != gr_ndn->bv_len)
1210 if (strcmp( g->ga_ndn, gr_ndn->bv_val ) == 0)
1219 if ( target && dn_match( &target->e_nname, gr_ndn ) ) {
1223 rc = be_entry_get_rw(op, gr_ndn, group_oc, group_at, 0, &e );
1226 a = attr_find( e->e_attrs, group_at );
1228 /* If the attribute is a subtype of labeledURI, treat this as
1229 * a dynamic group ala groupOfURLs
1231 if (is_at_subtype( group_at->ad_type, slap_schema.si_ad_labeledURI->ad_type ) ) {
1234 struct berval bv, nbase;
1237 Backend *b2 = op->o_bd;
1239 if ( target && dn_match( &target->e_nname, op_ndn ) ) {
1242 op->o_bd = select_backend( op_ndn, 0, 0 );
1243 rc = be_entry_get_rw(op, op_ndn, NULL, NULL, 0, &user );
1248 for (i=0; a->a_vals[i].bv_val; i++) {
1249 if ( ldap_url_parse( a->a_vals[i].bv_val, &ludp ) != LDAP_SUCCESS )
1251 nbase.bv_val = NULL;
1252 /* host part must be empty */
1253 /* attrs and extensions parts must be empty */
1254 if (( ludp->lud_host && *ludp->lud_host )
1255 || ludp->lud_attrs || ludp->lud_exts )
1257 ber_str2bv( ludp->lud_dn, 0, 0, &bv );
1258 if ( dnNormalize( 0, NULL, NULL, &bv, &nbase, op->o_tmpmemctx ) != LDAP_SUCCESS )
1260 switch(ludp->lud_scope) {
1261 case LDAP_SCOPE_BASE:
1262 if ( !dn_match( &nbase, op_ndn )) goto loopit;
1264 case LDAP_SCOPE_ONELEVEL:
1265 dnParent(op_ndn, &bv );
1266 if ( !dn_match( &nbase, &bv )) goto loopit;
1268 case LDAP_SCOPE_SUBTREE:
1269 if ( !dnIsSuffix( op_ndn, &nbase )) goto loopit;
1271 case LDAP_SCOPE_SUBORDINATE:
1272 if ( dn_match( &nbase, op_ndn ) &&
1273 !dnIsSuffix(op_ndn, &nbase ))
1278 filter = str2filter_x( op, ludp->lud_filter );
1280 if ( test_filter( NULL, user, filter ) == LDAP_COMPARE_TRUE )
1284 filter_free_x( op, filter );
1287 ldap_free_urldesc( ludp );
1288 if ( nbase.bv_val ) {
1289 op->o_tmpfree( nbase.bv_val, op->o_tmpmemctx );
1291 if ( rc == 0 ) break;
1293 if ( user != target ) {
1294 be_entry_release_r( op, user );
1299 rc = value_find_ex( group_at,
1300 SLAP_MR_ATTRIBUTE_VALUE_NORMALIZED_MATCH |
1301 SLAP_MR_ASSERTED_VALUE_NORMALIZED_MATCH,
1302 a->a_nvals, op_ndn, op->o_tmpmemctx );
1305 rc = LDAP_NO_SUCH_ATTRIBUTE;
1308 be_entry_release_r( op, e );
1311 rc = LDAP_NO_SUCH_OBJECT;
1314 if ( op->o_tag != LDAP_REQ_BIND && !op->o_do_not_cache ) {
1315 g = op->o_tmpalloc(sizeof(GroupAssertion) + gr_ndn->bv_len, op->o_tmpmemctx);
1316 g->ga_be = op->o_bd;
1317 g->ga_oc = group_oc;
1318 g->ga_at = group_at;
1320 g->ga_len = gr_ndn->bv_len;
1321 strcpy(g->ga_ndn, gr_ndn->bv_val);
1322 g->ga_next = op->o_groups;
1335 AttributeDescription *entry_at,
1341 int i, j, rc = LDAP_SUCCESS;
1342 AccessControlState acl_state = ACL_STATE_INIT;
1343 Backend *be = op->o_bd;
1345 op->o_bd = select_backend( edn, 0, 0 );
1347 if ( target && dn_match( &target->e_nname, edn ) ) {
1350 rc = be_entry_get_rw(op, edn, NULL, entry_at, 0, &e );
1354 a = attr_find( e->e_attrs, entry_at );
1358 if ( op->o_conn && access_allowed( op,
1359 e, entry_at, NULL, ACL_AUTH,
1360 &acl_state ) == 0 ) {
1361 rc = LDAP_INSUFFICIENT_ACCESS;
1365 for ( i=0; a->a_vals[i].bv_val; i++ ) ;
1367 v = op->o_tmpalloc( sizeof(struct berval) * (i+1), op->o_tmpmemctx );
1368 for ( i=0,j=0; a->a_vals[i].bv_val; i++ ) {
1369 if ( op->o_conn && access_allowed( op,
1372 ACL_AUTH, &acl_state ) == 0 ) {
1376 &a->a_nvals[i], op->o_tmpmemctx );
1377 if (v[j].bv_val ) j++;
1380 op->o_tmpfree( v, op->o_tmpmemctx );
1382 rc = LDAP_INSUFFICIENT_ACCESS;
1390 freeit: if (e != target ) {
1391 be_entry_release_r( op, e );
1399 Attribute *backend_operational(
1404 Attribute *a = NULL, **ap = &a;
1407 * If operational attributes (allegedly) are required,
1408 * and the backend supports specific operational attributes,
1409 * add them to the attribute list
1411 if ( opattrs || ( op->ors_attrs &&
1412 ad_inlist( slap_schema.si_ad_subschemaSubentry, op->ors_attrs )) ) {
1413 *ap = slap_operational_subschemaSubentry( op->o_bd );
1414 ap = &(*ap)->a_next;
1417 if ( ( opattrs || op->ors_attrs ) && op->o_bd && op->o_bd->be_operational != NULL ) {
1418 ( void )op->o_bd->be_operational( op, rs, opattrs, ap );