Diff for /servers/slapd/back-meta/init.c between versions 1.58 and 1.58.2.4

version 1.58, 2006/04/01 16:56:39 version 1.58.2.4, 2007/02/13 20:22:26
Line 1 Line 1
 /* $OpenLDAP: pkg/ldap/servers/slapd/back-meta/init.c,v 1.57 2006/03/01 23:38:25 ando Exp $ */  /* $OpenLDAP: pkg/ldap/servers/slapd/back-meta/init.c,v 1.73 2007/01/26 22:03:46 ando Exp $ */
 /* This work is part of OpenLDAP Software <http://www.openldap.org/>.  /* This work is part of OpenLDAP Software <http://www.openldap.org/>.
  *   *
  * Copyright 1999-2006 The OpenLDAP Foundation.   * Copyright 1999-2007 The OpenLDAP Foundation.
  * Portions Copyright 2001-2003 Pierangelo Masarati.   * Portions Copyright 2001-2003 Pierangelo Masarati.
  * Portions Copyright 1999-2003 Howard Chu.   * Portions Copyright 1999-2003 Howard Chu.
  * All rights reserved.   * All rights reserved.
Line 90  meta_back_db_init( Line 90  meta_back_db_init(
         Backend         *be )          Backend         *be )
 {  {
         metainfo_t      *mi;          metainfo_t      *mi;
           int             i;
   
         mi = ch_calloc( 1, sizeof( metainfo_t ) );          mi = ch_calloc( 1, sizeof( metainfo_t ) );
         if ( mi == NULL ) {          if ( mi == NULL ) {
Line 104  meta_back_db_init( Line 105  meta_back_db_init(
         mi->mi_bind_timeout.tv_sec = 0;          mi->mi_bind_timeout.tv_sec = 0;
         mi->mi_bind_timeout.tv_usec = META_BIND_TIMEOUT;          mi->mi_bind_timeout.tv_usec = META_BIND_TIMEOUT;
   
           mi->mi_rebind_f = meta_back_default_rebind;
           mi->mi_urllist_f = meta_back_default_urllist;
   
         ldap_pvt_thread_mutex_init( &mi->mi_conninfo.lai_mutex );          ldap_pvt_thread_mutex_init( &mi->mi_conninfo.lai_mutex );
         ldap_pvt_thread_mutex_init( &mi->mi_cache.mutex );          ldap_pvt_thread_mutex_init( &mi->mi_cache.mutex );
   
         /* safe default */          /* safe default */
         mi->mi_nretries = META_RETRY_DEFAULT;          mi->mi_nretries = META_RETRY_DEFAULT;
         mi->mi_version = LDAP_VERSION3;          mi->mi_version = LDAP_VERSION3;
   
           for ( i = LDAP_BACK_PCONN_FIRST; i < LDAP_BACK_PCONN_LAST; i++ ) {
                   mi->mi_conn_priv[ i ].mic_num = 0;
                   LDAP_TAILQ_INIT( &mi->mi_conn_priv[ i ].mic_priv );
           }
           mi->mi_conn_priv_max = LDAP_BACK_CONN_PRIV_DEFAULT;
                   
         be->be_private = mi;          be->be_private = mi;
   
