mirror of
https://git.openldap.org/openldap/openldap.git
synced 2024-12-21 03:10:25 +08:00
Changed conn->c_cdn to struct berval.
This commit is contained in:
parent
76386bde5e
commit
ce7d8d26f2
@ -226,7 +226,7 @@ ldap_back_getconn(struct ldapinfo *li, Connection *conn, Operation *op)
|
||||
( void )rewrite_session_init( li->rwinfo, conn );
|
||||
#endif /* ENABLE_REWRITE */
|
||||
|
||||
if ( lc->conn->c_cdn != NULL && lc->conn->c_cdn[0] != '\0' ) {
|
||||
if ( lc->conn->c_cdn.bv_len != 0 ) {
|
||||
|
||||
/*
|
||||
* Rewrite the bind dn if needed
|
||||
@ -235,24 +235,23 @@ ldap_back_getconn(struct ldapinfo *li, Connection *conn, Operation *op)
|
||||
lc->bound_dn.bv_val = NULL;
|
||||
lc->bound_dn.bv_len = 0;
|
||||
switch ( rewrite_session( li->rwinfo, "bindDn",
|
||||
lc->conn->c_cdn, conn,
|
||||
lc->conn->c_cdn.bv_val, conn,
|
||||
&lc->bound_dn.bv_val ) ) {
|
||||
case REWRITE_REGEXEC_OK:
|
||||
if ( lc->bound_dn.bv_val == NULL ) {
|
||||
lc->bound_dn.bv_val =
|
||||
ch_strdup( lc->conn->c_cdn );
|
||||
ber_dupbv( &lc->bound_dn, &lc->conn->c_cdn );
|
||||
}
|
||||
#ifdef NEW_LOGGING
|
||||
LDAP_LOG(( "backend", LDAP_LEVEL_DETAIL1,
|
||||
"[rw] bindDn: \"%s\" ->"
|
||||
" \"%s\"\n%s",
|
||||
lc->conn->c_cdn,
|
||||
lc->conn->c_cdn.bv_val,
|
||||
lc->bound_dn.bv_val ));
|
||||
#else /* !NEW_LOGGING */
|
||||
Debug( LDAP_DEBUG_ARGS,
|
||||
"rw> bindDn: \"%s\" ->"
|
||||
" \"%s\"\n%s",
|
||||
lc->conn->c_cdn,
|
||||
lc->conn->c_cdn.bv_val,
|
||||
lc->bound_dn.bv_val, "" );
|
||||
#endif /* !NEW_LOGGING */
|
||||
break;
|
||||
@ -273,8 +272,11 @@ ldap_back_getconn(struct ldapinfo *li, Connection *conn, Operation *op)
|
||||
}
|
||||
#else /* !ENABLE_REWRITE */
|
||||
struct berval bv;
|
||||
ber_str2bv( lc->conn->c_cdn, 0, 0, &bv );
|
||||
ldap_back_dn_massage( li, &bv, &lc->bound_dn, 0, 1 );
|
||||
ldap_back_dn_massage( li, &lc->conn->c_cdn, &bv, 0, 1 );
|
||||
if ( bv.bv_val == lc->conn->c_cdn.bv_val )
|
||||
ber_dupbv( &lc->bound_dn, &bv );
|
||||
else
|
||||
lc->bound_dn = bv;
|
||||
#endif /* !ENABLE_REWRITE */
|
||||
} else {
|
||||
lc->bound_dn.bv_val = NULL;
|
||||
|
@ -275,27 +275,27 @@ init_one_conn(
|
||||
/*
|
||||
* If the connection dn is not null, an attempt to rewrite it is made
|
||||
*/
|
||||
if ( conn->c_cdn != 0 ) {
|
||||
if ( conn->c_cdn.bv_len != 0 ) {
|
||||
|
||||
/*
|
||||
* Rewrite the bind dn if needed
|
||||
*/
|
||||
lsc->bound_dn.bv_val = NULL;
|
||||
switch ( rewrite_session( lt->rwinfo, "bindDn",
|
||||
conn->c_cdn, conn,
|
||||
conn->c_cdn.bv_val, conn,
|
||||
&lsc->bound_dn.bv_val ) ) {
|
||||
case REWRITE_REGEXEC_OK:
|
||||
if ( lsc->bound_dn.bv_val == NULL ) {
|
||||
ber_str2bv( conn->c_cdn, 0, 1, &lsc->bound_dn );
|
||||
ber_dupbv( &lsc->bound_dn, &conn->c_cdn );
|
||||
}
|
||||
#ifdef NEW_LOGGING
|
||||
LDAP_LOG(( "backend", LDAP_LEVEL_DETAIL1,
|
||||
"[rw] bindDn: \"%s\" -> \"%s\"\n",
|
||||
conn->c_cdn, lsc->bound_dn.bv_val ));
|
||||
conn->c_cdn.bv_val, lsc->bound_dn.bv_val ));
|
||||
#else /* !NEW_LOGGING */
|
||||
Debug( LDAP_DEBUG_ARGS,
|
||||
"rw> bindDn: \"%s\" -> \"%s\"\n",
|
||||
conn->c_cdn, lsc->bound_dn.bv_val, 0 );
|
||||
conn->c_cdn.bv_val, lsc->bound_dn.bv_val, 0 );
|
||||
#endif /* !NEW_LOGGING */
|
||||
break;
|
||||
|
||||
|
@ -495,7 +495,7 @@ do_bind(
|
||||
} else {
|
||||
ber_dupbv( &conn->c_dn, &pdn );
|
||||
}
|
||||
conn->c_cdn = pdn.bv_val;
|
||||
conn->c_cdn = pdn;
|
||||
pdn.bv_val = NULL;
|
||||
pdn.bv_len = 0;
|
||||
|
||||
@ -512,11 +512,11 @@ do_bind(
|
||||
#ifdef NEW_LOGGING
|
||||
LDAP_LOG(( "operation", LDAP_LEVEL_DETAIL1,
|
||||
"do_bind: conn %d v%d bind: \"%s\" to \"%s\" \n",
|
||||
conn->c_connid, version, conn->c_cdn, conn->c_dn.bv_val ));
|
||||
conn->c_connid, version, conn->c_cdn.bv_val, conn->c_dn.bv_val ));
|
||||
#else
|
||||
Debug( LDAP_DEBUG_TRACE,
|
||||
"do_bind: v%d bind: \"%s\" to \"%s\"\n",
|
||||
version, conn->c_cdn, conn->c_dn.bv_val );
|
||||
version, conn->c_cdn.bv_val, conn->c_dn.bv_val );
|
||||
#endif
|
||||
|
||||
ldap_pvt_thread_mutex_unlock( &conn->c_mutex );
|
||||
|
@ -417,7 +417,8 @@ long connection_init(
|
||||
c->c_dn.bv_len = 0;
|
||||
c->c_ndn.bv_val = NULL;
|
||||
c->c_ndn.bv_len = 0;
|
||||
c->c_cdn = NULL;
|
||||
c->c_cdn.bv_val = NULL;
|
||||
c->c_cdn.bv_len = 0;
|
||||
c->c_groups = NULL;
|
||||
|
||||
c->c_listener_url = NULL;
|
||||
@ -455,7 +456,7 @@ long connection_init(
|
||||
assert( c->c_authmech == NULL );
|
||||
assert( c->c_dn.bv_val == NULL );
|
||||
assert( c->c_ndn.bv_val == NULL );
|
||||
assert( c->c_cdn == NULL );
|
||||
assert( c->c_cdn.bv_val == NULL );
|
||||
assert( c->c_groups == NULL );
|
||||
assert( c->c_listener_url == NULL );
|
||||
assert( c->c_peer_domain == NULL );
|
||||
@ -591,10 +592,11 @@ void connection2anonymous( Connection *c )
|
||||
}
|
||||
c->c_ndn.bv_len = 0;
|
||||
|
||||
if(c->c_cdn != NULL) {
|
||||
free(c->c_cdn);
|
||||
c->c_cdn = NULL;
|
||||
if(c->c_cdn.bv_val != NULL) {
|
||||
free(c->c_cdn.bv_val);
|
||||
c->c_cdn.bv_val = NULL;
|
||||
}
|
||||
c->c_cdn.bv_len = 0;
|
||||
|
||||
c->c_authc_backend = NULL;
|
||||
c->c_authz_backend = NULL;
|
||||
|
@ -1351,7 +1351,7 @@ typedef struct slap_conn {
|
||||
/* only can be changed by binding thread */
|
||||
int c_sasl_bind_in_progress; /* multi-op bind in progress */
|
||||
char *c_sasl_bind_mech; /* mech in progress */
|
||||
char *c_cdn;
|
||||
struct berval c_cdn;
|
||||
|
||||
/* authentication backend */
|
||||
Backend *c_authc_backend;
|
||||
|
Loading…
Reference in New Issue
Block a user