mirror of
https://git.openldap.org/openldap/openldap.git
synced 2024-12-21 03:10:25 +08:00
95 lines
1.9 KiB
C
95 lines
1.9 KiB
C
|
/* referral.c - LDBM backend referral handler */
|
||
|
/* $OpenLDAP$ */
|
||
|
/*
|
||
|
* Copyright 2000 The OpenLDAP Foundation, All Rights Reserved.
|
||
|
* COPYING RESTRICTIONS APPLY, see COPYRIGHT file
|
||
|
*/
|
||
|
|
||
|
#include "portable.h"
|
||
|
|
||
|
#include <stdio.h>
|
||
|
|
||
|
#include <ac/string.h>
|
||
|
#include <ac/socket.h>
|
||
|
|
||
|
#include "slap.h"
|
||
|
#include "back-ldbm.h"
|
||
|
|
||
|
int
|
||
|
ldbm_back_referrals(
|
||
|
Backend *be,
|
||
|
Connection *conn,
|
||
|
Operation *op,
|
||
|
const char *dn,
|
||
|
const char *ndn,
|
||
|
const char **text )
|
||
|
{
|
||
|
struct ldbminfo *li = (struct ldbminfo *) be->be_private;
|
||
|
int rc = LDAP_SUCCESS;
|
||
|
Entry *e, *matched;
|
||
|
|
||
|
if( op->o_tag == LDAP_REQ_SEARCH ) {
|
||
|
/* let search take care of itself */
|
||
|
return rc;
|
||
|
}
|
||
|
|
||
|
if( get_manageDSAit( op ) ) {
|
||
|
/* let op take care of DSA management */
|
||
|
return rc;
|
||
|
}
|
||
|
|
||
|
/* get entry with reader lock */
|
||
|
e = dn2entry_r( be, ndn, &matched );
|
||
|
if ( e == NULL ) {
|
||
|
char *matched_dn = NULL;
|
||
|
struct berval **refs = default_referral;
|
||
|
|
||
|
if ( matched != NULL ) {
|
||
|
matched_dn = ch_strdup( matched->e_dn );
|
||
|
|
||
|
Debug( LDAP_DEBUG_TRACE,
|
||
|
"ldbm_referrals: op=%ld target=\"%s\" matched=\"%s\"\n",
|
||
|
op->o_tag, dn, matched_dn );
|
||
|
|
||
|
refs = is_entry_referral( matched )
|
||
|
? get_entry_referrals( be, conn, op, matched )
|
||
|
: NULL;
|
||
|
|
||
|
cache_return_entry_r( &li->li_cache, matched );
|
||
|
}
|
||
|
|
||
|
if( refs != NULL ) {
|
||
|
/* send referrals */
|
||
|
send_ldap_result( conn, op, rc = LDAP_REFERRAL,
|
||
|
matched_dn, NULL, refs, NULL );
|
||
|
}
|
||
|
|
||
|
if( matched != NULL ) {
|
||
|
ber_bvecfree( refs );
|
||
|
free( matched_dn );
|
||
|
}
|
||
|
|
||
|
return rc;
|
||
|
}
|
||
|
|
||
|
if ( is_entry_referral( e ) ) {
|
||
|
/* entry is a referral */
|
||
|
struct berval **refs = get_entry_referrals( be,
|
||
|
conn, op, e );
|
||
|
|
||
|
Debug( LDAP_DEBUG_TRACE,
|
||
|
"ldbm_referrals: op=%ld target=\"%s\" matched=\"%s\"\n",
|
||
|
op->o_tag, dn, e->e_dn );
|
||
|
|
||
|
if( refs != NULL ) {
|
||
|
send_ldap_result( conn, op, rc = LDAP_REFERRAL,
|
||
|
e->e_dn, NULL, refs, NULL );
|
||
|
}
|
||
|
|
||
|
ber_bvecfree( refs );
|
||
|
}
|
||
|
|
||
|
cache_return_entry_r( &li->li_cache, e );
|
||
|
return rc;
|
||
|
}
|