]> git.sur5r.net Git - openldap/blob - servers/slapd/back-ldap/modrdn.c
More cleanups for suffixmassage DNs
[openldap] / servers / slapd / back-ldap / modrdn.c
1 /* modrdn.c - ldap backend modrdn function */
2 /* $OpenLDAP$ */
3 /*
4  * Copyright 1998-2002 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(( "backend", LDAP_LEVEL_DETAIL1,
88                                         "[rw] newSuperiorDn:"
89                                         " \"%s\" -> \"%s\"\n",
90                                         newSuperior, mnewSuperior.bv_val ));
91 #else /* !NEW_LOGGING */
92                         Debug( LDAP_DEBUG_ARGS, "rw> newSuperiorDn:"
93                                         " \"%s\" -> \"%s\"\n%s",
94                                         newSuperior->bv_val, mnewSuperior.bv_val, "" );
95 #endif /* !NEW_LOGGING */
96                         break;
97
98                 case REWRITE_REGEXEC_UNWILLING:
99                         send_ldap_result( conn, op, LDAP_UNWILLING_TO_PERFORM,
100                                         NULL, "Unwilling to perform",
101                                         NULL, NULL );
102                         return( -1 );
103
104                 case REWRITE_REGEXEC_ERR:
105                         send_ldap_result( conn, op, LDAP_OPERATIONS_ERROR,
106                                         NULL, "Operations error",
107                                         NULL, NULL );
108                         return( -1 );
109                 }
110 #else /* !ENABLE_REWRITE */
111                 ldap_back_dn_massage( li, newSuperior, &mnewSuperior, 0, 1 );
112                 if ( mnewSuperior.bv_val == NULL ) {
113                         return( -1 );
114                 }
115 #endif /* !ENABLE_REWRITE */
116         }
117
118 #ifdef ENABLE_REWRITE
119         /*
120          * Rewrite the modrdn dn, if required
121          */
122         switch ( rewrite_session( li->rwinfo, "modrDn", dn->bv_val, conn, &mdn.bv_val ) ) {
123         case REWRITE_REGEXEC_OK:
124                 if ( mdn.bv_val == NULL ) {
125                         mdn.bv_val = ( char * )dn->bv_val;
126                 }
127 #ifdef NEW_LOGGING
128                 LDAP_LOG(( "backend", LDAP_LEVEL_DETAIL1,
129                                 "[rw] modrDn: \"%s\" -> \"%s\"\n", dn->bv_val, mdn.bv_val ));
130 #else /* !NEW_LOGGING */
131                 Debug( LDAP_DEBUG_ARGS, "rw> modrDn: \"%s\" -> \"%s\"\n%s",
132                                 dn->bv_val, mdn.bv_val, "" );
133 #endif /* !NEW_LOGGING */
134                 break;
135                 
136         case REWRITE_REGEXEC_UNWILLING:
137                 send_ldap_result( conn, op, LDAP_UNWILLING_TO_PERFORM,
138                                 NULL, "Unwilling to perform", NULL, NULL );
139                 return( -1 );
140
141         case REWRITE_REGEXEC_ERR:
142                 send_ldap_result( conn, op, LDAP_OPERATIONS_ERROR,
143                                 NULL, "Operations error", NULL, NULL );
144                 return( -1 );
145         }
146 #else /* !ENABLE_REWRITE */
147         ldap_back_dn_massage( li, dn, &mdn, 0, 1 );
148 #endif /* !ENABLE_REWRITE */
149
150         ldap_rename2_s( lc->ld, mdn.bv_val, newrdn->bv_val, mnewSuperior.bv_val, deleteoldrdn );
151
152         if ( mdn.bv_val != dn->bv_val ) {
153                 free( mdn.bv_val );
154         }
155         if ( mnewSuperior.bv_val != NULL
156                 && mnewSuperior.bv_val != newSuperior->bv_val ) {
157                 free( mnewSuperior.bv_val );
158         }
159         
160         return( ldap_back_op_result( lc, op ) );
161 }