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