]> git.sur5r.net Git - openldap/blob - servers/slapd/back-tcl/tcl_bind.c
Don't use 'shtool mkln' as ln(1) replacement.
[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         struct berval *dn,
25         struct berval *ndn,
26         int method,
27         struct berval *cred,
28         struct berval *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         if (ti->ti_bind == NULL) {
36                 send_ldap_result (conn, op, LDAP_UNWILLING_TO_PERFORM, NULL,
37                         "bind not implemented", NULL, NULL );
38                 return (-1);
39         }
40
41         for (i = 0; be->be_suffix[i] != NULL; i++);
42         suf_tcl = Tcl_Merge (i, be->be_suffix);
43
44         command = (char *) ch_malloc (strlen (ti->ti_bind) + strlen
45                 (suf_tcl) +
46                 dn->bv_len + cred->bv_len + 64);
47         sprintf (command, "%s BIND {%ld} {%s} {%s} {%d} {%lu} {%s}",
48                 ti->ti_bind, op->o_msgid, suf_tcl, dn->bv_val, 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 *) ch_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_SHELL, "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,
67                         "internal backend error", NULL, NULL );
68
69         free (results);
70         return (err);
71 }