2000-09-28 06:28:59 +08:00
|
|
|
/* modrdn.c - bdb backend modrdn routine */
|
|
|
|
/* $OpenLDAP$ */
|
|
|
|
/*
|
|
|
|
* Copyright 1998-2000 The OpenLDAP Foundation, All Rights Reserved.
|
|
|
|
* COPYING RESTRICTIONS APPLY, see COPYRIGHT file
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "portable.h"
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <ac/string.h>
|
|
|
|
|
|
|
|
#include "back-bdb.h"
|
|
|
|
#include "external.h"
|
|
|
|
|
|
|
|
int
|
|
|
|
bdb_modrdn(
|
2001-12-27 03:50:40 +08:00
|
|
|
Backend *be,
|
|
|
|
Connection *conn,
|
|
|
|
Operation *op,
|
|
|
|
struct berval *dn,
|
|
|
|
struct berval *ndn,
|
|
|
|
struct berval *newrdn,
|
|
|
|
struct berval *nnewrdn,
|
|
|
|
int deleteoldrdn,
|
|
|
|
struct berval *newSuperior,
|
|
|
|
struct berval *nnewSuperior
|
2000-09-28 06:28:59 +08:00
|
|
|
)
|
|
|
|
{
|
|
|
|
struct bdb_info *bdb = (struct bdb_info *) be->be_private;
|
|
|
|
AttributeDescription *children = slap_schema.si_ad_children;
|
2001-12-27 08:58:14 +08:00
|
|
|
struct berval p_dn, p_ndn;
|
2001-12-29 12:48:00 +08:00
|
|
|
struct berval new_dn = {0, NULL}, new_ndn = {0, NULL};
|
2001-11-16 23:00:03 +08:00
|
|
|
int isroot = -1;
|
2000-09-28 06:28:59 +08:00
|
|
|
Entry *e, *p = NULL;
|
|
|
|
Entry *matched;
|
|
|
|
int rc;
|
2000-09-28 10:27:49 +08:00
|
|
|
const char *text;
|
2001-06-15 15:08:37 +08:00
|
|
|
char textbuf[SLAP_TEXT_BUFLEN];
|
|
|
|
size_t textlen = sizeof textbuf;
|
2001-10-22 23:57:58 +08:00
|
|
|
DB_TXN * ltid = NULL;
|
2000-09-28 06:28:59 +08:00
|
|
|
struct bdb_op_info opinfo;
|
|
|
|
|
|
|
|
ID id;
|
2001-10-02 18:39:04 +08:00
|
|
|
int a_cnt, d_cnt;
|
2002-01-01 17:18:34 +08:00
|
|
|
LDAPRDN *new_rdn = NULL;
|
|
|
|
LDAPRDN *old_rdn = NULL;
|
2000-09-28 06:28:59 +08:00
|
|
|
|
|
|
|
Entry *np = NULL; /* newSuperior Entry */
|
2001-12-27 08:58:14 +08:00
|
|
|
struct berval *np_dn = NULL; /* newSuperior dn */
|
|
|
|
struct berval *np_ndn = NULL; /* newSuperior ndn */
|
|
|
|
struct berval *new_parent_dn = NULL; /* np_dn, p_dn, or NULL */
|
2000-09-28 06:28:59 +08:00
|
|
|
|
|
|
|
/* Used to interface with bdb_modify_internal() */
|
2001-10-02 18:39:04 +08:00
|
|
|
Modifications *mod = NULL; /* Used to delete old rdn */
|
2000-09-28 06:28:59 +08:00
|
|
|
|
|
|
|
int manageDSAit = get_manageDSAit( op );
|
|
|
|
|
|
|
|
Debug( LDAP_DEBUG_TRACE, "==>bdb_modrdn(%s,%s,%s)\n",
|
2001-12-27 03:50:40 +08:00
|
|
|
dn->bv_val, newrdn->bv_val,
|
|
|
|
newSuperior ? newSuperior->bv_val : "NULL" );
|
2000-09-28 06:28:59 +08:00
|
|
|
|
2001-11-16 23:00:03 +08:00
|
|
|
#if 0
|
2000-09-28 12:09:13 +08:00
|
|
|
if( newSuperior != NULL ) {
|
|
|
|
rc = LDAP_UNWILLING_TO_PERFORM;
|
|
|
|
text = "newSuperior not implemented (yet)";
|
|
|
|
goto return_results;
|
|
|
|
}
|
2001-11-16 23:00:03 +08:00
|
|
|
#endif
|
2000-09-28 12:09:13 +08:00
|
|
|
|
2001-11-28 05:59:56 +08:00
|
|
|
if( 0 ) {
|
2000-09-29 02:29:50 +08:00
|
|
|
retry: /* transaction retry */
|
|
|
|
Debug( LDAP_DEBUG_TRACE, "==>bdb_modrdn: retrying...\n", 0, 0, 0 );
|
|
|
|
rc = txn_abort( ltid );
|
2000-09-28 06:28:59 +08:00
|
|
|
ltid = NULL;
|
|
|
|
op->o_private = NULL;
|
|
|
|
if( rc != 0 ) {
|
|
|
|
rc = LDAP_OTHER;
|
|
|
|
text = "internal error";
|
|
|
|
goto return_results;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2001-11-27 11:41:03 +08:00
|
|
|
if( bdb->bi_txn ) {
|
|
|
|
/* begin transaction */
|
2001-11-28 11:11:04 +08:00
|
|
|
rc = txn_begin( bdb->bi_dbenv, NULL, <id,
|
|
|
|
bdb->bi_db_opflags );
|
2001-11-27 11:41:03 +08:00
|
|
|
text = NULL;
|
|
|
|
if( rc != 0 ) {
|
|
|
|
Debug( LDAP_DEBUG_TRACE,
|
|
|
|
"bdb_delete: txn_begin failed: %s (%d)\n",
|
|
|
|
db_strerror(rc), rc, 0 );
|
|
|
|
rc = LDAP_OTHER;
|
|
|
|
text = "internal error";
|
|
|
|
goto return_results;
|
|
|
|
}
|
2000-09-28 06:28:59 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
opinfo.boi_bdb = be;
|
|
|
|
opinfo.boi_txn = ltid;
|
|
|
|
opinfo.boi_err = 0;
|
|
|
|
op->o_private = &opinfo;
|
|
|
|
|
|
|
|
/* get entry */
|
2001-12-27 07:26:17 +08:00
|
|
|
rc = bdb_dn2entry( be, ltid, ndn, &e, &matched, 0 );
|
2000-09-28 06:28:59 +08:00
|
|
|
|
|
|
|
switch( rc ) {
|
|
|
|
case 0:
|
|
|
|
case DB_NOTFOUND:
|
|
|
|
break;
|
|
|
|
case DB_LOCK_DEADLOCK:
|
|
|
|
case DB_LOCK_NOTGRANTED:
|
|
|
|
goto retry;
|
|
|
|
default:
|
|
|
|
rc = LDAP_OTHER;
|
|
|
|
text = "internal error";
|
|
|
|
goto return_results;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( e == NULL ) {
|
|
|
|
char* matched_dn = NULL;
|
2002-01-02 19:00:36 +08:00
|
|
|
BVarray refs;
|
2000-09-28 06:28:59 +08:00
|
|
|
|
|
|
|
if( matched != NULL ) {
|
|
|
|
matched_dn = strdup( matched->e_dn );
|
|
|
|
refs = is_entry_referral( matched )
|
2001-12-27 04:59:24 +08:00
|
|
|
? get_entry_referrals( be, conn, op, matched )
|
2000-09-28 06:28:59 +08:00
|
|
|
: NULL;
|
|
|
|
bdb_entry_return( be, matched );
|
2000-09-28 10:27:49 +08:00
|
|
|
matched = NULL;
|
|
|
|
|
2000-09-28 06:28:59 +08:00
|
|
|
} else {
|
2001-11-05 14:24:11 +08:00
|
|
|
refs = referral_rewrite( default_referral,
|
2001-12-27 04:59:24 +08:00
|
|
|
NULL, dn, LDAP_SCOPE_DEFAULT );
|
2000-09-28 06:28:59 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
send_ldap_result( conn, op, rc = LDAP_REFERRAL,
|
|
|
|
matched_dn, NULL, refs, NULL );
|
|
|
|
|
2002-01-02 19:00:36 +08:00
|
|
|
bvarray_free( refs );
|
2001-11-05 14:24:11 +08:00
|
|
|
free( matched_dn );
|
2000-09-28 06:28:59 +08:00
|
|
|
|
|
|
|
goto done;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!manageDSAit && is_entry_referral( e ) ) {
|
|
|
|
/* parent is a referral, don't allow add */
|
|
|
|
/* parent is an alias, don't allow add */
|
2002-01-02 19:00:36 +08:00
|
|
|
BVarray refs = get_entry_referrals( be,
|
2001-12-27 04:59:24 +08:00
|
|
|
conn, op, e );
|
2000-09-28 06:28:59 +08:00
|
|
|
|
2001-11-05 14:24:11 +08:00
|
|
|
Debug( LDAP_DEBUG_TRACE, "bdb_modrdn: entry %s is referral\n",
|
|
|
|
e->e_dn, 0, 0 );
|
2000-09-28 06:28:59 +08:00
|
|
|
|
|
|
|
send_ldap_result( conn, op, rc = LDAP_REFERRAL,
|
|
|
|
e->e_dn, NULL, refs, NULL );
|
|
|
|
|
2002-01-02 19:00:36 +08:00
|
|
|
bvarray_free( refs );
|
2000-09-28 06:28:59 +08:00
|
|
|
goto done;
|
|
|
|
}
|
|
|
|
|
2001-12-27 08:58:14 +08:00
|
|
|
p_ndn.bv_val = dn_parent( be, e->e_ndn );
|
2002-01-01 21:32:10 +08:00
|
|
|
if (p_ndn.bv_val && *p_ndn.bv_val)
|
2001-12-27 09:38:15 +08:00
|
|
|
p_ndn.bv_len = e->e_nname.bv_len - (p_ndn.bv_val - e->e_ndn);
|
|
|
|
else
|
|
|
|
p_ndn.bv_len = 0;
|
2001-12-27 08:58:14 +08:00
|
|
|
np_ndn = &p_ndn;
|
|
|
|
if ( p_ndn.bv_len != 0 ) {
|
2000-09-28 06:28:59 +08:00
|
|
|
/* Make sure parent entry exist and we can write its
|
|
|
|
* children.
|
|
|
|
*/
|
2001-12-27 08:58:14 +08:00
|
|
|
rc = bdb_dn2entry( be, ltid, &p_ndn, &p, NULL, 0 );
|
2000-09-28 06:28:59 +08:00
|
|
|
|
|
|
|
switch( rc ) {
|
|
|
|
case 0:
|
|
|
|
case DB_NOTFOUND:
|
|
|
|
break;
|
|
|
|
case DB_LOCK_DEADLOCK:
|
|
|
|
case DB_LOCK_NOTGRANTED:
|
|
|
|
goto retry;
|
|
|
|
default:
|
|
|
|
rc = LDAP_OTHER;
|
|
|
|
text = "internal error";
|
|
|
|
goto return_results;
|
|
|
|
}
|
|
|
|
|
|
|
|
if( p == NULL) {
|
|
|
|
Debug( LDAP_DEBUG_TRACE, "bdb_modrdn: parent does not exist\n",
|
|
|
|
0, 0, 0);
|
|
|
|
rc = LDAP_OTHER;
|
|
|
|
goto return_results;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* 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,
|
|
|
|
NULL, NULL, NULL, NULL );
|
|
|
|
goto return_results;
|
|
|
|
}
|
|
|
|
|
|
|
|
Debug( LDAP_DEBUG_TRACE,
|
|
|
|
"bdb_modrdn: wr to children of entry %s OK\n",
|
2001-12-27 08:58:14 +08:00
|
|
|
p_ndn.bv_val, 0, 0 );
|
2000-09-28 06:28:59 +08:00
|
|
|
|
2001-12-27 08:58:14 +08:00
|
|
|
p_dn.bv_val = dn_parent( be, e->e_dn );
|
2002-01-01 21:32:10 +08:00
|
|
|
if (p_dn.bv_val && *p_dn.bv_val)
|
2001-12-27 09:38:15 +08:00
|
|
|
p_dn.bv_len = e->e_name.bv_len - (p_dn.bv_val - e->e_dn);
|
|
|
|
else
|
|
|
|
p_dn.bv_len = 0;
|
2000-09-28 06:28:59 +08:00
|
|
|
|
|
|
|
Debug( LDAP_DEBUG_TRACE,
|
|
|
|
"bdb_modrdn: parent dn=%s\n",
|
2001-12-27 08:58:14 +08:00
|
|
|
p_dn.bv_val, 0, 0 );
|
2000-09-28 06:28:59 +08:00
|
|
|
|
|
|
|
} else {
|
|
|
|
/* no parent, modrdn entry directly under root */
|
2001-12-26 03:48:26 +08:00
|
|
|
isroot = be_isroot( be, &op->o_ndn );
|
2001-11-16 23:00:03 +08:00
|
|
|
if ( ! isroot ) {
|
2001-12-25 08:05:26 +08:00
|
|
|
if ( be_issuffix( be, "" ) || be_isupdate( be, &op->o_ndn ) ) {
|
2001-11-16 23:00:03 +08:00
|
|
|
|
2001-11-17 01:05:32 +08:00
|
|
|
p = (Entry *)&slap_entry_root;
|
2001-11-16 23:00:03 +08:00
|
|
|
|
|
|
|
/* check parent for "children" acl */
|
|
|
|
rc = access_allowed( be, conn, op, p,
|
|
|
|
children, NULL, ACL_WRITE );
|
|
|
|
|
|
|
|
p = NULL;
|
|
|
|
|
|
|
|
if ( ! rc )
|
|
|
|
{
|
|
|
|
Debug( LDAP_DEBUG_TRACE,
|
|
|
|
"no access to parent\n",
|
|
|
|
0, 0, 0 );
|
|
|
|
send_ldap_result( conn, op,
|
|
|
|
LDAP_INSUFFICIENT_ACCESS,
|
|
|
|
NULL, NULL, NULL, NULL );
|
|
|
|
goto return_results;
|
|
|
|
}
|
|
|
|
|
|
|
|
Debug( LDAP_DEBUG_TRACE,
|
|
|
|
"bdb_modrdn: wr to children of entry \"\" OK\n",
|
|
|
|
0, 0, 0 );
|
|
|
|
|
2001-12-27 08:58:14 +08:00
|
|
|
p_dn.bv_val = "";
|
|
|
|
p_dn.bv_len = 0;
|
2001-11-16 23:00:03 +08:00
|
|
|
|
|
|
|
Debug( LDAP_DEBUG_TRACE,
|
|
|
|
"bdb_modrdn: parent dn=\"\"\n",
|
|
|
|
0, 0, 0 );
|
|
|
|
|
|
|
|
} else {
|
|
|
|
Debug( LDAP_DEBUG_TRACE,
|
|
|
|
"bdb_modrdn: no parent, not root "
|
|
|
|
"& \"\" is not suffix\n",
|
|
|
|
0, 0, 0);
|
|
|
|
rc = LDAP_INSUFFICIENT_ACCESS;
|
|
|
|
goto return_results;
|
|
|
|
}
|
2000-09-28 06:28:59 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2001-12-27 08:58:14 +08:00
|
|
|
new_parent_dn = &p_dn; /* New Parent unless newSuperior given */
|
2000-09-28 06:28:59 +08:00
|
|
|
|
2001-12-29 10:56:08 +08:00
|
|
|
if ( newSuperior != NULL ) {
|
2000-09-28 06:28:59 +08:00
|
|
|
Debug( LDAP_DEBUG_TRACE,
|
|
|
|
"bdb_modrdn: new parent \"%s\" requested...\n",
|
2001-12-27 03:50:40 +08:00
|
|
|
newSuperior->bv_val, 0, 0 );
|
2000-09-28 06:28:59 +08:00
|
|
|
|
2001-12-27 03:50:40 +08:00
|
|
|
if ( newSuperior->bv_len ) {
|
2001-12-27 08:58:14 +08:00
|
|
|
np_dn = newSuperior;
|
|
|
|
np_ndn = nnewSuperior;
|
2001-11-16 23:00:03 +08:00
|
|
|
|
|
|
|
/* newSuperior == oldParent?, if so ==> ERROR */
|
|
|
|
/* newSuperior == entry being moved?, if so ==> ERROR */
|
|
|
|
/* Get Entry with dn=newSuperior. Does newSuperior exist? */
|
|
|
|
|
2001-12-27 08:58:14 +08:00
|
|
|
rc = bdb_dn2entry( be, ltid, nnewSuperior, &np, NULL, 0 );
|
2001-11-16 23:00:03 +08:00
|
|
|
|
|
|
|
switch( rc ) {
|
|
|
|
case 0:
|
|
|
|
case DB_NOTFOUND:
|
|
|
|
break;
|
|
|
|
case DB_LOCK_DEADLOCK:
|
|
|
|
case DB_LOCK_NOTGRANTED:
|
|
|
|
goto retry;
|
|
|
|
default:
|
|
|
|
rc = LDAP_OTHER;
|
|
|
|
text = "internal error";
|
|
|
|
goto return_results;
|
|
|
|
}
|
|
|
|
|
|
|
|
if( np == NULL) {
|
|
|
|
Debug( LDAP_DEBUG_TRACE,
|
|
|
|
"bdb_modrdn: newSup(ndn=%s) not here!\n",
|
2001-12-27 08:58:14 +08:00
|
|
|
np_ndn->bv_val, 0, 0);
|
2001-11-16 23:00:03 +08:00
|
|
|
rc = LDAP_OTHER;
|
|
|
|
goto return_results;
|
|
|
|
}
|
2000-09-28 06:28:59 +08:00
|
|
|
|
|
|
|
Debug( LDAP_DEBUG_TRACE,
|
2001-11-16 23:00:03 +08:00
|
|
|
"bdb_modrdn: wr to new parent OK np=%p, id=%ld\n",
|
|
|
|
np, (long) np->e_id, 0 );
|
|
|
|
|
|
|
|
/* check newSuperior for "children" acl */
|
|
|
|
if ( !access_allowed( be, conn, op, np, children, NULL, ACL_WRITE ) ) {
|
|
|
|
Debug( LDAP_DEBUG_TRACE,
|
|
|
|
"bdb_modrdn: no wr to newSup children\n",
|
|
|
|
0, 0, 0 );
|
|
|
|
rc = LDAP_INSUFFICIENT_ACCESS;
|
|
|
|
goto return_results;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( is_entry_alias( np ) ) {
|
|
|
|
/* parent is an alias, don't allow add */
|
|
|
|
Debug( LDAP_DEBUG_TRACE, "bdb_modrdn: entry is alias\n",
|
|
|
|
0, 0, 0 );
|
|
|
|
|
|
|
|
rc = LDAP_ALIAS_PROBLEM;
|
|
|
|
goto return_results;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( is_entry_referral( np ) ) {
|
|
|
|
/* parent is a referral, don't allow add */
|
|
|
|
Debug( LDAP_DEBUG_TRACE, "bdb_modrdn: entry is referral\n",
|
|
|
|
0, 0, 0 );
|
|
|
|
|
|
|
|
rc = LDAP_OPERATIONS_ERROR;
|
|
|
|
goto return_results;
|
|
|
|
}
|
2000-09-28 06:28:59 +08:00
|
|
|
|
2001-11-16 23:00:03 +08:00
|
|
|
} else {
|
|
|
|
if ( isroot == -1 ) {
|
2001-12-26 03:48:26 +08:00
|
|
|
isroot = be_isroot( be, &op->o_ndn );
|
2001-11-16 23:00:03 +08:00
|
|
|
}
|
|
|
|
|
2001-12-27 08:58:14 +08:00
|
|
|
np_dn = NULL;
|
2001-11-16 23:00:03 +08:00
|
|
|
|
|
|
|
/* no parent, modrdn entry directly under root */
|
|
|
|
if ( ! isroot ) {
|
2001-12-25 08:05:26 +08:00
|
|
|
if ( be_issuffix( be, "" ) || be_isupdate( be, &op->o_ndn ) ) {
|
2001-11-17 01:05:32 +08:00
|
|
|
np = (Entry *)&slap_entry_root;
|
2001-11-16 23:00:03 +08:00
|
|
|
|
|
|
|
/* check parent for "children" acl */
|
|
|
|
rc = access_allowed( be, conn, op, np,
|
|
|
|
children, NULL, ACL_WRITE );
|
|
|
|
|
|
|
|
np = NULL;
|
|
|
|
|
|
|
|
if ( ! rc )
|
|
|
|
{
|
|
|
|
Debug( LDAP_DEBUG_TRACE,
|
|
|
|
"no access to new superior\n",
|
|
|
|
0, 0, 0 );
|
|
|
|
send_ldap_result( conn, op,
|
|
|
|
LDAP_INSUFFICIENT_ACCESS,
|
|
|
|
NULL, NULL, NULL, NULL );
|
|
|
|
goto return_results;
|
|
|
|
}
|
|
|
|
|
|
|
|
Debug( LDAP_DEBUG_TRACE,
|
|
|
|
"bdb_modrdn: wr to children of entry \"\" OK\n",
|
|
|
|
0, 0, 0 );
|
|
|
|
|
|
|
|
} else {
|
|
|
|
Debug( LDAP_DEBUG_TRACE,
|
|
|
|
"bdb_modrdn: new superior=\"\", not root "
|
|
|
|
"& \"\" is not suffix\n",
|
|
|
|
0, 0, 0);
|
|
|
|
rc = LDAP_INSUFFICIENT_ACCESS;
|
|
|
|
goto return_results;
|
|
|
|
}
|
|
|
|
}
|
2000-09-28 06:28:59 +08:00
|
|
|
|
|
|
|
Debug( LDAP_DEBUG_TRACE,
|
2001-11-16 23:00:03 +08:00
|
|
|
"bdb_modrdn: new superior=\"\"\n",
|
2000-09-28 06:28:59 +08:00
|
|
|
0, 0, 0 );
|
|
|
|
}
|
|
|
|
|
|
|
|
Debug( LDAP_DEBUG_TRACE,
|
|
|
|
"bdb_modrdn: wr to new parent's children OK\n",
|
|
|
|
0, 0, 0 );
|
|
|
|
|
|
|
|
new_parent_dn = np_dn;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Build target dn and make sure target entry doesn't exist already. */
|
2001-12-27 08:58:14 +08:00
|
|
|
build_new_dn( &new_dn, new_parent_dn, newrdn );
|
2000-09-28 06:28:59 +08:00
|
|
|
|
2001-12-29 12:48:00 +08:00
|
|
|
dnNormalize2( NULL, &new_dn, &new_ndn );
|
2000-09-28 06:28:59 +08:00
|
|
|
|
|
|
|
Debug( LDAP_DEBUG_TRACE, "bdb_modrdn: new ndn=%s\n",
|
2001-12-29 12:48:00 +08:00
|
|
|
new_ndn.bv_val, 0, 0 );
|
2000-09-28 06:28:59 +08:00
|
|
|
|
2001-12-29 12:48:00 +08:00
|
|
|
rc = bdb_dn2id ( be, ltid, &new_ndn, &id );
|
2000-09-28 10:42:20 +08:00
|
|
|
switch( rc ) {
|
|
|
|
case DB_LOCK_DEADLOCK:
|
|
|
|
case DB_LOCK_NOTGRANTED:
|
|
|
|
goto retry;
|
|
|
|
case DB_NOTFOUND:
|
|
|
|
break;
|
|
|
|
case 0:
|
|
|
|
rc = LDAP_ALREADY_EXISTS;
|
|
|
|
goto return_results;
|
|
|
|
default:
|
|
|
|
rc = LDAP_OTHER;
|
|
|
|
text = "internal error";
|
2000-09-28 06:28:59 +08:00
|
|
|
goto return_results;
|
|
|
|
}
|
|
|
|
|
|
|
|
Debug( LDAP_DEBUG_TRACE,
|
|
|
|
"bdb_modrdn: new ndn=%s does not exist\n",
|
2001-12-29 12:48:00 +08:00
|
|
|
new_ndn.bv_val, 0, 0 );
|
2000-09-28 06:28:59 +08:00
|
|
|
|
|
|
|
/* Get attribute type and attribute value of our new rdn, we will
|
|
|
|
* need to add that to our new entry
|
|
|
|
*/
|
2002-01-01 17:18:34 +08:00
|
|
|
if ( ldap_str2rdn( newrdn->bv_val, &new_rdn, &text, LDAP_DN_FORMAT_LDAP ) ) {
|
2000-09-28 06:28:59 +08:00
|
|
|
Debug( LDAP_DEBUG_TRACE,
|
2001-10-02 18:39:04 +08:00
|
|
|
"bdb_modrdn: can't figure out type(s)/values(s) "
|
|
|
|
"of newrdn\n", 0, 0, 0 );
|
2000-09-28 06:28:59 +08:00
|
|
|
rc = LDAP_OPERATIONS_ERROR;
|
2001-10-02 18:39:04 +08:00
|
|
|
text = "unknown type(s) used in RDN";
|
2000-09-28 06:28:59 +08:00
|
|
|
goto return_results;
|
|
|
|
}
|
|
|
|
|
|
|
|
Debug( LDAP_DEBUG_TRACE,
|
2002-01-01 17:18:34 +08:00
|
|
|
"bdb_modrdn: new_rdn_type=\"%s\", new_rdn_val=\"%s\"\n",
|
|
|
|
new_rdn[0][0]->la_attr.bv_val, new_rdn[0][0]->la_value.bv_val, 0 );
|
2000-09-28 06:28:59 +08:00
|
|
|
|
2002-01-01 17:18:34 +08:00
|
|
|
if ( ldap_str2rdn( dn->bv_val, &old_rdn, &text, LDAP_DN_FORMAT_LDAP ) ) {
|
2000-09-28 06:28:59 +08:00
|
|
|
Debug( LDAP_DEBUG_TRACE,
|
2001-10-02 18:39:04 +08:00
|
|
|
"bdb_back_modrdn: can't figure out the old_rdn "
|
|
|
|
"type(s)/value(s)\n", 0, 0, 0 );
|
2000-09-28 06:28:59 +08:00
|
|
|
rc = LDAP_OTHER;
|
|
|
|
text = "cannot parse RDN from old DN";
|
|
|
|
goto return_results;
|
|
|
|
}
|
2002-01-01 17:18:34 +08:00
|
|
|
|
|
|
|
#if 0
|
2001-10-02 18:39:04 +08:00
|
|
|
if ( newSuperior == NULL
|
|
|
|
&& charray_strcasecmp( ( const char ** )old_rdn_types,
|
|
|
|
( const char ** )new_rdn_types ) != 0 ) {
|
2000-09-28 06:28:59 +08:00
|
|
|
/* Not a big deal but we may say something */
|
|
|
|
Debug( LDAP_DEBUG_TRACE,
|
2001-10-02 18:39:04 +08:00
|
|
|
"bdb_modrdn: old_rdn_type(s)=%s, new_rdn_type(s)=%s "
|
|
|
|
"do not match\n",
|
|
|
|
old_rdn_types[ 0 ], new_rdn_types[ 0 ], 0 );
|
2000-09-28 06:28:59 +08:00
|
|
|
}
|
2002-01-01 17:18:34 +08:00
|
|
|
#endif
|
2000-09-28 06:28:59 +08:00
|
|
|
|
2001-10-02 18:39:04 +08:00
|
|
|
/* Add new attribute values to the entry */
|
2002-01-01 17:18:34 +08:00
|
|
|
for ( a_cnt = 0; new_rdn[0][ a_cnt ]; a_cnt++ ) {
|
2001-10-02 18:39:04 +08:00
|
|
|
int rc;
|
|
|
|
AttributeDescription *desc = NULL;
|
|
|
|
Modifications *mod_tmp;
|
2000-09-28 06:28:59 +08:00
|
|
|
|
2002-01-01 17:18:34 +08:00
|
|
|
rc = slap_bv2ad( &new_rdn[0][ a_cnt ]->la_attr, &desc, &text );
|
2000-09-28 06:28:59 +08:00
|
|
|
|
2001-10-02 18:39:04 +08:00
|
|
|
if ( rc != LDAP_SUCCESS ) {
|
2000-09-28 06:28:59 +08:00
|
|
|
Debug( LDAP_DEBUG_TRACE,
|
2001-10-02 18:39:04 +08:00
|
|
|
"bdb_modrdn: %s: %s (new)\n",
|
2002-01-01 17:18:34 +08:00
|
|
|
text, new_rdn[0][ a_cnt ]->la_attr.bv_val, 0 );
|
2000-09-28 06:28:59 +08:00
|
|
|
goto return_results;
|
|
|
|
}
|
|
|
|
|
2001-10-02 18:39:04 +08:00
|
|
|
/* ACL check of newly added attrs */
|
2002-01-01 17:18:34 +08:00
|
|
|
if ( !access_allowed( be, conn, op, e, desc,
|
|
|
|
&new_rdn[0][ a_cnt ]->la_value, ACL_WRITE ) ) {
|
2001-10-02 18:39:04 +08:00
|
|
|
Debug( LDAP_DEBUG_TRACE,
|
|
|
|
"bdb_modrdn: access to attr \"%s\" "
|
|
|
|
"(new) not allowed\n",
|
2002-01-01 17:18:34 +08:00
|
|
|
new_rdn[0][ a_cnt ]->la_attr.bv_val, 0, 0 );
|
2001-10-02 18:39:04 +08:00
|
|
|
rc = LDAP_INSUFFICIENT_ACCESS;
|
|
|
|
goto return_results;
|
|
|
|
}
|
2000-09-28 06:28:59 +08:00
|
|
|
|
2001-10-02 18:39:04 +08:00
|
|
|
/* Apply modification */
|
2002-01-01 17:18:34 +08:00
|
|
|
mod_tmp = ( Modifications * )ch_malloc( sizeof( Modifications )
|
2002-01-02 19:00:36 +08:00
|
|
|
+ 2 * sizeof( struct berval ) );
|
2001-10-02 18:39:04 +08:00
|
|
|
mod_tmp->sml_desc = desc;
|
2002-01-02 19:00:36 +08:00
|
|
|
mod_tmp->sml_bvalues = ( BVarray )( mod_tmp + 1 );
|
|
|
|
mod_tmp->sml_bvalues[ 0 ] = new_rdn[0][ a_cnt ]->la_value;
|
|
|
|
mod_tmp->sml_bvalues[ 1 ].bv_val = NULL;
|
2001-10-02 18:39:04 +08:00
|
|
|
mod_tmp->sml_op = SLAP_MOD_SOFTADD;
|
|
|
|
mod_tmp->sml_next = mod;
|
|
|
|
mod = mod_tmp;
|
|
|
|
}
|
2000-09-28 06:28:59 +08:00
|
|
|
|
2001-10-02 18:39:04 +08:00
|
|
|
/* Remove old rdn value if required */
|
|
|
|
if ( deleteoldrdn ) {
|
|
|
|
/* Get value of old rdn */
|
2002-01-01 17:18:34 +08:00
|
|
|
if ( old_rdn == NULL) {
|
2000-09-28 06:28:59 +08:00
|
|
|
Debug( LDAP_DEBUG_TRACE,
|
2001-10-02 18:39:04 +08:00
|
|
|
"bdb_modrdn: can't figure out old RDN value(s) "
|
|
|
|
"from old RDN\n", 0, 0, 0 );
|
|
|
|
rc = LDAP_OTHER;
|
|
|
|
text = "could not parse value(s) from old RDN";
|
2000-09-28 06:28:59 +08:00
|
|
|
goto return_results;
|
|
|
|
}
|
|
|
|
|
2002-01-01 17:18:34 +08:00
|
|
|
for ( d_cnt = 0; old_rdn[0][ d_cnt ]; d_cnt++ ) {
|
2001-10-02 18:39:04 +08:00
|
|
|
int rc;
|
|
|
|
AttributeDescription *desc = NULL;
|
|
|
|
Modifications *mod_tmp;
|
|
|
|
|
2002-01-01 17:18:34 +08:00
|
|
|
rc = slap_bv2ad( &old_rdn[0][ d_cnt ]->la_attr,
|
2001-10-02 18:39:04 +08:00
|
|
|
&desc, &text );
|
|
|
|
|
|
|
|
if ( rc != LDAP_SUCCESS ) {
|
|
|
|
Debug( LDAP_DEBUG_TRACE,
|
|
|
|
"bdb_modrdn: %s: %s (old)\n",
|
2002-01-01 17:18:34 +08:00
|
|
|
text, old_rdn[0][ d_cnt ]->la_attr.bv_val, 0 );
|
2001-10-02 18:39:04 +08:00
|
|
|
goto return_results;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ACL check of newly added attrs */
|
2002-01-01 17:18:34 +08:00
|
|
|
if ( !access_allowed( be, conn, op, e, desc,
|
|
|
|
&old_rdn[0][d_cnt]->la_value, ACL_WRITE ) ) {
|
2001-10-02 18:39:04 +08:00
|
|
|
Debug( LDAP_DEBUG_TRACE,
|
|
|
|
"bdb_modrdn: access to attr \"%s\" "
|
|
|
|
"(old) not allowed\n",
|
2002-01-01 17:18:34 +08:00
|
|
|
old_rdn[0][ d_cnt ]->la_attr.bv_val, 0, 0 );
|
2001-10-02 18:39:04 +08:00
|
|
|
rc = LDAP_INSUFFICIENT_ACCESS;
|
|
|
|
goto return_results;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Apply modification */
|
2002-01-01 17:18:34 +08:00
|
|
|
mod_tmp = ( Modifications * )ch_malloc( sizeof( Modifications )
|
2002-01-02 19:00:36 +08:00
|
|
|
+ 2 * sizeof ( struct berval ) );
|
2001-10-02 18:39:04 +08:00
|
|
|
mod_tmp->sml_desc = desc;
|
2002-01-02 19:00:36 +08:00
|
|
|
mod_tmp->sml_bvalues = ( BVarray )(mod_tmp+1);
|
|
|
|
mod_tmp->sml_bvalues[ 0 ] = old_rdn[0][ d_cnt ]->la_value;
|
|
|
|
mod_tmp->sml_bvalues[ 1 ].bv_val = NULL;
|
2001-10-02 18:39:04 +08:00
|
|
|
mod_tmp->sml_op = LDAP_MOD_DELETE;
|
|
|
|
mod_tmp->sml_next = mod;
|
|
|
|
mod = mod_tmp;
|
|
|
|
}
|
2000-09-28 06:28:59 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/* delete old one */
|
2001-12-27 08:58:14 +08:00
|
|
|
rc = bdb_dn2id_delete( be, ltid, p_ndn.bv_val, e );
|
2000-09-28 06:28:59 +08:00
|
|
|
if ( rc != 0 ) {
|
2000-09-28 10:27:49 +08:00
|
|
|
switch( rc ) {
|
|
|
|
case DB_LOCK_DEADLOCK:
|
|
|
|
case DB_LOCK_NOTGRANTED:
|
|
|
|
goto retry;
|
|
|
|
}
|
2000-09-28 06:28:59 +08:00
|
|
|
rc = LDAP_OTHER;
|
|
|
|
text = "DN index delete fail";
|
|
|
|
goto return_results;
|
|
|
|
}
|
|
|
|
|
2001-10-20 04:28:48 +08:00
|
|
|
/* Binary format uses a single contiguous block, cannot
|
|
|
|
* free individual fields. Leave new_dn/new_ndn set so
|
|
|
|
* they can be individually freed later.
|
|
|
|
*/
|
2001-12-27 08:58:14 +08:00
|
|
|
e->e_name = new_dn;
|
2001-12-29 12:48:00 +08:00
|
|
|
e->e_nname = new_ndn;
|
2000-09-28 06:28:59 +08:00
|
|
|
|
|
|
|
/* add new one */
|
2001-12-27 09:38:15 +08:00
|
|
|
rc = bdb_dn2id_add( be, ltid, np_ndn, e );
|
2000-09-28 06:28:59 +08:00
|
|
|
if ( rc != 0 ) {
|
2000-09-28 10:27:49 +08:00
|
|
|
switch( rc ) {
|
|
|
|
case DB_LOCK_DEADLOCK:
|
|
|
|
case DB_LOCK_NOTGRANTED:
|
|
|
|
goto retry;
|
|
|
|
}
|
2000-09-28 06:28:59 +08:00
|
|
|
rc = LDAP_OTHER;
|
|
|
|
text = "DN index add failed";
|
|
|
|
goto return_results;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* modify entry */
|
2001-06-15 15:08:37 +08:00
|
|
|
rc = bdb_modify_internal( be, conn, op, ltid, &mod[0], e,
|
|
|
|
&text, textbuf, textlen );
|
2000-09-28 06:28:59 +08:00
|
|
|
|
|
|
|
if( rc != LDAP_SUCCESS ) {
|
2000-09-28 10:27:49 +08:00
|
|
|
switch( rc ) {
|
|
|
|
case DB_LOCK_DEADLOCK:
|
|
|
|
case DB_LOCK_NOTGRANTED:
|
|
|
|
goto retry;
|
|
|
|
}
|
2000-09-28 06:28:59 +08:00
|
|
|
goto return_results;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* id2entry index */
|
2000-09-28 10:27:49 +08:00
|
|
|
rc = bdb_id2entry_update( be, ltid, e );
|
2000-09-28 06:28:59 +08:00
|
|
|
if ( rc != 0 ) {
|
2000-09-28 10:27:49 +08:00
|
|
|
switch( rc ) {
|
|
|
|
case DB_LOCK_DEADLOCK:
|
|
|
|
case DB_LOCK_NOTGRANTED:
|
|
|
|
goto retry;
|
|
|
|
}
|
2000-09-28 06:28:59 +08:00
|
|
|
rc = LDAP_OTHER;
|
|
|
|
text = "entry update failed";
|
|
|
|
goto return_results;
|
|
|
|
}
|
|
|
|
|
2001-11-27 11:41:03 +08:00
|
|
|
if( bdb->bi_txn ) {
|
2001-11-27 10:35:20 +08:00
|
|
|
rc = txn_commit( ltid, 0 );
|
2001-11-27 11:41:03 +08:00
|
|
|
}
|
2000-09-28 06:28:59 +08:00
|
|
|
ltid = NULL;
|
|
|
|
op->o_private = NULL;
|
|
|
|
|
|
|
|
if( rc != 0 ) {
|
|
|
|
Debug( LDAP_DEBUG_TRACE,
|
|
|
|
"bdb_modrdn: txn_commit failed: %s (%d)\n",
|
|
|
|
db_strerror(rc), rc, 0 );
|
|
|
|
rc = LDAP_OTHER;
|
|
|
|
text = "commit failed";
|
|
|
|
} else {
|
|
|
|
Debug( LDAP_DEBUG_TRACE,
|
2001-11-15 00:17:30 +08:00
|
|
|
"bdb_modrdn: added id=%08lx dn=\"%s\"\n",
|
2000-09-28 06:28:59 +08:00
|
|
|
e->e_id, e->e_dn, 0 );
|
|
|
|
rc = LDAP_SUCCESS;
|
|
|
|
text = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
return_results:
|
|
|
|
send_ldap_result( conn, op, rc,
|
|
|
|
NULL, text, NULL, NULL );
|
|
|
|
|
2001-11-27 11:41:03 +08:00
|
|
|
if( rc == LDAP_SUCCESS && bdb->bi_txn_cp ) {
|
2000-09-28 12:09:13 +08:00
|
|
|
ldap_pvt_thread_yield();
|
2001-12-07 13:05:00 +08:00
|
|
|
TXN_CHECKPOINT( bdb->bi_dbenv,
|
2000-09-28 12:09:13 +08:00
|
|
|
bdb->bi_txn_cp_kbyte, bdb->bi_txn_cp_min, 0 );
|
|
|
|
}
|
|
|
|
|
2000-09-28 06:28:59 +08:00
|
|
|
done:
|
2001-12-27 08:58:14 +08:00
|
|
|
if( new_dn.bv_val != NULL ) free( new_dn.bv_val );
|
2001-12-29 12:48:00 +08:00
|
|
|
if( new_ndn.bv_val != NULL ) free( new_ndn.bv_val );
|
2000-09-28 06:28:59 +08:00
|
|
|
|
|
|
|
/* LDAP v2 supporting correct attribute handling. */
|
2002-01-01 17:18:34 +08:00
|
|
|
if( new_rdn != NULL ) ldap_rdnfree( new_rdn );
|
|
|
|
if( old_rdn != NULL ) ldap_rdnfree( old_rdn );
|
|
|
|
if( mod != NULL ) {
|
|
|
|
Modifications *tmp;
|
|
|
|
for (; mod; mod=tmp ) {
|
|
|
|
tmp = mod->sml_next;
|
|
|
|
free( mod );
|
|
|
|
}
|
|
|
|
}
|
2000-09-28 06:28:59 +08:00
|
|
|
|
|
|
|
/* LDAP v3 Support */
|
|
|
|
if( np != NULL ) {
|
|
|
|
/* free new parent and writer lock */
|
|
|
|
bdb_entry_return( be, np );
|
|
|
|
}
|
|
|
|
|
|
|
|
if( p != NULL ) {
|
|
|
|
/* free parent and writer lock */
|
|
|
|
bdb_entry_return( be, p );
|
|
|
|
}
|
|
|
|
|
|
|
|
/* free entry */
|
|
|
|
if( e != NULL ) {
|
|
|
|
bdb_entry_return( be, e );
|
|
|
|
}
|
|
|
|
|
|
|
|
if( ltid != NULL ) {
|
|
|
|
txn_abort( ltid );
|
|
|
|
op->o_private = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
return rc;
|
|
|
|
}
|