]> git.sur5r.net Git - openldap/blob - servers/slapd/back-ldap/modrdn.c
1e79b450e92ade1b2ab5594289a4065bbd0cffea
[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     Operation   *op,
51     SlapReply   *rs )
52 {
53         struct ldapinfo *li = (struct ldapinfo *) op->o_bd->be_private;
54         struct ldapconn *lc;
55         ber_int_t msgid;
56         dncookie dc;
57
58         struct berval mdn = { 0, NULL }, mnewSuperior = { 0, NULL };
59
60         lc = ldap_back_getconn( op, rs );
61         if ( !lc || !ldap_back_dobind(lc, op, rs) ) {
62                 return( -1 );
63         }
64
65 #ifdef ENABLE_REWRITE
66         dc.rw = li->rwinfo;
67         dc.conn = op->o_conn;
68         dc.rs = rs;
69 #else
70         dc.li = li;
71         dc.tofrom = 1;
72         dc.normalized = 0;
73 #endif
74         if (op->orr_newSup) {
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                 dc.ctx = "newSuperiorDn";
83 #endif
84                 if ( ldap_back_dn_massage( &dc, op->orr_newSup,
85                         &mnewSuperior ) ) {
86                         send_ldap_result( op, rs );
87                         return -1;
88                 }
89         }
90
91         /*
92          * Rewrite the modrdn dn, if required
93          */
94 #ifdef ENABLE_REWRITE
95         dc.ctx = "modrDn";
96 #endif
97         if ( ldap_back_dn_massage( &dc, &op->o_req_dn, &mdn ) ) {
98                 send_ldap_result( op, rs );
99                 return -1;
100         }
101
102         rs->sr_err = ldap_rename( lc->ld, mdn.bv_val,
103                         op->orr_newrdn.bv_val, mnewSuperior.bv_val,
104                         op->orr_deleteoldrdn, op->o_ctrls,
105                         NULL, &msgid );
106
107         if ( mdn.bv_val != op->o_req_dn.bv_val ) {
108                 free( mdn.bv_val );
109         }
110         if ( mnewSuperior.bv_val != NULL
111                 && mnewSuperior.bv_val != op->oq_modrdn.rs_newSup->bv_val ) {
112                 free( mnewSuperior.bv_val );
113         }
114         
115         return( ldap_back_op_result( lc, op, rs, msgid, 1 ) );
116 }
117