openldap/servers/slapd/back-ldbm/alias.c

288 lines
5.7 KiB
C
Raw Normal View History

/* $OpenLDAP$ */
1998-10-24 11:49:07 +08:00
/*
2003-01-04 04:20:47 +08:00
* Copyright 1998-2003 The OpenLDAP Foundation, All Rights Reserved.
* COPYING RESTRICTIONS APPLY, see COPYRIGHT file
1998-10-24 11:49:07 +08:00
*/
1998-11-05 13:05:05 +08:00
#include "portable.h"
1998-10-24 11:49:07 +08:00
#include <stdio.h>
1999-06-03 08:37:44 +08:00
#include <ac/string.h>
#include <ac/socket.h>
1998-10-24 11:49:07 +08:00
#include "slap.h"
#include "back-ldbm.h"
#include "proto-back-ldbm.h"
1998-10-24 11:49:07 +08:00
2002-01-01 21:31:20 +08:00
static int get_alias_dn(
Entry *e,
2002-01-01 21:31:20 +08:00
struct berval *al,
int *err,
const char **errmsg );
2002-01-01 21:31:20 +08:00
static void new_superior(
struct berval *dn,
struct berval *oldSup,
struct berval *newSup,
struct berval *res );
static int dnlist_subordinate(
BerVarray dnlist,
2002-01-01 21:31:20 +08:00
struct berval *dn );
Entry *deref_internal_r(
Backend* be,
Entry* alias,
struct berval* dn_in,
int* err,
Entry** matched,
const char** text )
{
2002-01-01 21:31:20 +08:00
struct berval dn;
struct ldbminfo *li = (struct ldbminfo *) be->be_private;
Entry *entry;
Entry *sup;
unsigned depth;
BerVarray dnlist;
2000-06-16 01:37:02 +08:00
assert( ( alias != NULL && dn_in == NULL )
|| ( alias == NULL && dn_in != NULL ) );
*matched = NULL;
*err = LDAP_NO_SUCH_OBJECT;
*text = NULL;
if( alias == NULL ) {
2002-01-01 21:31:20 +08:00
ber_dupbv( &dn, dn_in );
entry = dn2entry_r( be, &dn, &sup );
} else {
2002-01-01 21:31:20 +08:00
ber_dupbv( &dn, &alias->e_nname );
entry = alias;
sup = NULL;
}
dnlist = NULL;
ber_bvarray_add( &dnlist, &dn );
for( depth=0 ; ; depth++ ) {
if( entry != NULL ) {
Entry *newe;
2002-01-01 21:31:20 +08:00
struct berval aliasDN;
/* have entry, may be an alias */
if( !is_entry_alias( entry ) ) {
/* entry is not an alias */
break;
}
/* entry is alias */
if( depth > be->be_max_deref_depth ) {
*matched = entry;
entry = NULL;
*err = LDAP_ALIAS_DEREF_PROBLEM;
*text = "maximum deref depth exceeded";
break;
}
/* deref entry */
2002-01-01 21:31:20 +08:00
if( get_alias_dn( entry, &aliasDN, err, text )) {
*matched = entry;
entry = NULL;
break;
}
/* check if aliasDN is a subordinate of any DN in our list */
2002-01-01 21:31:20 +08:00
if( dnlist_subordinate( dnlist, &aliasDN ) ) {
ch_free( aliasDN.bv_val );
*matched = entry;
entry = NULL;
*err = LDAP_ALIAS_PROBLEM;
*text = "circular alias";
break;
}
/* attempt to dereference alias */
2002-01-01 21:31:20 +08:00
newe = dn2entry_r( be, &aliasDN, &sup );
ch_free( aliasDN.bv_val );
if( newe != NULL ) {
cache_return_entry_r(&li->li_cache, entry );
entry = newe;
2002-01-01 21:31:20 +08:00
ber_dupbv( &dn, &entry->e_nname );
ber_bvarray_add( &dnlist, &dn );
continue;
}
if ( sup != NULL ) {
cache_return_entry_r(&li->li_cache, entry );
entry = NULL;
continue;
}
/* no newe and no superior, we're done */
break;
} else if( sup != NULL ) {
/* have superior, may be an alias */
Entry *newe;
Entry *newSup;
2002-01-01 21:31:20 +08:00
struct berval supDN;
struct berval aliasDN;
if( !is_entry_alias( sup ) ) {
/* entry is not an alias */
*matched = sup;
sup = NULL;
break;
}
/* entry is alias */
if( depth > be->be_max_deref_depth ) {
*matched = sup;
entry = NULL;
*err = LDAP_ALIAS_DEREF_PROBLEM;
*text = "maximum deref depth exceeded";
break;
}
/* deref entry */
2002-01-01 21:31:20 +08:00
if( get_alias_dn( sup, &supDN, err, text )) {
*matched = sup;
break;
}
2002-01-01 21:31:20 +08:00
new_superior( &dn, &sup->e_nname, &supDN, &aliasDN );
free(supDN.bv_val);
/* check if aliasDN is a subordinate of any DN in our list */
2002-01-01 21:31:20 +08:00
if( dnlist_subordinate( dnlist, &aliasDN ) ) {
free(aliasDN.bv_val);
*matched = entry;
entry = NULL;
*err = LDAP_ALIAS_PROBLEM;
*text = "subordinate circular alias";
break;
}
/* attempt to dereference alias */
2002-01-01 21:31:20 +08:00
newe = dn2entry_r( be, &aliasDN, &newSup );
if( newe != NULL ) {
2002-01-01 21:31:20 +08:00
free(aliasDN.bv_val);
cache_return_entry_r(&li->li_cache, sup );
entry = newe;
2002-01-01 21:31:20 +08:00
ber_dupbv( &dn, &entry->e_nname );
ber_bvarray_add( &dnlist, &dn );
continue;
}
if ( newSup != NULL ) {
cache_return_entry_r(&li->li_cache, sup );
sup = newSup;
2002-01-01 21:31:20 +08:00
ber_dupbv( &dn, &aliasDN );
continue;
}
break;
} else {
/* no newe and no superior, we're done */
break;
}
}
ber_bvarray_free( dnlist );
return entry;
}
2002-01-01 21:31:20 +08:00
static int get_alias_dn(
Entry *e,
2002-01-01 21:31:20 +08:00
struct berval *ndn,
int *err,
const char **errmsg )
{
int rc;
Attribute *a;
AttributeDescription *aliasedObjectName
= slap_schema.si_ad_aliasedObjectName;
a = attr_find( e->e_attrs, aliasedObjectName );
if( a == NULL ) {
/*
* there was an aliasedobjectname defined but no data.
*/
*err = LDAP_ALIAS_PROBLEM;
*errmsg = "alias missing aliasedObjectName attribute";
2002-01-01 21:31:20 +08:00
return -1;
}
/*
* aliasedObjectName should be SINGLE-VALUED with a single value.
*/
2002-01-02 19:00:36 +08:00
if ( a->a_vals[0].bv_val == NULL ) {
/*
* there was an aliasedobjectname defined but no data.
*/
*err = LDAP_ALIAS_PROBLEM;
*errmsg = "alias missing aliasedObjectName value";
2002-01-01 21:31:20 +08:00
return -1;
}
2002-01-02 19:00:36 +08:00
if( a->a_vals[1].bv_val != NULL ) {
*err = LDAP_ALIAS_PROBLEM;
*errmsg = "alias has multivalued aliasedObjectName";
2002-01-01 21:31:20 +08:00
return -1;
}
2002-01-02 19:00:36 +08:00
rc = dnNormalize2( NULL, &a->a_vals[0], ndn );
if( rc != LDAP_SUCCESS ) {
2000-06-17 10:00:30 +08:00
*err = LDAP_ALIAS_PROBLEM;
*errmsg = "alias aliasedObjectName value is invalid";
2002-01-01 21:31:20 +08:00
return -1;
2000-06-17 10:00:30 +08:00
}
2002-01-01 21:31:20 +08:00
return 0;
}
2002-01-01 21:31:20 +08:00
static void new_superior(
struct berval *dn,
struct berval *oldSup,
struct berval *newSup,
struct berval *newDN )
1998-10-24 11:49:07 +08:00
{
size_t dnlen, olen, nlen;
2002-01-01 21:31:20 +08:00
assert( dn && oldSup && newSup && newDN );
2002-01-01 21:31:20 +08:00
dnlen = dn->bv_len;
olen = oldSup->bv_len;
nlen = newSup->bv_len;
2002-01-01 21:31:20 +08:00
newDN->bv_val = ch_malloc( dnlen - olen + nlen + 1 );
2002-01-01 21:31:20 +08:00
AC_MEMCPY( newDN->bv_val, dn->bv_val, dnlen - olen );
AC_MEMCPY( &newDN->bv_val[dnlen - olen], newSup->bv_val, nlen );
newDN->bv_val[dnlen - olen + nlen] = '\0';
2002-01-01 21:31:20 +08:00
return;
1998-10-24 11:49:07 +08:00
}
static int dnlist_subordinate(
BerVarray dnlist,
2002-01-01 21:31:20 +08:00
struct berval *dn )
1998-10-24 11:49:07 +08:00
{
assert( dnlist );
2002-01-01 21:31:20 +08:00
for( ; dnlist->bv_val != NULL; dnlist++ ) {
if( dnIsSuffix( dnlist, dn ) ) {
return 1;
}
1998-10-24 11:49:07 +08:00
}
return 0;
1998-10-24 11:49:07 +08:00
}