]> git.sur5r.net Git - openldap/blobdiff - servers/slapd/backend.c
Install *.schema only
[openldap] / servers / slapd / backend.c
index 0c07a87a9bba3b0526c340a9fd96c1cb1216a67d..e9f4c0e4de910a7aa3f96f547d0a8715f2cddf12 100644 (file)
@@ -1,5 +1,6 @@
+/* $OpenLDAP$ */
 /*
- * Copyright 1998-1999 The OpenLDAP Foundation, All Rights Reserved.
+ * Copyright 1998-2000 The OpenLDAP Foundation, All Rights Reserved.
  * COPYING RESTRICTIONS APPLY, see COPYRIGHT file
  */
 /* backend.c - routines for dealing with back-end databases */
@@ -17,8 +18,9 @@
 #include "slap.h"
 #include "lutil.h"
 
-#include "ldap_defaults.h"
-
+#ifdef SLAPD_DNSSRV
+#include "back-dnssrv/external.h"
+#endif
 #ifdef SLAPD_LDAP
 #include "back-ldap/external.h"
 #endif
 #ifdef SLAPD_TCL
 #include "back-tcl/external.h"
 #endif
+#ifdef SLAPD_NTDOMAIN
+#include "back-domain/external.h"
+#endif
+#ifdef SLAPD_SQL
+#include "back-sql/external.h"
+#endif
 
 static BackendInfo binfo[] = {
+#if defined(SLAPD_DNSSRV) && !defined(SLAPD_DNSSRV_DYNAMIC)
+       {"dnssrv",      dnssrv_back_initialize},
+#endif
 #if defined(SLAPD_LDAP) && !defined(SLAPD_LDAP_DYNAMIC)
        {"ldap",        ldap_back_initialize},
 #endif
@@ -60,8 +71,14 @@ static BackendInfo binfo[] = {
 #if defined(SLAPD_SHELL) && !defined(SLAPD_SHELL_DYNAMIC)
        {"shell",       shell_back_initialize},
 #endif
-#if defined(SLAPD_TCL) && !defined(SLAPD_LDAP_TCL)
+#if defined(SLAPD_TCL) && !defined(SLAPD_TCL_DYNAMIC)
        {"tcl",         tcl_back_initialize},
+#endif
+#if defined(SLAPD_NTDOMAIN) && !defined(SLAPD_NTDOMAIN_DYNAMIC)
+       {"ntdom",       domain_back_initialize},
+#endif
+#if defined(SLAPD_SQL) && !defined(SLAPD_SQL_DYNAMIC)
+       {"sql",         sql_back_initialize},
 #endif
        {NULL}
 };
@@ -84,11 +101,10 @@ int backend_init(void)
        }
 
        for( ;
-               binfo[nBackendInfo].bi_type !=  NULL;
+               binfo[nBackendInfo].bi_type != NULL;
                nBackendInfo++ )
        {
-               rc = binfo[nBackendInfo].bi_init(
-                       &binfo[nBackendInfo] );
+               rc = binfo[nBackendInfo].bi_init( &binfo[nBackendInfo] );
 
                if(rc != 0) {
                        Debug( LDAP_DEBUG_ANY,
@@ -158,7 +174,7 @@ int backend_add(BackendInfo *aBackendInfo)
    }       
 }
 
-int backend_startup(int n)
+int backend_startup(Backend *be)
 {
        int i;
        int rc = 0;
@@ -171,24 +187,14 @@ int backend_startup(int n)
                return 1;
        }
 
-       if(n >= 0) {
+       if(be != NULL) {
                /* startup a specific backend database */
                Debug( LDAP_DEBUG_TRACE,
-                       "backend_startup: starting database %d\n",
-                       n, 0, 0 );
+                       "backend_startup: starting database\n",
+                       0, 0, 0 );
 
-               /* make sure, n does not exceed the number of backend databases */
-               if ( n >= nbackends ) {
-
-                       Debug( LDAP_DEBUG_ANY,
-                               "backend_startup: database number %d exceeding maximum (%d)\n",
-                               n, nbackends, 0 );
-                       return 1;
-               }
-
-               if ( backendDB[n].bd_info->bi_open ) {
-                       rc = backendDB[n].bd_info->bi_open(
-                               backendDB[n].bd_info );
+               if ( be->bd_info->bi_open ) {
+                       rc = be->bd_info->bi_open( be->bd_info );
                }
 
                if(rc != 0) {
@@ -198,9 +204,8 @@ int backend_startup(int n)
                        return rc;
                }
 
-               if ( backendDB[n].bd_info->bi_db_open ) {
-                       rc = backendDB[n].bd_info->bi_db_open(
-                               &backendDB[n] );
+               if ( be->bd_info->bi_db_open ) {
+                       rc = be->bd_info->bi_db_open( be );
                }
 
                if(rc != 0) {
@@ -235,6 +240,9 @@ int backend_startup(int n)
 
        /* open each backend database */
        for( i = 0; i < nBackendDB; i++ ) {
+               /* append global access controls */
+               acl_append( &backendDB[i].be_acl, global_acl );
+
                if ( backendDB[i].bd_info->bi_db_open ) {
                        rc = backendDB[i].bd_info->bi_db_open(
                                &backendDB[i] );
@@ -251,36 +259,37 @@ int backend_startup(int n)
        return rc;
 }
 
-int backend_shutdown(int n)
+int backend_num( Backend *be )
 {
        int i;
-       int rc = 0;
 
-       if(n >= 0) {
-               /* shutdown a specific backend database */
+       if( be == NULL ) return -1;
 
-               /* make sure, n does not exceed the number of backend databases */
-               if ( n >= nbackends ) {
+       for( i = 0; i < nBackendDB; i++ ) {
+               if( be == &backendDB[i] ) return i;
+       }
+       return -1;
+}
 
-                       Debug( LDAP_DEBUG_ANY,
-                               "backend_startup: database number %d exceeding maximum (%d)\n",
-                               n, nbackends, 0 );
-                       return 1;
-               }
+int backend_shutdown( Backend *be )
+{
+       int i;
+       int rc = 0;
+
+       if( be != NULL ) {
+               /* shutdown a specific backend database */
 
-               if ( backendDB[n].bd_info->bi_nDB == 0 ) {
+               if ( be->bd_info->bi_nDB == 0 ) {
                        /* no database of this type, we never opened it */
                        return 0;
                }
 
-               if ( backendDB[n].bd_info->bi_db_close ) {
-                       backendDB[n].bd_info->bi_db_close(
-                               &backendDB[n] );
+               if ( be->bd_info->bi_db_close ) {
+                       be->bd_info->bi_db_close( be );
                }
 
-               if( backendDB[n].bd_info->bi_close ) {
-                       backendDB[n].bd_info->bi_close(
-                               backendDB[n].bd_info );
+               if( be->bd_info->bi_close ) {
+                       be->bd_info->bi_close( be->bd_info );
                }
 
                return 0;
@@ -288,8 +297,6 @@ int backend_shutdown(int n)
 
        /* close each backend database */
        for( i = 0; i < nBackendDB; i++ ) {
-               BackendInfo  *bi;
-
                if ( backendDB[i].bd_info->bi_db_close ) {
                        backendDB[i].bd_info->bi_db_close(
                                &backendDB[i] );
@@ -298,7 +305,7 @@ int backend_shutdown(int n)
                if(rc != 0) {
                        Debug( LDAP_DEBUG_ANY,
                                "backend_close: bi_close %s failed!\n",
-                               bi->bi_type, 0, 0 );
+                               backendDB[i].be_type, 0, 0 );
                }
        }
 
@@ -350,7 +357,7 @@ int backend_destroy(void)
        return 0;
 }
 
-BackendInfo* backend_info(char *type)
+BackendInfo* backend_info(const char *type)
 {
        int i;
 
@@ -367,7 +374,7 @@ BackendInfo* backend_info(char *type)
 
 BackendDB *
 backend_db_init(
-    char       *type
+    const char *type
 )
 {
        Backend *be;
@@ -390,6 +397,10 @@ backend_db_init(
        be->bd_info = bi;
        be->be_sizelimit = defsize;
        be->be_timelimit = deftime;
+       be->be_dfltaccess = global_default_access;
+
+       /* assign a default depth limit for alias deref */
+       be->be_max_deref_depth = SLAPD_DEFAULT_MAXDEREFDEPTH; 
 
        be->be_realm = global_realm != NULL
                ? ch_strdup( global_realm ) : NULL;
@@ -421,7 +432,7 @@ be_db_close( void )
 }
 
 Backend *
-select_backend( char * dn )
+select_backend( const char * dn )
 {
        int     i, j, len, dnlen;
 
@@ -463,7 +474,7 @@ select_backend( char * dn )
 int
 be_issuffix(
     Backend    *be,
-    char       *suffix
+    const char *suffix
 )
 {
        int     i;
@@ -478,11 +489,15 @@ be_issuffix(
 }
 
 int
-be_isroot( Backend *be, char *ndn )
+be_isroot( Backend *be, const char *ndn )
 {
        int rc;
 
-       if ( ndn == NULL || be->be_root_ndn == NULL ) {
+       if ( ndn == NULL || *ndn == '\0' ) {
+               return( 0 );
+       }
+
+       if ( be->be_root_ndn == NULL || *be->be_root_ndn == '\0' ) {
                return( 0 );
        }
 
@@ -502,19 +517,23 @@ be_root_dn( Backend *be )
 }
 
 int
-be_isroot_pw( Backend *be, char *ndn, struct berval *cred )
+be_isroot_pw( Backend *be, const char *ndn, struct berval *cred )
 {
        int result;
 
        if ( ! be_isroot( be, ndn ) ) {
-               return( 0 );
+               return 0;
+       }
+
+       if( be->be_root_pw.bv_len == 0 ) {
+               return 0;
        }
 
 #ifdef SLAPD_CRYPT
        ldap_pvt_thread_mutex_lock( &crypt_mutex );
 #endif
 
-       result = lutil_passwd( cred->bv_val, be->be_root_pw, NULL );
+       result = lutil_passwd( &be->be_root_pw, cred, NULL );
 
 #ifdef SLAPD_CRYPT
        ldap_pvt_thread_mutex_unlock( &crypt_mutex );
@@ -585,38 +604,73 @@ backend_connection_destroy(
        return 0;
 }
 
+int
+backend_check_controls(
+       Backend *be,
+       Connection *conn,
+       Operation *op,
+       const char **text )
+{
+       LDAPControl **ctrls;
+       ctrls = op->o_ctrls;
+       if( ctrls == NULL ) {
+               return LDAP_SUCCESS;
+       }
+
+       for( ; *ctrls != NULL ; ctrls++ ) {
+               if( (*ctrls)->ldctl_iscritical &&
+                       !charray_inlist( be->be_controls, (*ctrls)->ldctl_oid ) )
+               {
+                       *text = "control unavailable in NamingContext";
+                       return LDAP_UNAVAILABLE_CRITICAL_EXTENSION;
+               }
+       }
+
+       return LDAP_SUCCESS;
+}
+
 int 
 backend_group(
        Backend *be,
        Entry   *target,
-       char    *gr_ndn,
-       char    *op_ndn,
-       char    *objectclassValue,
-       char    *groupattrName
+       const char      *gr_ndn,
+       const char      *op_ndn,
+#ifdef SLAPD_SCHEMA_NOT_COMPAT
+       ObjectClass *group_oc,
+       AttributeDescription *group_at
+#else
+       const char      *group_oc,
+       const char      *group_at
+#endif
 )
 {
        if (be->be_group)
                return( be->be_group(be, target, gr_ndn, op_ndn,
-                       objectclassValue, groupattrName) );
+                       group_oc, group_at) );
        else
-               return(1);
+               return LDAP_UNWILLING_TO_PERFORM;
 }
 
 #ifdef SLAPD_SCHEMA_DN
-Attribute *backend_subschemasubentry( Backend *be )
+Attribute *backend_operational(
+       Backend *be,
+       Entry *e )
 {
-       /* should be backend specific */
-       static struct berval ss_val = {
-               sizeof(SLAPD_SCHEMA_DN)-1,
-               SLAPD_SCHEMA_DN };
-       static struct berval *ss_vals[2] = { &ss_val, NULL };
-       static Attribute ss_attr = {
-               "subschemasubentry",
-               ss_vals,
-               SYNTAX_DN | SYNTAX_CIS,
-               NULL
-       };
-
-       return &ss_attr;
+       Attribute *a = ch_malloc( sizeof( Attribute ) );
+#ifdef SLAPD_SCHEMA_NOT_COMPAT
+       a->a_desc = ad_dup( slap_schema.si_ad_subschemaSubentry );
+#else
+       a->a_type = ch_strdup("subschemasubentry");
+       a->a_syntax = SYNTAX_DN | SYNTAX_CIS;
+#endif
+
+       /* Should be backend specific */
+       a->a_vals = ch_malloc( 2 * sizeof( struct berval * ) );
+       a->a_vals[0] = ber_bvstrdup( SLAPD_SCHEMA_DN );
+       a->a_vals[1] = NULL;
+
+       a->a_next = NULL;
+
+       return a;
 }
 #endif