save a malloc; some more cleanup

This commit is contained in:
Pierangelo Masarati 2005-04-08 19:17:51 +00:00
parent 3fbc65082e
commit 889ce515ad
2 changed files with 24 additions and 24 deletions

View File

@ -40,23 +40,24 @@ dnssrv_back_bind(
op->oq_bind.rb_method, NULL ); op->oq_bind.rb_method, NULL );
if ( op->oq_bind.rb_method == LDAP_AUTH_SIMPLE && if ( op->oq_bind.rb_method == LDAP_AUTH_SIMPLE &&
op->oq_bind.rb_cred.bv_val != NULL && op->oq_bind.rb_cred.bv_len ) !BER_BVISNULL( &op->oq_bind.rb_cred ) &&
!BER_BVISEMPTY( &op->oq_bind.rb_cred ) )
{ {
Statslog( LDAP_DEBUG_STATS, Statslog( LDAP_DEBUG_STATS,
"%s DNSSRV BIND dn=\"%s\" provided passwd\n", "%s DNSSRV BIND dn=\"%s\" provided passwd\n",
op->o_log_prefix, op->o_log_prefix,
op->o_req_dn.bv_val == NULL ? "" : op->o_req_dn.bv_val , 0, 0, 0 ); BER_BVISNULL( &op->o_req_dn ) ? "" : op->o_req_dn.bv_val , 0, 0, 0 );
Debug( LDAP_DEBUG_TRACE, Debug( LDAP_DEBUG_TRACE,
"DNSSRV: BIND dn=\"%s\" provided cleartext password\n", "DNSSRV: BIND dn=\"%s\" provided cleartext password\n",
op->o_req_dn.bv_val == NULL ? "" : op->o_req_dn.bv_val, 0, 0 ); BER_BVISNULL( &op->o_req_dn ) ? "" : op->o_req_dn.bv_val, 0, 0 );
send_ldap_error( op, rs, LDAP_UNWILLING_TO_PERFORM, send_ldap_error( op, rs, LDAP_UNWILLING_TO_PERFORM,
"you shouldn\'t send strangers your password" ); "you shouldn't send strangers your password" );
} else { } else {
Debug( LDAP_DEBUG_TRACE, "DNSSRV: BIND dn=\"%s\"\n", Debug( LDAP_DEBUG_TRACE, "DNSSRV: BIND dn=\"%s\"\n",
op->o_req_dn.bv_val == NULL ? "" : op->o_req_dn.bv_val, 0, 0 ); BER_BVISNULL( &op->o_req_dn ) ? "" : op->o_req_dn.bv_val, 0, 0 );
send_ldap_error( op, rs, LDAP_UNWILLING_TO_PERFORM, send_ldap_error( op, rs, LDAP_UNWILLING_TO_PERFORM,
"anonymous bind expected" ); "anonymous bind expected" );

View File

@ -104,11 +104,11 @@ dnssrv_back_search(
for( i=0; hosts[i] != NULL; i++) { for( i=0; hosts[i] != NULL; i++) {
struct berval url; struct berval url;
url.bv_len = sizeof("ldap://")-1 + strlen(hosts[i]); url.bv_len = STRLENOF( "ldap://" ) + strlen(hosts[i]);
url.bv_val = ch_malloc( url.bv_len + 1 ); url.bv_val = ch_malloc( url.bv_len + 1 );
strcpy( url.bv_val, "ldap://" ); strcpy( url.bv_val, "ldap://" );
strcpy( &url.bv_val[sizeof("ldap://")-1], hosts[i] ); strcpy( &url.bv_val[STRLENOF( "ldap://" )], hosts[i] );
if( ber_bvarray_add( &urls, &url ) < 0 ) { if( ber_bvarray_add( &urls, &url ) < 0 ) {
free( url.bv_val ); free( url.bv_val );
@ -167,21 +167,20 @@ dnssrv_back_search(
send_ldap_error( op, rs, LDAP_SUCCESS, NULL ); send_ldap_error( op, rs, LDAP_SUCCESS, NULL );
} else { } else {
Entry *e = ch_calloc( 1, sizeof(Entry) ); Entry e = { 0 };
AttributeDescription *ad_objectClass AttributeDescription *ad_objectClass
= slap_schema.si_ad_objectClass; = slap_schema.si_ad_objectClass;
AttributeDescription *ad_ref = slap_schema.si_ad_ref; AttributeDescription *ad_ref = slap_schema.si_ad_ref;
e->e_name.bv_val = strdup( op->o_req_dn.bv_val ); e.e_name.bv_val = strdup( op->o_req_dn.bv_val );
e->e_name.bv_len = op->o_req_dn.bv_len; e.e_name.bv_len = op->o_req_dn.bv_len;
e->e_nname.bv_val = strdup( op->o_req_ndn.bv_val ); e.e_nname.bv_val = strdup( op->o_req_ndn.bv_val );
e->e_nname.bv_len = op->o_req_ndn.bv_len; e.e_nname.bv_len = op->o_req_ndn.bv_len;
e->e_attrs = NULL; e.e_attrs = NULL;
e->e_private = NULL; e.e_private = NULL;
attr_mergeit_one( e, ad_objectClass, &slap_schema.si_oc_top->soc_cname ); attr_mergeit_one( &e, ad_objectClass, &slap_schema.si_oc_referral->soc_cname );
attr_mergeit_one( e, ad_objectClass, &slap_schema.si_oc_referral->soc_cname ); attr_mergeit_one( &e, ad_objectClass, &slap_schema.si_oc_extensibleObject->soc_cname );
attr_mergeit_one( e, ad_objectClass, &slap_schema.si_oc_extensibleObject->soc_cname );
if ( ad_dc ) { if ( ad_dc ) {
char *p; char *p;
@ -201,22 +200,22 @@ dnssrv_back_search(
bv.bv_len = strlen( bv.bv_val ); bv.bv_len = strlen( bv.bv_val );
} }
attr_mergeit_one( e, ad_dc, &bv ); attr_mergeit_one( &e, ad_dc, &bv );
} }
if ( ad_associatedDomain ) { if ( ad_associatedDomain ) {
struct berval bv; struct berval bv;
ber_str2bv( domain, 0, 0, &bv ); ber_str2bv( domain, 0, 0, &bv );
attr_mergeit_one( e, ad_associatedDomain, &bv ); attr_mergeit_one( &e, ad_associatedDomain, &bv );
} }
attr_mergeit( e, ad_ref, urls ); attr_mergeit( &e, ad_ref, urls );
rc = test_filter( op, e, op->oq_search.rs_filter ); rc = test_filter( op, &e, op->oq_search.rs_filter );
if( rc == LDAP_COMPARE_TRUE ) { if( rc == LDAP_COMPARE_TRUE ) {
rs->sr_entry = e; rs->sr_entry = &e;
rs->sr_attrs = op->oq_search.rs_attrs; rs->sr_attrs = op->oq_search.rs_attrs;
rs->sr_flags = REP_ENTRY_MODIFIABLE; rs->sr_flags = REP_ENTRY_MODIFIABLE;
send_search_entry( op, rs ); send_search_entry( op, rs );
@ -224,7 +223,7 @@ dnssrv_back_search(
rs->sr_attrs = NULL; rs->sr_attrs = NULL;
} }
entry_free( e ); entry_clean( &e );
rs->sr_err = LDAP_SUCCESS; rs->sr_err = LDAP_SUCCESS;
send_ldap_result( op, rs ); send_ldap_result( op, rs );