mirror of
https://git.openldap.org/openldap/openldap.git
synced 2024-12-21 03:10:25 +08:00
save a malloc; some more cleanup
This commit is contained in:
parent
3fbc65082e
commit
889ce515ad
@ -39,24 +39,25 @@ dnssrv_back_bind(
|
||||
op->o_req_dn.bv_val == NULL ? "" : op->o_req_dn.bv_val,
|
||||
op->oq_bind.rb_method, NULL );
|
||||
|
||||
if( op->oq_bind.rb_method == LDAP_AUTH_SIMPLE &&
|
||||
op->oq_bind.rb_cred.bv_val != NULL && op->oq_bind.rb_cred.bv_len )
|
||||
if ( op->oq_bind.rb_method == LDAP_AUTH_SIMPLE &&
|
||||
!BER_BVISNULL( &op->oq_bind.rb_cred ) &&
|
||||
!BER_BVISEMPTY( &op->oq_bind.rb_cred ) )
|
||||
{
|
||||
Statslog( LDAP_DEBUG_STATS,
|
||||
"%s DNSSRV BIND dn=\"%s\" provided passwd\n",
|
||||
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,
|
||||
"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,
|
||||
"you shouldn\'t send strangers your password" );
|
||||
"you shouldn't send strangers your password" );
|
||||
|
||||
} else {
|
||||
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,
|
||||
"anonymous bind expected" );
|
||||
|
@ -104,11 +104,11 @@ dnssrv_back_search(
|
||||
for( i=0; hosts[i] != NULL; i++) {
|
||||
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 );
|
||||
|
||||
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 ) {
|
||||
free( url.bv_val );
|
||||
@ -167,21 +167,20 @@ dnssrv_back_search(
|
||||
send_ldap_error( op, rs, LDAP_SUCCESS, NULL );
|
||||
|
||||
} else {
|
||||
Entry *e = ch_calloc( 1, sizeof(Entry) );
|
||||
Entry e = { 0 };
|
||||
AttributeDescription *ad_objectClass
|
||||
= slap_schema.si_ad_objectClass;
|
||||
AttributeDescription *ad_ref = slap_schema.si_ad_ref;
|
||||
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_nname.bv_val = strdup( op->o_req_ndn.bv_val );
|
||||
e->e_nname.bv_len = op->o_req_ndn.bv_len;
|
||||
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_nname.bv_val = strdup( op->o_req_ndn.bv_val );
|
||||
e.e_nname.bv_len = op->o_req_ndn.bv_len;
|
||||
|
||||
e->e_attrs = NULL;
|
||||
e->e_private = NULL;
|
||||
e.e_attrs = 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_extensibleObject->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 );
|
||||
|
||||
if ( ad_dc ) {
|
||||
char *p;
|
||||
@ -201,22 +200,22 @@ dnssrv_back_search(
|
||||
bv.bv_len = strlen( bv.bv_val );
|
||||
}
|
||||
|
||||
attr_mergeit_one( e, ad_dc, &bv );
|
||||
attr_mergeit_one( &e, ad_dc, &bv );
|
||||
}
|
||||
|
||||
if ( ad_associatedDomain ) {
|
||||
struct berval 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 ) {
|
||||
rs->sr_entry = e;
|
||||
rs->sr_entry = &e;
|
||||
rs->sr_attrs = op->oq_search.rs_attrs;
|
||||
rs->sr_flags = REP_ENTRY_MODIFIABLE;
|
||||
send_search_entry( op, rs );
|
||||
@ -224,7 +223,7 @@ dnssrv_back_search(
|
||||
rs->sr_attrs = NULL;
|
||||
}
|
||||
|
||||
entry_free( e );
|
||||
entry_clean( &e );
|
||||
|
||||
rs->sr_err = LDAP_SUCCESS;
|
||||
send_ldap_result( op, rs );
|
||||
|
Loading…
Reference in New Issue
Block a user