]> git.sur5r.net Git - openldap/blob - servers/slapd/back-meta/modrdn.c
10fa1c5a183b80baec613ac45cbf7b813496653f
[openldap] / servers / slapd / back-meta / modrdn.c
1 /*
2  * Copyright 1998-2003 The OpenLDAP Foundation, All Rights Reserved.
3  * COPYING RESTRICTIONS APPLY, see COPYRIGHT file
4  *
5  * Copyright 2001, Pierangelo Masarati, All rights reserved. <ando@sys-net.it>
6  *
7  * This work has been developed to fulfill the requirements
8  * of SysNet s.n.c. <http:www.sys-net.it> and it has been donated
9  * to the OpenLDAP Foundation in the hope that it may be useful
10  * to the Open Source community, but WITHOUT ANY WARRANTY.
11  *
12  * Permission is granted to anyone to use this software for any purpose
13  * on any computer system, and to alter it and redistribute it, subject
14  * to the following restrictions:
15  *
16  * 1. The author and SysNet s.n.c. are not responsible for the consequences
17  *    of use of this software, no matter how awful, even if they arise from 
18  *    flaws in it.
19  *
20  * 2. The origin of this software must not be misrepresented, either by
21  *    explicit claim or by omission.  Since few users ever read sources,
22  *    credits should appear in the documentation.
23  *
24  * 3. Altered versions must be plainly marked as such, and must not be
25  *    misrepresented as being the original software.  Since few users
26  *    ever read sources, credits should appear in the documentation.
27  *    SysNet s.n.c. cannot be responsible for the consequences of the
28  *    alterations.
29  *
30  * 4. This notice may not be removed or altered.
31  *
32  *
33  * This software is based on the backend back-ldap, implemented
34  * by Howard Chu <hyc@highlandsun.com>, and modified by Mark Valence
35  * <kurash@sassafras.com>, Pierangelo Masarati <ando@sys-net.it> and other
36  * contributors. The contribution of the original software to the present
37  * implementation is acknowledged in this copyright statement.
38  *
39  * A special acknowledgement goes to Howard for the overall architecture
40  * (and for borrowing large pieces of code), and to Mark, who implemented
41  * from scratch the attribute/objectclass mapping.
42  *
43  * The original copyright statement follows.
44  *
45  * Copyright 1999, Howard Chu, All rights reserved. <hyc@highlandsun.com>
46  *
47  * Permission is granted to anyone to use this software for any purpose
48  * on any computer system, and to alter it and redistribute it, subject
49  * to the following restrictions:
50  *
51  * 1. The author is not responsible for the consequences of use of this
52  *    software, no matter how awful, even if they arise from flaws in it.
53  *
54  * 2. The origin of this software must not be misrepresented, either by
55  *    explicit claim or by omission.  Since few users ever read sources,
56  *    credits should appear in the documentation.
57  *
58  * 3. Altered versions must be plainly marked as such, and must not be
59  *    misrepresented as being the original software.  Since few users
60  *    ever read sources, credits should appear in the
61  *    documentation.
62  *
63  * 4. This notice may not be removed or altered.
64  *
65  */
66
67 #include "portable.h"
68
69 #include <stdio.h>
70
71 #include <ac/socket.h>
72 #include <ac/string.h>
73
74 #include "slap.h"
75 #include "../back-ldap/back-ldap.h"
76 #include "back-meta.h"
77
78 int
79 meta_back_modrdn( Operation *op, SlapReply *rs )
80                 /*
81                 Backend         *be,
82                 Connection      *conn,
83                 Operation       *op,
84                 struct berval   *dn,
85                 struct berval   *ndn,
86                 struct berval   *newrdn,
87                 struct berval   *nnewrdn,
88                 int             deleteoldrdn,
89                 struct berval   *newSuperior,
90                 struct berval   *nnewSuperior
91 ) */
92 {
93         struct metainfo         *li = ( struct metainfo * )op->o_bd->be_private;
94         struct metaconn         *lc;
95         int                     rc = 0;
96         int                     candidate = -1;
97         char                    *mdn = NULL,
98                                 *mnewSuperior = NULL;
99
100         lc = meta_back_getconn( op, rs, META_OP_REQUIRE_SINGLE,
101                         &op->o_req_ndn, &candidate );
102         if ( !lc ) {
103                 rc = -1;
104                 goto cleanup;
105         }
106
107         if ( !meta_back_dobind( lc, op ) 
108                         || !meta_back_is_valid( lc, candidate ) ) {
109                 rs->sr_err = LDAP_OTHER;
110                 rc = -1;
111                 goto cleanup;
112         }
113
114         if ( op->oq_modrdn.rs_newSup ) {
115                 int nsCandidate, version = LDAP_VERSION3;
116
117                 nsCandidate = meta_back_select_unique_candidate( li,
118                                 op->oq_modrdn.rs_newSup );
119
120                 if ( nsCandidate != candidate ) {
121                         /*
122                          * FIXME: one possibility is to delete the entry
123                          * from one target and add it to the other;
124                          * unfortunately we'd need write access to both,
125                          * which is nearly impossible; for administration
126                          * needs, the rootdn of the metadirectory could
127                          * be mapped to an administrative account on each
128                          * target (the binddn?); we'll see.
129                          */
130                         /*
131                          * FIXME: is this the correct return code?
132                          */
133                         rs->sr_err = LDAP_UNWILLING_TO_PERFORM;
134                         rc = -1;
135                         goto cleanup;
136                 }
137
138                 ldap_set_option( lc->conns[ nsCandidate ].ld,
139                                 LDAP_OPT_PROTOCOL_VERSION, &version );
140                 
141                 /*
142                  * Rewrite the new superior, if defined and required
143                  */
144                 switch ( rewrite_session( li->targets[ nsCandidate ]->rwinfo,
145                                         "newSuperiorDn",
146                                         op->oq_modrdn.rs_newSup->bv_val, 
147                                         op->o_conn, 
148                                         &mnewSuperior ) ) {
149                 case REWRITE_REGEXEC_OK:
150                         if ( mnewSuperior == NULL ) {
151                                 mnewSuperior = ( char * )op->oq_modrdn.rs_newSup;
152                         }
153 #ifdef NEW_LOGGING
154                         LDAP_LOG( BACK_META, DETAIL1,
155                                 "[rw] newSuperiorDn: \"%s\" -> \"%s\"\n",
156                                 op->oq_modrdn.rs_newSup, mnewSuperior, 0 );
157 #else /* !NEW_LOGGING */
158                         Debug( LDAP_DEBUG_ARGS, "rw> newSuperiorDn:"
159                                         " \"%s\" -> \"%s\"\n",
160                                         op->oq_modrdn.rs_newSup->bv_val,
161                                         mnewSuperior, 0 );
162 #endif /* !NEW_LOGGING */
163                         break;
164
165                 case REWRITE_REGEXEC_UNWILLING:
166                         rs->sr_err = LDAP_UNWILLING_TO_PERFORM;
167                         rs->sr_text = "Operation not allowed";
168                         rc = -1;
169                         goto cleanup;
170
171                 case REWRITE_REGEXEC_ERR:
172                         rs->sr_err = LDAP_OTHER;
173                         rs->sr_text = "Rewrite error";
174                         rc = -1;
175                         goto cleanup;
176                 }
177         }
178
179         /*
180          * Rewrite the modrdn dn, if required
181          */
182         switch ( rewrite_session( li->targets[ candidate ]->rwinfo,
183                                 "modrDn", op->o_req_dn.bv_val,
184                                 op->o_conn, &mdn ) ) {
185         case REWRITE_REGEXEC_OK:
186                 if ( mdn == NULL ) {
187                         mdn = ( char * )op->o_req_dn.bv_val;
188                 }
189 #ifdef NEW_LOGGING
190                 LDAP_LOG( BACK_META, DETAIL1,
191                                 "[rw] modrDn: \"%s\" -> \"%s\"\n",
192                                 op->o_req_dn.bv_val, mdn, 0 );
193 #else /* !NEW_LOGGING */
194                 Debug( LDAP_DEBUG_ARGS, "rw> modrDn: \"%s\" -> \"%s\"\n",
195                                 op->o_req_dn.bv_val, mdn, 0 );
196 #endif /* !NEW_LOGGING */
197                 break;
198                 
199         case REWRITE_REGEXEC_UNWILLING:
200                 rs->sr_err = LDAP_UNWILLING_TO_PERFORM;
201                 rs->sr_text = "Operation not allowed";
202                 rc = -1;
203                 goto cleanup;
204
205         case REWRITE_REGEXEC_ERR:
206                 rs->sr_err = LDAP_OTHER;
207                 rs->sr_text = "Rewrite error";
208                 rc = -1;
209                 goto cleanup;
210         }
211
212         ldap_rename2_s( lc->conns[ candidate ].ld, mdn,
213                         op->oq_modrdn.rs_newrdn.bv_val,
214                         mnewSuperior, op->oq_modrdn.rs_deleteoldrdn );
215
216 cleanup:;
217         if ( mdn != op->o_req_dn.bv_val ) {
218                 free( mdn );
219         }
220         
221         if ( mnewSuperior != NULL 
222                         && mnewSuperior != op->oq_modrdn.rs_newSup->bv_val ) {
223                 free( mnewSuperior );
224         }
225
226         if ( rc == 0 ) {
227                 return meta_back_op_result( lc, op, rs ) == LDAP_SUCCESS
228                         ? 0 : 1;
229         } /* else */
230
231         send_ldap_result( op, rs );
232         return rc;
233
234 }
235