Line 122  meta_back_db_open( Line 132  meta_back_db_open(
 {  {
         metainfo_t      *mi = (metainfo_t *)be->be_private;          metainfo_t      *mi = (metainfo_t *)be->be_private;
   
         int             i, rc;          int             i,
                           not_always = 0,
                           not_always_anon_proxyauthz = 0,
                           not_always_anon_non_prescriptive = 0,
                           rc;
   
           if ( mi->mi_ntargets == 0 ) {
                   Debug( LDAP_DEBUG_ANY,
                           "meta_back_db_open: no targets defined\n",
                           0, 0, 0 );
                   return 1;
           }
   
         for ( i = 0; i < mi->mi_ntargets; i++ ) {          for ( i = 0; i < mi->mi_ntargets; i++ ) {
                 if ( mi->mi_targets[ i ].mt_flags & LDAP_BACK_F_SUPPORT_T_F_DISCOVER )                  slap_bindconf   sb = { BER_BVNULL };
                 {                  metatarget_t    *mt = mi->mi_targets[ i ];
                         mi->mi_targets[ i ].mt_flags &= ~LDAP_BACK_F_SUPPORT_T_F_DISCOVER;  
                         rc = slap_discover_feature( mi->mi_targets[ i ].mt_uri,                  ber_str2bv( mt->mt_uri, 0, 0, &sb.sb_uri );
                                         mi->mi_targets[ i ].mt_version,                  sb.sb_version = mt->mt_version;
                   sb.sb_method = LDAP_AUTH_SIMPLE;
                   BER_BVSTR( &sb.sb_binddn, "" );
   
                   if ( META_BACK_TGT_T_F_DISCOVER( mt ) ) {
                           rc = slap_discover_feature( &sb,
                                         slap_schema.si_ad_supportedFeatures->ad_cname.bv_val,                                          slap_schema.si_ad_supportedFeatures->ad_cname.bv_val,
                                         LDAP_FEATURE_ABSOLUTE_FILTERS );                                          LDAP_FEATURE_ABSOLUTE_FILTERS );
                         if ( rc == LDAP_COMPARE_TRUE ) {                          if ( rc == LDAP_COMPARE_TRUE ) {
                                 mi->mi_targets[ i ].mt_flags |= LDAP_BACK_F_SUPPORT_T_F;                                  mt->mt_flags |= LDAP_BACK_F_T_F;
                           }
                   }
   
                   if ( META_BACK_TGT_CANCEL_DISCOVER( mt ) ) {
                           rc = slap_discover_feature( &sb,
                                           slap_schema.si_ad_supportedExtension->ad_cname.bv_val,
                                           LDAP_EXOP_CANCEL );
                           if ( rc == LDAP_COMPARE_TRUE ) {
                                   mt->mt_flags |= LDAP_BACK_F_CANCEL_EXOP;
                           }
                   }
   
                   if ( not_always == 0 ) {
                           if ( !( mt->mt_idassert_flags & LDAP_BACK_AUTH_OVERRIDE )
                                   || mt->mt_idassert_authz != NULL )
                           {
                                   not_always = 1;
                         }                          }
                 }                  }
   
                   if ( ( mt->mt_idassert_flags & LDAP_BACK_AUTH_AUTHZ_ALL )
                           && !( mt->mt_idassert_flags & LDAP_BACK_AUTH_PRESCRIPTIVE ) )
                   {
                           Debug( LDAP_DEBUG_ANY, "meta_back_db_open(%s): "
                                   "target #%d inconsistent idassert configuration "
                                   "(likely authz=\"*\" used with \"non-prescriptive\" flag)\n",
                                   be->be_suffix[ 0 ].bv_val, i, 0 );
                           return 1;
                   }
   
                   if ( not_always_anon_proxyauthz == 0 ) {
                           if ( !( mt->mt_idassert_flags & LDAP_BACK_AUTH_AUTHZ_ALL ) )
                           {
                                   not_always_anon_proxyauthz = 1;
                           }
                   }
   
                   if ( not_always_anon_non_prescriptive == 0 ) {
                           if ( ( mt->mt_idassert_flags & LDAP_BACK_AUTH_PRESCRIPTIVE ) )
                           {
                                   not_always_anon_non_prescriptive = 1;
                           }
                   }
           }
   
           if ( not_always == 0 ) {
                   mi->mi_flags |= META_BACK_F_PROXYAUTHZ_ALWAYS;
           }
   
           if ( not_always_anon_proxyauthz == 0 ) {
                   mi->mi_flags |= META_BACK_F_PROXYAUTHZ_ANON;
   
           } else if ( not_always_anon_non_prescriptive == 0 ) {
                   mi->mi_flags |= META_BACK_F_PROXYAUTHZ_NOANON;
         }          }
   
         return 0;          return 0;
 }  }
   
   /*
    * meta_back_conn_free()
    *
    * actually frees a connection; the reference count must be 0,
    * and it must not (or no longer) be in the cache.
    */
 void  void
 meta_back_conn_free(   meta_back_conn_free( 
         void            *v_mc )          void            *v_mc )
 {  {
         metaconn_t              *mc = v_mc;          metaconn_t              *mc = v_mc;
         int                     i, ntargets;          int                     ntargets;
   
         assert( mc != NULL );          assert( mc != NULL );
         assert( mc->mc_refcnt == 0 );          assert( mc->mc_refcnt == 0 );
   
         if ( !BER_BVISNULL( &mc->mc_local_ndn ) ) {  
                 free( mc->mc_local_ndn.bv_val );  
         }  
   
         assert( mc->mc_conns != NULL );  
   
         /* at least one must be present... */          /* at least one must be present... */
         ntargets = mc->mc_conns[ 0 ].msc_info->mi_ntargets;          ntargets = mc->mc_info->mi_ntargets;
           assert( ntargets > 0 );
   
           for ( ; ntargets--; ) {
                   (void)meta_clear_one_candidate( NULL, mc, ntargets );
           }
   
         for ( i = 0; i < ntargets; i++ ) {          if ( !BER_BVISNULL( &mc->mc_local_ndn ) ) {
                 (void)meta_clear_one_candidate( &mc->mc_conns[ i ] );                  free( mc->mc_local_ndn.bv_val );
         }          }
   
         free( mc );          free( mc );
Line 194  target_free( Line 277  target_free(
 {  {
         if ( mt->mt_uri ) {          if ( mt->mt_uri ) {
                 free( mt->mt_uri );                  free( mt->mt_uri );
                   ldap_pvt_thread_mutex_destroy( &mt->mt_uri_mutex );
         }          }
         if ( mt->mt_subtree_exclude ) {          if ( mt->mt_subtree_exclude ) {
                 ber_bvarray_free( mt->mt_subtree_exclude );                  ber_bvarray_free( mt->mt_subtree_exclude );
Line 210  target_free( Line 294  target_free(
         if ( !BER_BVISNULL( &mt->mt_bindpw ) ) {          if ( !BER_BVISNULL( &mt->mt_bindpw ) ) {
                 free( mt->mt_bindpw.bv_val );                  free( mt->mt_bindpw.bv_val );
         }          }
         if ( !BER_BVISNULL( &mt->mt_pseudorootdn ) ) {          if ( !BER_BVISNULL( &mt->mt_idassert_authcID ) ) {
                 free( mt->mt_pseudorootdn.bv_val );                  ch_free( mt->mt_idassert_authcID.bv_val );
           }
           if ( !BER_BVISNULL( &mt->mt_idassert_authcDN ) ) {
                   ch_free( mt->mt_idassert_authcDN.bv_val );
         }          }
         if ( !BER_BVISNULL( &mt->mt_pseudorootpw ) ) {          if ( !BER_BVISNULL( &mt->mt_idassert_passwd ) ) {
                 free( mt->mt_pseudorootpw.bv_val );                  ch_free( mt->mt_idassert_passwd.bv_val );
           }
           if ( !BER_BVISNULL( &mt->mt_idassert_authzID ) ) {
                   ch_free( mt->mt_idassert_authzID.bv_val );
           }
           if ( !BER_BVISNULL( &mt->mt_idassert_sasl_mech ) ) {
                   ch_free( mt->mt_idassert_sasl_mech.bv_val );
           }
           if ( !BER_BVISNULL( &mt->mt_idassert_sasl_realm ) ) {
                   ch_free( mt->mt_idassert_sasl_realm.bv_val );
           }
           if ( mt->mt_idassert_authz != NULL ) {
                   ber_bvarray_free( mt->mt_idassert_authz );
         }          }
         if ( mt->mt_rwmap.rwm_rw ) {          if ( mt->mt_rwmap.rwm_rw ) {
                 rewrite_info_delete( &mt->mt_rwmap.rwm_rw );                  rewrite_info_delete( &mt->mt_rwmap.rwm_rw );
Line 223  target_free( Line 322  target_free(
         avl_free( mt->mt_rwmap.rwm_oc.map, mapping_free );          avl_free( mt->mt_rwmap.rwm_oc.map, mapping_free );
         avl_free( mt->mt_rwmap.rwm_at.remap, mapping_dst_free );          avl_free( mt->mt_rwmap.rwm_at.remap, mapping_dst_free );
         avl_free( mt->mt_rwmap.rwm_at.map, mapping_free );          avl_free( mt->mt_rwmap.rwm_at.map, mapping_free );
   
           free( mt );
 }  }
   
 int  int
Line 244  meta_back_db_destroy( Line 345  meta_back_db_destroy(
                 if ( mi->mi_conninfo.lai_tree ) {                  if ( mi->mi_conninfo.lai_tree ) {
                         avl_free( mi->mi_conninfo.lai_tree, meta_back_conn_free );                          avl_free( mi->mi_conninfo.lai_tree, meta_back_conn_free );
                 }                  }
                   for ( i = LDAP_BACK_PCONN_FIRST; i < LDAP_BACK_PCONN_LAST; i++ ) {
                           while ( !LDAP_TAILQ_EMPTY( &mi->mi_conn_priv[ i ].mic_priv ) ) {
                                   metaconn_t      *mc = LDAP_TAILQ_FIRST( &mi->mi_conn_priv[ i ].mic_priv );
   
                                   LDAP_TAILQ_REMOVE( &mi->mi_conn_priv[ i ].mic_priv, mc, mc_q );
                                   meta_back_conn_free( mc );
                           }
                   }
   
                 /*                  /*
                  * Destroy the per-target stuff (assuming there's at                   * Destroy the per-target stuff (assuming there's at
Line 251  meta_back_db_destroy( Line 360  meta_back_db_destroy(
                  */                   */
                 if ( mi->mi_targets != NULL ) {                  if ( mi->mi_targets != NULL ) {
                         for ( i = 0; i < mi->mi_ntargets; i++ ) {                          for ( i = 0; i < mi->mi_ntargets; i++ ) {
                                 target_free( &mi->mi_targets[ i ] );                                  metatarget_t    *mt = mi->mi_targets[ i ];
   
                                   if ( META_BACK_TGT_QUARANTINE( mt ) ) {
                                           if ( mt->mt_quarantine.ri_num != mi->mi_quarantine.ri_num )
                                           {
                                                   slap_retry_info_destroy( &mt->mt_quarantine );
                                           }
   
                                           ldap_pvt_thread_mutex_destroy( &mt->mt_quarantine_mutex );
                                   }
   
                                   target_free( mt );
                         }                          }
   
                         free( mi->mi_targets );                          free( mi->mi_targets );
Line 271  meta_back_db_destroy( Line 391  meta_back_db_destroy(
                 if ( mi->mi_candidates != NULL ) {                  if ( mi->mi_candidates != NULL ) {
                         ber_memfree_x( mi->mi_candidates, NULL );                          ber_memfree_x( mi->mi_candidates, NULL );
                 }                  }
   
                   if ( META_BACK_QUARANTINE( mi ) ) {
                           slap_retry_info_destroy( &mi->mi_quarantine );
                   }
         }          }
   
         free( be->be_private );          free( be->be_private );

Removed from v.1.58  
changed lines
  Added in v.1.58.2.4


______________
© Copyright 1998-2020, OpenLDAP Foundation, info@OpenLDAP.org