]> git.sur5r.net Git - openldap/blob - servers/slapd/back-perl/bind.c
cee52ec5f368e39fdb6b4a0872ba092b00a5f490
[openldap] / servers / slapd / back-perl / bind.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 #include "portable.h"
17 /* init.c - initialize Perl backend */
18         
19 #include <stdio.h>
20
21 #include "slap.h"
22 #ifdef HAVE_WIN32_ASPERL
23 #include "asperl_undefs.h"
24 #endif
25
26 #include <EXTERN.h>
27 #include <perl.h>
28
29 #include "perl_back.h"
30
31
32 /**********************************************************
33  *
34  * Bind
35  *
36  **********************************************************/
37 int
38 perl_back_bind(
39         Operation *op,
40         SlapReply *rs )
41 {
42         int count;
43
44         PerlBackend *perl_back = (PerlBackend *) op->o_bd->be_private;
45
46 #ifdef HAVE_WIN32_ASPERL
47         PERL_SET_CONTEXT( PERL_INTERPRETER );
48 #endif
49
50         ldap_pvt_thread_mutex_lock( &perl_interpreter_mutex );  
51
52         {
53                 dSP; ENTER; SAVETMPS;
54
55                 PUSHMARK(SP);
56                 XPUSHs( perl_back->pb_obj_ref );
57                 XPUSHs(sv_2mortal(newSVpv( op->o_req_dn.bv_val , 0)));
58                 XPUSHs(sv_2mortal(newSVpv( op->orb_cred.bv_val , op->orb_cred.bv_len)));
59                 PUTBACK;
60
61 #ifdef PERL_IS_5_6
62                 count = call_method("bind", G_SCALAR);
63 #else
64                 count = perl_call_method("bind", G_SCALAR);
65 #endif
66
67                 SPAGAIN;
68
69                 if (count != 1) {
70                         croak("Big trouble in back_bind\n");
71                 }
72
73                 rs->sr_err = POPi;
74                                                          
75
76                 PUTBACK; FREETMPS; LEAVE;
77         }
78
79         ldap_pvt_thread_mutex_unlock( &perl_interpreter_mutex );        
80
81         Debug( LDAP_DEBUG_ANY, "Perl BIND returned 0x%04x\n", rs->sr_err, 0, 0 );
82
83         /* frontend will send result on success (0) */
84         if( rs->sr_err != LDAP_SUCCESS )
85                 send_ldap_result( op, rs );
86
87         return ( rs->sr_err );
88 }