]> git.sur5r.net Git - openldap/blob - servers/slapd/back-ldap/modrdn.c
Clear ocflags
[openldap] / servers / slapd / back-ldap / modrdn.c
1 /* modrdn.c - ldap backend modrdn function */
2 /* $OpenLDAP$ */
3 /* This work is part of OpenLDAP Software <http://www.openldap.org/>.
4  *
5  * Copyright 2003 The OpenLDAP Foundation.
6  * All rights reserved.
7  *
8  * Redistribution and use in source and binary forms, with or without
9  * modification, are permitted only as authorized by the OpenLDAP
10  * Public License.
11  *
12  * A copy of this license is available in the file LICENSE in the
13  * top-level directory of the distribution or, alternatively, at
14  * <http://www.OpenLDAP.org/license.html>.
15  */
16 /* ACKNOWLEDGEMENTS:
17  * This work was initially developed by the Howard Chu for inclusion
18  * in OpenLDAP Software and subsequently enhanced by Pierangelo
19  * Masarati.
20  */
21 /* This is an altered version */
22 /*
23  * Copyright 1999, Howard Chu, All rights reserved. <hyc@highlandsun.com>
24  * 
25  * Permission is granted to anyone to use this software for any purpose
26  * on any computer system, and to alter it and redistribute it, subject
27  * to the following restrictions:
28  * 
29  * 1. The author is not responsible for the consequences of use of this
30  *    software, no matter how awful, even if they arise from flaws in it.
31  * 
32  * 2. The origin of this software must not be misrepresented, either by
33  *    explicit claim or by omission.  Since few users ever read sources,
34  *    credits should appear in the documentation.
35  * 
36  * 3. Altered versions must be plainly marked as such, and must not be
37  *    misrepresented as being the original software.  Since few users
38  *    ever read sources, credits should appear in the documentation.
39  * 
40  * 4. This notice may not be removed or altered.
41  *
42  *
43  *
44  * Copyright 2000, Pierangelo Masarati, All rights reserved. <ando@sys-net.it>
45  * 
46  * This software is being modified by Pierangelo Masarati.
47  * The previously reported conditions apply to the modified code as well.
48  * Changes in the original code are highlighted where required.
49  * Credits for the original code go to the author, Howard Chu.
50  */
51
52 #include "portable.h"
53
54 #include <stdio.h>
55
56 #include <ac/socket.h>
57 #include <ac/string.h>
58
59 #include "slap.h"
60 #include "back-ldap.h"
61
62 int
63 ldap_back_modrdn(
64     Operation   *op,
65     SlapReply   *rs )
66 {
67         struct ldapinfo *li = (struct ldapinfo *) op->o_bd->be_private;
68         struct ldapconn *lc;
69         ber_int_t msgid;
70         dncookie dc;
71 #ifdef LDAP_BACK_PROXY_AUTHZ 
72         LDAPControl **ctrls = NULL;
73         int rc = LDAP_SUCCESS;
74 #endif /* LDAP_BACK_PROXY_AUTHZ */
75
76         struct berval mdn = { 0, NULL }, mnewSuperior = { 0, NULL };
77
78         lc = ldap_back_getconn( op, rs );
79         if ( !lc || !ldap_back_dobind(lc, op, rs) ) {
80                 return( -1 );
81         }
82
83         dc.rwmap = &li->rwmap;
84 #ifdef ENABLE_REWRITE
85         dc.conn = op->o_conn;
86         dc.rs = rs;
87 #else
88         dc.tofrom = 1;
89         dc.normalized = 0;
90 #endif
91         if (op->orr_newSup) {
92                 int version = LDAP_VERSION3;
93                 ldap_set_option( lc->ld, LDAP_OPT_PROTOCOL_VERSION, &version);
94                 
95                 /*
96                  * Rewrite the new superior, if defined and required
97                  */
98 #ifdef ENABLE_REWRITE
99                 dc.ctx = "newSuperiorDn";
100 #endif
101                 if ( ldap_back_dn_massage( &dc, op->orr_newSup,
102                         &mnewSuperior ) ) {
103                         send_ldap_result( op, rs );
104                         return -1;
105                 }
106         }
107
108         /*
109          * Rewrite the modrdn dn, if required
110          */
111 #ifdef ENABLE_REWRITE
112         dc.ctx = "modrDn";
113 #endif
114         if ( ldap_back_dn_massage( &dc, &op->o_req_dn, &mdn ) ) {
115                 send_ldap_result( op, rs );
116                 return -1;
117         }
118
119 #ifdef LDAP_BACK_PROXY_AUTHZ
120         rc = ldap_back_proxy_authz_ctrl( lc, op, rs, &ctrls );
121         if ( rc != LDAP_SUCCESS ) {
122                 goto cleanup;
123         }
124 #endif /* LDAP_BACK_PROXY_AUTHZ */
125
126         rs->sr_err = ldap_rename( lc->ld, mdn.bv_val,
127                         op->orr_newrdn.bv_val, mnewSuperior.bv_val,
128                         op->orr_deleteoldrdn,
129 #ifdef LDAP_BACK_PROXY_AUTHZ
130                         ctrls,
131 #else /* ! LDAP_BACK_PROXY_AUTHZ */
132                         op->o_ctrls,
133 #endif /* ! LDAP_BACK_PROXY_AUTHZ */
134                         NULL, &msgid );
135
136 #ifdef LDAP_BACK_PROXY_AUTHZ
137 cleanup:
138         if ( ctrls && ctrls != op->o_ctrls ) {
139                 free( ctrls[ 0 ] );
140                 free( ctrls );
141         }
142 #endif /* LDAP_BACK_PROXY_AUTHZ */
143
144         if ( mdn.bv_val != op->o_req_dn.bv_val ) {
145                 free( mdn.bv_val );
146         }
147         if ( mnewSuperior.bv_val != NULL
148                 && mnewSuperior.bv_val != op->oq_modrdn.rs_newSup->bv_val ) {
149                 free( mnewSuperior.bv_val );
150         }
151
152 #ifdef LDAP_BACK_PROXY_AUTHZ
153         if ( rc != LDAP_SUCCESS ) {
154                 send_ldap_result( op, rs );
155                 return -1;
156         }
157 #endif /* LDAP_BACK_PROXY_AUTHZ */
158
159         return( ldap_back_op_result( lc, op, rs, msgid, 1 ) );
160 }
161