1 /* modrdn.c - ldap backend modrdn function */
2 /* $OpenLDAP: pkg/ldap/servers/slapd/back-ldap/modrdn.c,v 1.47.2.7 2008/04/14 18:57:13 quanah Exp $ */
3 /* This work is part of OpenLDAP Software <http://www.openldap.org/>.
5 * Copyright 1999-2008 The OpenLDAP Foundation.
6 * Portions Copyright 1999-2003 Howard Chu.
7 * Portions Copyright 2000-2003 Pierangelo Masarati.
10 * Redistribution and use in source and binary forms, with or without
11 * modification, are permitted only as authorized by the OpenLDAP
14 * A copy of this license is available in the file LICENSE in the
15 * top-level directory of the distribution or, alternatively, at
16 * <http://www.OpenLDAP.org/license.html>.
19 * This work was initially developed by the Howard Chu for inclusion
20 * in OpenLDAP Software and subsequently enhanced by Pierangelo
28 #include <ac/socket.h>
29 #include <ac/string.h>
32 #include "back-ldap.h"
39 ldapinfo_t
*li
= (ldapinfo_t
*)op
->o_bd
->be_private
;
41 ldapconn_t
*lc
= NULL
;
43 LDAPControl
**ctrls
= NULL
;
44 ldap_back_send_t retrying
= LDAP_BACK_RETRYING
;
45 int rc
= LDAP_SUCCESS
;
47 struct berval newrdn
= BER_BVNULL
;
49 if ( !ldap_back_dobind( &lc
, op
, rs
, LDAP_BACK_SENDERR
) ) {
53 if ( op
->orr_newSup
) {
55 switch ( li
->li_version
) {
60 if ( op
->o_protocol
== 0 || op
->o_protocol
== LDAP_VERSION3
) {
66 /* op->o_protocol cannot be anything but LDAPv3,
67 * otherwise wouldn't be here */
68 rs
->sr_err
= LDAP_UNWILLING_TO_PERFORM
;
69 send_ldap_result( op
, rs
);
73 newSup
= op
->orr_newSup
->bv_val
;
76 /* NOTE: we need to copy the newRDN in case it was formed
77 * from a DN by simply changing the length (ITS#5397) */
78 newrdn
= op
->orr_newrdn
;
79 if ( newrdn
.bv_val
[ newrdn
.bv_len
] != '\0' ) {
80 ber_dupbv_x( &newrdn
, &op
->orr_newrdn
, op
->o_tmpmemctx
);
85 rc
= ldap_back_controls_add( op
, rs
, lc
, &ctrls
);
86 if ( rc
!= LDAP_SUCCESS
) {
87 send_ldap_result( op
, rs
);
92 rs
->sr_err
= ldap_rename( lc
->lc_ld
, op
->o_req_dn
.bv_val
,
93 newrdn
.bv_val
, newSup
,
94 op
->orr_deleteoldrdn
, ctrls
, NULL
, &msgid
);
95 rc
= ldap_back_op_result( lc
, op
, rs
, msgid
,
96 li
->li_timeout
[ SLAP_OP_MODRDN
],
97 ( LDAP_BACK_SENDRESULT
| retrying
) );
98 if ( rs
->sr_err
== LDAP_UNAVAILABLE
&& retrying
) {
99 retrying
&= ~LDAP_BACK_RETRYING
;
100 if ( ldap_back_retry( &lc
, op
, rs
, LDAP_BACK_SENDERR
) ) {
101 /* if the identity changed, there might be need to re-authz */
102 (void)ldap_back_controls_free( op
, rs
, &ctrls
);
108 (void)ldap_back_controls_free( op
, rs
, &ctrls
);
110 if ( newrdn
.bv_val
!= op
->orr_newrdn
.bv_val
) {
111 op
->o_tmpfree( newrdn
.bv_val
, op
->o_tmpmemctx
);
115 ldap_back_release_conn( li
, lc
);