]> git.sur5r.net Git - openldap/blobdiff - servers/slapd/back-ldap/init.c
error message from be_entry_put tool backend function
[openldap] / servers / slapd / back-ldap / init.c
index 9d49b424a05730585c05ba0467b6b55ee7210f3b..a78a33236a1b09b089c730ada760b3d7de8df233 100644 (file)
@@ -1,7 +1,7 @@
 /* init.c - initialize ldap backend */
 /* $OpenLDAP$ */
 /*
- * Copyright 1998-1999 The OpenLDAP Foundation, All Rights Reserved.
+ * Copyright 1998-2002 The OpenLDAP Foundation, All Rights Reserved.
  * COPYING RESTRICTIONS APPLY, see COPYRIGHT file
  */
 /* This is an altered version */
@@ -103,13 +103,28 @@ ldap_back_db_init(
 )
 {
        struct ldapinfo *li;
+       struct ldapmapping *mapping;
 
        li = (struct ldapinfo *) ch_calloc( 1, sizeof(struct ldapinfo) );
+       if ( li == NULL ) {
+               return -1;
+       }
+
+#ifdef ENABLE_REWRITE
+       li->rwinfo = rewrite_info_init( REWRITE_MODE_USE_DEFAULT );
+       if ( li->rwinfo == NULL ) {
+               ch_free( li );
+               return -1;
+       }
+#endif /* ENABLE_REWRITE */
+
        ldap_pvt_thread_mutex_init( &li->conn_mutex );
 
+       ldap_back_map_init( &li->at_map, &mapping );
+
        be->be_private = li;
 
-       return li == NULL;
+       return 0;
 }
 
 static void
@@ -118,10 +133,18 @@ conn_free(
 )
 {
        ldap_unbind(lc->ld);
-       if ( lc->bound_dn) free( lc->bound_dn );
+       if ( lc->bound_dn.bv_val) free( lc->bound_dn.bv_val );
        free( lc );
 }
 
+void
+mapping_free ( struct ldapmapping *mapping )
+{
+       ch_free( mapping->src.bv_val );
+       ch_free( mapping->dst.bv_val );
+       ch_free( mapping );
+}
+
 int
 ldap_back_db_destroy(
     Backend    *be
@@ -146,13 +169,23 @@ ldap_back_db_destroy(
                        free(li->bindpw);
                        li->bindpw = NULL;
                }
-               if (li->suffix_massage) {
-                       ldap_value_free( li->suffix_massage );
-                       li->suffix_massage = NULL;
-               }
                 if (li->conntree) {
                        avl_free( li->conntree, (AVL_FREE) conn_free );
                }
+#ifdef ENABLE_REWRITE
+               if (li->rwinfo) {
+                       rewrite_info_delete( li->rwinfo );
+               }
+#else /* !ENABLE_REWRITE */
+               if (li->suffix_massage) {
+                       ber_bvecfree( li->suffix_massage );
+               }
+#endif /* !ENABLE_REWRITE */
+
+               avl_free( li->oc_map.remap, NULL );
+               avl_free( li->oc_map.map, (AVL_FREE) mapping_free );
+               avl_free( li->at_map.remap, NULL );
+               avl_free( li->at_map.map, (AVL_FREE) mapping_free );
                
                ldap_pvt_thread_mutex_unlock( &li->conn_mutex );
                ldap_pvt_thread_mutex_destroy( &li->conn_mutex );