]> git.sur5r.net Git - openldap/blob - servers/slapd/modrdn.c
Add OpenLDAP RCSid to *.[ch] in clients, libraries, and servers.
[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    *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", &ndn, &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         if( dn_normalize_case( ndn ) == NULL ) {
86                 Debug( LDAP_DEBUG_ANY, "do_modrdn: invalid dn (%s)\n", ndn, 0, 0 );
87                 send_ldap_result( conn, op, rc = LDAP_INVALID_DN_SYNTAX, NULL,
88                     "invalid DN", NULL, NULL );
89                 free( ndn );
90                 free( newrdn );
91                 return rc;
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                 free( ndn );
99                 free( newrdn );
100                 return rc;
101         }
102
103         /* Check for newSuperior parameter, if present scan it */
104
105         if ( ber_peek_tag( op->o_ber, &length ) == LDAP_TAG_NEWSUPERIOR ) {
106                 if ( op->o_protocol < LDAP_VERSION3 ) {
107                         /* Conection record indicates v2 but field 
108                          * newSuperior is present: report error.
109                          */
110                         Debug( LDAP_DEBUG_ANY,
111                                "modrdn(v2): invalid field newSuperior!\n",
112                                0, 0, 0 );
113                         send_ldap_disconnect( conn, op,
114                                 LDAP_PROTOCOL_ERROR, "newSuperior requires LDAPv3" );
115                         free( ndn );
116                         free( newrdn );
117                         return -1;
118                 }
119
120                 if ( ber_scanf( op->o_ber, "a", &newSuperior ) 
121                      == LBER_ERROR ) {
122
123                     Debug( LDAP_DEBUG_ANY, "ber_scanf(\"a\") failed\n",
124                            0, 0, 0 );
125                         send_ldap_disconnect( conn, op,
126                                 LDAP_PROTOCOL_ERROR, "decoding error" );
127                         free( ndn );
128                         free( newrdn );
129                     return -1;
130                 }
131
132                 nnewSuperior = ch_strdup( newSuperior );
133
134                 if( dn_normalize_case( nnewSuperior ) == NULL ) {
135                         Debug( LDAP_DEBUG_ANY, "do_modrdn: invalid new superior (%s)\n",
136                                 newSuperior, 0, 0 );
137                         send_ldap_result( conn, op, rc = LDAP_INVALID_DN_SYNTAX, NULL,
138                                 "invalid (new superior) DN", NULL, NULL );
139                         goto done;
140                 }
141
142         }
143
144         Debug( LDAP_DEBUG_ARGS,
145             "do_modrdn: dn (%s) newrdn (%s) newsuperior (%s)\n",
146                 ndn, newrdn,
147                 newSuperior != NULL ? newSuperior : "" );
148
149         if ( ber_scanf( op->o_ber, /*{*/ "}") == LBER_ERROR ) {
150                 free( ndn );
151                 free( newrdn ); 
152                 free( newSuperior );
153                 free( nnewSuperior );
154                 Debug( LDAP_DEBUG_ANY, "do_modrdn: ber_scanf failed\n", 0, 0, 0 );
155                 send_ldap_disconnect( conn, op,
156                                 LDAP_PROTOCOL_ERROR, "decoding error" );
157                 return -1;
158         }
159
160         if( (rc = get_ctrls( conn, op, 1 )) != LDAP_SUCCESS ) {
161                 Debug( LDAP_DEBUG_ANY, "do_modrdn: get_ctrls failed\n", 0, 0, 0 );
162                 /* get_ctrls has sent results.  Now clean up. */
163                 goto done;
164         } 
165
166         Statslog( LDAP_DEBUG_STATS, "conn=%ld op=%d MODRDN dn=\"%s\"\n",
167             op->o_connid, op->o_opid, ndn, 0, 0 );
168
169         /*
170          * We could be serving multiple database backends.  Select the
171          * appropriate one, or send a referral to our "referral server"
172          * if we don't hold it.
173          */
174
175         if ( (be = select_backend( ndn )) == NULL ) {
176                 free( ndn );
177                 free( newrdn ); 
178                 free( newSuperior );
179                 free( nnewSuperior );
180                 send_ldap_result( conn, op, rc = LDAP_REFERRAL,
181                         NULL, NULL, default_referral, NULL );
182                 return rc;
183         }
184
185         if ( global_readonly || be->be_readonly ) {
186                 Debug( LDAP_DEBUG_ANY, "do_modrdn: database is read-only\n",
187                        0, 0, 0 );
188                 send_ldap_result( conn, op, rc = LDAP_UNWILLING_TO_PERFORM,
189                                   NULL, "database is read-only", NULL, NULL );
190                 goto done;
191         }
192
193         /* Make sure that the entry being changed and the newSuperior are in 
194          * the same backend, otherwise we return an error.
195          */
196         if( newSuperior != NULL ) {
197                 newSuperior_be = select_backend( nnewSuperior );
198
199                 if ( newSuperior_be != be ) {
200                         /* newSuperior is in same backend */
201                         rc = LDAP_AFFECTS_MULTIPLE_DSAS;
202
203                         send_ldap_result( conn, op, rc,
204                                 NULL, NULL, NULL, NULL );
205
206                         free( ndn );
207                         free( newrdn );
208                         free( newSuperior );
209                         free( nnewSuperior );
210
211                         return rc;
212                 }
213
214                 /* deref suffix alias if appropriate */
215                 nnewSuperior = suffix_alias( be, nnewSuperior );
216         }
217
218         /* deref suffix alias if appropriate */
219         ndn = suffix_alias( be, ndn );
220
221         /*
222          * do the add if 1 && (2 || 3)
223          * 1) there is an add function implemented in this backend;
224          * 2) this backend is master for what it holds;
225          * 3) it's a replica and the dn supplied is the update_ndn.
226          */
227         if ( be->be_modrdn ) {
228                 /* do the update here */
229 #ifndef SLAPD_MULTIMASTER
230                 if ( be->be_update_ndn == NULL ||
231                         strcmp( be->be_update_ndn, op->o_ndn ) == 0 )
232 #endif
233                 {
234                         if ( (*be->be_modrdn)( be, conn, op, ndn, newrdn,
235                             deloldrdn, newSuperior ) == 0
236 #ifdef SLAPD_MULTIMASTER
237                                 && ( be->be_update_ndn == NULL ||
238                                         strcmp( be->be_update_ndn, op->o_ndn ) )
239 #endif
240                         ) {
241                                 struct replog_moddn moddn;
242                                 moddn.newrdn = newrdn;
243                                 moddn.deloldrdn = deloldrdn;
244                                 moddn.newsup = newSuperior;
245
246                                 replog( be, op, ndn, &moddn );
247                         }
248 #ifndef SLAPD_MULTIMASTER
249                 } else {
250                         send_ldap_result( conn, op, rc = LDAP_REFERRAL, NULL, NULL,
251                                 be->be_update_refs ? be->be_update_refs : default_referral, NULL );
252 #endif
253                 }
254         } else {
255                 send_ldap_result( conn, op, rc = LDAP_UNWILLING_TO_PERFORM,
256                         NULL, "Function not implemented", NULL, NULL );
257         }
258
259 done:
260         free( ndn );
261         free( newrdn ); 
262         free( newSuperior );
263         free( nnewSuperior );
264         return rc;
265 }