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