]> git.sur5r.net Git - openldap/blob - servers/slapd/back-tcl/tcl_bind.c
Merge in all devel changes since 2.0-alpha2.
[openldap] / servers / slapd / back-tcl / tcl_bind.c
1 /* $OpenLDAP$ */
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
20 tcl_back_bind (
21         Backend * be,
22         Connection * conn,
23         Operation * op,
24         char *dn,
25         int method,
26         char            *mech,
27         struct berval *cred,
28         char **edn
29 )
30 {
31         char *command, *suf_tcl, *results;
32         int i, code, err = 0;
33         struct tclinfo *ti = (struct tclinfo *) be->be_private;
34
35         *edn = NULL;
36
37         if (ti->ti_bind == NULL) {
38                 send_ldap_result (conn, op, LDAP_UNWILLING_TO_PERFORM, NULL,
39                         "bind not implemented", NULL, NULL );
40                 return (-1);
41         }
42
43         for (i = 0; be->be_suffix[i] != NULL; i++);
44         suf_tcl = Tcl_Merge (i, be->be_suffix);
45
46         command = (char *) ch_malloc (strlen (ti->ti_bind) + strlen
47                 (suf_tcl) +
48                 strlen (dn) + strlen (cred->bv_val) + 64);
49         sprintf (command, "%s BIND {%ld} {%s} {%s} {%d} {%lu} {%s}",
50                 ti->ti_bind, op->o_msgid, suf_tcl, dn, method, cred->bv_len,
51                 cred->bv_val);
52         Tcl_Free (suf_tcl);
53
54         ldap_pvt_thread_mutex_lock (&tcl_interpreter_mutex);
55         code = Tcl_GlobalEval (ti->ti_ii->interp, command);
56         results = (char *) ch_strdup (ti->ti_ii->interp->result);
57         ldap_pvt_thread_mutex_unlock (&tcl_interpreter_mutex);
58         free (command);
59
60         if (code != TCL_OK) {
61                 err = LDAP_OPERATIONS_ERROR;
62                 Debug (LDAP_DEBUG_SHELL, "tcl_bind_error: %s\n", results, 0, 0);
63         } else {
64                 err = interp_send_results (be, conn, op, results, NULL, 0);
65         }
66
67         if (err != LDAP_SUCCESS)
68                 send_ldap_result (conn, op, err, NULL,
69                         "internal backend error", NULL, NULL );
70
71         free (results);
72         return (err);
73 }