1999-09-08 15:06:24 -04:00
|
|
|
/* $OpenLDAP$ */
|
1999-08-06 19:07:46 -04:00
|
|
|
/*
|
2000-05-12 22:47:56 -04:00
|
|
|
* Copyright 1998-2000 The OpenLDAP Foundation, All Rights Reserved.
|
1999-08-06 19:07:46 -04:00
|
|
|
* COPYING RESTRICTIONS APPLY, see COPYRIGHT file
|
|
|
|
|
*/
|
1998-08-08 20:43:13 -04:00
|
|
|
/*
|
|
|
|
|
* Copyright (c) 1995 Regents of the University of Michigan.
|
|
|
|
|
* 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 the University of Michigan at Ann Arbor. The name of the University
|
|
|
|
|
* 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.
|
|
|
|
|
*/
|
|
|
|
|
|
1999-03-04 22:37:49 -05:00
|
|
|
/*
|
|
|
|
|
* LDAP v3 newSuperior support.
|
|
|
|
|
*
|
|
|
|
|
* 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-24 21:41:42 -04:00
|
|
|
#include "portable.h"
|
|
|
|
|
|
1998-08-08 20:43:13 -04:00
|
|
|
#include <stdio.h>
|
1998-10-24 21:41:42 -04:00
|
|
|
|
|
|
|
|
#include <ac/socket.h>
|
|
|
|
|
#include <ac/string.h>
|
|
|
|
|
|
1999-10-28 03:13:33 -04:00
|
|
|
#include "ldap_pvt.h"
|
1998-08-08 20:43:13 -04:00
|
|
|
#include "slap.h"
|
|
|
|
|
|
1999-07-01 17:20:45 -04:00
|
|
|
int
|
1998-08-08 20:43:13 -04:00
|
|
|
do_modrdn(
|
|
|
|
|
Connection *conn,
|
|
|
|
|
Operation *op
|
|
|
|
|
)
|
|
|
|
|
{
|
2001-12-22 16:52:58 -05:00
|
|
|
struct berval dn = { 0, NULL };
|
|
|
|
|
struct berval newrdn = { 0, NULL };
|
|
|
|
|
struct berval newSuperior = { 0, NULL };
|
1999-06-18 19:53:05 -04:00
|
|
|
ber_int_t deloldrdn;
|
2001-12-22 16:52:58 -05:00
|
|
|
|
|
|
|
|
char *ndn = NULL;
|
2001-01-17 11:35:53 -05:00
|
|
|
char *nnewSuperior = NULL;
|
2001-12-22 16:52:58 -05:00
|
|
|
|
|
|
|
|
Backend *be;
|
1999-03-04 22:37:49 -05:00
|
|
|
Backend *newSuperior_be = NULL;
|
1999-06-18 19:53:05 -04:00
|
|
|
ber_len_t length;
|
1999-07-01 17:20:45 -04:00
|
|
|
int rc;
|
2000-05-21 23:46:57 -04:00
|
|
|
const char *text;
|
2000-10-20 23:29:02 -04:00
|
|
|
int manageDSAit;
|
1998-08-08 20:43:13 -04:00
|
|
|
|
2001-01-15 14:17:29 -05:00
|
|
|
#ifdef NEW_LOGGING
|
2001-01-17 11:35:53 -05:00
|
|
|
LDAP_LOG(( "operation", LDAP_LEVEL_ENTRY,
|
2001-12-22 16:52:58 -05:00
|
|
|
"do_modrdn: begin\n" ));
|
2001-01-15 14:17:29 -05:00
|
|
|
#else
|
1998-08-08 20:43:13 -04:00
|
|
|
Debug( LDAP_DEBUG_TRACE, "do_modrdn\n", 0, 0, 0 );
|
2001-01-15 14:17:29 -05:00
|
|
|
#endif
|
|
|
|
|
|
1998-08-08 20:43:13 -04:00
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* Parse the modrdn request. It looks like this:
|
|
|
|
|
*
|
|
|
|
|
* ModifyRDNRequest := SEQUENCE {
|
|
|
|
|
* entry DistinguishedName,
|
|
|
|
|
* newrdn RelativeDistinguishedName
|
1999-03-04 22:37:49 -05:00
|
|
|
* deleteoldrdn BOOLEAN,
|
|
|
|
|
* newSuperior [0] LDAPDN OPTIONAL (v3 Only!)
|
1998-08-08 20:43:13 -04:00
|
|
|
* }
|
|
|
|
|
*/
|
|
|
|
|
|
2001-12-22 16:52:58 -05:00
|
|
|
if ( ber_scanf( op->o_ber, "{oob", &dn, &newrdn, &deloldrdn )
|
|
|
|
|
== LBER_ERROR )
|
|
|
|
|
{
|
2001-01-15 14:17:29 -05:00
|
|
|
#ifdef NEW_LOGGING
|
2001-01-17 11:35:53 -05:00
|
|
|
LDAP_LOG(( "operation", LDAP_LEVEL_ERR,
|
2001-12-22 16:52:58 -05:00
|
|
|
"do_modrdn: ber_scanf failed\n" ));
|
2001-01-15 14:17:29 -05:00
|
|
|
#else
|
1998-08-08 20:43:13 -04:00
|
|
|
Debug( LDAP_DEBUG_ANY, "ber_scanf failed\n", 0, 0, 0 );
|
2001-01-15 14:17:29 -05:00
|
|
|
#endif
|
|
|
|
|
|
1999-07-07 14:51:39 -04:00
|
|
|
send_ldap_disconnect( conn, op,
|
|
|
|
|
LDAP_PROTOCOL_ERROR, "decoding error" );
|
2000-02-29 18:48:01 -05:00
|
|
|
return SLAPD_DISCONNECT;
|
1998-08-08 20:43:13 -04:00
|
|
|
}
|
|
|
|
|
|
1999-03-04 22:37:49 -05:00
|
|
|
/* Check for newSuperior parameter, if present scan it */
|
|
|
|
|
|
|
|
|
|
if ( ber_peek_tag( op->o_ber, &length ) == LDAP_TAG_NEWSUPERIOR ) {
|
1999-08-13 02:09:48 -04:00
|
|
|
if ( op->o_protocol < LDAP_VERSION3 ) {
|
1999-03-04 22:37:49 -05:00
|
|
|
/* Conection record indicates v2 but field
|
|
|
|
|
* newSuperior is present: report error.
|
|
|
|
|
*/
|
2001-01-15 14:17:29 -05:00
|
|
|
#ifdef NEW_LOGGING
|
2001-01-17 11:35:53 -05:00
|
|
|
LDAP_LOG(( "operation", LDAP_LEVEL_ERR,
|
2001-12-22 16:52:58 -05:00
|
|
|
"do_modrdn: (v2) invalid field newSuperior.\n" ));
|
2001-01-15 14:17:29 -05:00
|
|
|
#else
|
1999-03-04 22:37:49 -05:00
|
|
|
Debug( LDAP_DEBUG_ANY,
|
2001-12-22 16:52:58 -05:00
|
|
|
"modrdn(v2): invalid field newSuperior!\n",
|
|
|
|
|
0, 0, 0 );
|
2001-01-15 14:17:29 -05:00
|
|
|
#endif
|
|
|
|
|
|
1999-07-07 14:51:39 -04:00
|
|
|
send_ldap_disconnect( conn, op,
|
|
|
|
|
LDAP_PROTOCOL_ERROR, "newSuperior requires LDAPv3" );
|
2000-02-29 18:48:01 -05:00
|
|
|
rc = SLAPD_DISCONNECT;
|
1999-09-18 21:29:45 -04:00
|
|
|
goto cleanup;
|
1999-06-28 21:02:48 -04:00
|
|
|
}
|
1999-03-04 22:37:49 -05:00
|
|
|
|
2001-12-22 16:52:58 -05:00
|
|
|
if ( ber_scanf( op->o_ber, "o", &newSuperior )
|
1999-03-04 22:37:49 -05:00
|
|
|
== LBER_ERROR ) {
|
|
|
|
|
|
2001-01-15 14:17:29 -05:00
|
|
|
#ifdef NEW_LOGGING
|
2001-01-17 11:35:53 -05:00
|
|
|
LDAP_LOG(( "operation", LDAP_LEVEL_ERR,
|
2001-12-22 16:52:58 -05:00
|
|
|
"do_modrdn: ber_scanf(\"a\") failed\n" ));
|
2001-01-15 14:17:29 -05:00
|
|
|
#else
|
1999-09-18 21:29:45 -04:00
|
|
|
Debug( LDAP_DEBUG_ANY, "ber_scanf(\"a\") failed\n",
|
2001-12-22 16:52:58 -05:00
|
|
|
0, 0, 0 );
|
2001-01-15 14:17:29 -05:00
|
|
|
#endif
|
|
|
|
|
|
1999-07-07 14:51:39 -04:00
|
|
|
send_ldap_disconnect( conn, op,
|
|
|
|
|
LDAP_PROTOCOL_ERROR, "decoding error" );
|
2000-02-29 18:48:01 -05:00
|
|
|
rc = SLAPD_DISCONNECT;
|
1999-09-18 21:29:45 -04:00
|
|
|
goto cleanup;
|
1999-07-22 13:14:42 -04:00
|
|
|
}
|
|
|
|
|
|
2001-12-22 16:52:58 -05:00
|
|
|
nnewSuperior = ch_strdup( newSuperior.bv_val );
|
1999-03-04 22:37:49 -05:00
|
|
|
|
1999-09-23 21:46:37 -04:00
|
|
|
if( dn_normalize( nnewSuperior ) == NULL ) {
|
2001-01-15 14:17:29 -05:00
|
|
|
#ifdef NEW_LOGGING
|
2001-01-17 11:35:53 -05:00
|
|
|
LDAP_LOG(( "operation", LDAP_LEVEL_ERR,
|
2001-12-22 16:52:58 -05:00
|
|
|
"do_modrdn: invalid new superior (%s)\n",
|
|
|
|
|
newSuperior.bv_val ));
|
2001-01-15 14:17:29 -05:00
|
|
|
#else
|
1999-07-22 13:14:42 -04:00
|
|
|
Debug( LDAP_DEBUG_ANY, "do_modrdn: invalid new superior (%s)\n",
|
2001-12-22 16:52:58 -05:00
|
|
|
newSuperior.bv_val, 0, 0 );
|
2001-01-15 14:17:29 -05:00
|
|
|
#endif
|
|
|
|
|
|
1999-07-22 13:14:42 -04:00
|
|
|
send_ldap_result( conn, op, rc = LDAP_INVALID_DN_SYNTAX, NULL,
|
2000-04-25 09:18:59 -04:00
|
|
|
"invalid new superior DN", NULL, NULL );
|
1999-09-18 21:29:45 -04:00
|
|
|
goto cleanup;
|
1999-06-28 23:17:22 -04:00
|
|
|
}
|
1999-03-04 22:37:49 -05:00
|
|
|
|
1999-06-30 18:43:27 -04:00
|
|
|
}
|
1999-03-04 22:37:49 -05:00
|
|
|
|
2001-01-15 14:17:29 -05:00
|
|
|
#ifdef NEW_LOGGING
|
2001-01-17 11:35:53 -05:00
|
|
|
LDAP_LOG(( "operation", LDAP_LEVEL_ARGS,
|
2001-12-22 16:52:58 -05:00
|
|
|
"do_modrdn: dn (%s) newrdn (%s) newsuperior(%s)\n",
|
|
|
|
|
dn.bv_val, newrdn.bv_val,
|
|
|
|
|
newSuperior.bv_len ? newSuperior.bv_val : "" ));
|
2001-01-15 14:17:29 -05:00
|
|
|
#else
|
1999-06-30 18:43:27 -04:00
|
|
|
Debug( LDAP_DEBUG_ARGS,
|
|
|
|
|
"do_modrdn: dn (%s) newrdn (%s) newsuperior (%s)\n",
|
2001-12-22 16:52:58 -05:00
|
|
|
dn.bv_val, newrdn.bv_val,
|
|
|
|
|
newSuperior.bv_len ? newSuperior.bv_val : "" );
|
2001-01-15 14:17:29 -05:00
|
|
|
#endif
|
|
|
|
|
|
1999-03-04 22:37:49 -05:00
|
|
|
|
1999-06-30 18:43:27 -04:00
|
|
|
if ( ber_scanf( op->o_ber, /*{*/ "}") == LBER_ERROR ) {
|
2001-01-15 14:17:29 -05:00
|
|
|
#ifdef NEW_LOGGING
|
2001-01-17 11:35:53 -05:00
|
|
|
LDAP_LOG(( "operation", LDAP_LEVEL_ERR,
|
2001-12-22 16:52:58 -05:00
|
|
|
"do_modrdn: ber_scanf failed\n" ));
|
2001-01-15 14:17:29 -05:00
|
|
|
#else
|
1999-06-30 18:43:27 -04:00
|
|
|
Debug( LDAP_DEBUG_ANY, "do_modrdn: ber_scanf failed\n", 0, 0, 0 );
|
2001-01-15 14:17:29 -05:00
|
|
|
#endif
|
|
|
|
|
|
1999-07-07 14:51:39 -04:00
|
|
|
send_ldap_disconnect( conn, op,
|
2001-12-22 16:52:58 -05:00
|
|
|
LDAP_PROTOCOL_ERROR, "decoding error" );
|
2000-02-29 18:48:01 -05:00
|
|
|
rc = SLAPD_DISCONNECT;
|
1999-09-18 21:29:45 -04:00
|
|
|
goto cleanup;
|
1999-06-30 18:43:27 -04:00
|
|
|
}
|
|
|
|
|
|
1999-07-01 17:20:45 -04:00
|
|
|
if( (rc = get_ctrls( conn, op, 1 )) != LDAP_SUCCESS ) {
|
2001-01-15 14:17:29 -05:00
|
|
|
#ifdef NEW_LOGGING
|
2001-01-17 11:35:53 -05:00
|
|
|
LDAP_LOG(( "operation", LDAP_LEVEL_ERR,
|
2001-12-22 16:52:58 -05:00
|
|
|
"do_modrdn: get_ctrls failed\n" ));
|
2001-01-15 14:17:29 -05:00
|
|
|
#else
|
1999-06-30 18:43:27 -04:00
|
|
|
Debug( LDAP_DEBUG_ANY, "do_modrdn: get_ctrls failed\n", 0, 0, 0 );
|
2001-01-15 14:17:29 -05:00
|
|
|
#endif
|
|
|
|
|
|
2001-01-17 11:35:53 -05:00
|
|
|
/* get_ctrls has sent results. Now clean up. */
|
1999-09-18 21:29:45 -04:00
|
|
|
goto cleanup;
|
1999-06-30 18:43:27 -04:00
|
|
|
}
|
|
|
|
|
|
2001-12-22 16:52:58 -05:00
|
|
|
ndn = ch_strdup( dn.bv_val );
|
2000-03-01 17:59:34 -05:00
|
|
|
|
|
|
|
|
if( dn_normalize( ndn ) == NULL ) {
|
2001-01-15 14:17:29 -05:00
|
|
|
#ifdef NEW_LOGGING
|
2001-01-17 11:35:53 -05:00
|
|
|
LDAP_LOG(( "operation", LDAP_LEVEL_ERR,
|
2001-12-22 16:52:58 -05:00
|
|
|
"do_modrdn: invalid dn (%s)\n", dn.bv_val ));
|
2001-01-15 14:17:29 -05:00
|
|
|
#else
|
2001-12-22 16:52:58 -05:00
|
|
|
Debug( LDAP_DEBUG_ANY, "do_modrdn: invalid dn (%s)\n",
|
|
|
|
|
dn.bv_val, 0, 0 );
|
2001-01-15 14:17:29 -05:00
|
|
|
#endif
|
|
|
|
|
|
2000-03-01 17:59:34 -05:00
|
|
|
send_ldap_result( conn, op, rc = LDAP_INVALID_DN_SYNTAX, NULL,
|
|
|
|
|
"invalid DN", NULL, NULL );
|
|
|
|
|
goto cleanup;
|
|
|
|
|
}
|
|
|
|
|
|
2001-12-22 16:52:58 -05:00
|
|
|
if( !rdn_validate( newrdn.bv_val ) ) {
|
2001-01-15 14:17:29 -05:00
|
|
|
#ifdef NEW_LOGGING
|
2001-01-17 11:35:53 -05:00
|
|
|
LDAP_LOG(( "operation", LDAP_LEVEL_ERR,
|
2001-12-22 16:52:58 -05:00
|
|
|
"do_modrdn: invalid rdn (%s).\n", newrdn.bv_val ));
|
2001-01-15 14:17:29 -05:00
|
|
|
#else
|
2001-12-22 16:52:58 -05:00
|
|
|
Debug( LDAP_DEBUG_ANY, "do_modrdn: invalid rdn (%s)\n",
|
|
|
|
|
newrdn.bv_val, 0, 0 );
|
2001-01-15 14:17:29 -05:00
|
|
|
#endif
|
|
|
|
|
|
2000-03-01 17:59:34 -05:00
|
|
|
send_ldap_result( conn, op, rc = LDAP_INVALID_DN_SYNTAX, NULL,
|
|
|
|
|
"invalid RDN", NULL, NULL );
|
|
|
|
|
goto cleanup;
|
|
|
|
|
}
|
|
|
|
|
|
2001-07-05 22:14:47 -04:00
|
|
|
if( *ndn == '\0' ) {
|
2001-01-15 14:17:29 -05:00
|
|
|
#ifdef NEW_LOGGING
|
2001-01-17 11:35:53 -05:00
|
|
|
LDAP_LOG(( "operation", LDAP_LEVEL_ERR,
|
|
|
|
|
"do_modrdn: attempt to modify root DSE.\n" ));
|
2001-01-15 14:17:29 -05:00
|
|
|
#else
|
2000-09-08 12:59:15 -04:00
|
|
|
Debug( LDAP_DEBUG_ANY, "do_modrdn: root dse!\n", 0, 0, 0 );
|
2001-01-15 14:17:29 -05:00
|
|
|
#endif
|
|
|
|
|
|
2000-09-08 12:59:15 -04:00
|
|
|
send_ldap_result( conn, op, rc = LDAP_UNWILLING_TO_PERFORM,
|
|
|
|
|
NULL, "cannot rename the root DSE", NULL, NULL );
|
|
|
|
|
goto cleanup;
|
2001-10-04 21:55:14 -04:00
|
|
|
|
|
|
|
|
#ifdef SLAPD_SCHEMA_DN
|
|
|
|
|
} else if ( strcasecmp( ndn, SLAPD_SCHEMA_DN ) == 0 ) {
|
|
|
|
|
#ifdef NEW_LOGGING
|
|
|
|
|
LDAP_LOG(( "operation", LDAP_LEVEL_ERR,
|
|
|
|
|
"do_modrdn: attempt to modify subschema subentry\n" ));
|
|
|
|
|
#else
|
|
|
|
|
Debug( LDAP_DEBUG_ANY, "do_modrdn: subschema subentry!\n", 0, 0, 0 );
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
send_ldap_result( conn, op, rc = LDAP_UNWILLING_TO_PERFORM,
|
|
|
|
|
NULL, "cannot rename subschema subentry", NULL, NULL );
|
|
|
|
|
goto cleanup;
|
|
|
|
|
#endif
|
2000-09-08 12:59:15 -04:00
|
|
|
}
|
|
|
|
|
|
1999-08-07 01:36:48 -04:00
|
|
|
Statslog( LDAP_DEBUG_STATS, "conn=%ld op=%d MODRDN dn=\"%s\"\n",
|
2001-12-22 16:52:58 -05:00
|
|
|
op->o_connid, op->o_opid, dn.bv_val, 0, 0 );
|
1998-08-08 20:43:13 -04:00
|
|
|
|
2000-10-20 23:29:02 -04:00
|
|
|
manageDSAit = get_manageDSAit( op );
|
|
|
|
|
|
1998-08-08 20:43:13 -04:00
|
|
|
/*
|
|
|
|
|
* We could be serving multiple database backends. Select the
|
|
|
|
|
* appropriate one, or send a referral to our "referral server"
|
|
|
|
|
* if we don't hold it.
|
|
|
|
|
*/
|
2001-12-10 07:09:40 -05:00
|
|
|
if ( (be = select_backend( ndn, manageDSAit, 0 )) == NULL ) {
|
2001-10-25 22:05:14 -04:00
|
|
|
struct berval **ref = referral_rewrite( default_referral,
|
2001-12-22 16:52:58 -05:00
|
|
|
NULL, dn.bv_val, LDAP_SCOPE_DEFAULT );
|
2001-10-25 22:05:14 -04:00
|
|
|
|
1999-07-15 22:45:46 -04:00
|
|
|
send_ldap_result( conn, op, rc = LDAP_REFERRAL,
|
2001-10-25 22:05:14 -04:00
|
|
|
NULL, NULL, ref ? ref : default_referral, NULL );
|
|
|
|
|
|
|
|
|
|
ber_bvecfree( ref );
|
1999-09-18 21:29:45 -04:00
|
|
|
goto cleanup;
|
1998-08-08 20:43:13 -04:00
|
|
|
}
|
|
|
|
|
|
2000-08-28 14:38:48 -04:00
|
|
|
/* check restrictions */
|
|
|
|
|
rc = backend_check_restrictions( be, conn, op, NULL, &text ) ;
|
1999-12-07 23:37:59 -05:00
|
|
|
if( rc != LDAP_SUCCESS ) {
|
|
|
|
|
send_ldap_result( conn, op, rc,
|
2000-03-03 17:37:06 -05:00
|
|
|
NULL, text, NULL, NULL );
|
2000-01-31 20:22:06 -05:00
|
|
|
goto cleanup;
|
1999-12-07 23:37:59 -05:00
|
|
|
}
|
|
|
|
|
|
2000-06-15 21:19:30 -04:00
|
|
|
/* check for referrals */
|
2001-12-22 16:52:58 -05:00
|
|
|
rc = backend_check_referrals( be, conn, op, dn.bv_val, ndn );
|
2000-06-15 21:19:30 -04:00
|
|
|
if ( rc != LDAP_SUCCESS ) {
|
|
|
|
|
goto cleanup;
|
|
|
|
|
}
|
|
|
|
|
|
1999-03-04 22:37:49 -05:00
|
|
|
/* Make sure that the entry being changed and the newSuperior are in
|
|
|
|
|
* the same backend, otherwise we return an error.
|
|
|
|
|
*/
|
2001-12-22 16:52:58 -05:00
|
|
|
if( newSuperior.bv_len ) {
|
2001-12-10 07:09:40 -05:00
|
|
|
newSuperior_be = select_backend( nnewSuperior, 0, 0 );
|
1999-03-04 22:37:49 -05:00
|
|
|
|
1999-07-22 15:06:56 -04:00
|
|
|
if ( newSuperior_be != be ) {
|
1999-07-22 13:14:42 -04:00
|
|
|
/* newSuperior is in same backend */
|
|
|
|
|
rc = LDAP_AFFECTS_MULTIPLE_DSAS;
|
1999-03-04 22:37:49 -05:00
|
|
|
|
1999-07-22 13:14:42 -04:00
|
|
|
send_ldap_result( conn, op, rc,
|
2000-03-03 17:37:06 -05:00
|
|
|
NULL, "cannot rename between DSAa", NULL, NULL );
|
1999-03-04 22:37:49 -05:00
|
|
|
|
1999-09-18 21:29:45 -04:00
|
|
|
goto cleanup;
|
1999-07-22 13:14:42 -04:00
|
|
|
}
|
1999-07-27 14:43:30 -04:00
|
|
|
|
|
|
|
|
/* deref suffix alias if appropriate */
|
|
|
|
|
nnewSuperior = suffix_alias( be, nnewSuperior );
|
1999-06-28 23:17:22 -04:00
|
|
|
}
|
1999-03-04 22:37:49 -05:00
|
|
|
|
1999-07-27 14:43:30 -04:00
|
|
|
/* deref suffix alias if appropriate */
|
|
|
|
|
ndn = suffix_alias( be, ndn );
|
|
|
|
|
|
1998-08-08 20:43:13 -04:00
|
|
|
/*
|
|
|
|
|
* do the add if 1 && (2 || 3)
|
|
|
|
|
* 1) there is an add function implemented in this backend;
|
|
|
|
|
* 2) this backend is master for what it holds;
|
1999-01-19 00:10:50 -05:00
|
|
|
* 3) it's a replica and the dn supplied is the update_ndn.
|
1998-08-08 20:43:13 -04:00
|
|
|
*/
|
1999-03-03 13:49:59 -05:00
|
|
|
if ( be->be_modrdn ) {
|
1998-08-08 20:43:13 -04:00
|
|
|
/* do the update here */
|
2001-12-24 10:11:01 -05:00
|
|
|
int repl_user = be_isupdate( be, op->o_ndn.bv_val );
|
2001-12-21 05:15:24 -05:00
|
|
|
#ifndef SLAPD_MULTIMASTER
|
2001-11-16 06:47:15 -05:00
|
|
|
if ( be->be_update_ndn == NULL || repl_user )
|
1999-08-03 18:15:19 -04:00
|
|
|
#endif
|
1999-01-19 00:10:50 -05:00
|
|
|
{
|
2001-12-22 16:52:58 -05:00
|
|
|
if ( (*be->be_modrdn)( be, conn, op, dn.bv_val, ndn,
|
|
|
|
|
newrdn.bv_val, deloldrdn, newSuperior.bv_val ) == 0
|
1999-08-03 18:15:19 -04:00
|
|
|
#ifdef SLAPD_MULTIMASTER
|
2001-11-16 06:47:15 -05:00
|
|
|
&& ( be->be_update_ndn == NULL || !repl_user )
|
1999-08-03 18:15:19 -04:00
|
|
|
#endif
|
|
|
|
|
) {
|
1999-07-29 17:25:39 -04:00
|
|
|
struct replog_moddn moddn;
|
2001-12-22 16:52:58 -05:00
|
|
|
moddn.newrdn = newrdn.bv_val;
|
1999-07-29 17:25:39 -04:00
|
|
|
moddn.deloldrdn = deloldrdn;
|
2001-12-22 16:52:58 -05:00
|
|
|
moddn.newsup = newSuperior.bv_val;
|
1999-08-03 18:15:19 -04:00
|
|
|
|
2001-12-22 16:52:58 -05:00
|
|
|
replog( be, op, dn.bv_val, ndn, &moddn );
|
1998-08-08 20:43:13 -04:00
|
|
|
}
|
1999-08-03 18:15:19 -04:00
|
|
|
#ifndef SLAPD_MULTIMASTER
|
1998-08-08 20:43:13 -04:00
|
|
|
} else {
|
2001-10-25 22:05:14 -04:00
|
|
|
struct berval **defref = be->be_update_refs
|
|
|
|
|
? be->be_update_refs : default_referral;
|
|
|
|
|
struct berval **ref = referral_rewrite( defref,
|
2001-12-22 16:52:58 -05:00
|
|
|
NULL, dn.bv_val, LDAP_SCOPE_DEFAULT );
|
2001-10-25 22:05:14 -04:00
|
|
|
|
1999-07-15 22:45:46 -04:00
|
|
|
send_ldap_result( conn, op, rc = LDAP_REFERRAL, NULL, NULL,
|
2001-10-25 22:05:14 -04:00
|
|
|
ref ? ref : defref, NULL );
|
|
|
|
|
|
|
|
|
|
ber_bvecfree( ref );
|
1999-08-03 18:15:19 -04:00
|
|
|
#endif
|
1998-08-08 20:43:13 -04:00
|
|
|
}
|
|
|
|
|
} else {
|
1999-07-15 22:45:46 -04:00
|
|
|
send_ldap_result( conn, op, rc = LDAP_UNWILLING_TO_PERFORM,
|
2001-12-22 16:52:58 -05:00
|
|
|
NULL, "operation not supported within namingContext",
|
|
|
|
|
NULL, NULL );
|
1998-08-08 20:43:13 -04:00
|
|
|
}
|
|
|
|
|
|
1999-09-18 21:29:45 -04:00
|
|
|
cleanup:
|
2001-12-22 16:52:58 -05:00
|
|
|
free( dn.bv_val );
|
|
|
|
|
free( newrdn.bv_val );
|
|
|
|
|
free( newSuperior.bv_val );
|
|
|
|
|
|
2000-04-11 21:09:36 -04:00
|
|
|
if( ndn != NULL ) free( ndn );
|
2001-12-22 16:52:58 -05:00
|
|
|
if ( nnewSuperior != NULL ) free( nnewSuperior );
|
1999-07-01 17:20:45 -04:00
|
|
|
return rc;
|
1998-08-08 20:43:13 -04:00
|
|
|
}
|