]> git.sur5r.net Git - openldap/blob - servers/slapd/back-perl/bind.c
Use -lldap_r instead of -lldap -lthread.
[openldap] / servers / slapd / back-perl / bind.c
1 /*
2  *       Copyright 1999, John C. Quillan, All rights reserved.
3  *
4  *       Redistribution and use in source and binary forms are permitted only
5  *       as authorized by the OpenLDAP Public License.  A copy of this
6  *       license is available at http://www.OpenLDAP.org/license.html or
7  *       in file LICENSE in the top-level directory of the distribution.
8  */
9
10 #include "portable.h"
11 /* init.c - initialize shell backend */
12         
13 #include <stdio.h>
14 /*      #include <ac/types.h>
15         #include <ac/socket.h>
16 */
17
18 #include <EXTERN.h>
19 #include <perl.h>
20
21 #include "slap.h"
22 #include "perl_back.h"
23
24
25 /**********************************************************
26  *
27  * Bind
28  *
29  **********************************************************/
30 int
31 perl_back_bind(
32         Backend *be,
33         Connection *conn,
34         Operation *op,
35         char *dn,
36         int method,
37         struct berval *cred,
38         char** edn
39 )
40 {
41         int return_code;
42         int count;
43
44         PerlBackend *perl_back = (PerlBackend *) be->be_private;
45
46         *edn = NULL;
47
48         ldap_pvt_thread_mutex_lock( &perl_interpreter_mutex );  
49
50         {
51                 dSP; ENTER; SAVETMPS;
52
53                 PUSHMARK(sp);
54                 XPUSHs( perl_back->pb_obj_ref );
55                 XPUSHs(sv_2mortal(newSVpv( dn , 0)));
56                 XPUSHs(sv_2mortal(newSVpv( cred->bv_val , cred->bv_len)));
57                 PUTBACK;
58
59                 count = perl_call_method("bind", G_SCALAR);
60
61                 SPAGAIN;
62
63                 if (count != 1) {
64                         croak("Big trouble in back_search\n");
65                 }
66
67                 return_code = POPi;
68                                                          
69
70                 PUTBACK; FREETMPS; LEAVE;
71         }
72
73         ldap_pvt_thread_mutex_unlock( &perl_interpreter_mutex );        
74
75         Debug( LDAP_DEBUG_ANY, "Perl BIND\n", 0, 0, 0 );
76
77         return ( return_code );
78 }
79
80