]> git.sur5r.net Git - openldap/blob - servers/slapd/back-perl/modrdn.c
Fix prev commit, return generated passwd
[openldap] / servers / slapd / back-perl / modrdn.c
1 /* $OpenLDAP$ */
2 /*
3  * Copyright 1999-2003 The OpenLDAP Foundation, All Rights Reserved.
4  * COPYING RESTRICTIONS APPLY, see COPYRIGHT file
5  */
6 /*
7  *       Copyright 1999, John C. Quillan, All rights reserved.
8  *       Portions Copyright 2002, myinternet Limited. All rights reserved.
9  *
10  *       Redistribution and use in source and binary forms are permitted only
11  *       as authorized by the OpenLDAP Public License.  A copy of this
12  *       license is available at http://www.OpenLDAP.org/license.html or
13  *       in file LICENSE in the top-level directory of the distribution.
14  */
15
16 /*
17  * LDAP v3 newSuperior support.
18  *
19  * Copyright 1999, Juan C. Gomez, All rights reserved.
20  * This software is not subject to any license of Silicon Graphics 
21  * Inc. or Purdue University.
22  *
23  * Redistribution and use in source and binary forms are permitted
24  * without restriction or fee of any kind as long as this notice
25  * is preserved.
26  *
27  */
28
29 #include <EXTERN.h>
30 #include <perl.h>
31 #undef _ /* #defined by both Perl and ac/localize.h */
32
33 #ifdef HAVE_WIN32_ASPERL
34 #include "asperl_undefs.h"
35 #endif
36
37 #include "portable.h"
38
39 #include <stdio.h>
40
41 #include "slap.h"
42
43 #include "perl_back.h"
44
45 int
46 perl_back_modrdn(
47         Operation       *op,
48         SlapReply       *rs )
49 {
50         PerlBackend *perl_back = (PerlBackend *) op->o_bd->be_private;
51         int count;
52
53         ldap_pvt_thread_mutex_lock( &perl_interpreter_mutex );  
54
55         {
56                 dSP; ENTER; SAVETMPS;
57                 
58                 PUSHMARK(sp) ;
59                 XPUSHs( perl_back->pb_obj_ref );
60                 XPUSHs(sv_2mortal(newSVpv( op->o_req_dn.bv_val , 0 )));
61                 XPUSHs(sv_2mortal(newSVpv( op->orr_newrdn.bv_val , 0 )));
62                 XPUSHs(sv_2mortal(newSViv( op->orr_deleteoldrdn )));
63                 if ( op->orr_newSup != NULL ) {
64                         XPUSHs(sv_2mortal(newSVpv( op->orr_newSup->bv_val , 0 )));
65                 }
66                 PUTBACK ;
67
68 #ifdef PERL_IS_5_6
69                 count = call_method("modrdn", G_SCALAR);
70 #else
71                 count = perl_call_method("modrdn", G_SCALAR);
72 #endif
73
74                 SPAGAIN ;
75
76                 if (count != 1) {
77                         croak("Big trouble in back_modrdn\n") ;
78                 }
79                                                          
80                 rs->sr_err = POPi;
81
82                 PUTBACK; FREETMPS; LEAVE ;
83         }
84
85         ldap_pvt_thread_mutex_unlock( &perl_interpreter_mutex );
86         
87         send_ldap_result( op, rs );
88
89         Debug( LDAP_DEBUG_ANY, "Perl MODRDN\n", 0, 0, 0 );
90         return( 0 );
91 }