mirror of
https://git.openldap.org/openldap/openldap.git
synced 2024-12-15 03:01:09 +08:00
1bcec8bf6a
library use: LBER_ macros expand to system routines. LDAP_ macros expand to new ber_ allocators. Add ber_ and ldap_ memory allocators/deallocator: ber_ routines are wrappers of LBER_ macros. ldap_ routines are wrappers of ber_ routines. Removed safe_realloc() macro from various files. This issue (if an issue) should be resolved across whole package. ldapmodify.c now uses ber_ allocators to resolve ber_bvfree() vs. WIN32 multiple heaps issue. These changes should facilate implementation of ber_set_option( NULL, LBER_OPT_MEMORY_FN, ...) and ldap_set_option( NULL, LDAP_OPT_MEMORY_FN, ...).
152 lines
2.5 KiB
C
152 lines
2.5 KiB
C
/*
|
|
* Copyright 1998-1999 The OpenLDAP Foundation, All Rights Reserved.
|
|
* COPYING RESTRICTIONS APPLY, see COPYRIGHT file
|
|
*/
|
|
/*
|
|
* references.c
|
|
*/
|
|
|
|
#include "portable.h"
|
|
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
|
|
#include <ac/ctype.h>
|
|
#include <ac/socket.h>
|
|
#include <ac/string.h>
|
|
#include <ac/time.h>
|
|
|
|
#include "ldap-int.h"
|
|
|
|
/* ARGSUSED */
|
|
LDAPMessage *
|
|
ldap_first_reference( LDAP *ld, LDAPMessage *chain )
|
|
{
|
|
assert( ld != NULL );
|
|
assert( chain != NULL );
|
|
|
|
if ( ld == NULL || chain == NULLMSG ) {
|
|
return NULLMSG;
|
|
}
|
|
|
|
return chain->lm_msgtype == LDAP_RES_SEARCH_REFERENCE
|
|
? chain
|
|
: ldap_next_reference( ld, chain );
|
|
}
|
|
|
|
LDAPMessage *
|
|
ldap_next_reference( LDAP *ld, LDAPMessage *ref )
|
|
{
|
|
assert( ld != NULL );
|
|
assert( ref != NULL );
|
|
|
|
if ( ld == NULL || ref == NULLMSG ) {
|
|
return NULLMSG;
|
|
}
|
|
|
|
for (
|
|
ref = ref->lm_chain;
|
|
ref != NULLMSG;
|
|
ref = ref->lm_chain )
|
|
{
|
|
if( ref->lm_msgtype == LDAP_RES_SEARCH_REFERENCE ) {
|
|
return( ref );
|
|
}
|
|
}
|
|
|
|
return( NULLMSG );
|
|
}
|
|
|
|
int
|
|
ldap_count_references( LDAP *ld, LDAPMessage *chain )
|
|
{
|
|
int i;
|
|
|
|
assert( ld != NULL );
|
|
assert( chain != NULL );
|
|
|
|
if ( ld == NULL ) {
|
|
return -1;
|
|
}
|
|
|
|
for ( i = 0; chain != NULL; chain = chain->lm_chain ) {
|
|
if( chain->lm_msgtype == LDAP_RES_SEARCH_REFERENCE ) {
|
|
i++;
|
|
}
|
|
}
|
|
|
|
return( i );
|
|
}
|
|
|
|
int
|
|
ldap_parse_reference(
|
|
LDAP *ld,
|
|
LDAPMessage *ref,
|
|
char ***referralsp,
|
|
LDAPControl ***serverctrls,
|
|
int freeit)
|
|
{
|
|
BerElement be;
|
|
char **refs = NULL;
|
|
int rc;
|
|
|
|
assert( ld != NULL );
|
|
assert( ref != NULL );
|
|
|
|
if( ld == NULL || ref == NULL ||
|
|
ref->lm_msgtype != LDAP_RES_SEARCH_REFERENCE )
|
|
{
|
|
return LDAP_PARAM_ERROR;
|
|
}
|
|
|
|
/* make a private copy of BerElement */
|
|
SAFEMEMCPY(&be, ref->lm_ber, sizeof(be));
|
|
|
|
if ( ber_scanf( &be, "{v" /*}*/, &refs ) == LBER_ERROR ) {
|
|
rc = LDAP_DECODING_ERROR;
|
|
goto free_and_return;
|
|
}
|
|
|
|
if ( serverctrls == NULL ) {
|
|
rc = LDAP_SUCCESS;
|
|
goto free_and_return;
|
|
}
|
|
|
|
if ( ber_scanf( &be, /*{*/ "}" ) == LBER_ERROR ) {
|
|
rc = LDAP_DECODING_ERROR;
|
|
goto free_and_return;
|
|
}
|
|
|
|
rc = ldap_int_get_controls( &be, serverctrls );
|
|
|
|
free_and_return:
|
|
|
|
if( referralsp != NULL ) {
|
|
/* provide references regradless of return code */
|
|
*referralsp = refs;
|
|
|
|
} else {
|
|
ldap_value_free( refs );
|
|
}
|
|
|
|
if( freeit ) {
|
|
ldap_msgfree( ref );
|
|
}
|
|
|
|
if( rc != LDAP_SUCCESS ) {
|
|
ld->ld_errno = rc;
|
|
|
|
if( ld->ld_matched != NULL ) {
|
|
LDAP_FREE( ld->ld_matched );
|
|
ld->ld_matched = NULL;
|
|
}
|
|
|
|
if( ld->ld_error != NULL ) {
|
|
LDAP_FREE( ld->ld_error );
|
|
ld->ld_error = NULL;
|
|
}
|
|
}
|
|
|
|
return rc;
|
|
}
|