]> git.sur5r.net Git - openldap/blob - servers/slapd/back-ldap/modrdn.c
fix controls run-time registered by global overlays (kludge non longer required?)
[openldap] / servers / slapd / back-ldap / modrdn.c
1 /* modrdn.c - ldap backend modrdn function */
2 /* $OpenLDAP$ */
3 /* This work is part of OpenLDAP Software <http://www.openldap.org/>.
4  *
5  * Copyright 1999-2005 The OpenLDAP Foundation.
6  * Portions Copyright 1999-2003 Howard Chu.
7  * Portions Copyright 2000-2003 Pierangelo Masarati.
8  * All rights reserved.
9  *
10  * Redistribution and use in source and binary forms, with or without
11  * modification, are permitted only as authorized by the OpenLDAP
12  * Public License.
13  *
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>.
17  */
18 /* ACKNOWLEDGEMENTS:
19  * This work was initially developed by the Howard Chu for inclusion
20  * in OpenLDAP Software and subsequently enhanced by Pierangelo
21  * Masarati.
22  */
23
24 #include "portable.h"
25
26 #include <stdio.h>
27
28 #include <ac/socket.h>
29 #include <ac/string.h>
30
31 #include "slap.h"
32 #include "back-ldap.h"
33
34 int
35 ldap_back_modrdn(
36                 Operation       *op,
37                 SlapReply       *rs )
38 {
39         struct ldapconn *lc;
40         ber_int_t       msgid;
41         LDAPControl     **ctrls = NULL;
42         int             do_retry = 1;
43         int             rc = LDAP_SUCCESS;
44         char            *newSup = NULL;
45
46         lc = ldap_back_getconn( op, rs, LDAP_BACK_SENDERR );
47         if ( !lc || !ldap_back_dobind( lc, op, rs, LDAP_BACK_SENDERR ) ) {
48                 return( -1 );
49         }
50
51         if ( op->orr_newSup ) {
52                 int     version = LDAP_VERSION3;
53                 
54                 ldap_set_option( lc->lc_ld, LDAP_OPT_PROTOCOL_VERSION, &version );
55                 newSup = op->orr_newSup->bv_val;
56         }
57
58         ctrls = op->o_ctrls;
59         rc = ldap_back_proxy_authz_ctrl( lc, op, rs, &ctrls );
60         if ( rc != LDAP_SUCCESS ) {
61                 send_ldap_result( op, rs );
62                 rc = -1;
63                 goto cleanup;
64         }
65
66 retry:
67         rs->sr_err = ldap_rename( lc->lc_ld, op->o_req_ndn.bv_val,
68                         op->orr_newrdn.bv_val, newSup,
69                         op->orr_deleteoldrdn, ctrls, NULL, &msgid );
70         rc = ldap_back_op_result( lc, op, rs, msgid, LDAP_BACK_SENDRESULT );
71         if ( rs->sr_err == LDAP_SERVER_DOWN && do_retry ) {
72                 do_retry = 0;
73                 if ( ldap_back_retry( lc, op, rs, LDAP_BACK_SENDERR ) ) {
74                         goto retry;
75                 }
76         }
77
78 cleanup:
79         (void)ldap_back_proxy_authz_ctrl_free( op, &ctrls );
80
81         return rc;
82 }
83