]> git.sur5r.net Git - openldap/blob - servers/slapd/back-tcl/tcl_bind.c
Add dummy reference to lutil_uuidstr() for dynamically loaded back-bdb
[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, *results;
32         struct berval suf_tcl;
33         int code, err = 0;
34         struct tclinfo *ti = (struct tclinfo *) be->be_private;
35
36         if (ti->ti_bind.bv_len == 0) {
37                 send_ldap_result (conn, op, LDAP_UNWILLING_TO_PERFORM, NULL,
38                         "bind not implemented", NULL, NULL );
39                 return (-1);
40         }
41
42         if (tcl_merge_bvlist (be->be_suffix, &suf_tcl) == NULL) {
43                 send_ldap_result (conn, op, LDAP_OPERATIONS_ERROR, NULL,
44                         NULL, NULL, NULL );
45                 return (-1);
46         }
47
48         command = (char *) ch_malloc (ti->ti_bind.bv_len + suf_tcl.bv_len +
49                 dn->bv_len + cred->bv_len + 84);
50         sprintf (command, "%s BIND {%ld/%ld} {%s} {%s} {%d} {%lu} {%s}",
51                 ti->ti_bind.bv_val, op->o_connid, (long) op->o_msgid,
52                 suf_tcl.bv_val, 
53                 dn->bv_val, method, cred->bv_len, cred->bv_val);
54         Tcl_Free (suf_tcl.bv_val);
55
56         ldap_pvt_thread_mutex_lock (&tcl_interpreter_mutex);
57         code = Tcl_GlobalEval (ti->ti_ii->interp, command);
58         results = (char *) ch_strdup (ti->ti_ii->interp->result);
59         ldap_pvt_thread_mutex_unlock (&tcl_interpreter_mutex);
60         free (command);
61
62         if (code != TCL_OK) {
63                 err = LDAP_OPERATIONS_ERROR;
64                 Debug (LDAP_DEBUG_SHELL, "tcl_bind_error: %s\n", results, 0, 0);
65         } else {
66                 err = interp_send_results (be, conn, op, results, NULL, 0);
67         }
68
69         if (err != LDAP_SUCCESS)
70                 send_ldap_result (conn, op, err, NULL,
71                         "internal backend error", NULL, NULL );
72
73         free (results);
74         return (err);
75 }