1 /* $OpenLDAP$ */
2 /* This work is part of OpenLDAP Software <http://www.openldap.org/>.
3  *
4  * Copyright 1999-2021 The OpenLDAP Foundation.
5  * Portions Copyright 1999 John C. Quillan.
6  * Portions Copyright 2002 myinternet Limited.
7  * All rights reserved.
8  *
9  * Redistribution and use in source and binary forms, with or without
10  * modification, are permitted only as authorized by the OpenLDAP
11  * Public License.
12  *
13  * A copy of this license is available in file LICENSE in the
14  * top-level directory of the distribution or, alternatively, at
15  * <http://www.OpenLDAP.org/license.html>.
16  */
17 
18 #include "perl_back.h"
19 
20 int
perl_back_modrdn(Operation * op,SlapReply * rs)21 perl_back_modrdn(
22 	Operation	*op,
23 	SlapReply	*rs )
24 {
25 	PerlBackend *perl_back = (PerlBackend *) op->o_bd->be_private;
26 	int count;
27 
28 	PERL_SET_CONTEXT( PERL_INTERPRETER );
29 	ldap_pvt_thread_mutex_lock( &perl_interpreter_mutex );
30 
31 	{
32 		dSP; ENTER; SAVETMPS;
33 
34 		PUSHMARK(sp) ;
35 		XPUSHs( perl_back->pb_obj_ref );
36 		XPUSHs(sv_2mortal(newSVpv( op->o_req_dn.bv_val , op->o_req_dn.bv_len )));
37 		XPUSHs(sv_2mortal(newSVpv( op->orr_newrdn.bv_val , op->orr_newrdn.bv_len )));
38 		XPUSHs(sv_2mortal(newSViv( op->orr_deleteoldrdn )));
39 		if ( op->orr_newSup != NULL ) {
40 			XPUSHs(sv_2mortal(newSVpv( op->orr_newSup->bv_val , op->orr_newSup->bv_len )));
41 		}
42 		PUTBACK ;
43 
44 		count = call_method("modrdn", G_SCALAR);
45 
46 		SPAGAIN ;
47 
48 		if (count != 1) {
49 			croak("Big trouble in back_modrdn\n") ;
50 		}
51 
52 		rs->sr_err = POPi;
53 
54 		PUTBACK; FREETMPS; LEAVE ;
55 	}
56 
57 	ldap_pvt_thread_mutex_unlock( &perl_interpreter_mutex );
58 
59 	send_ldap_result( op, rs );
60 
61 	Debug( LDAP_DEBUG_ANY, "Perl MODRDN\n", 0, 0, 0 );
62 	return( 0 );
63 }
64