mirror of
https://git.openldap.org/openldap/openldap.git
synced 2024-12-15 03:01:09 +08:00
367 lines
9.2 KiB
C
367 lines
9.2 KiB
C
/* modrdn.c - ldbm backend modrdn routine */
|
|
|
|
/*
|
|
* LDAP v3 newSuperior support. Add new rdn as an attribute.
|
|
* (Full support for v2 also used software/ideas contributed
|
|
* by Roy Hooper rhooper@cyberus.ca, thanks to him for his
|
|
* submission!.)
|
|
*
|
|
* Copyright 1999, Juan C. Gomez, All rights reserved.
|
|
* This software is not subject to any license of Silicon Graphics
|
|
* Inc. or Purdue University.
|
|
*
|
|
* Redistribution and use in source and binary forms are permitted
|
|
* without restriction or fee of any kind as long as this notice
|
|
* is preserved.
|
|
*
|
|
*/
|
|
|
|
#include "portable.h"
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <ac/string.h>
|
|
#include <ac/socket.h>
|
|
|
|
#include "slap.h"
|
|
#include "back-ldbm.h"
|
|
#include "proto-back-ldbm.h"
|
|
|
|
int
|
|
ldbm_back_modrdn(
|
|
Backend *be,
|
|
Connection *conn,
|
|
Operation *op,
|
|
char *dn,
|
|
char *newrdn,
|
|
int deleteoldrdn,
|
|
char *newSuperior
|
|
)
|
|
{
|
|
struct ldbminfo *li = (struct ldbminfo *) be->be_private;
|
|
char *matched = NULL;
|
|
char *p_dn = NULL, *p_ndn = NULL;
|
|
char *new_dn = NULL, *new_ndn = NULL;
|
|
char sep[2];
|
|
Entry *e, *p = NULL;
|
|
int rootlock = 0;
|
|
int rc = -1;
|
|
/* Added to support LDAP v2 correctly (deleteoldrdn thing) */
|
|
char *new_rdn_val = NULL; /* Val of new rdn */
|
|
char *new_rdn_type = NULL; /* Type of new rdn */
|
|
char *old_rdn; /* Old rdn's attr type & val */
|
|
char *old_rdn_type = NULL; /* Type of old rdn attr. */
|
|
char *old_rdn_val = NULL; /* Old rdn attribute value */
|
|
struct berval bv; /* Stores new rdn att */
|
|
struct berval *bvals[2]; /* Stores new rdn att */
|
|
LDAPMod mod; /* Used to delete old rdn */
|
|
|
|
/* get entry with writer lock */
|
|
if ( (e = dn2entry_w( be, dn, &matched )) == NULL ) {
|
|
send_ldap_result( conn, op, LDAP_NO_SUCH_OBJECT, matched, "" );
|
|
if ( matched != NULL ) {
|
|
free( matched );
|
|
}
|
|
return( -1 );
|
|
}
|
|
|
|
#ifdef SLAPD_CHILD_MODIFICATION_WITH_ENTRY_ACL
|
|
/* check parent for "children" acl */
|
|
if ( ! access_allowed( be, conn, op, e,
|
|
"entry", NULL, ACL_WRITE ) )
|
|
{
|
|
Debug( LDAP_DEBUG_TRACE, "no access to entry\n", 0,
|
|
0, 0 );
|
|
send_ldap_result( conn, op, LDAP_INSUFFICIENT_ACCESS,
|
|
"", "" );
|
|
goto return_results;
|
|
}
|
|
#endif
|
|
|
|
if ( (p_ndn = dn_parent( be, e->e_ndn )) != NULL ) {
|
|
/* parent + rdn + separator(s) + null */
|
|
if( (p = dn2entry_w( be, p_ndn, &matched )) == NULL) {
|
|
Debug( LDAP_DEBUG_TRACE, "parent does not exist\n",
|
|
0, 0, 0);
|
|
send_ldap_result( conn, op, LDAP_OPERATIONS_ERROR,
|
|
"", "");
|
|
goto return_results;
|
|
}
|
|
|
|
#ifndef SLAPD_CHILD_MODIFICATION_WITH_ENTRY_ACL
|
|
/* check parent for "children" acl */
|
|
if ( ! access_allowed( be, conn, op, p,
|
|
"children", NULL, ACL_WRITE ) )
|
|
{
|
|
Debug( LDAP_DEBUG_TRACE, "no access to parent\n", 0,
|
|
0, 0 );
|
|
send_ldap_result( conn, op, LDAP_INSUFFICIENT_ACCESS,
|
|
"", "" );
|
|
goto return_results;
|
|
}
|
|
#endif
|
|
|
|
p_dn = dn_parent( be, e->e_dn );
|
|
new_dn = (char *) ch_malloc( strlen( p_dn ) + strlen( newrdn )
|
|
+ 3 );
|
|
if ( dn_type( e->e_dn ) == DN_X500 ) {
|
|
strcpy( new_dn, newrdn );
|
|
strcat( new_dn, "," );
|
|
strcat( new_dn, p_dn );
|
|
} else {
|
|
char *s;
|
|
strcpy( new_dn, newrdn );
|
|
s = strchr( newrdn, '\0' );
|
|
s--;
|
|
if ( *s != '.' && *s != '@' ) {
|
|
if ( (s = strpbrk( dn, ".@" )) != NULL ) {
|
|
sep[0] = *s;
|
|
sep[1] = '\0';
|
|
strcat( new_dn, sep );
|
|
}
|
|
}
|
|
strcat( new_dn, p_dn );
|
|
}
|
|
|
|
} else {
|
|
/* no parent, modrdn entry directly under root */
|
|
if( ! be_isroot( be, op->o_ndn ) ) {
|
|
Debug( LDAP_DEBUG_TRACE, "no parent & not root\n",
|
|
0, 0, 0);
|
|
send_ldap_result( conn, op, LDAP_INSUFFICIENT_ACCESS,
|
|
"", "");
|
|
goto return_results;
|
|
}
|
|
|
|
ldap_pvt_thread_mutex_lock(&li->li_root_mutex);
|
|
rootlock = 1;
|
|
|
|
new_dn = ch_strdup( newrdn );
|
|
}
|
|
|
|
new_ndn = dn_normalize_case( ch_strdup( new_dn ) );
|
|
|
|
if ( (dn2id ( be, new_ndn ) ) != NOID ) {
|
|
send_ldap_result( conn, op, LDAP_ALREADY_EXISTS, NULL, NULL );
|
|
goto return_results;
|
|
}
|
|
|
|
/* check for abandon */
|
|
ldap_pvt_thread_mutex_lock( &op->o_abandonmutex );
|
|
if ( op->o_abandon ) {
|
|
ldap_pvt_thread_mutex_unlock( &op->o_abandonmutex );
|
|
goto return_results;
|
|
}
|
|
ldap_pvt_thread_mutex_unlock( &op->o_abandonmutex );
|
|
|
|
/* add new one */
|
|
if ( dn2id_add( be, new_ndn, e->e_id ) != 0 ) {
|
|
send_ldap_result( conn, op, LDAP_OPERATIONS_ERROR, NULL, NULL );
|
|
goto return_results;
|
|
}
|
|
|
|
/* delete old one */
|
|
if ( dn2id_delete( be, e->e_ndn ) != 0 ) {
|
|
send_ldap_result( conn, op, LDAP_OPERATIONS_ERROR, NULL, NULL );
|
|
goto return_results;
|
|
}
|
|
|
|
(void) cache_delete_entry( &li->li_cache, e );
|
|
free( e->e_dn );
|
|
free( e->e_ndn );
|
|
e->e_dn = new_dn;
|
|
e->e_ndn = new_ndn;
|
|
|
|
/* Get attribute type and attribute value of our new rdn, we will
|
|
* need to add that to our new entry
|
|
*/
|
|
|
|
if ( (new_rdn_type = rdn_attr_type( newrdn )) == NULL ) {
|
|
|
|
Debug( LDAP_DEBUG_TRACE,
|
|
"ldbm_back_modrdn: can't figure out type of newrdn\n",
|
|
0, 0, 0 );
|
|
send_ldap_result( conn, op, LDAP_OPERATIONS_ERROR, "", "" );
|
|
goto return_results;
|
|
|
|
}
|
|
|
|
if ( (new_rdn_val = rdn_attr_value( newrdn )) == NULL ) {
|
|
|
|
Debug( LDAP_DEBUG_TRACE,
|
|
"ldbm_back_modrdn: can't figure out val of newrdn\n",
|
|
0, 0, 0 );
|
|
send_ldap_result( conn, op, LDAP_OPERATIONS_ERROR, "", "" );
|
|
goto return_results;
|
|
|
|
}
|
|
|
|
Debug( LDAP_DEBUG_TRACE,\
|
|
"ldbm_back_modrdn: new_rdn_val=%s, new_rdn_type=%s\n",\
|
|
new_rdn_val, new_rdn_type, 0 );
|
|
|
|
/* Retrieve the old rdn from the entry's dn */
|
|
|
|
if ( (old_rdn = dn_rdn( be, dn )) == NULL ) {
|
|
|
|
Debug( LDAP_DEBUG_TRACE,
|
|
"ldbm_back_modrdn: can't figure out old_rdn from dn\n",
|
|
0, 0, 0 );
|
|
send_ldap_result( conn, op, LDAP_OPERATIONS_ERROR, "", "" );
|
|
goto return_results;
|
|
|
|
}
|
|
|
|
if ( (old_rdn_type = rdn_attr_type( old_rdn )) == NULL ) {
|
|
|
|
Debug( LDAP_DEBUG_TRACE,
|
|
"ldbm_back_modrdn: can't figure out the old_rdn type\n",
|
|
0, 0, 0 );
|
|
send_ldap_result( conn, op, LDAP_OPERATIONS_ERROR, "", "" );
|
|
goto return_results;
|
|
|
|
}
|
|
|
|
if ( strcasecmp( old_rdn_type, new_rdn_type ) != 0 ) {
|
|
|
|
/* Not a big deal but we may say something */
|
|
Debug( LDAP_DEBUG_TRACE,\
|
|
"ldbm_back_modrdn: old_rdn_type=%s, new_rdn_type=%s!\n",\
|
|
old_rdn_type, new_rdn_type, 0 );
|
|
|
|
}
|
|
|
|
if ( dn_type( old_rdn ) == DN_X500 ) {
|
|
|
|
Debug( LDAP_DEBUG_TRACE, "ldbm_back_modrdn: DN_X500\n",
|
|
0, 0, 0 );
|
|
|
|
bvals[0] = &bv; /* Array of bervals */
|
|
bvals[1] = NULL;
|
|
|
|
/* Remove old rdn value if required */
|
|
|
|
if (deleteoldrdn) {
|
|
|
|
/* Get value of old rdn */
|
|
|
|
if ((old_rdn_val = rdn_attr_value( old_rdn ))
|
|
== NULL) {
|
|
|
|
Debug( LDAP_DEBUG_TRACE,
|
|
"ldbm_back_modrdn: can't figure out old_rdn_val from old_rdn\n",
|
|
0, 0, 0 );
|
|
send_ldap_result( conn, op,
|
|
LDAP_OPERATIONS_ERROR,
|
|
"", "" );
|
|
goto return_results;
|
|
|
|
|
|
}
|
|
|
|
/* Remove old value of rdn as an attribute. */
|
|
|
|
bv.bv_val = old_rdn_val;
|
|
bv.bv_len = strlen(old_rdn_val);
|
|
|
|
/* No need to normalize old_rdn_type, delete_values()
|
|
* does that for us
|
|
*/
|
|
mod.mod_type = old_rdn_type;
|
|
mod.mod_bvalues = bvals;
|
|
mod.mod_op = LDAP_MOD_DELETE; /* XXX:really needed?*/
|
|
|
|
/* Assembly mod structure */
|
|
|
|
if ( delete_values( e, &mod, op->o_ndn )
|
|
!= LDAP_SUCCESS ) {
|
|
|
|
/* Could not find old_rdn as an attribute or
|
|
* the old value was not present. Return an
|
|
* error.
|
|
*/
|
|
Debug( LDAP_DEBUG_TRACE,
|
|
"ldbm_back_modrdn: old rdn not found or att type doesn't exist\n",
|
|
0, 0, 0);
|
|
send_ldap_result( conn, op,
|
|
LDAP_OPERATIONS_ERROR,
|
|
"", "");
|
|
goto return_results;
|
|
|
|
}
|
|
|
|
Debug( LDAP_DEBUG_TRACE,\
|
|
"ldbm_back_modrdn: removed old_rdn_val=%s\n",\
|
|
old_rdn_val, 0, 0 );
|
|
|
|
}/* if (deleteoldrdn) */
|
|
|
|
/* Add new attribute value to the entry.
|
|
*/
|
|
|
|
bv.bv_val = new_rdn_val;
|
|
bv.bv_len = strlen(new_rdn_val);
|
|
|
|
|
|
Debug( LDAP_DEBUG_TRACE,
|
|
"ldbm_back_modrdn: adding new rdn attr val =%s\n",
|
|
new_rdn_val, 0, 0 );
|
|
|
|
/* No need to normalize new_rdn_type, attr_merge does it */
|
|
|
|
attr_merge( e, new_rdn_type, bvals );
|
|
|
|
} else {
|
|
|
|
|
|
Debug( LDAP_DEBUG_TRACE, "ldbm_back_modrdn: DNS DN\n",
|
|
0, 0, 0 );
|
|
/* XXXV3: not sure of what to do here */
|
|
Debug( LDAP_DEBUG_TRACE,\
|
|
"ldbm_back_modrdn: not fully implemented...\n",
|
|
0, 0, 0 );
|
|
|
|
}
|
|
|
|
(void) cache_update_entry( &li->li_cache, e );
|
|
|
|
/* id2entry index */
|
|
if ( id2entry_add( be, e ) != 0 ) {
|
|
entry_free( e );
|
|
send_ldap_result( conn, op, LDAP_OPERATIONS_ERROR, "", "" );
|
|
goto return_results;
|
|
}
|
|
|
|
send_ldap_result( conn, op, LDAP_SUCCESS, NULL, NULL );
|
|
rc = 0;
|
|
|
|
return_results:
|
|
if( new_dn != NULL ) free( new_dn );
|
|
if( new_ndn != NULL ) free( new_ndn );
|
|
if( p_dn != NULL ) free( p_dn );
|
|
if( p_ndn != NULL ) free( p_ndn );
|
|
|
|
if( matched != NULL ) free( matched );
|
|
|
|
/* LDAP v2 supporting correct attribute handling. */
|
|
if( new_rdn_type != NULL ) free(new_rdn_type);
|
|
if( new_rdn_val != NULL ) free(new_rdn_val);
|
|
if( old_rdn != NULL ) free(old_rdn);
|
|
if( old_rdn_type != NULL ) free(old_rdn_type);
|
|
if( old_rdn_val != NULL ) free(old_rdn_val);
|
|
|
|
if( p != NULL ) {
|
|
/* free parent and writer lock */
|
|
cache_return_entry_w( &li->li_cache, p );
|
|
}
|
|
|
|
if ( rootlock ) {
|
|
/* release root writer lock */
|
|
ldap_pvt_thread_mutex_unlock(&li->li_root_mutex);
|
|
}
|
|
|
|
/* free entry and writer lock */
|
|
cache_return_entry_w( &li->li_cache, e );
|
|
return( rc );
|
|
}
|