1998-08-09 08:43:13 +08:00
|
|
|
/* modrdn.c - ldbm backend modrdn routine */
|
1999-09-09 03:06:24 +08:00
|
|
|
/* $OpenLDAP$ */
|
1999-08-07 07:07:46 +08:00
|
|
|
/*
|
2000-05-13 10:47:56 +08:00
|
|
|
* Copyright 1998-2000 The OpenLDAP Foundation, All Rights Reserved.
|
1999-08-07 07:07:46 +08:00
|
|
|
* COPYING RESTRICTIONS APPLY, see COPYRIGHT file
|
|
|
|
*/
|
1998-08-09 08:43:13 +08:00
|
|
|
|
1999-03-05 11:38:12 +08:00
|
|
|
/*
|
1999-03-07 17:31:54 +08:00
|
|
|
* 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!.)
|
1999-03-05 11:38:12 +08:00
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
1998-10-25 09:41:42 +08:00
|
|
|
#include "portable.h"
|
|
|
|
|
1998-08-09 08:43:13 +08:00
|
|
|
#include <stdio.h>
|
1998-10-25 09:41:42 +08:00
|
|
|
|
|
|
|
#include <ac/string.h>
|
|
|
|
#include <ac/socket.h>
|
|
|
|
|
1998-08-09 08:43:13 +08:00
|
|
|
#include "slap.h"
|
|
|
|
#include "back-ldbm.h"
|
1998-09-21 04:22:46 +08:00
|
|
|
#include "proto-back-ldbm.h"
|
1998-08-09 08:43:13 +08:00
|
|
|
|
|
|
|
int
|
|
|
|
ldbm_back_modrdn(
|
|
|
|
Backend *be,
|
|
|
|
Connection *conn,
|
|
|
|
Operation *op,
|
2001-12-27 03:50:40 +08:00
|
|
|
struct berval *dn,
|
|
|
|
struct berval *ndn,
|
|
|
|
struct berval *newrdn,
|
|
|
|
struct berval *nnewrdn,
|
1999-03-05 11:38:12 +08:00
|
|
|
int deleteoldrdn,
|
2001-12-27 03:50:40 +08:00
|
|
|
struct berval *newSuperior,
|
|
|
|
struct berval *nnewSuperior
|
1998-08-09 08:43:13 +08:00
|
|
|
)
|
|
|
|
{
|
2000-05-28 09:36:03 +08:00
|
|
|
AttributeDescription *children = slap_schema.si_ad_children;
|
1998-08-09 08:43:13 +08:00
|
|
|
struct ldbminfo *li = (struct ldbminfo *) be->be_private;
|
2001-12-27 09:10:52 +08:00
|
|
|
struct berval p_dn, p_ndn;
|
|
|
|
struct berval new_dn = { 0, NULL}, *new_ndn = NULL;
|
1999-01-07 10:51:08 +08:00
|
|
|
Entry *e, *p = NULL;
|
1999-09-04 04:25:58 +08:00
|
|
|
Entry *matched;
|
2001-11-16 22:04:54 +08:00
|
|
|
int isroot = -1;
|
2001-07-30 22:54:02 +08:00
|
|
|
int rootlock = 0;
|
|
|
|
#define CAN_ROLLBACK -1
|
|
|
|
#define MUST_DESTROY 1
|
|
|
|
int rc = CAN_ROLLBACK;
|
|
|
|
int rc_id = 0;
|
2001-07-03 19:23:18 +08:00
|
|
|
ID id = NOID;
|
2000-05-29 06:38:21 +08:00
|
|
|
const char *text = NULL;
|
2001-06-06 08:23:56 +08:00
|
|
|
char textbuf[SLAP_TEXT_BUFLEN];
|
|
|
|
size_t textlen = sizeof textbuf;
|
1999-03-07 17:31:54 +08:00
|
|
|
/* Added to support LDAP v2 correctly (deleteoldrdn thing) */
|
2001-07-06 20:24:34 +08:00
|
|
|
char **new_rdn_vals = NULL; /* Vals of new rdn */
|
|
|
|
char **new_rdn_types = NULL; /* Types of new rdn */
|
|
|
|
int a_cnt, d_cnt;
|
2001-01-18 01:01:19 +08:00
|
|
|
char *old_rdn = NULL; /* Old rdn's attr type & val */
|
2001-07-06 20:24:34 +08:00
|
|
|
char **old_rdn_types = NULL; /* Types of old rdn attrs. */
|
|
|
|
char **old_rdn_vals = NULL; /* Old rdn attribute values */
|
1999-03-25 05:45:15 +08:00
|
|
|
/* Added to support newSuperior */
|
|
|
|
Entry *np = NULL; /* newSuperior Entry */
|
2001-12-27 09:10:52 +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 */
|
1999-05-20 02:27:25 +08:00
|
|
|
/* Used to interface with ldbm_modify_internal() */
|
2001-07-06 20:24:34 +08:00
|
|
|
Modifications *mod = NULL; /* Used to delete old/add new rdn */
|
1999-07-16 10:45:46 +08:00
|
|
|
int manageDSAit = get_manageDSAit( op );
|
1999-03-25 05:45:15 +08:00
|
|
|
|
2001-01-18 01:01:19 +08:00
|
|
|
#ifdef NEW_LOGGING
|
|
|
|
LDAP_LOG(( "backend", LDAP_LEVEL_ENTRY,
|
2001-10-26 10:05:14 +08:00
|
|
|
"ldbm_back_modrdn: dn: %s newSuperior=%s\n",
|
2001-12-27 03:50:40 +08:00
|
|
|
dn->bv_len ? dn->bv_val : "NULL",
|
2001-12-27 07:03:36 +08:00
|
|
|
( newSuperior && newSuperior->bv_len )
|
|
|
|
? newSuperior->bv_val : "NULL" ));
|
2001-01-18 01:01:19 +08:00
|
|
|
#else
|
2001-12-27 03:50:40 +08:00
|
|
|
Debug( LDAP_DEBUG_TRACE,
|
|
|
|
"==>ldbm_back_modrdn: dn: %s newSuperior=%s\n",
|
|
|
|
dn->bv_len ? dn->bv_val : "NULL",
|
2001-12-27 07:03:36 +08:00
|
|
|
( newSuperior && newSuperior->bv_len )
|
|
|
|
? newSuperior->bv_val : "NULL", 0 );
|
2001-01-18 01:01:19 +08:00
|
|
|
#endif
|
|
|
|
|
1998-09-21 04:22:46 +08:00
|
|
|
/* get entry with writer lock */
|
2001-12-27 03:50:40 +08:00
|
|
|
if ( (e = dn2entry_w( be, ndn->bv_val, &matched )) == NULL ) {
|
1999-07-16 10:45:46 +08:00
|
|
|
char* matched_dn = NULL;
|
2001-10-26 10:05:14 +08:00
|
|
|
struct berval** refs;
|
1999-07-16 10:45:46 +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 )
|
1999-07-16 10:45:46 +08:00
|
|
|
: NULL;
|
|
|
|
cache_return_entry_r( &li->li_cache, matched );
|
|
|
|
} else {
|
2001-10-26 10:05:14 +08:00
|
|
|
refs = referral_rewrite( default_referral,
|
2001-12-27 04:59:24 +08:00
|
|
|
NULL, dn, LDAP_SCOPE_DEFAULT );
|
1999-07-16 10:45:46 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
send_ldap_result( conn, op, LDAP_REFERRAL,
|
|
|
|
matched_dn, NULL, refs, NULL );
|
|
|
|
|
2001-10-26 10:05:14 +08:00
|
|
|
ber_bvecfree( refs );
|
|
|
|
free( matched_dn );
|
1999-07-16 10:45:46 +08:00
|
|
|
|
1998-08-09 08:43:13 +08:00
|
|
|
return( -1 );
|
|
|
|
}
|
|
|
|
|
1999-07-16 10:45:46 +08:00
|
|
|
if (!manageDSAit && is_entry_referral( e ) ) {
|
|
|
|
/* parent is a referral, don't allow add */
|
|
|
|
/* parent is an alias, don't allow add */
|
|
|
|
struct berval **refs = get_entry_referrals( be,
|
2001-12-27 04:59:24 +08:00
|
|
|
conn, op, e );
|
1999-07-16 10:45:46 +08:00
|
|
|
|
2001-01-18 01:01:19 +08:00
|
|
|
#ifdef NEW_LOGGING
|
|
|
|
LDAP_LOG(( "backend", LDAP_LEVEL_INFO,
|
2001-10-26 10:05:14 +08:00
|
|
|
"ldbm_back_modrdn: entry %s is a referral\n", e->e_dn ));
|
2001-01-18 01:01:19 +08:00
|
|
|
#else
|
2001-10-26 10:05:14 +08:00
|
|
|
Debug( LDAP_DEBUG_TRACE, "entry %s is referral\n", e->e_dn,
|
1999-07-16 10:45:46 +08:00
|
|
|
0, 0 );
|
2001-01-18 01:01:19 +08:00
|
|
|
#endif
|
|
|
|
|
1999-07-16 10:45:46 +08:00
|
|
|
send_ldap_result( conn, op, LDAP_REFERRAL,
|
|
|
|
e->e_dn, NULL, refs, NULL );
|
|
|
|
|
|
|
|
ber_bvecfree( refs );
|
|
|
|
goto return_results;
|
|
|
|
}
|
|
|
|
|
2001-06-07 08:19:23 +08:00
|
|
|
if ( has_children( be, e ) ) {
|
|
|
|
#ifdef NEW_LOGGING
|
|
|
|
LDAP_LOG(( "backend", LDAP_LEVEL_INFO,
|
2001-10-26 10:05:14 +08:00
|
|
|
"ldbm_back_modrdn: entry %s has children\n", e->e_dn ));
|
2001-06-07 08:19:23 +08:00
|
|
|
#else
|
2001-10-26 10:05:14 +08:00
|
|
|
Debug( LDAP_DEBUG_TRACE, "entry %s has children\n", e->e_dn,
|
2001-06-07 08:19:23 +08:00
|
|
|
0, 0 );
|
|
|
|
#endif
|
|
|
|
|
|
|
|
send_ldap_result( conn, op, LDAP_NOT_ALLOWED_ON_NONLEAF,
|
|
|
|
NULL, "subtree rename not supported", NULL, NULL );
|
|
|
|
goto return_results;
|
|
|
|
}
|
|
|
|
|
2001-12-27 09:10:52 +08:00
|
|
|
p_ndn.bv_val = dn_parent( be, e->e_ndn );
|
2001-12-27 09:38:15 +08:00
|
|
|
if ( p_ndn.bv_val )
|
|
|
|
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 09:10:52 +08:00
|
|
|
|
|
|
|
if ( p_ndn.bv_len != 0 ) {
|
1999-07-16 10:45:46 +08:00
|
|
|
/* Make sure parent entry exist and we can write its
|
1999-03-25 05:45:15 +08:00
|
|
|
* children.
|
|
|
|
*/
|
|
|
|
|
2001-12-27 09:10:52 +08:00
|
|
|
if( (p = dn2entry_w( be, p_ndn.bv_val, NULL )) == NULL) {
|
2001-01-18 01:01:19 +08:00
|
|
|
#ifdef NEW_LOGGING
|
|
|
|
LDAP_LOG(( "backend", LDAP_LEVEL_INFO,
|
2001-10-26 10:05:14 +08:00
|
|
|
"ldbm_back_modrdn: parent of %s does not exist\n", e->e_ndn ));
|
2001-01-18 01:01:19 +08:00
|
|
|
#else
|
1999-01-07 10:51:08 +08:00
|
|
|
Debug( LDAP_DEBUG_TRACE, "parent does not exist\n",
|
|
|
|
0, 0, 0);
|
2001-01-18 01:01:19 +08:00
|
|
|
#endif
|
|
|
|
|
2000-03-04 06:37:06 +08:00
|
|
|
send_ldap_result( conn, op, LDAP_OTHER,
|
2001-06-07 08:19:23 +08:00
|
|
|
NULL, "parent entry does not exist", NULL, NULL );
|
2001-05-19 01:10:03 +08:00
|
|
|
|
1999-01-07 10:51:08 +08:00
|
|
|
goto return_results;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* check parent for "children" acl */
|
1999-01-19 13:10:50 +08:00
|
|
|
if ( ! access_allowed( be, conn, op, p,
|
2000-02-15 04:57:34 +08:00
|
|
|
children, NULL, ACL_WRITE ) )
|
1999-01-07 10:51:08 +08:00
|
|
|
{
|
2001-01-18 01:01:19 +08:00
|
|
|
#ifdef NEW_LOGGING
|
|
|
|
LDAP_LOG(( "backend", LDAP_LEVEL_INFO,
|
|
|
|
"ldbm_back_modrdn: no access to parent of (%s)\n", e->e_dn ));
|
|
|
|
#else
|
1999-01-07 10:51:08 +08:00
|
|
|
Debug( LDAP_DEBUG_TRACE, "no access to parent\n", 0,
|
|
|
|
0, 0 );
|
2001-01-18 01:01:19 +08:00
|
|
|
#endif
|
|
|
|
|
1999-01-07 10:51:08 +08:00
|
|
|
send_ldap_result( conn, op, LDAP_INSUFFICIENT_ACCESS,
|
1999-07-16 10:45:46 +08:00
|
|
|
NULL, NULL, NULL, NULL );
|
1999-01-07 10:51:08 +08:00
|
|
|
goto return_results;
|
|
|
|
}
|
|
|
|
|
2001-01-18 01:01:19 +08:00
|
|
|
#ifdef NEW_LOGGING
|
|
|
|
LDAP_LOG(( "backend", LDAP_LEVEL_DETAIL1,
|
|
|
|
"ldbm_back_modrdn: wr to children of entry %s OK\n",
|
2001-12-27 09:10:52 +08:00
|
|
|
p_ndn.bv_val ));
|
2001-01-18 01:01:19 +08:00
|
|
|
#else
|
1999-03-25 05:45:15 +08:00
|
|
|
Debug( LDAP_DEBUG_TRACE,
|
|
|
|
"ldbm_back_modrdn: wr to children of entry %s OK\n",
|
2001-12-27 09:10:52 +08:00
|
|
|
p_ndn.bv_val, 0, 0 );
|
2001-01-18 01:01:19 +08:00
|
|
|
#endif
|
|
|
|
|
2001-12-27 09:10:52 +08:00
|
|
|
p_dn.bv_val = dn_parent( be, e->e_dn );
|
2001-12-27 09:38:15 +08:00
|
|
|
if ( p_dn.bv_val )
|
|
|
|
p_dn.bv_len = e->e_name.bv_len - (p_dn.bv_val - e->e_dn);
|
|
|
|
else
|
|
|
|
p_dn.bv_len = 0;
|
1999-03-25 05:45:15 +08:00
|
|
|
|
2001-01-18 01:01:19 +08:00
|
|
|
#ifdef NEW_LOGGING
|
|
|
|
LDAP_LOG(( "backend", LDAP_LEVEL_DETAIL1,
|
2001-12-27 09:10:52 +08:00
|
|
|
"ldbm_back_modrdn: parent dn=%s\n", p_dn.bv_val ));
|
2001-01-18 01:01:19 +08:00
|
|
|
#else
|
1999-03-25 05:45:15 +08:00
|
|
|
Debug( LDAP_DEBUG_TRACE, "ldbm_back_modrdn: parent dn=%s\n",
|
2001-12-27 09:10:52 +08:00
|
|
|
p_dn.bv_val, 0, 0 );
|
2001-01-18 01:01:19 +08:00
|
|
|
#endif
|
|
|
|
|
1998-08-09 08:43:13 +08:00
|
|
|
} else {
|
2001-11-16 20:24:22 +08:00
|
|
|
/* no parent, must be root to modify rdn */
|
2001-12-26 03:48:26 +08:00
|
|
|
isroot = be_isroot( be, &op->o_ndn );
|
|
|
|
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
|
|
|
p = (Entry *)&slap_entry_root;
|
2001-11-16 20:24:22 +08:00
|
|
|
|
|
|
|
rc = access_allowed( be, conn, op, p,
|
|
|
|
children, NULL, ACL_WRITE );
|
|
|
|
p = NULL;
|
|
|
|
|
|
|
|
/* check parent for "children" acl */
|
|
|
|
if ( ! rc ) {
|
2001-01-18 01:01:19 +08:00
|
|
|
#ifdef NEW_LOGGING
|
2001-11-16 20:24:22 +08:00
|
|
|
LDAP_LOG(( "backend", LDAP_LEVEL_ERR,
|
|
|
|
"ldbm_back_modrdn: no access "
|
2001-11-16 22:04:54 +08:00
|
|
|
"to parent \"\"\n" ));
|
2001-01-18 01:01:19 +08:00
|
|
|
#else
|
2001-11-16 20:24:22 +08:00
|
|
|
Debug( LDAP_DEBUG_TRACE,
|
|
|
|
"<=- ldbm_back_modrdn: no "
|
|
|
|
"access to parent\n", 0, 0, 0 );
|
2001-01-18 01:01:19 +08:00
|
|
|
#endif
|
|
|
|
|
2001-11-16 20:24:22 +08:00
|
|
|
send_ldap_result( conn, op,
|
|
|
|
LDAP_INSUFFICIENT_ACCESS,
|
|
|
|
NULL, NULL, NULL, NULL );
|
|
|
|
goto return_results;
|
|
|
|
}
|
|
|
|
|
|
|
|
} else {
|
|
|
|
#ifdef NEW_LOGGING
|
|
|
|
LDAP_LOG(( "backend", LDAP_LEVEL_ERR,
|
|
|
|
"ldbm_back_modrdn: (%s) has no "
|
|
|
|
"parent & not a root.\n", dn ));
|
|
|
|
#else
|
|
|
|
Debug( LDAP_DEBUG_TRACE,
|
|
|
|
"<=- ldbm_back_modrdn: no parent & "
|
|
|
|
"not root\n", 0, 0, 0);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
send_ldap_result( conn, op,
|
|
|
|
LDAP_INSUFFICIENT_ACCESS,
|
|
|
|
NULL, NULL, NULL, NULL );
|
|
|
|
goto return_results;
|
|
|
|
}
|
1999-01-07 10:51:08 +08:00
|
|
|
}
|
|
|
|
|
1999-01-28 12:34:55 +08:00
|
|
|
ldap_pvt_thread_mutex_lock(&li->li_root_mutex);
|
1999-01-07 10:51:08 +08:00
|
|
|
rootlock = 1;
|
1999-03-25 05:45:15 +08:00
|
|
|
|
2001-01-18 01:01:19 +08:00
|
|
|
#ifdef NEW_LOGGING
|
|
|
|
LDAP_LOG(( "backend", LDAP_LEVEL_INFO,
|
|
|
|
"ldbm_back_modrdn: (%s) no parent, locked root.\n", e->e_dn ));
|
|
|
|
#else
|
1999-03-25 05:45:15 +08:00
|
|
|
Debug( LDAP_DEBUG_TRACE,
|
|
|
|
"ldbm_back_modrdn: no parent, locked root\n",
|
|
|
|
0, 0, 0 );
|
2001-01-18 01:01:19 +08:00
|
|
|
#endif
|
1999-07-22 11:42:02 +08:00
|
|
|
}
|
1999-03-25 05:45:15 +08:00
|
|
|
|
2001-12-27 09:10:52 +08:00
|
|
|
new_parent_dn = &p_dn; /* New Parent unless newSuperior given */
|
1999-03-25 05:45:15 +08:00
|
|
|
|
2000-05-22 11:46:57 +08:00
|
|
|
if ( newSuperior != NULL ) {
|
2001-01-18 01:01:19 +08:00
|
|
|
#ifdef NEW_LOGGING
|
|
|
|
LDAP_LOG(( "backend", LDAP_LEVEL_DETAIL1,
|
2001-12-27 07:03:36 +08:00
|
|
|
"ldbm_back_modrdn: new parent \"%s\" requested\n",
|
|
|
|
newSuperior->bv_val ));
|
2001-01-18 01:01:19 +08:00
|
|
|
#else
|
1999-03-25 05:45:15 +08:00
|
|
|
Debug( LDAP_DEBUG_TRACE,
|
2000-05-22 11:46:57 +08:00
|
|
|
"ldbm_back_modrdn: new parent \"%s\" requested...\n",
|
2001-12-27 07:03:36 +08:00
|
|
|
newSuperior->bv_val, 0, 0 );
|
2001-01-18 01:01:19 +08:00
|
|
|
#endif
|
|
|
|
|
2001-12-27 09:10:52 +08:00
|
|
|
np_dn = newSuperior;
|
|
|
|
np_ndn = nnewSuperior;
|
1999-03-25 05:45:15 +08:00
|
|
|
|
2001-01-09 23:49:44 +08:00
|
|
|
/* newSuperior == oldParent? */
|
2001-12-27 09:10:52 +08:00
|
|
|
if ( p_ndn.bv_len == np_ndn->bv_len &&
|
|
|
|
strcmp( p_ndn.bv_val, np_ndn->bv_val ) == 0 ) {
|
2001-01-18 01:01:19 +08:00
|
|
|
#ifdef NEW_LOGGING
|
2001-12-27 07:03:36 +08:00
|
|
|
LDAP_LOG(( "backend", LDAP_LEVEL_INFO, "ldbm_back_modrdn: "
|
|
|
|
"new parent\"%s\" seems to be the same as the "
|
|
|
|
"old parent \"%s\"\n",
|
2001-12-27 09:10:52 +08:00
|
|
|
newSuperior->bv_val, p_dn.bv_val ));
|
2001-01-18 01:01:19 +08:00
|
|
|
#else
|
2001-12-27 07:03:36 +08:00
|
|
|
Debug( LDAP_DEBUG_TRACE, "ldbm_back_modrdn: "
|
|
|
|
"new parent\"%s\" seems to be the same as the "
|
|
|
|
"old parent \"%s\"\n",
|
2001-12-27 09:10:52 +08:00
|
|
|
newSuperior->bv_val, p_dn.bv_val, 0 );
|
2001-01-18 01:01:19 +08:00
|
|
|
#endif
|
|
|
|
|
2001-01-09 23:49:44 +08:00
|
|
|
newSuperior = NULL; /* ignore newSuperior */
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( newSuperior != NULL ) {
|
1999-03-25 05:45:15 +08:00
|
|
|
/* newSuperior == entry being moved?, if so ==> ERROR */
|
|
|
|
/* Get Entry with dn=newSuperior. Does newSuperior exist? */
|
|
|
|
|
2001-12-27 03:50:40 +08:00
|
|
|
if ( nnewSuperior->bv_len ) {
|
2001-12-27 09:10:52 +08:00
|
|
|
if( (np = dn2entry_w( be, np_ndn->bv_val, NULL )) == NULL) {
|
2001-01-18 01:01:19 +08:00
|
|
|
#ifdef NEW_LOGGING
|
2001-11-16 22:04:54 +08:00
|
|
|
LDAP_LOG(( "backend", LDAP_LEVEL_ERR,
|
2001-12-27 09:10:52 +08:00
|
|
|
"ldbm_back_modrdn: newSup(ndn=%s) not found.\n", np_ndn->bv_val ));
|
2001-01-18 01:01:19 +08:00
|
|
|
#else
|
2001-11-16 22:04:54 +08:00
|
|
|
Debug( LDAP_DEBUG_TRACE,
|
2001-12-27 07:03:36 +08:00
|
|
|
"ldbm_back_modrdn: newSup(ndn=%s) not here!\n",
|
2001-12-27 09:10:52 +08:00
|
|
|
np_ndn->bv_val, 0, 0);
|
2001-01-18 01:01:19 +08:00
|
|
|
#endif
|
|
|
|
|
2001-11-16 22:04:54 +08:00
|
|
|
send_ldap_result( conn, op, LDAP_OTHER,
|
|
|
|
NULL, "newSuperior not found", NULL, NULL );
|
|
|
|
goto return_results;
|
|
|
|
}
|
1999-03-25 05:45:15 +08:00
|
|
|
|
2001-01-18 01:01:19 +08:00
|
|
|
#ifdef NEW_LOGGING
|
2001-11-16 22:04:54 +08:00
|
|
|
LDAP_LOG(( "backend", LDAP_LEVEL_DETAIL1,
|
2001-12-27 07:03:36 +08:00
|
|
|
"ldbm_back_modrdn: wr to new parent OK np=%p, id=%ld\n",
|
|
|
|
np, np->e_id ));
|
2001-01-18 01:01:19 +08:00
|
|
|
#else
|
2001-11-16 22:04:54 +08:00
|
|
|
Debug( LDAP_DEBUG_TRACE,
|
2001-12-27 07:03:36 +08:00
|
|
|
"ldbm_back_modrdn: wr to new parent OK np=%p, id=%ld\n",
|
|
|
|
np, np->e_id, 0 );
|
2001-01-18 01:01:19 +08:00
|
|
|
#endif
|
|
|
|
|
2001-11-16 22:04:54 +08:00
|
|
|
/* check newSuperior for "children" acl */
|
|
|
|
if ( !access_allowed( be, conn, op, np, children, NULL,
|
|
|
|
ACL_WRITE ) )
|
|
|
|
{
|
2001-01-18 01:01:19 +08:00
|
|
|
#ifdef NEW_LOGGING
|
2001-11-16 22:04:54 +08:00
|
|
|
LDAP_LOG(( "backend", LDAP_LEVEL_INFO,
|
|
|
|
"ldbm_back_modrdn: no wr to newSup children.\n" ));
|
2001-01-18 01:01:19 +08:00
|
|
|
#else
|
2001-11-16 22:04:54 +08:00
|
|
|
Debug( LDAP_DEBUG_TRACE,
|
|
|
|
"ldbm_back_modrdn: no wr to newSup children\n",
|
|
|
|
0, 0, 0 );
|
2001-01-18 01:01:19 +08:00
|
|
|
#endif
|
|
|
|
|
2001-11-16 22:04:54 +08:00
|
|
|
send_ldap_result( conn, op, LDAP_INSUFFICIENT_ACCESS,
|
|
|
|
NULL, NULL, NULL, NULL );
|
|
|
|
goto return_results;
|
|
|
|
}
|
1999-07-16 10:45:46 +08:00
|
|
|
|
2001-11-16 22:04:54 +08:00
|
|
|
if ( is_entry_alias( np ) ) {
|
|
|
|
/* parent is an alias, don't allow add */
|
2001-01-18 01:01:19 +08:00
|
|
|
#ifdef NEW_LOGGING
|
2001-11-16 22:04:54 +08:00
|
|
|
LDAP_LOG(( "backend", LDAP_LEVEL_INFO,
|
|
|
|
"ldbm_back_modrdn: entry (%s) is an alias.\n", np->e_dn ));
|
2001-01-18 01:01:19 +08:00
|
|
|
#else
|
2001-11-16 22:04:54 +08:00
|
|
|
Debug( LDAP_DEBUG_TRACE, "entry is alias\n", 0, 0, 0 );
|
2001-01-18 01:01:19 +08:00
|
|
|
#endif
|
|
|
|
|
1999-07-16 10:45:46 +08:00
|
|
|
|
2001-11-16 22:04:54 +08:00
|
|
|
send_ldap_result( conn, op, LDAP_ALIAS_PROBLEM,
|
|
|
|
NULL, "newSuperior is an alias", NULL, NULL );
|
1999-07-16 10:45:46 +08:00
|
|
|
|
2001-11-16 22:04:54 +08:00
|
|
|
goto return_results;
|
|
|
|
}
|
1999-07-16 10:45:46 +08:00
|
|
|
|
2001-11-16 22:04:54 +08:00
|
|
|
if ( is_entry_referral( np ) ) {
|
|
|
|
/* parent is a referral, don't allow add */
|
2001-01-18 01:01:19 +08:00
|
|
|
#ifdef NEW_LOGGING
|
2001-11-16 22:04:54 +08:00
|
|
|
LDAP_LOG(( "backend", LDAP_LEVEL_INFO,
|
|
|
|
"ldbm_back_modrdn: entry (%s) is a referral\n",
|
2001-10-26 10:05:14 +08:00
|
|
|
np->e_dn ));
|
2001-01-18 01:01:19 +08:00
|
|
|
#else
|
2001-11-16 22:04:54 +08:00
|
|
|
Debug( LDAP_DEBUG_TRACE, "entry (%s) is referral\n",
|
|
|
|
np->e_dn, 0, 0 );
|
2001-01-18 01:01:19 +08:00
|
|
|
#endif
|
|
|
|
|
2001-11-16 22:04:54 +08:00
|
|
|
send_ldap_result( conn, op, LDAP_OPERATIONS_ERROR,
|
|
|
|
NULL, "newSuperior is a referral", NULL, NULL );
|
1999-07-16 10:45:46 +08:00
|
|
|
|
2001-11-16 22:04:54 +08:00
|
|
|
goto return_results;
|
|
|
|
}
|
|
|
|
|
|
|
|
} else {
|
|
|
|
|
|
|
|
/* no parent, must be root to modify newSuperior */
|
|
|
|
if ( isroot == -1 ) {
|
2001-12-26 03:48:26 +08:00
|
|
|
isroot = be_isroot( be, &op->o_ndn );
|
2001-11-16 22:04:54 +08:00
|
|
|
}
|
|
|
|
|
2001-12-26 03:48:26 +08:00
|
|
|
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 22:04:54 +08:00
|
|
|
|
|
|
|
rc = access_allowed( be, conn, op, np,
|
|
|
|
children, NULL, ACL_WRITE );
|
|
|
|
np = NULL;
|
|
|
|
|
|
|
|
/* check parent for "children" acl */
|
|
|
|
if ( ! rc ) {
|
|
|
|
#ifdef NEW_LOGGING
|
|
|
|
LDAP_LOG(( "backend", LDAP_LEVEL_ERR,
|
|
|
|
"ldbm_back_modrdn: no access "
|
|
|
|
"to new superior \"\"\n" ));
|
|
|
|
#else
|
|
|
|
Debug( LDAP_DEBUG_TRACE,
|
|
|
|
"<=- ldbm_back_modrdn: no "
|
|
|
|
"access to new superior\n", 0, 0, 0 );
|
|
|
|
#endif
|
|
|
|
|
|
|
|
send_ldap_result( conn, op,
|
|
|
|
LDAP_INSUFFICIENT_ACCESS,
|
|
|
|
NULL, NULL, NULL, NULL );
|
|
|
|
goto return_results;
|
|
|
|
}
|
|
|
|
|
|
|
|
} else {
|
|
|
|
#ifdef NEW_LOGGING
|
|
|
|
LDAP_LOG(( "backend", LDAP_LEVEL_ERR,
|
|
|
|
"ldbm_back_modrdn: \"\" "
|
|
|
|
"not allowed as new superior\n" ));
|
|
|
|
#else
|
|
|
|
Debug( LDAP_DEBUG_TRACE,
|
|
|
|
"<=- ldbm_back_modrdn: \"\" "
|
|
|
|
"not allowed as new superior\n",
|
|
|
|
0, 0, 0);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
send_ldap_result( conn, op,
|
|
|
|
LDAP_INSUFFICIENT_ACCESS,
|
|
|
|
NULL, NULL, NULL, NULL );
|
|
|
|
goto return_results;
|
|
|
|
}
|
|
|
|
}
|
1999-03-25 05:45:15 +08:00
|
|
|
}
|
|
|
|
|
2001-01-18 01:01:19 +08:00
|
|
|
#ifdef NEW_LOGGING
|
|
|
|
LDAP_LOG(( "backend", LDAP_LEVEL_DETAIL1,
|
2001-10-26 10:05:14 +08:00
|
|
|
"ldbm_back_modrdn: wr to new parent's children OK.\n" ));
|
2001-01-18 01:01:19 +08:00
|
|
|
#else
|
1999-03-25 05:45:15 +08:00
|
|
|
Debug( LDAP_DEBUG_TRACE,
|
2001-10-26 10:05:14 +08:00
|
|
|
"ldbm_back_modrdn: wr to new parent's children OK\n",
|
|
|
|
0, 0, 0 );
|
2001-01-18 01:01:19 +08:00
|
|
|
#endif
|
|
|
|
|
1999-03-25 05:45:15 +08:00
|
|
|
new_parent_dn = np_dn;
|
1998-08-09 08:43:13 +08:00
|
|
|
}
|
1999-03-25 05:45:15 +08:00
|
|
|
|
|
|
|
/* Build target dn and make sure target entry doesn't exist already. */
|
2001-12-27 09:10:52 +08:00
|
|
|
build_new_dn( &new_dn, new_parent_dn, newrdn );
|
|
|
|
dnNormalize( NULL, &new_dn, &new_ndn );
|
1999-03-25 05:45:15 +08:00
|
|
|
|
2001-01-18 01:01:19 +08:00
|
|
|
#ifdef NEW_LOGGING
|
|
|
|
LDAP_LOG(( "backend", LDAP_LEVEL_DETAIL1,
|
2001-12-27 09:10:52 +08:00
|
|
|
"ldbm_back_modrdn: new ndn=%s\n", new_ndn->bv_val ));
|
2001-01-18 01:01:19 +08:00
|
|
|
#else
|
1999-03-25 05:45:15 +08:00
|
|
|
Debug( LDAP_DEBUG_TRACE, "ldbm_back_modrdn: new ndn=%s\n",
|
2001-12-27 09:10:52 +08:00
|
|
|
new_ndn->bv_val, 0, 0 );
|
2001-01-18 01:01:19 +08:00
|
|
|
#endif
|
|
|
|
|
1999-08-27 05:00:22 +08:00
|
|
|
/* 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 );
|
2001-12-27 09:10:52 +08:00
|
|
|
if ( ( rc_id = dn2id ( be, new_ndn->bv_val, &id ) ) || id != NOID ) {
|
2001-07-03 03:42:27 +08:00
|
|
|
/* if (rc_id) something bad happened to ldbm cache */
|
|
|
|
send_ldap_result( conn, op,
|
|
|
|
rc_id ? LDAP_OPERATIONS_ERROR : LDAP_ALREADY_EXISTS,
|
1999-07-16 10:45:46 +08:00
|
|
|
NULL, NULL, NULL, NULL );
|
1999-01-07 10:51:08 +08:00
|
|
|
goto return_results;
|
1998-08-09 08:43:13 +08:00
|
|
|
}
|
|
|
|
|
2001-01-18 01:01:19 +08:00
|
|
|
#ifdef NEW_LOGGING
|
|
|
|
LDAP_LOG(( "backend", LDAP_LEVEL_INFO,
|
2001-12-27 03:50:40 +08:00
|
|
|
"ldbm_back_modrdn: new ndn (%s) does not exist\n", new_ndn ));
|
2001-01-18 01:01:19 +08:00
|
|
|
#else
|
1999-03-25 05:45:15 +08:00
|
|
|
Debug( LDAP_DEBUG_TRACE,
|
2001-12-27 03:50:40 +08:00
|
|
|
"ldbm_back_modrdn: new ndn=%s does not exist\n",
|
|
|
|
new_ndn, 0, 0 );
|
2001-01-18 01:01:19 +08:00
|
|
|
#endif
|
|
|
|
|
2001-07-06 20:24:34 +08:00
|
|
|
|
|
|
|
/* Get attribute types and values of our new rdn, we will
|
|
|
|
* need to add that to our new entry
|
|
|
|
*/
|
2001-12-27 03:50:40 +08:00
|
|
|
if ( rdn_attrs( newrdn->bv_val, &new_rdn_types, &new_rdn_vals ) ) {
|
2001-07-06 20:24:34 +08:00
|
|
|
#ifdef NEW_LOGGING
|
|
|
|
LDAP_LOG(( "backend", LDAP_LEVEL_INFO,
|
2001-12-27 03:50:40 +08:00
|
|
|
"ldbm_back_modrdn: can't figure out type(s)/value(s) of newrdn\n" ));
|
2001-07-06 20:24:34 +08:00
|
|
|
#else
|
|
|
|
Debug( LDAP_DEBUG_TRACE,
|
2001-12-27 03:50:40 +08:00
|
|
|
"ldbm_back_modrdn: can't figure out type(s)/value(s) of newrdn\n",
|
|
|
|
0, 0, 0 );
|
2001-07-06 20:24:34 +08:00
|
|
|
#endif
|
|
|
|
|
|
|
|
send_ldap_result( conn, op, LDAP_OPERATIONS_ERROR,
|
|
|
|
NULL, "unable to parse type(s)/value(s) used in RDN", NULL, NULL );
|
|
|
|
goto return_results;
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef NEW_LOGGING
|
|
|
|
LDAP_LOG(( "backend", LDAP_LEVEL_DETAIL1,
|
|
|
|
"ldbm_back_modrdn: new_rdn_val=\"%s\", new_rdn_type=\"%s\"\n",
|
|
|
|
new_rdn_vals[0], new_rdn_types[0] ));
|
|
|
|
#else
|
|
|
|
Debug( LDAP_DEBUG_TRACE,
|
|
|
|
"ldbm_back_modrdn: new_rdn_val=\"%s\", new_rdn_type=\"%s\"\n",
|
|
|
|
new_rdn_vals[0], new_rdn_types[0], 0 );
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* Retrieve the old rdn from the entry's dn */
|
2001-12-28 16:38:24 +08:00
|
|
|
if ( (old_rdn = dn_rdn( be, dn )) == NULL ) {
|
2001-07-06 20:24:34 +08:00
|
|
|
#ifdef NEW_LOGGING
|
|
|
|
LDAP_LOG(( "backend", LDAP_LEVEL_INFO,
|
|
|
|
"ldbm_back_modrdn: can't figure out old_rdn from dn (%s)\n",
|
2001-12-27 03:50:40 +08:00
|
|
|
dn->bv_val ));
|
2001-07-06 20:24:34 +08:00
|
|
|
#else
|
|
|
|
Debug( LDAP_DEBUG_TRACE,
|
|
|
|
"ldbm_back_modrdn: can't figure out old_rdn from dn\n",
|
|
|
|
0, 0, 0 );
|
|
|
|
#endif
|
|
|
|
|
|
|
|
send_ldap_result( conn, op, LDAP_OTHER,
|
|
|
|
NULL, "could not parse old DN", NULL, NULL );
|
|
|
|
goto return_results;
|
|
|
|
}
|
|
|
|
|
2001-07-11 02:19:22 +08:00
|
|
|
if ( rdn_attrs( old_rdn, &old_rdn_types, &old_rdn_vals ) ) {
|
2001-07-06 20:24:34 +08:00
|
|
|
#ifdef NEW_LOGGING
|
|
|
|
LDAP_LOG(( "backend", LDAP_LEVEL_INFO,
|
|
|
|
"ldbm_back_modrdn: can't figure out the old_rdn type(s)/value(s).\n" ));
|
|
|
|
#else
|
|
|
|
Debug( LDAP_DEBUG_TRACE,
|
|
|
|
"ldbm_back_modrdn: can't figure out the old_rdn type(s)/value(s)\n",
|
|
|
|
0, 0, 0 );
|
|
|
|
#endif
|
|
|
|
|
|
|
|
send_ldap_result( conn, op, LDAP_OTHER,
|
|
|
|
NULL, "unable to parse type(s)/value(s) used in RDN from old DN", NULL, NULL );
|
|
|
|
goto return_results;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( newSuperior == NULL
|
|
|
|
&& charray_strcasecmp( (const char **)old_rdn_types, (const char **)new_rdn_types ) != 0 )
|
|
|
|
{
|
|
|
|
/* Not a big deal but we may say something */
|
|
|
|
#ifdef NEW_LOGGING
|
|
|
|
LDAP_LOG(( "backend", LDAP_LEVEL_INFO,
|
|
|
|
"ldbm_back_modrdn: old_rdn_type=%s new_rdn_type=%s\n",
|
|
|
|
old_rdn_types[0], new_rdn_types[0] ));
|
|
|
|
#else
|
|
|
|
Debug( LDAP_DEBUG_TRACE,
|
|
|
|
"ldbm_back_modrdn: old_rdn_type=%s, new_rdn_type=%s!\n",
|
|
|
|
old_rdn_types[0], new_rdn_types[0], 0 );
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef NEW_LOGGING
|
|
|
|
LDAP_LOG(( "backend", LDAP_LEVEL_DETAIL1,
|
|
|
|
"ldbm_back_modrdn: DN_X500\n" ));
|
|
|
|
#else
|
|
|
|
Debug( LDAP_DEBUG_TRACE, "ldbm_back_modrdn: DN_X500\n",
|
|
|
|
0, 0, 0 );
|
|
|
|
#endif
|
|
|
|
|
|
|
|
mod = NULL;
|
|
|
|
for ( a_cnt = 0; new_rdn_types[a_cnt]; a_cnt++ ) {
|
2001-10-02 18:36:35 +08:00
|
|
|
int rc;
|
|
|
|
AttributeDescription *desc = NULL;
|
|
|
|
Modifications *mod_tmp;
|
|
|
|
struct berval val;
|
2001-07-06 20:24:34 +08:00
|
|
|
|
|
|
|
|
2001-10-02 18:36:35 +08:00
|
|
|
rc = slap_str2ad( new_rdn_types[a_cnt], &desc, &text );
|
2001-07-06 20:24:34 +08:00
|
|
|
|
|
|
|
if ( rc != LDAP_SUCCESS ) {
|
|
|
|
#ifdef NEW_LOGGING
|
|
|
|
LDAP_LOG(( "backend", LDAP_LEVEL_INFO,
|
|
|
|
"ldbm_back_modrdn: slap_str2ad error: %s (%s)\n",
|
|
|
|
text, new_rdn_types[a_cnt] ));
|
|
|
|
#else
|
|
|
|
Debug( LDAP_DEBUG_TRACE,
|
|
|
|
"ldbm_back_modrdn: %s: %s (new)\n",
|
|
|
|
text, new_rdn_types[a_cnt], 0 );
|
|
|
|
#endif
|
|
|
|
|
|
|
|
send_ldap_result( conn, op, rc,
|
|
|
|
NULL, text, NULL, NULL );
|
|
|
|
|
|
|
|
goto return_results;
|
|
|
|
}
|
|
|
|
|
2001-07-31 18:02:19 +08:00
|
|
|
val.bv_val = new_rdn_vals[a_cnt];
|
|
|
|
val.bv_len = strlen( val.bv_val );
|
2001-11-13 01:32:52 +08:00
|
|
|
if ( ! access_allowed( be, conn, op, e,
|
2001-10-02 18:36:35 +08:00
|
|
|
desc, &val, ACL_WRITE ) ) {
|
2001-07-31 18:02:19 +08:00
|
|
|
#ifdef NEW_LOGGING
|
|
|
|
LDAP_LOG(( "backend", LDAP_LEVEL_INFO,
|
|
|
|
"ldbm_back_modrdn: access "
|
|
|
|
"not allowed to attr \"%s\"\n",
|
|
|
|
new_rdn_types[a_cnt] ));
|
|
|
|
#else
|
|
|
|
Debug( LDAP_DEBUG_TRACE,
|
|
|
|
"ldbm_back_modrdn: access not allowed "
|
|
|
|
"to attr \"%s\"\n%s%s",
|
|
|
|
new_rdn_types[a_cnt], "", "" );
|
|
|
|
#endif
|
|
|
|
send_ldap_result( conn, op,
|
|
|
|
LDAP_INSUFFICIENT_ACCESS,
|
|
|
|
NULL, NULL, NULL, NULL );
|
|
|
|
|
|
|
|
goto return_results;
|
|
|
|
}
|
|
|
|
|
2001-10-02 18:36:35 +08:00
|
|
|
mod_tmp = (Modifications *)ch_malloc( sizeof( Modifications ) );
|
|
|
|
mod_tmp->sml_desc = desc;
|
2001-07-06 20:24:34 +08:00
|
|
|
mod_tmp->sml_bvalues = (struct berval **)ch_malloc( 2 * sizeof(struct berval *) );
|
|
|
|
mod_tmp->sml_bvalues[0] = ber_bvstrdup( new_rdn_vals[a_cnt] );
|
|
|
|
mod_tmp->sml_bvalues[1] = NULL;
|
|
|
|
mod_tmp->sml_op = SLAP_MOD_SOFTADD;
|
|
|
|
mod_tmp->sml_next = mod;
|
|
|
|
mod = mod_tmp;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Remove old rdn value if required */
|
|
|
|
if ( deleteoldrdn ) {
|
|
|
|
/* Get value of old rdn */
|
|
|
|
if ( old_rdn_vals == NULL ) {
|
|
|
|
#ifdef NEW_LOGGING
|
|
|
|
LDAP_LOG(( "backend", LDAP_LEVEL_INFO,
|
|
|
|
"ldbm_back_modrdn: can't figure out old RDN value(s) from old RDN\n" ));
|
|
|
|
#else
|
|
|
|
Debug( LDAP_DEBUG_TRACE,
|
|
|
|
"ldbm_back_modrdn: can't figure out oldRDN value(s) from old RDN\n",
|
|
|
|
0, 0, 0 );
|
|
|
|
#endif
|
|
|
|
|
|
|
|
send_ldap_result( conn, op, LDAP_OTHER,
|
|
|
|
NULL, "could not parse value(s) from old RDN", NULL, NULL );
|
|
|
|
goto return_results;
|
|
|
|
}
|
|
|
|
|
|
|
|
for ( d_cnt = 0; old_rdn_types[d_cnt]; d_cnt++ ) {
|
2001-10-02 18:36:35 +08:00
|
|
|
int rc;
|
|
|
|
AttributeDescription *desc = NULL;
|
|
|
|
Modifications *mod_tmp;
|
|
|
|
struct berval val;
|
2001-07-06 20:24:34 +08:00
|
|
|
|
|
|
|
|
2001-10-02 18:36:35 +08:00
|
|
|
rc = slap_str2ad( old_rdn_types[d_cnt], &desc, &text );
|
2001-07-06 20:24:34 +08:00
|
|
|
|
|
|
|
if ( rc != LDAP_SUCCESS ) {
|
|
|
|
#ifdef NEW_LOGGING
|
|
|
|
LDAP_LOG(( "backend", LDAP_LEVEL_INFO,
|
|
|
|
"ldbm_back_modrdn: %s: %s (old)\n",
|
|
|
|
text, old_rdn_types[d_cnt] ));
|
|
|
|
#else
|
|
|
|
Debug( LDAP_DEBUG_TRACE,
|
|
|
|
"ldbm_back_modrdn: %s: %s (old)\n",
|
|
|
|
text, old_rdn_types[d_cnt], 0 );
|
|
|
|
#endif
|
|
|
|
|
|
|
|
send_ldap_result( conn, op, rc,
|
|
|
|
NULL, text, NULL, NULL );
|
|
|
|
|
|
|
|
goto return_results;
|
|
|
|
}
|
|
|
|
|
2001-07-31 18:54:39 +08:00
|
|
|
val.bv_val = old_rdn_vals[d_cnt];
|
2001-07-31 18:02:19 +08:00
|
|
|
val.bv_len = strlen( val.bv_val );
|
2001-11-13 01:32:52 +08:00
|
|
|
if ( ! access_allowed( be, conn, op, e,
|
2001-10-02 18:36:35 +08:00
|
|
|
desc, &val, ACL_WRITE ) ) {
|
2001-07-31 18:02:19 +08:00
|
|
|
#ifdef NEW_LOGGING
|
|
|
|
LDAP_LOG(( "backend", LDAP_LEVEL_INFO,
|
|
|
|
"ldbm_back_modrdn: access "
|
|
|
|
"not allowed to attr \"%s\"\n",
|
2001-07-31 18:54:39 +08:00
|
|
|
old_rdn_types[d_cnt] ));
|
2001-07-31 18:02:19 +08:00
|
|
|
#else
|
|
|
|
Debug( LDAP_DEBUG_TRACE,
|
|
|
|
"ldbm_back_modrdn: access not allowed "
|
|
|
|
"to attr \"%s\"\n%s%s",
|
2001-07-31 18:54:39 +08:00
|
|
|
old_rdn_types[d_cnt], "", "" );
|
2001-07-31 18:02:19 +08:00
|
|
|
#endif
|
|
|
|
send_ldap_result( conn, op,
|
|
|
|
LDAP_INSUFFICIENT_ACCESS,
|
|
|
|
NULL, NULL, NULL, NULL );
|
|
|
|
|
|
|
|
goto return_results;
|
|
|
|
}
|
|
|
|
|
2001-07-06 20:24:34 +08:00
|
|
|
/* Remove old value of rdn as an attribute. */
|
2001-10-02 18:36:35 +08:00
|
|
|
mod_tmp = (Modifications *)ch_malloc( sizeof( Modifications ) );
|
|
|
|
mod_tmp->sml_desc = desc;
|
2001-07-06 20:24:34 +08:00
|
|
|
mod_tmp->sml_bvalues = (struct berval **)ch_malloc( 2 * sizeof(struct berval *) );
|
|
|
|
mod_tmp->sml_bvalues[0] = ber_bvstrdup( old_rdn_vals[d_cnt] );
|
|
|
|
mod_tmp->sml_bvalues[1] = NULL;
|
|
|
|
mod_tmp->sml_op = LDAP_MOD_DELETE;
|
|
|
|
mod_tmp->sml_next = mod;
|
|
|
|
mod = mod_tmp;
|
|
|
|
|
|
|
|
#ifdef NEW_LOGGING
|
|
|
|
LDAP_LOG(( "backend", LDAP_LEVEL_DETAIL1,
|
|
|
|
"ldbm_back_modrdn: removing old_rdn_val=%s\n", old_rdn_vals[0] ));
|
|
|
|
#else
|
|
|
|
Debug( LDAP_DEBUG_TRACE,
|
|
|
|
"ldbm_back_modrdn: removing old_rdn_val=%s\n",
|
|
|
|
old_rdn_vals[0], 0, 0 );
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
1999-03-07 17:31:54 +08:00
|
|
|
|
1999-08-27 03:12:15 +08:00
|
|
|
/* 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 );
|
|
|
|
|
1999-08-26 09:33:57 +08:00
|
|
|
/* delete old one */
|
|
|
|
if ( dn2id_delete( be, e->e_ndn, e->e_id ) != 0 ) {
|
2000-03-04 06:37:06 +08:00
|
|
|
send_ldap_result( conn, op, LDAP_OTHER,
|
2000-04-25 21:06:22 +08:00
|
|
|
NULL, "DN index delete fail", NULL, NULL );
|
1999-08-26 09:33:57 +08:00
|
|
|
goto return_results;
|
|
|
|
}
|
|
|
|
|
|
|
|
(void) cache_delete_entry( &li->li_cache, e );
|
2001-07-31 04:12:34 +08:00
|
|
|
rc = MUST_DESTROY;
|
1999-08-27 03:12:15 +08:00
|
|
|
|
|
|
|
/* XXX: there is no going back! */
|
|
|
|
|
1999-08-26 09:33:57 +08:00
|
|
|
free( e->e_dn );
|
|
|
|
free( e->e_ndn );
|
2001-12-27 09:10:52 +08:00
|
|
|
e->e_name = new_dn;
|
|
|
|
e->e_nname = *new_ndn;
|
|
|
|
new_dn.bv_val = NULL;
|
1999-08-27 03:12:15 +08:00
|
|
|
new_ndn = NULL;
|
1999-08-26 09:33:57 +08:00
|
|
|
|
|
|
|
/* add new one */
|
|
|
|
if ( dn2id_add( be, e->e_ndn, e->e_id ) != 0 ) {
|
2000-03-04 06:37:06 +08:00
|
|
|
send_ldap_result( conn, op, LDAP_OTHER,
|
2000-04-25 21:06:22 +08:00
|
|
|
NULL, "DN index add failed", NULL, NULL );
|
1999-08-26 09:33:57 +08:00
|
|
|
goto return_results;
|
|
|
|
}
|
|
|
|
|
1999-05-20 02:27:25 +08:00
|
|
|
/* modify memory copy of entry */
|
2001-12-27 03:50:40 +08:00
|
|
|
rc = ldbm_modify_internal( be, conn, op, dn->bv_val, &mod[0], e,
|
2001-06-06 08:23:56 +08:00
|
|
|
&text, textbuf, textlen );
|
1999-12-08 12:37:59 +08:00
|
|
|
|
|
|
|
if( rc != LDAP_SUCCESS ) {
|
|
|
|
if( rc != SLAPD_ABANDON ) {
|
|
|
|
send_ldap_result( conn, op, rc,
|
2000-05-29 04:44:08 +08:00
|
|
|
NULL, text, NULL, NULL );
|
1999-12-08 12:37:59 +08:00
|
|
|
}
|
2001-07-31 18:54:39 +08:00
|
|
|
|
|
|
|
/* here we may try to delete the newly added dn */
|
|
|
|
if ( dn2id_delete( be, e->e_ndn, e->e_id ) != 0 ) {
|
|
|
|
/* we already are in trouble ... */
|
|
|
|
;
|
|
|
|
}
|
1999-05-20 02:27:25 +08:00
|
|
|
|
2001-07-31 18:54:39 +08:00
|
|
|
goto return_results;
|
1999-05-20 02:27:25 +08:00
|
|
|
}
|
|
|
|
|
1999-03-07 17:31:54 +08:00
|
|
|
(void) cache_update_entry( &li->li_cache, e );
|
|
|
|
|
1999-05-19 12:00:58 +08:00
|
|
|
/* NOTE: after this you must not free new_dn or new_ndn!
|
|
|
|
* They are used by cache.
|
|
|
|
*/
|
|
|
|
|
1998-08-09 08:43:13 +08:00
|
|
|
/* id2entry index */
|
|
|
|
if ( id2entry_add( be, e ) != 0 ) {
|
2000-03-04 06:37:06 +08:00
|
|
|
send_ldap_result( conn, op, LDAP_OTHER,
|
2000-04-25 21:06:22 +08:00
|
|
|
NULL, "entry update failed", NULL, NULL );
|
1999-08-27 03:12:15 +08:00
|
|
|
goto return_results;
|
1998-08-09 08:43:13 +08:00
|
|
|
}
|
1998-09-21 04:22:46 +08:00
|
|
|
|
1999-07-16 10:45:46 +08:00
|
|
|
send_ldap_result( conn, op, LDAP_SUCCESS,
|
|
|
|
NULL, NULL, NULL, NULL );
|
1999-01-07 10:51:08 +08:00
|
|
|
rc = 0;
|
2001-07-21 18:53:06 +08:00
|
|
|
cache_entry_commit( e );
|
1999-01-07 10:51:08 +08:00
|
|
|
|
|
|
|
return_results:
|
2001-12-27 09:10:52 +08:00
|
|
|
if( new_dn.bv_val != NULL ) free( new_dn.bv_val );
|
|
|
|
if( new_ndn != NULL ) ber_bvfree( new_ndn );
|
1999-07-22 11:42:02 +08:00
|
|
|
|
1999-03-07 17:31:54 +08:00
|
|
|
/* LDAP v2 supporting correct attribute handling. */
|
2001-07-06 20:24:34 +08:00
|
|
|
if( new_rdn_types != NULL ) charray_free( new_rdn_types );
|
|
|
|
if( new_rdn_vals != NULL ) charray_free( new_rdn_vals );
|
1999-03-07 17:31:54 +08:00
|
|
|
if( old_rdn != NULL ) free(old_rdn);
|
2001-07-06 20:24:34 +08:00
|
|
|
if( old_rdn_types != NULL ) charray_free( old_rdn_types );
|
|
|
|
if( old_rdn_vals != NULL ) charray_free( old_rdn_vals );
|
|
|
|
|
|
|
|
if ( mod != NULL ) {
|
|
|
|
slap_mods_free( mod );
|
|
|
|
}
|
1999-03-07 17:31:54 +08:00
|
|
|
|
1999-03-25 05:45:15 +08:00
|
|
|
/* LDAP v3 Support */
|
1999-07-22 11:42:02 +08:00
|
|
|
if( np != NULL ) {
|
|
|
|
/* free new parent and writer lock */
|
|
|
|
cache_return_entry_w( &li->li_cache, np );
|
|
|
|
}
|
|
|
|
|
1999-01-07 10:51:08 +08:00
|
|
|
if( p != NULL ) {
|
|
|
|
/* free parent and writer lock */
|
|
|
|
cache_return_entry_w( &li->li_cache, p );
|
1999-01-22 06:20:03 +08:00
|
|
|
}
|
1999-01-07 10:51:08 +08:00
|
|
|
|
1999-01-22 06:20:03 +08:00
|
|
|
if ( rootlock ) {
|
1999-01-07 10:51:08 +08:00
|
|
|
/* release root writer lock */
|
1999-01-28 12:34:55 +08:00
|
|
|
ldap_pvt_thread_mutex_unlock(&li->li_root_mutex);
|
1999-01-07 10:51:08 +08:00
|
|
|
}
|
1998-09-21 04:22:46 +08:00
|
|
|
|
|
|
|
/* free entry and writer lock */
|
|
|
|
cache_return_entry_w( &li->li_cache, e );
|
2001-07-30 22:54:02 +08:00
|
|
|
if ( rc == MUST_DESTROY ) {
|
|
|
|
/* if rc == MUST_DESTROY the entry is uncached
|
|
|
|
* and its private data is destroyed;
|
|
|
|
* the entry must be freed */
|
2001-07-21 18:53:06 +08:00
|
|
|
entry_free( e );
|
|
|
|
}
|
1999-01-07 10:51:08 +08:00
|
|
|
return( rc );
|
1998-08-09 08:43:13 +08:00
|
|
|
}
|