]> git.sur5r.net Git - openldap/blob - servers/slapd/back-meta/modrdn.c
Add BDB_INDEX error handling
[openldap] / servers / slapd / back-meta / modrdn.c
1 /*
2  * Copyright 1998-2001 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(
80                 Backend         *be,
81                 Connection      *conn,
82                 Operation       *op,
83                 const char      *dn,
84                 const char      *ndn,
85                 const char      *newrdn,
86                 int             deleteoldrdn,
87                 const char      *newSuperior
88 )
89 {
90         struct metainfo *li = ( struct metainfo * )be->be_private;
91         struct metaconn *lc;
92         int candidate = -1;
93
94         char *mdn = NULL, *mnewSuperior = NULL;
95
96         lc = meta_back_getconn( li, conn, op, META_OP_REQUIRE_SINGLE,
97                         ndn, &candidate );
98         if ( !lc || !meta_back_dobind( lc, op ) ) {
99                 return -1;
100         }
101
102         if ( newSuperior ) {
103                 int nsCandidate, version = LDAP_VERSION3;
104
105                 nsCandidate = meta_back_select_unique_candidate( li,
106                                 newSuperior );
107
108                 if ( nsCandidate != candidate ) {
109                         /*
110                          * FIXME: one possibility is to delete the entry
111                          * from one target and add it to the other;
112                          * unfortunately we'd need write access to both,
113                          * which is nearly impossible; for administration
114                          * needs, the rootdn of the metadirectory could
115                          * be mapped to an administrative account on each
116                          * target (the binddn?); we'll see.
117                          */
118                         /*
119                          * FIXME: is this the correct return code?
120                          */
121                         send_ldap_result( conn, op, LDAP_UNWILLING_TO_PERFORM,
122                                         NULL, NULL, NULL, NULL );
123                         return -1;
124                 }
125
126                 ldap_set_option( lc->conns[ nsCandidate ]->ld,
127                                 LDAP_OPT_PROTOCOL_VERSION, &version );
128                 
129                 /*
130                  * Rewrite the new superior, if defined and required
131                  */
132                 switch ( rewrite_session( li->targets[ nsCandidate ]->rwinfo,
133                                         "newSuperiorDn",
134                                         newSuperior, conn, &mnewSuperior ) ) {
135                 case REWRITE_REGEXEC_OK:
136                         if ( mnewSuperior == NULL ) {
137                                 mnewSuperior = ( char * )newSuperior;
138                         }
139 #ifdef NEW_LOGGING
140                         LDAP_LOG(( "backend", LDAP_LEVEL_DETAIL1,
141                                         "[rw] newSuperiorDn:"
142                                         " \"%s\" -> \"%s\"\n",
143                                         newSuperior, mnewSuperior ));
144 #else /* !NEW_LOGGING */
145                         Debug( LDAP_DEBUG_ARGS, "rw> newSuperiorDn:"
146                                         " \"%s\" -> \"%s\"\n%s",
147                                         newSuperior, mnewSuperior, "" );
148 #endif /* !NEW_LOGGING */
149                         break;
150
151                 case REWRITE_REGEXEC_UNWILLING:
152                         send_ldap_result( conn, op, LDAP_UNWILLING_TO_PERFORM,
153                                         NULL, NULL, NULL, NULL );
154                         return -1;
155
156                 case REWRITE_REGEXEC_ERR:
157                         send_ldap_result( conn, op, LDAP_OPERATIONS_ERROR,
158                                         NULL, NULL, NULL, NULL );
159                         return -1;
160                 }
161         }
162
163         /*
164          * Rewrite the modrdn dn, if required
165          */
166         switch ( rewrite_session( li->targets[ candidate ]->rwinfo,
167                                 "modrDn", dn, conn, &mdn ) ) {
168         case REWRITE_REGEXEC_OK:
169                 if ( mdn == NULL ) {
170                         mdn = ( char * )dn;
171                 }
172 #ifdef NEW_LOGGING
173                 LDAP_LOG(( "backend", LDAP_LEVEL_DETAIL1,
174                                 "[rw] modrDn: \"%s\" -> \"%s\"\n",
175                                 dn, mdn ));
176 #else /* !NEW_LOGGING */
177                 Debug( LDAP_DEBUG_ARGS, "rw> modrDn: \"%s\" -> \"%s\"\n%s",
178                                 dn, mdn, "" );
179 #endif /* !NEW_LOGGING */
180                 break;
181                 
182         case REWRITE_REGEXEC_UNWILLING:
183                 send_ldap_result( conn, op, LDAP_UNWILLING_TO_PERFORM,
184                                 NULL, NULL, NULL, NULL );
185                 return -1;
186
187         case REWRITE_REGEXEC_ERR:
188                 send_ldap_result( conn, op, LDAP_OPERATIONS_ERROR,
189                                 NULL, NULL, NULL, NULL );
190                 return -1;
191         }
192
193         ldap_rename2_s( lc->conns[ candidate ]->ld, mdn, newrdn,
194                         mnewSuperior, deleteoldrdn );
195
196         if ( mdn != dn ) {
197                 free( mdn );
198         }
199         if ( mnewSuperior != NULL && mnewSuperior != newSuperior ) {
200                 free( mnewSuperior );
201         }
202         
203         return meta_back_op_result( lc, op );
204 }
205