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