]> git.sur5r.net Git - openldap/blob - servers/slapd/back-tcl/tcl_bind.c
Added return()
[openldap] / servers / slapd / back-tcl / tcl_bind.c
1 /*
2  * bind.c - tcl bind routines
3  *
4  * Copyright 1999, Ben Collins <bcollins@debian.org>, All rights reserved.
5  *
6  * Redistribution and use in source and binary forms are permitted only
7  * as authorized by the OpenLDAP Public License.  A copy of this
8  * license is available at http://www.OpenLDAP.org/license.html or
9  * in file LICENSE in the top-level directory of the distribution.
10  */
11
12 #include "portable.h"
13
14 #include <stdio.h>
15
16 #include "slap.h"
17 #include "tcl_back.h"
18
19 int tcl_back_bind (
20         Backend * be,
21         Connection * conn,
22         Operation * op,
23         char *dn,
24         int method,
25         struct berval *cred,
26         char** edn
27 )
28 {
29         char *command, *suf_tcl, *results;
30         int i, code, err = 0;
31         struct tclinfo *ti = (struct tclinfo *) be->be_private;
32
33         *edn = NULL;
34
35         if (ti->ti_bind == NULL) {
36                 send_ldap_result (conn, op, LDAP_UNWILLING_TO_PERFORM, NULL,
37                         "bind not implemented");
38                 return (-1);
39         }
40
41         for ( i = 0; be->be_suffix[i] != NULL; i++ )
42                 ;
43         suf_tcl = Tcl_Merge(i, be->be_suffix);
44
45         command = (char *) ch_malloc (strlen(ti->ti_bind) + strlen(suf_tcl) +
46                 strlen(dn) + strlen(cred->bv_val) + 64);
47         sprintf(command, "%s BIND {%ld} {%s} {%s} {%d} {%lu} {%s}",
48                 ti->ti_bind, op->o_msgid, suf_tcl, dn, method, cred->bv_len,
49                 cred->bv_val);
50         Tcl_Free(suf_tcl);
51
52         ldap_pvt_thread_mutex_lock( &tcl_interpreter_mutex );
53         code = Tcl_GlobalEval(ti->ti_ii->interp, command);
54         results = (char *) strdup(ti->ti_ii->interp->result);
55         ldap_pvt_thread_mutex_unlock( &tcl_interpreter_mutex );
56         free(command);
57
58         if (code != TCL_OK) {
59                 err = LDAP_OPERATIONS_ERROR;
60                 Debug(LDAP_DEBUG_ANY, "tcl_bind_error: %s\n", results, 0, 0);
61         } else {
62                 err = interp_send_results ( be, conn, op, results, NULL, 0 );
63         }
64
65         if (err != LDAP_SUCCESS)
66                 send_ldap_result (conn, op, err, NULL, "internal backend error");
67         return (err);
68 }