]> git.sur5r.net Git - openldap/blob - servers/slapd/modrdn.c
7c8004cff82a5f851f1ed1eb34e6031379980ba4
[openldap] / servers / slapd / modrdn.c
1 /* $OpenLDAP$ */
2 /*
3  * Copyright 1998-1999 The OpenLDAP Foundation, All Rights Reserved.
4  * COPYING RESTRICTIONS APPLY, see COPYRIGHT file
5  */
6 /*
7  * Copyright (c) 1995 Regents of the University of Michigan.
8  * All rights reserved.
9  *
10  * Redistribution and use in source and binary forms are permitted
11  * provided that this notice is preserved and that due credit is given
12  * to the University of Michigan at Ann Arbor. The name of the University
13  * may not be used to endorse or promote products derived from this
14  * software without specific prior written permission. This software
15  * is provided ``as is'' without express or implied warranty.
16  */
17
18 /*
19  * LDAP v3 newSuperior support.
20  *
21  * Copyright 1999, Juan C. Gomez, All rights reserved.
22  * This software is not subject to any license of Silicon Graphics 
23  * Inc. or Purdue University.
24  *
25  * Redistribution and use in source and binary forms are permitted
26  * without restriction or fee of any kind as long as this notice
27  * is preserved.
28  *
29  */
30
31 #include "portable.h"
32
33 #include <stdio.h>
34
35 #include <ac/socket.h>
36 #include <ac/string.h>
37
38 #include "slap.h"
39
40 int
41 do_modrdn(
42     Connection  *conn,
43     Operation   *op
44 )
45 {
46         char    *dn, *ndn, *newrdn;
47         ber_int_t       deloldrdn;
48         Backend *be;
49         /* Vars for LDAP v3 newSuperior support */
50         char    *newSuperior = NULL;
51         char    *nnewSuperior = NULL;
52         Backend *newSuperior_be = NULL;
53         ber_len_t       length;
54         int rc;
55
56         Debug( LDAP_DEBUG_TRACE, "do_modrdn\n", 0, 0, 0 );
57
58         if( op->o_bind_in_progress ) {
59                 Debug( LDAP_DEBUG_ANY, "do_modrdn: SASL bind in progress.\n",
60                         0, 0, 0 );
61                 send_ldap_result( conn, op, LDAP_SASL_BIND_IN_PROGRESS,
62                         NULL, "SASL bind in progress", NULL, NULL );
63                 return LDAP_SASL_BIND_IN_PROGRESS;
64         }
65
66         /*
67          * Parse the modrdn request.  It looks like this:
68          *
69          *      ModifyRDNRequest := SEQUENCE {
70          *              entry   DistinguishedName,
71          *              newrdn  RelativeDistinguishedName
72          *              deleteoldrdn    BOOLEAN,
73          *              newSuperior     [0] LDAPDN OPTIONAL (v3 Only!)
74          *      }
75          */
76
77         if ( ber_scanf( op->o_ber, "{aab", &dn, &newrdn, &deloldrdn )
78             == LBER_ERROR ) {
79                 Debug( LDAP_DEBUG_ANY, "ber_scanf failed\n", 0, 0, 0 );
80                 send_ldap_disconnect( conn, op,
81                         LDAP_PROTOCOL_ERROR, "decoding error" );
82                 return -1;
83         }
84
85         ndn = ch_strdup( dn );
86
87         if( dn_normalize_case( ndn ) == NULL ) {
88                 Debug( LDAP_DEBUG_ANY, "do_modrdn: invalid dn (%s)\n", dn, 0, 0 );
89                 send_ldap_result( conn, op, rc = LDAP_INVALID_DN_SYNTAX, NULL,
90                     "invalid DN", NULL, NULL );
91                 goto cleanup;
92         }
93
94         if( !rdn_validate( newrdn ) ) {
95                 Debug( LDAP_DEBUG_ANY, "do_modrdn: invalid rdn (%s)\n", newrdn, 0, 0 );
96                 send_ldap_result( conn, op, rc = LDAP_INVALID_DN_SYNTAX, NULL,
97                     "invalid RDN", NULL, NULL );
98                 goto cleanup;
99         }
100
101         /* Check for newSuperior parameter, if present scan it */
102
103         if ( ber_peek_tag( op->o_ber, &length ) == LDAP_TAG_NEWSUPERIOR ) {
104                 if ( op->o_protocol < LDAP_VERSION3 ) {
105                         /* Conection record indicates v2 but field 
106                          * newSuperior is present: report error.
107                          */
108                         Debug( LDAP_DEBUG_ANY,
109                                "modrdn(v2): invalid field newSuperior!\n",
110                                0, 0, 0 );
111                         send_ldap_disconnect( conn, op,
112                                 LDAP_PROTOCOL_ERROR, "newSuperior requires LDAPv3" );
113                         rc = -1;
114                         goto cleanup;
115                 }
116
117                 if ( ber_scanf( op->o_ber, "a", &newSuperior ) 
118                      == LBER_ERROR ) {
119
120                         Debug( LDAP_DEBUG_ANY, "ber_scanf(\"a\") failed\n",
121                            0, 0, 0 );
122                         send_ldap_disconnect( conn, op,
123                                 LDAP_PROTOCOL_ERROR, "decoding error" );
124                         rc = -1;
125                         goto cleanup;
126                 }
127
128                 nnewSuperior = ch_strdup( newSuperior );
129
130                 if( dn_normalize_case( nnewSuperior ) == NULL ) {
131                         Debug( LDAP_DEBUG_ANY, "do_modrdn: invalid new superior (%s)\n",
132                                 newSuperior, 0, 0 );
133                         send_ldap_result( conn, op, rc = LDAP_INVALID_DN_SYNTAX, NULL,
134                                 "invalid (new superior) DN", NULL, NULL );
135                         goto cleanup;
136                 }
137
138         }
139
140         Debug( LDAP_DEBUG_ARGS,
141             "do_modrdn: dn (%s) newrdn (%s) newsuperior (%s)\n",
142                 dn, newrdn,
143                 newSuperior != NULL ? newSuperior : "" );
144
145         if ( ber_scanf( op->o_ber, /*{*/ "}") == LBER_ERROR ) {
146                 Debug( LDAP_DEBUG_ANY, "do_modrdn: ber_scanf failed\n", 0, 0, 0 );
147                 send_ldap_disconnect( conn, op,
148                                 LDAP_PROTOCOL_ERROR, "decoding error" );
149                 rc = -1;
150                 goto cleanup;
151         }
152
153         if( (rc = get_ctrls( conn, op, 1 )) != LDAP_SUCCESS ) {
154                 Debug( LDAP_DEBUG_ANY, "do_modrdn: get_ctrls failed\n", 0, 0, 0 );
155                 /* get_ctrls has sent results.  Now clean up. */
156                 goto cleanup;
157         } 
158
159         Statslog( LDAP_DEBUG_STATS, "conn=%ld op=%d MODRDN dn=\"%s\"\n",
160             op->o_connid, op->o_opid, dn, 0, 0 );
161
162         /*
163          * We could be serving multiple database backends.  Select the
164          * appropriate one, or send a referral to our "referral server"
165          * if we don't hold it.
166          */
167
168         if ( (be = select_backend( ndn )) == NULL ) {
169                 send_ldap_result( conn, op, rc = LDAP_REFERRAL,
170                         NULL, NULL, default_referral, NULL );
171                 goto cleanup;
172         }
173
174         if ( global_readonly || be->be_readonly ) {
175                 Debug( LDAP_DEBUG_ANY, "do_modrdn: database is read-only\n",
176                        0, 0, 0 );
177                 send_ldap_result( conn, op, rc = LDAP_UNWILLING_TO_PERFORM,
178                                   NULL, "database is read-only", NULL, NULL );
179                 goto cleanup;
180         }
181
182         /* Make sure that the entry being changed and the newSuperior are in 
183          * the same backend, otherwise we return an error.
184          */
185         if( newSuperior != NULL ) {
186                 newSuperior_be = select_backend( nnewSuperior );
187
188                 if ( newSuperior_be != be ) {
189                         /* newSuperior is in same backend */
190                         rc = LDAP_AFFECTS_MULTIPLE_DSAS;
191
192                         send_ldap_result( conn, op, rc,
193                                 NULL, NULL, NULL, NULL );
194
195                         goto cleanup;
196                 }
197
198                 /* deref suffix alias if appropriate */
199                 nnewSuperior = suffix_alias( be, nnewSuperior );
200         }
201
202         /* deref suffix alias if appropriate */
203         ndn = suffix_alias( be, ndn );
204
205         /*
206          * do the add if 1 && (2 || 3)
207          * 1) there is an add function implemented in this backend;
208          * 2) this backend is master for what it holds;
209          * 3) it's a replica and the dn supplied is the update_ndn.
210          */
211         if ( be->be_modrdn ) {
212                 /* do the update here */
213 #ifndef SLAPD_MULTIMASTER
214                 if ( be->be_update_ndn == NULL ||
215                         strcmp( be->be_update_ndn, op->o_ndn ) == 0 )
216 #endif
217                 {
218                         if ( (*be->be_modrdn)( be, conn, op, dn, ndn, newrdn,
219                             deloldrdn, newSuperior ) == 0
220 #ifdef SLAPD_MULTIMASTER
221                                 && ( be->be_update_ndn == NULL ||
222                                         strcmp( be->be_update_ndn, op->o_ndn ) )
223 #endif
224                         ) {
225                                 struct replog_moddn moddn;
226                                 moddn.newrdn = newrdn;
227                                 moddn.deloldrdn = deloldrdn;
228                                 moddn.newsup = newSuperior;
229
230                                 replog( be, op, dn, &moddn );
231                         }
232 #ifndef SLAPD_MULTIMASTER
233                 } else {
234                         send_ldap_result( conn, op, rc = LDAP_REFERRAL, NULL, NULL,
235                                 be->be_update_refs ? be->be_update_refs : default_referral, NULL );
236 #endif
237                 }
238         } else {
239                 send_ldap_result( conn, op, rc = LDAP_UNWILLING_TO_PERFORM,
240                         NULL, "Function not implemented", NULL, NULL );
241         }
242
243 cleanup:
244         free( dn );
245         free( ndn );
246         free( newrdn ); 
247         if ( newSuperior != NULL )
248                 free( newSuperior );
249         if ( nnewSuperior != NULL )
250                 free( nnewSuperior );
251         return rc;
252 }