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