mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-12-30 11:39:34 -05:00
Update URL parsing and LDAP referral/reference chasing to handle
search scope defaulting.
This commit is contained in:
parent
6ae3796ade
commit
a09139465a
3 changed files with 96 additions and 92 deletions
|
|
@ -315,6 +315,7 @@ typedef struct ldapcontrol {
|
|||
#define LDAP_SUBSTRING_FINAL ((ber_tag_t) 0x82U) /* context specific */
|
||||
|
||||
/* search scopes */
|
||||
#define LDAP_SCOPE_DEFAULT ((ber_int_t) -1)
|
||||
#define LDAP_SCOPE_BASE ((ber_int_t) 0x0000)
|
||||
#define LDAP_SCOPE_ONELEVEL ((ber_int_t) 0x0001)
|
||||
#define LDAP_SCOPE_SUBTREE ((ber_int_t) 0x0002)
|
||||
|
|
|
|||
|
|
@ -45,14 +45,12 @@
|
|||
static LDAPConn *find_connection LDAP_P(( LDAP *ld, LDAPURLDesc *srv, int any ));
|
||||
static void use_connection LDAP_P(( LDAP *ld, LDAPConn *lc ));
|
||||
|
||||
|
||||
static BerElement *re_encode_request LDAP_P((
|
||||
LDAP *ld,
|
||||
static BerElement *
|
||||
re_encode_request( LDAP *ld,
|
||||
BerElement *origber,
|
||||
ber_int_t msgid,
|
||||
char **dnp,
|
||||
int *type));
|
||||
|
||||
ber_int_t msgid,
|
||||
LDAPURLDesc *srv,
|
||||
int *type );
|
||||
|
||||
BerElement *
|
||||
ldap_alloc_ber_with_options( LDAP *ld )
|
||||
|
|
@ -698,11 +696,12 @@ ldap_chase_v3referrals( LDAP *ld, LDAPRequest *lr, char **refs, int sref, char *
|
|||
*/
|
||||
|
||||
/* For references we don't want old dn if new dn empty */
|
||||
if ( sref && srv->lud_dn == NULL )
|
||||
if ( sref && srv->lud_dn == NULL ) {
|
||||
srv->lud_dn = LDAP_STRDUP( "" );
|
||||
}
|
||||
|
||||
if (( ber = re_encode_request( ld, origreq->lr_ber,
|
||||
++ld->ld_msgid, &srv->lud_dn, &rinfo.ri_request )) == NULL ) {
|
||||
++ld->ld_msgid, srv, &rinfo.ri_request )) == NULL ) {
|
||||
ld->ld_errno = LDAP_ENCODING_ERROR;
|
||||
rc = -1;
|
||||
goto done;
|
||||
|
|
@ -784,8 +783,8 @@ done:
|
|||
int
|
||||
ldap_chase_referrals( LDAP *ld, LDAPRequest *lr, char **errstrp, int *hadrefp )
|
||||
{
|
||||
int rc, count, len, newdn;
|
||||
char *p, *ports, *ref, *tmpref, *refdn, *unfollowed;
|
||||
int rc, count, len;
|
||||
char *p, *ref, *unfollowed;
|
||||
LDAPRequest *origreq;
|
||||
LDAPURLDesc *srv;
|
||||
BerElement *ber;
|
||||
|
|
@ -824,7 +823,7 @@ ldap_chase_referrals( LDAP *ld, LDAPRequest *lr, char **errstrp, int *hadrefp )
|
|||
/* find original request */
|
||||
for ( origreq = lr; origreq->lr_parent != NULL;
|
||||
origreq = origreq->lr_parent ) {
|
||||
;
|
||||
/* empty */;
|
||||
}
|
||||
|
||||
unfollowed = NULL;
|
||||
|
|
@ -832,82 +831,50 @@ ldap_chase_referrals( LDAP *ld, LDAPRequest *lr, char **errstrp, int *hadrefp )
|
|||
|
||||
/* parse out & follow referrals */
|
||||
for ( ref = p; rc == 0 && ref != NULL; ref = p ) {
|
||||
|
||||
if (( p = strchr( ref, '\n' )) != NULL ) {
|
||||
*p++ = '\0';
|
||||
} else {
|
||||
p = NULL;
|
||||
}
|
||||
|
||||
/* copy the complete referral for rebind process */
|
||||
rinfo.ri_url = LDAP_STRDUP( ref );
|
||||
rc = ldap_url_parse_ext( ref, &srv );
|
||||
|
||||
ldap_pvt_hex_unescape( ref );
|
||||
len = strlen( ref );
|
||||
|
||||
/* FIXME: we should use the URL Parser */
|
||||
|
||||
if ( len > LDAP_LDAP_REF_STR_LEN && strncasecmp( ref,
|
||||
LDAP_LDAP_REF_STR, LDAP_LDAP_REF_STR_LEN ) == 0 ) {
|
||||
Debug( LDAP_DEBUG_TRACE,
|
||||
"chasing LDAP referral: <%s>\n", ref, 0, 0 );
|
||||
tmpref = ref + LDAP_LDAP_REF_STR_LEN;
|
||||
} else {
|
||||
if ( rc != LDAP_URL_SUCCESS ) {
|
||||
Debug( LDAP_DEBUG_TRACE,
|
||||
"ignoring unknown referral <%s>\n", ref, 0, 0 );
|
||||
rc = ldap_append_referral( ld, &unfollowed, ref );
|
||||
*hadrefp = 1;
|
||||
LDAP_FREE( rinfo.ri_url );
|
||||
rinfo.ri_url = NULL;
|
||||
continue;
|
||||
}
|
||||
|
||||
if( srv->lud_dn != NULL && srv->lud_dn == '\0' ) {
|
||||
LDAP_FREE( srv->lud_dn );
|
||||
srv->lud_dn = NULL;
|
||||
}
|
||||
|
||||
Debug( LDAP_DEBUG_TRACE,
|
||||
"chasing LDAP referral: <%s>\n", ref, 0, 0 );
|
||||
|
||||
*hadrefp = 1;
|
||||
|
||||
if (( refdn = strchr( tmpref, '/' )) != NULL ) {
|
||||
*refdn++ = '\0';
|
||||
newdn = refdn[0] != '?' && refdn[0] != '\0';
|
||||
if( !newdn ) refdn = NULL;
|
||||
} else {
|
||||
newdn = 0;
|
||||
ber = re_encode_request( ld, origreq->lr_ber,
|
||||
++ld->ld_msgid, srv, &rinfo.ri_request );
|
||||
|
||||
if( ber == NULL ) {
|
||||
return -1 ;
|
||||
}
|
||||
|
||||
if (( ber = re_encode_request( ld, origreq->lr_ber,
|
||||
++ld->ld_msgid, &refdn, &rinfo.ri_request )) == NULL ) {
|
||||
return( -1 );
|
||||
}
|
||||
|
||||
if (( srv = (LDAPURLDesc *)LDAP_CALLOC( 1,
|
||||
sizeof( LDAPURLDesc ))) == NULL ) {
|
||||
ber_free( ber, 1 );
|
||||
ld->ld_errno = LDAP_NO_MEMORY;
|
||||
return( -1 );
|
||||
}
|
||||
|
||||
if (( srv->lud_scheme = LDAP_STRDUP("ldap")) == NULL ) {
|
||||
LDAP_FREE( (char *)srv );
|
||||
ber_free( ber, 1 );
|
||||
ld->ld_errno = LDAP_NO_MEMORY;
|
||||
return( -1 );
|
||||
}
|
||||
|
||||
if (( srv->lud_host = LDAP_STRDUP( tmpref )) == NULL ) {
|
||||
LDAP_FREE( (char *)srv );
|
||||
ber_free( ber, 1 );
|
||||
ld->ld_errno = LDAP_NO_MEMORY;
|
||||
return( -1 );
|
||||
}
|
||||
|
||||
if (( ports = strchr( srv->lud_host, ':' )) != NULL ) {
|
||||
*ports++ = '\0';
|
||||
srv->lud_port = atoi( ports );
|
||||
} else {
|
||||
srv->lud_port = (LDAP_INT_GLOBAL_OPT())->ldo_defport;
|
||||
}
|
||||
/* copy the complete referral for rebind process */
|
||||
rinfo.ri_url = LDAP_STRDUP( ref );
|
||||
|
||||
rinfo.ri_msgid = origreq->lr_origid;
|
||||
if ( srv != NULL && ldap_send_server_request( ld, ber, ld->ld_msgid,
|
||||
lr, srv, NULL, &rinfo ) >= 0 ) {
|
||||
|
||||
rc = ldap_send_server_request( ld, ber, ld->ld_msgid,
|
||||
lr, srv, NULL, &rinfo );
|
||||
|
||||
LDAP_FREE( rinfo.ri_url );
|
||||
|
||||
if( rc >= 0 ) {
|
||||
++count;
|
||||
} else {
|
||||
Debug( LDAP_DEBUG_ANY,
|
||||
|
|
@ -915,14 +882,8 @@ ldap_chase_referrals( LDAP *ld, LDAPRequest *lr, char **errstrp, int *hadrefp )
|
|||
ldap_err2string( ld->ld_errno ), 0, 0 );
|
||||
rc = ldap_append_referral( ld, &unfollowed, ref );
|
||||
}
|
||||
LDAP_FREE( rinfo.ri_url);
|
||||
|
||||
if (srv != NULL)
|
||||
ldap_free_urllist(srv);
|
||||
|
||||
if ( !newdn && refdn != NULL ) {
|
||||
LDAP_FREE( refdn );
|
||||
}
|
||||
ldap_free_urllist(srv);
|
||||
}
|
||||
|
||||
LDAP_FREE( *errstrp );
|
||||
|
|
@ -965,7 +926,11 @@ ldap_append_referral( LDAP *ld, char **referralsp, char *s )
|
|||
|
||||
|
||||
static BerElement *
|
||||
re_encode_request( LDAP *ld, BerElement *origber, ber_int_t msgid, char **dnp, int *type )
|
||||
re_encode_request( LDAP *ld,
|
||||
BerElement *origber,
|
||||
ber_int_t msgid,
|
||||
LDAPURLDesc *srv,
|
||||
int *type )
|
||||
{
|
||||
/*
|
||||
* XXX this routine knows way too much about how the lber library works!
|
||||
|
|
@ -973,13 +938,16 @@ re_encode_request( LDAP *ld, BerElement *origber, ber_int_t msgid, char **dnp, i
|
|||
ber_int_t along;
|
||||
ber_tag_t tag;
|
||||
ber_int_t ver;
|
||||
ber_int_t scope;
|
||||
int rc;
|
||||
BerElement tmpber, *ber;
|
||||
char *orig_dn;
|
||||
char *dn;
|
||||
|
||||
Debug( LDAP_DEBUG_TRACE,
|
||||
"re_encode_request: new msgid %ld, new dn <%s>\n",
|
||||
(long) msgid, ( *dnp == NULL ) ? "NONE" : *dnp, 0 );
|
||||
(long) msgid,
|
||||
( srv == NULL || srv->lud_dn == NULL) ? "NONE" : srv->lud_dn, 0 );
|
||||
|
||||
tmpber = *origber;
|
||||
|
||||
|
|
@ -1005,6 +973,16 @@ re_encode_request( LDAP *ld, BerElement *origber, ber_int_t msgid, char **dnp, i
|
|||
/* delete requests don't have a DN wrapping sequence */
|
||||
rc = ber_scanf( &tmpber, "a", &orig_dn );
|
||||
|
||||
} else if ( tag == LDAP_REQ_SEARCH ) {
|
||||
/* search requests need to be re-scope-ed */
|
||||
rc = ber_scanf( &tmpber, "{ae" /*"}"*/, &orig_dn, &scope );
|
||||
|
||||
if( srv->lud_scope == LDAP_SCOPE_DEFAULT &&
|
||||
scope != LDAP_SCOPE_SUBTREE )
|
||||
{
|
||||
scope = LDAP_SCOPE_BASE;
|
||||
}
|
||||
|
||||
} else {
|
||||
rc = ber_scanf( &tmpber, "{a" /*}*/, &orig_dn );
|
||||
}
|
||||
|
|
@ -1014,28 +992,32 @@ re_encode_request( LDAP *ld, BerElement *origber, ber_int_t msgid, char **dnp, i
|
|||
return NULL;
|
||||
}
|
||||
|
||||
if ( *dnp == NULL ) {
|
||||
*dnp = orig_dn;
|
||||
} else {
|
||||
LDAP_FREE( orig_dn );
|
||||
if (( ber = ldap_alloc_ber_with_options( ld )) == NULL ) {
|
||||
return NULL;
|
||||
}
|
||||
|
||||
if (( ber = ldap_alloc_ber_with_options( ld )) == NULL ) {
|
||||
return( NULL );
|
||||
if ( srv->lud_dn == NULL ) {
|
||||
dn = orig_dn;
|
||||
} else {
|
||||
dn = srv->lud_dn;
|
||||
}
|
||||
|
||||
if ( tag == LDAP_REQ_BIND ) {
|
||||
rc = ber_printf( ber, "{it{is" /*}}*/, msgid, tag, ver, *dnp );
|
||||
rc = ber_printf( ber, "{it{is" /*}}*/, msgid, tag, ver, dn );
|
||||
} else if ( tag == LDAP_REQ_DELETE ) {
|
||||
rc = ber_printf( ber, "{itsN}", msgid, tag, *dnp );
|
||||
rc = ber_printf( ber, "{itsN}", msgid, tag, dn );
|
||||
} else if ( tag == LDAP_REQ_SEARCH ) {
|
||||
rc = ber_printf( ber, "{it{se" /*}}*/, msgid, tag, dn, scope );
|
||||
} else {
|
||||
rc = ber_printf( ber, "{it{s" /*}}*/, msgid, tag, *dnp );
|
||||
rc = ber_printf( ber, "{it{s" /*}}*/, msgid, tag, dn );
|
||||
}
|
||||
|
||||
LDAP_FREE( orig_dn );
|
||||
|
||||
if ( rc == -1 ) {
|
||||
ld->ld_errno = LDAP_ENCODING_ERROR;
|
||||
ber_free( ber, 1 );
|
||||
return( NULL );
|
||||
return NULL;
|
||||
}
|
||||
|
||||
if ( tag != LDAP_REQ_DELETE && (
|
||||
|
|
@ -1045,7 +1027,7 @@ re_encode_request( LDAP *ld, BerElement *origber, ber_int_t msgid, char **dnp, i
|
|||
{
|
||||
ld->ld_errno = LDAP_ENCODING_ERROR;
|
||||
ber_free( ber, 1 );
|
||||
return( NULL );
|
||||
return NULL;
|
||||
}
|
||||
|
||||
#ifdef LDAP_DEBUG
|
||||
|
|
@ -1057,7 +1039,7 @@ re_encode_request( LDAP *ld, BerElement *origber, ber_int_t msgid, char **dnp, i
|
|||
#endif /* LDAP_DEBUG */
|
||||
|
||||
*type = tag; /* return request type */
|
||||
return( ber );
|
||||
return ber;
|
||||
}
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -208,7 +208,7 @@ static int str2scope( const char *p )
|
|||
|
||||
|
||||
int
|
||||
ldap_url_parse( LDAP_CONST char *url_in, LDAPURLDesc **ludpp )
|
||||
ldap_url_parse_ext( LDAP_CONST char *url_in, LDAPURLDesc **ludpp )
|
||||
{
|
||||
/*
|
||||
* Pick apart the pieces of an LDAP URL.
|
||||
|
|
@ -231,7 +231,7 @@ ldap_url_parse( LDAP_CONST char *url_in, LDAPURLDesc **ludpp )
|
|||
* because a call to LDAP_INT_GLOBAL_OPT() will try to allocate
|
||||
* the options and cause infinite recursion
|
||||
*/
|
||||
Debug( LDAP_DEBUG_TRACE, "ldap_url_parse(%s)\n", url_in, 0, 0 );
|
||||
Debug( LDAP_DEBUG_TRACE, "ldap_url_parse_ext(%s)\n", url_in, 0, 0 );
|
||||
#endif
|
||||
|
||||
*ludpp = NULL; /* pessimistic */
|
||||
|
|
@ -275,7 +275,7 @@ ldap_url_parse( LDAP_CONST char *url_in, LDAPURLDesc **ludpp )
|
|||
ludp->lud_dn = NULL;
|
||||
ludp->lud_attrs = NULL;
|
||||
ludp->lud_filter = NULL;
|
||||
ludp->lud_scope = LDAP_SCOPE_BASE;
|
||||
ludp->lud_scope = LDAP_SCOPE_DEFAULT;
|
||||
ludp->lud_filter = NULL;
|
||||
ludp->lud_exts = NULL;
|
||||
|
||||
|
|
@ -538,6 +538,27 @@ ldap_url_parse( LDAP_CONST char *url_in, LDAPURLDesc **ludpp )
|
|||
return LDAP_URL_SUCCESS;
|
||||
}
|
||||
|
||||
int
|
||||
ldap_url_parse( LDAP_CONST char *url_in, LDAPURLDesc **ludpp )
|
||||
{
|
||||
int rc = ldap_url_parse_ext( url_in, ludpp );
|
||||
|
||||
if( rc != LDAP_URL_SUCCESS ) {
|
||||
return rc;
|
||||
}
|
||||
|
||||
if ((*ludpp)->lud_scope == LDAP_SCOPE_DEFAULT) {
|
||||
(*ludpp)->lud_scope = LDAP_SCOPE_BASE;
|
||||
}
|
||||
|
||||
if ((*ludpp)->lud_host != NULL && *(*ludpp)->lud_host == '\0') {
|
||||
LDAP_FREE( (*ludpp)->lud_host );
|
||||
(*ludpp)->lud_host = NULL;
|
||||
}
|
||||
|
||||
return rc;
|
||||
}
|
||||
|
||||
LDAPURLDesc *
|
||||
ldap_url_dup ( LDAPURLDesc *ludp )
|
||||
{
|
||||
|
|
|
|||
Loading…
Reference in a new issue