openldap/servers/slapd/suffixalias.c

83 lines
2.0 KiB
C
Raw Normal View History

/* $OpenLDAP$ */
1999-07-28 02:43:30 +08:00
/*
2000-05-13 10:47:56 +08:00
* Copyright 1999-2000 The OpenLDAP Foundation, All Rights Reserved.
1999-07-28 02:43:30 +08:00
*
* COPYING RESTRICTIONS APPLY, see COPYRIGHT file in the top level
* directory of this package.
*/
/* Portions
* Copyright (c) 1998 Will Ballantyne, ITSD, Government of BC
* All rights reserved.
*
* Redistribution and use in source and binary forms are permitted
* provided that this notice is preserved and that due credit is given
* to ITSD, Government of BC. The name of ITSD
* may not be used to endorse or promote products derived from this
* software without specific prior written permission. This software
* is provided ``as is'' without express or implied warranty.
*/
#include "portable.h"
#include <stdio.h>
#include <ac/string.h>
#include <ac/socket.h>
#include "slap.h"
/*
* given a normalized uppercased dn (or root part),
* return an aliased dn if any of the alias suffixes match
*/
char *suffix_alias(
Backend *be,
char *dn )
{
2001-01-18 00:35:53 +08:00
int i, dnLength;
1999-07-28 02:43:30 +08:00
if(dn == NULL) return NULL;
if(be == NULL) return dn;
dnLength = strlen ( dn );
for ( i = 0;
be->be_suffixAlias != NULL && be->be_suffixAlias[i] != NULL;
i += 2 )
{
int aliasLength = strlen (be->be_suffixAlias[i]);
int diff = dnLength - aliasLength;
if ( diff < 0 ) {
/* alias is longer than dn */
continue;
} else if ( diff > 0 ) {
if ( ! DN_SEPARATOR(dn[diff-1]) ) {
1999-07-28 02:43:30 +08:00
/* boundary is not at a DN separator */
continue;
}
/* At a DN Separator */
/* XXX or an escaped separator... oh well */
}
if (!strcmp(be->be_suffixAlias[i], &dn[diff])) {
char *oldDN = dn;
dn = ch_malloc( diff + strlen(be->be_suffixAlias[i+1]) + 1 );
strncpy( dn, oldDN, diff );
strcpy( &dn[diff], be->be_suffixAlias[i+1] );
2001-01-16 03:17:29 +08:00
#ifdef NEW_LOGGING
2001-01-18 00:35:53 +08:00
LDAP_LOG(( "operation", LDAP_LEVEL_INFO,
"suffix_alias: converted \"%s\" to \"%s\"\n",
oldDN, dn ));
2001-01-16 03:17:29 +08:00
#else
1999-07-28 02:43:30 +08:00
Debug( LDAP_DEBUG_ARGS,
"suffix_alias: converted \"%s\" to \"%s\"\n",
oldDN, dn, 0);
2001-01-16 03:17:29 +08:00
#endif
1999-07-28 02:43:30 +08:00
free (oldDN);
break;
}
}
return dn;
}