]> git.sur5r.net Git - openldap/blob - servers/slapd/back-perl/bind.c
ITS#2864 don't use sl_mark/release.
[openldap] / servers / slapd / back-perl / bind.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
35 /**********************************************************
36  *
37  * Bind
38  *
39  **********************************************************/
40 int
41 perl_back_bind(
42         Operation *op,
43         SlapReply *rs )
44 {
45         int count;
46
47         PerlBackend *perl_back = (PerlBackend *) op->o_bd->be_private;
48
49 #ifdef HAVE_WIN32_ASPERL
50         PERL_SET_CONTEXT( PERL_INTERPRETER );
51 #endif
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->orb_cred.bv_val , op->orb_cred.bv_len)));
62                 PUTBACK;
63
64 #ifdef PERL_IS_5_6
65                 count = call_method("bind", G_SCALAR);
66 #else
67                 count = perl_call_method("bind", G_SCALAR);
68 #endif
69
70                 SPAGAIN;
71
72                 if (count != 1) {
73                         croak("Big trouble in back_bind\n");
74                 }
75
76                 rs->sr_err = POPi;
77                                                          
78
79                 PUTBACK; FREETMPS; LEAVE;
80         }
81
82         ldap_pvt_thread_mutex_unlock( &perl_interpreter_mutex );        
83
84         Debug( LDAP_DEBUG_ANY, "Perl BIND returned 0x%04x\n", rs->sr_err, 0, 0 );
85
86         /* frontend will send result on success (0) */
87         if( rs->sr_err != LDAP_SUCCESS )
88                 send_ldap_result( op, rs );
89
90         return ( rs->sr_err );
91 }