]> git.sur5r.net Git - openldap/blob - servers/slapd/modrdn.c
Log out to stderr, add LDAP_VERSION3 support to bind.c and modrdn.c
[openldap] / servers / slapd / modrdn.c
1 /*
2  * Copyright (c) 1995 Regents of the University of Michigan.
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms are permitted
6  * provided that this notice is preserved and that due credit is given
7  * to the University of Michigan at Ann Arbor. The name of the University
8  * may not be used to endorse or promote products derived from this
9  * software without specific prior written permission. This software
10  * is provided ``as is'' without express or implied warranty.
11  */
12
13 /*
14  * LDAP v3 newSuperior support.
15  *
16  * Copyright 1999, Juan C. Gomez, All rights reserved.
17  * This software is not subject to any license of Silicon Graphics 
18  * Inc. or Purdue University.
19  *
20  * Redistribution and use in source and binary forms are permitted
21  * without restriction or fee of any kind as long as this notice
22  * is preserved.
23  *
24  */
25
26 #include "portable.h"
27
28 #include <stdio.h>
29
30 #include <ac/socket.h>
31 #include <ac/string.h>
32
33 #include "slap.h"
34
35 void
36 do_modrdn(
37     Connection  *conn,
38     Operation   *op
39 )
40 {
41         char    *ndn, *newrdn;
42         ber_int_t       deloldrdn;
43         Backend *be;
44         /* Vars for LDAP v3 newSuperior support */
45         char    *newSuperior = NULL;
46         char    *nnewSuperior = NULL;
47         Backend *newSuperior_be = NULL;
48         ber_len_t       length;
49
50         Debug( LDAP_DEBUG_TRACE, "do_modrdn\n", 0, 0, 0 );
51
52         /*
53          * Parse the modrdn request.  It looks like this:
54          *
55          *      ModifyRDNRequest := SEQUENCE {
56          *              entry   DistinguishedName,
57          *              newrdn  RelativeDistinguishedName
58          *              deleteoldrdn    BOOLEAN,
59          *              newSuperior     [0] LDAPDN OPTIONAL (v3 Only!)
60          *      }
61          */
62
63         if ( ber_scanf( op->o_ber, "{aab", &ndn, &newrdn, &deloldrdn )
64             == LBER_ERROR ) {
65                 Debug( LDAP_DEBUG_ANY, "ber_scanf failed\n", 0, 0, 0 );
66                 send_ldap_result( conn, op, LDAP_PROTOCOL_ERROR, NULL, "" );
67                 return;
68         }
69
70         Debug( LDAP_DEBUG_ARGS,
71             "do_modrdn: dn (%s) newrdn (%s) deloldrdn (%d)\n", ndn, newrdn,
72             deloldrdn );
73
74
75         /* Check for newSuperior parameter, if present scan it */
76
77         if ( ber_peek_tag( op->o_ber, &length ) == LDAP_TAG_NEWSUPERIOR ) {
78
79                 if ( conn->c_protocol ==  0 ) {
80                         /*
81                          * Promote to LDAPv3
82                          */
83                         conn->c_protocol = LDAP_VERSION3;
84
85                 } else if ( conn->c_protocol < LDAP_VERSION3 ) {
86                         /* Conection record indicates v2 but field 
87                          * newSuperior is present: report error.
88                          */
89                         Debug( LDAP_DEBUG_ANY,
90                                "modrdn(v2): invalid field newSuperior!\n",
91                                0, 0, 0 );
92                         send_ldap_result( conn, op, LDAP_PROTOCOL_ERROR,
93                                           NULL, "" );
94                         return;
95                 }
96
97                 if ( ber_scanf( op->o_ber, /*{*/ "a}", &newSuperior ) 
98                      == LBER_ERROR ) {
99
100                     Debug( LDAP_DEBUG_ANY, "ber_scanf(\"a\"}) failed\n",
101                            0, 0, 0 );
102                     send_ldap_result( conn, op, LDAP_PROTOCOL_ERROR, NULL,
103                                       "" );
104                     return;
105
106                 }/* if ( ber_scanf( ber, { "a}", &newSuperior ) == ... ) */
107
108
109                 Debug( LDAP_DEBUG_ARGS, "do_modrdn: newSuperior=(%s)\n",
110                        newSuperior, 0, 0 );
111
112                 /* GET BACKEND FOR NEW SUPERIOR */
113
114                 nnewSuperior = strdup( newSuperior );
115                 dn_normalize_case( nnewSuperior );
116
117                 if ( (newSuperior_be = select_backend( nnewSuperior )) 
118                      == NULL ) {
119                     
120                         /* We do not have a backend for newSuperior so we send
121                          * a referral.
122                          * XXX: We may need to do something else here, not sure
123                          * what though.
124                          */
125                 
126
127                         Debug( LDAP_DEBUG_ARGS,
128                                "do_modrdn: cant find backend for=(%s)\n",
129                                newSuperior, 0, 0 );
130                         
131                         free( ndn );
132                         free( newrdn );
133                         free( newSuperior );
134                         free( nnewSuperior );
135                         send_ldap_result( conn, op, LDAP_PARTIAL_RESULTS, NULL,
136                                           default_referral );
137                         return;
138                         
139                 }
140
141         }/* if ( ber_peek_tag( op->o_ber, &length ) == LDAP_TAG_NEWSUPERIOR )*/
142
143         dn_normalize_case( ndn );
144
145         Statslog( LDAP_DEBUG_STATS, "conn=%d op=%d MODRDN dn=\"%s\"\n",
146             conn->c_connid, op->o_opid, ndn, 0, 0 );
147
148         /*
149          * We could be serving multiple database backends.  Select the
150          * appropriate one, or send a referral to our "referral server"
151          * if we don't hold it.
152          */
153
154         if ( (be = select_backend( ndn )) == NULL ) {
155                 free( ndn );
156                 free( newrdn ); 
157                 free( newSuperior );
158                 free( nnewSuperior );
159                 send_ldap_result( conn, op, LDAP_PARTIAL_RESULTS, NULL,
160                     default_referral );
161                 return;
162         }
163
164         /* Make sure that the entry being changed and the newSuperior are in 
165          * the same backend, otherwise we return an error.
166          */
167
168         if ( (newSuperior_be != NULL) && ( be != newSuperior_be) ) {
169
170                 Debug( LDAP_DEBUG_ANY, "dn=(%s), newSuperior=(%s)\n", ndn,
171                        newSuperior, 0 );
172                 
173                 free( ndn );
174                 free( newrdn );
175                 free( newSuperior );
176                 free( nnewSuperior );
177                 
178                 send_ldap_result( conn, op, LDAP_AFFECTS_MULTIPLE_DSAS,
179                                   NULL, "" );
180             
181                 return;
182
183         }/* if ( (newSuperior_be != NULL) && ( be != newSuperior_be) ) */
184
185
186         /* alias suffix if approp */
187         ndn = suffixAlias( ndn, op, be );
188
189         /*
190          * do the add if 1 && (2 || 3)
191          * 1) there is an add function implemented in this backend;
192          * 2) this backend is master for what it holds;
193          * 3) it's a replica and the dn supplied is the update_ndn.
194          */
195         if ( be->be_modrdn ) {
196                 /* do the update here */
197                 if ( be->be_update_ndn == NULL ||
198                         strcmp( be->be_update_ndn, op->o_ndn ) == 0 )
199                 {
200                         if ( (*be->be_modrdn)( be, conn, op, ndn, newrdn,
201                             deloldrdn, newSuperior ) == 0 ) {
202                                 /* XXX: MAY NEEED TO ADD newSuperior HERE */
203                                 replog( be, LDAP_REQ_MODRDN, ndn, newrdn,
204                                     deloldrdn );
205                         }
206                 } else {
207                         send_ldap_result( conn, op, LDAP_PARTIAL_RESULTS, NULL,
208                             default_referral );
209                 }
210         } else {
211                 send_ldap_result( conn, op, LDAP_UNWILLING_TO_PERFORM, NULL,
212                     "Function not implemented" );
213         }
214
215         free( ndn );
216         free( newrdn ); 
217         free( newSuperior );
218         free( nnewSuperior );
219 }