]> git.sur5r.net Git - openldap/blob - servers/slapd/back-perl/modrdn.c
ITS#2864 don't use sl_mark/release.
[openldap] / servers / slapd / back-perl / modrdn.c
1 /* $OpenLDAP$ */
2 /* This work is part of OpenLDAP Software <http://www.openldap.org/>.
3  *
4  * Copyright 1999-2003 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 <EXTERN.h>
19 #include <perl.h>
20 #undef _ /* #defined by both Perl and ac/localize.h */
21
22 #ifdef HAVE_WIN32_ASPERL
23 #include "asperl_undefs.h"
24 #endif
25
26 #include "portable.h"
27
28 #include <stdio.h>
29
30 #include "slap.h"
31
32 #include "perl_back.h"
33
34 int
35 perl_back_modrdn(
36         Operation       *op,
37         SlapReply       *rs )
38 {
39         PerlBackend *perl_back = (PerlBackend *) op->o_bd->be_private;
40         int count;
41
42         ldap_pvt_thread_mutex_lock( &perl_interpreter_mutex );  
43
44         {
45                 dSP; ENTER; SAVETMPS;
46                 
47                 PUSHMARK(sp) ;
48                 XPUSHs( perl_back->pb_obj_ref );
49                 XPUSHs(sv_2mortal(newSVpv( op->o_req_dn.bv_val , 0 )));
50                 XPUSHs(sv_2mortal(newSVpv( op->orr_newrdn.bv_val , 0 )));
51                 XPUSHs(sv_2mortal(newSViv( op->orr_deleteoldrdn )));
52                 if ( op->orr_newSup != NULL ) {
53                         XPUSHs(sv_2mortal(newSVpv( op->orr_newSup->bv_val , 0 )));
54                 }
55                 PUTBACK ;
56
57 #ifdef PERL_IS_5_6
58                 count = call_method("modrdn", G_SCALAR);
59 #else
60                 count = perl_call_method("modrdn", G_SCALAR);
61 #endif
62
63                 SPAGAIN ;
64
65                 if (count != 1) {
66                         croak("Big trouble in back_modrdn\n") ;
67                 }
68                                                          
69                 rs->sr_err = POPi;
70
71                 PUTBACK; FREETMPS; LEAVE ;
72         }
73
74         ldap_pvt_thread_mutex_unlock( &perl_interpreter_mutex );
75         
76         send_ldap_result( op, rs );
77
78         Debug( LDAP_DEBUG_ANY, "Perl MODRDN\n", 0, 0, 0 );
79         return( 0 );
80 }