]> git.sur5r.net Git - openldap/blob - servers/slapd/back-ldap/modrdn.c
cleanup
[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
65         struct berval mdn = { 0, NULL }, mnewSuperior = { 0, NULL };
66
67         lc = ldap_back_getconn( li, conn, op );
68         if ( !lc || !ldap_back_dobind(lc, op) ) {
69                 return( -1 );
70         }
71
72         if (newSuperior) {
73                 int version = LDAP_VERSION3;
74                 ldap_set_option( lc->ld, LDAP_OPT_PROTOCOL_VERSION, &version);
75                 
76                 /*
77                  * Rewrite the new superior, if defined and required
78                  */
79 #ifdef ENABLE_REWRITE
80                 switch ( rewrite_session( li->rwinfo, "newSuperiorDn",
81                                         newSuperior->bv_val, conn, &mnewSuperior.bv_val ) ) {
82                 case REWRITE_REGEXEC_OK:
83                         if ( mnewSuperior.bv_val == NULL ) {
84                                 mnewSuperior.bv_val = ( char * )newSuperior;
85                         }
86 #ifdef NEW_LOGGING
87                         LDAP_LOG( BACK_LDAP, DETAIL1, 
88                                 "[rw] newSuperiorDn:" " \"%s\" -> \"%s\"\n",
89                                 newSuperior, mnewSuperior.bv_val, 0 );
90 #else /* !NEW_LOGGING */
91                         Debug( LDAP_DEBUG_ARGS, "rw> newSuperiorDn:"
92                                         " \"%s\" -> \"%s\"\n%s",
93                                         newSuperior->bv_val, mnewSuperior.bv_val, "" );
94 #endif /* !NEW_LOGGING */
95                         break;
96
97                 case REWRITE_REGEXEC_UNWILLING:
98                         send_ldap_result( conn, op, LDAP_UNWILLING_TO_PERFORM,
99                                         NULL, "Operation not allowed",
100                                         NULL, NULL );
101                         return( -1 );
102
103                 case REWRITE_REGEXEC_ERR:
104                         send_ldap_result( conn, op, LDAP_OTHER,
105                                         NULL, "Rewrite error",
106                                         NULL, NULL );
107                         return( -1 );
108                 }
109 #else /* !ENABLE_REWRITE */
110                 ldap_back_dn_massage( li, newSuperior, &mnewSuperior, 0, 1 );
111                 if ( mnewSuperior.bv_val == NULL ) {
112                         return( -1 );
113                 }
114 #endif /* !ENABLE_REWRITE */
115         }
116
117 #ifdef ENABLE_REWRITE
118         /*
119          * Rewrite the modrdn dn, if required
120          */
121         switch ( rewrite_session( li->rwinfo, "modrDn", dn->bv_val, conn, &mdn.bv_val ) ) {
122         case REWRITE_REGEXEC_OK:
123                 if ( mdn.bv_val == NULL ) {
124                         mdn.bv_val = ( char * )dn->bv_val;
125                 }
126 #ifdef NEW_LOGGING
127                 LDAP_LOG( BACK_LDAP, DETAIL1, 
128                         "[rw] modrDn: \"%s\" -> \"%s\"\n", dn->bv_val, mdn.bv_val, 0 );
129 #else /* !NEW_LOGGING */
130                 Debug( LDAP_DEBUG_ARGS, "rw> modrDn: \"%s\" -> \"%s\"\n%s",
131                                 dn->bv_val, mdn.bv_val, "" );
132 #endif /* !NEW_LOGGING */
133                 break;
134                 
135         case REWRITE_REGEXEC_UNWILLING:
136                 send_ldap_result( conn, op, LDAP_UNWILLING_TO_PERFORM,
137                                 NULL, "Operation not allowed", NULL, NULL );
138                 return( -1 );
139
140         case REWRITE_REGEXEC_ERR:
141                 send_ldap_result( conn, op, LDAP_OTHER,
142                                 NULL, "Rewrite error", NULL, NULL );
143                 return( -1 );
144         }
145 #else /* !ENABLE_REWRITE */
146         ldap_back_dn_massage( li, dn, &mdn, 0, 1 );
147 #endif /* !ENABLE_REWRITE */
148
149         ldap_rename2_s( lc->ld, mdn.bv_val, newrdn->bv_val, mnewSuperior.bv_val, deleteoldrdn );
150
151         if ( mdn.bv_val != dn->bv_val ) {
152                 free( mdn.bv_val );
153         }
154         if ( mnewSuperior.bv_val != NULL
155                 && mnewSuperior.bv_val != newSuperior->bv_val ) {
156                 free( mnewSuperior.bv_val );
157         }
158         
159         return( ldap_back_op_result( lc, op ) );
160 }