]> git.sur5r.net Git - openldap/blob - servers/slapd/back-ldap/modrdn.c
31739cec7a0cbf9588eb4ebc7edad3276466c51b
[openldap] / servers / slapd / back-ldap / modrdn.c
1 /* modrdn.c - ldap backend modrdn function */
2 /* $OpenLDAP$ */
3 /*
4  * Copyright 1998-2003 The OpenLDAP Foundation, All Rights Reserved.
5  * COPYING RESTRICTIONS APPLY, see COPYRIGHT file
6  */
7 /* This is an altered version */
8 /*
9  * Copyright 1999, Howard Chu, All rights reserved. <hyc@highlandsun.com>
10  * 
11  * Permission is granted to anyone to use this software for any purpose
12  * on any computer system, and to alter it and redistribute it, subject
13  * to the following restrictions:
14  * 
15  * 1. The author is not responsible for the consequences of use of this
16  *    software, no matter how awful, even if they arise from flaws in it.
17  * 
18  * 2. The origin of this software must not be misrepresented, either by
19  *    explicit claim or by omission.  Since few users ever read sources,
20  *    credits should appear in the documentation.
21  * 
22  * 3. Altered versions must be plainly marked as such, and must not be
23  *    misrepresented as being the original software.  Since few users
24  *    ever read sources, credits should appear in the documentation.
25  * 
26  * 4. This notice may not be removed or altered.
27  *
28  *
29  *
30  * Copyright 2000, Pierangelo Masarati, All rights reserved. <ando@sys-net.it>
31  * 
32  * This software is being modified by Pierangelo Masarati.
33  * The previously reported conditions apply to the modified code as well.
34  * Changes in the original code are highlighted where required.
35  * Credits for the original code go to the author, Howard Chu.
36  */
37
38 #include "portable.h"
39
40 #include <stdio.h>
41
42 #include <ac/socket.h>
43 #include <ac/string.h>
44
45 #include "slap.h"
46 #include "back-ldap.h"
47
48 int
49 ldap_back_modrdn(
50     Backend     *be,
51     Connection  *conn,
52     Operation   *op,
53     struct berval       *dn,
54     struct berval       *ndn,
55     struct berval       *newrdn,
56     struct berval       *nnewrdn,
57     int         deleteoldrdn,
58     struct berval       *newSuperior,
59     struct berval       *nnewSuperior
60 )
61 {
62         struct ldapinfo *li = (struct ldapinfo *) be->be_private;
63         struct ldapconn *lc;
64         int rc;
65         ber_int_t msgid;
66
67         struct berval mdn = { 0, NULL }, mnewSuperior = { 0, NULL };
68
69         lc = ldap_back_getconn( li, conn, op );
70         if ( !lc || !ldap_back_dobind(li, lc, conn, op) ) {
71                 return( -1 );
72         }
73
74         if (newSuperior) {
75                 int version = LDAP_VERSION3;
76                 ldap_set_option( lc->ld, LDAP_OPT_PROTOCOL_VERSION, &version);
77                 
78                 /*
79                  * Rewrite the new superior, if defined and required
80                  */
81 #ifdef ENABLE_REWRITE
82                 switch ( rewrite_session( li->rwinfo, "newSuperiorDn",
83                                         newSuperior->bv_val, conn, &mnewSuperior.bv_val ) ) {
84                 case REWRITE_REGEXEC_OK:
85                         if ( mnewSuperior.bv_val == NULL ) {
86                                 mnewSuperior.bv_val = ( char * )newSuperior;
87                         }
88 #ifdef NEW_LOGGING
89                         LDAP_LOG( BACK_LDAP, DETAIL1, 
90                                 "[rw] newSuperiorDn:" " \"%s\" -> \"%s\"\n",
91                                 newSuperior, mnewSuperior.bv_val, 0 );
92 #else /* !NEW_LOGGING */
93                         Debug( LDAP_DEBUG_ARGS, "rw> newSuperiorDn:"
94                                         " \"%s\" -> \"%s\"\n%s",
95                                         newSuperior->bv_val, mnewSuperior.bv_val, "" );
96 #endif /* !NEW_LOGGING */
97                         break;
98
99                 case REWRITE_REGEXEC_UNWILLING:
100                         send_ldap_result( conn, op, LDAP_UNWILLING_TO_PERFORM,
101                                         NULL, "Operation not allowed",
102                                         NULL, NULL );
103                         return( -1 );
104
105                 case REWRITE_REGEXEC_ERR:
106                         send_ldap_result( conn, op, LDAP_OTHER,
107                                         NULL, "Rewrite error",
108                                         NULL, NULL );
109                         return( -1 );
110                 }
111 #else /* !ENABLE_REWRITE */
112                 ldap_back_dn_massage( li, newSuperior, &mnewSuperior, 0, 1 );
113                 if ( mnewSuperior.bv_val == NULL ) {
114                         return( -1 );
115                 }
116 #endif /* !ENABLE_REWRITE */
117         }
118
119 #ifdef ENABLE_REWRITE
120         /*
121          * Rewrite the modrdn dn, if required
122          */
123         switch ( rewrite_session( li->rwinfo, "modrDn", dn->bv_val, conn, &mdn.bv_val ) ) {
124         case REWRITE_REGEXEC_OK:
125                 if ( mdn.bv_val == NULL ) {
126                         mdn.bv_val = ( char * )dn->bv_val;
127                 }
128 #ifdef NEW_LOGGING
129                 LDAP_LOG( BACK_LDAP, DETAIL1, 
130                         "[rw] modrDn: \"%s\" -> \"%s\"\n", dn->bv_val, mdn.bv_val, 0 );
131 #else /* !NEW_LOGGING */
132                 Debug( LDAP_DEBUG_ARGS, "rw> modrDn: \"%s\" -> \"%s\"\n%s",
133                                 dn->bv_val, mdn.bv_val, "" );
134 #endif /* !NEW_LOGGING */
135                 break;
136                 
137         case REWRITE_REGEXEC_UNWILLING:
138                 send_ldap_result( conn, op, LDAP_UNWILLING_TO_PERFORM,
139                                 NULL, "Operation not allowed", NULL, NULL );
140                 return( -1 );
141
142         case REWRITE_REGEXEC_ERR:
143                 send_ldap_result( conn, op, LDAP_OTHER,
144                                 NULL, "Rewrite error", NULL, NULL );
145                 return( -1 );
146         }
147 #else /* !ENABLE_REWRITE */
148         ldap_back_dn_massage( li, dn, &mdn, 0, 1 );
149 #endif /* !ENABLE_REWRITE */
150
151         rc = ldap_rename( lc->ld, mdn.bv_val, newrdn->bv_val, mnewSuperior.bv_val,
152                 deleteoldrdn, op->o_ctrls, NULL, &msgid );
153
154         if ( mdn.bv_val != dn->bv_val ) {
155                 free( mdn.bv_val );
156         }
157         if ( mnewSuperior.bv_val != NULL
158                 && mnewSuperior.bv_val != newSuperior->bv_val ) {
159                 free( mnewSuperior.bv_val );
160         }
161         
162         return( ldap_back_op_result( li, lc, conn, op, msgid, rc, 1 ) );
163 }