]> git.sur5r.net Git - openldap/blob - servers/slapd/back-meta/modrdn.c
ea0d94160b28fa435f66c2df0c1bf6141dc03340
[openldap] / servers / slapd / back-meta / modrdn.c
1 /* $OpenLDAP$ */
2 /* This work is part of OpenLDAP Software <http://www.openldap.org/>.
3  *
4  * Copyright 1999-2005 The OpenLDAP Foundation.
5  * Portions Copyright 2001-2003 Pierangelo Masarati.
6  * Portions Copyright 1999-2003 Howard Chu.
7  * All rights reserved.
8  *
9  * Redistribution and use in source and binary forms, with or without
10  * modification, are permitted only as authorized by the OpenLDAP
11  * Public License.
12  *
13  * A copy of this license is available in the file LICENSE in the
14  * top-level directory of the distribution or, alternatively, at
15  * <http://www.OpenLDAP.org/license.html>.
16  */
17 /* ACKNOWLEDGEMENTS:
18  * This work was initially developed by the Howard Chu for inclusion
19  * in OpenLDAP Software and subsequently enhanced by Pierangelo
20  * Masarati.
21  */
22
23 #include "portable.h"
24
25 #include <stdio.h>
26
27 #include <ac/socket.h>
28 #include <ac/string.h>
29
30 #include "slap.h"
31 #include "../back-ldap/back-ldap.h"
32 #include "back-meta.h"
33
34 int
35 meta_back_modrdn( Operation *op, SlapReply *rs )
36 {
37         struct metainfo         *li = ( struct metainfo * )op->o_bd->be_private;
38         struct metaconn         *lc;
39         int                     candidate = -1;
40         struct berval           mdn = BER_BVNULL,
41                                 mnewSuperior = BER_BVNULL;
42         dncookie                dc;
43         int                     msgid, do_retry = 1;
44
45         lc = meta_back_getconn( op, rs, &candidate, LDAP_BACK_SENDERR );
46         if ( !lc ) {
47                 return rs->sr_err;
48         }
49
50         assert( candidate != META_TARGET_NONE );
51
52         if ( !meta_back_dobind( lc, op, LDAP_BACK_SENDERR ) ) {
53                 return rs->sr_err;
54         }
55
56         assert( lc->mc_conns[ candidate ].msc_ld != NULL );
57                 
58         dc.conn = op->o_conn;
59         dc.rs = rs;
60
61         if ( op->orr_newSup ) {
62                 int     version = LDAP_VERSION3;
63
64                 /*
65                  * NOTE: the newParent, if defined, must be on the 
66                  * same target as the entry to be renamed.  This check
67                  * has been anticipated in meta_back_getconn()
68                  */
69                 /*
70                  * FIXME: one possibility is to delete the entry
71                  * from one target and add it to the other;
72                  * unfortunately we'd need write access to both,
73                  * which is nearly impossible; for administration
74                  * needs, the rootdn of the metadirectory could
75                  * be mapped to an administrative account on each
76                  * target (the binddn?); we'll see.
77                  */
78                 /*
79                  * NOTE: we need to port the identity assertion
80                  * feature from back-ldap
81                  */
82
83                 /* newSuperior needs LDAPv3; if we got here, we can safely
84                  * enforce it */
85                 ldap_set_option( lc->mc_conns[ candidate ].msc_ld,
86                                 LDAP_OPT_PROTOCOL_VERSION, &version );
87
88                 /*
89                  * Rewrite the new superior, if defined and required
90                  */
91                 dc.rwmap = &li->mi_targets[ candidate ]->mt_rwmap;
92                 dc.ctx = "newSuperiorDN";
93                 if ( ldap_back_dn_massage( &dc, op->orr_newSup, &mnewSuperior ) ) {
94                         rs->sr_err = LDAP_OTHER;
95                         goto cleanup;
96                 }
97         }
98
99         /*
100          * Rewrite the modrdn dn, if required
101          */
102         dc.rwmap = &li->mi_targets[ candidate ]->mt_rwmap;
103         dc.ctx = "modrDN";
104         if ( ldap_back_dn_massage( &dc, &op->o_req_dn, &mdn ) ) {
105                 rs->sr_err = LDAP_OTHER;
106                 goto cleanup;
107         }
108
109 retry:;
110         rs->sr_err = ldap_rename_s( lc->mc_conns[ candidate ].msc_ld,
111                         mdn.bv_val, op->orr_newrdn.bv_val,
112                         mnewSuperior.bv_val, op->orr_deleteoldrdn,
113                         op->o_ctrls, NULL );
114         if ( rs->sr_err == LDAP_UNAVAILABLE && do_retry ) {
115                 do_retry = 0;
116                 if ( meta_back_retry( op, rs, lc, candidate, LDAP_BACK_SENDERR ) ) {
117                         goto retry;
118                 }
119         }
120
121 cleanup:;
122         if ( mdn.bv_val != op->o_req_dn.bv_val ) {
123                 free( mdn.bv_val );
124                 BER_BVZERO( &mdn );
125         }
126         
127         if ( !BER_BVISNULL( &mnewSuperior )
128                         && mnewSuperior.bv_val != op->orr_newSup->bv_val )
129         {
130                 free( mnewSuperior.bv_val );
131                 BER_BVZERO( &mnewSuperior );
132         }
133
134         if ( rs->sr_err == LDAP_SUCCESS ) {
135                 meta_back_op_result( lc, op, rs, candidate );
136         }
137
138         send_ldap_result( op, rs );
139
140         return rs->sr_err;
141 }
142