]> git.sur5r.net Git - openldap/blob - servers/slapd/back-tcl/tcl_unbind.c
Changed general debug levels too LDAP_DEBUG_SHELL
[openldap] / servers / slapd / back-tcl / tcl_unbind.c
1 /* unbind.c - tcl unbind routines
2  *
3  * $Id: tcl_unbind.c,v 1.4 1999/02/19 06:55:20 bcollins 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_unbind (
22         Backend * be,
23         Connection * conn,
24         Operation * op
25 )
26 {
27         char *command, *suf_tcl, *results;
28         int i, code, err = 0;
29         struct tclinfo *ti = (struct tclinfo *) be->be_private;
30
31         if (ti->ti_unbind == NULL) {
32                 send_ldap_result (conn, op, LDAP_UNWILLING_TO_PERFORM, NULL,
33                         "unbind not implemented");
34                 return (-1);
35         }
36
37         for (i = 0; be->be_suffix[i] != NULL; i++);
38         suf_tcl = Tcl_Merge (i, be->be_suffix);
39
40         command = (char *) ch_malloc (strlen (ti->ti_unbind) + strlen (suf_tcl)
41                 + strlen (conn->c_dn ? conn->c_dn : "") + 64);
42         sprintf (command, "%s UNBIND {%ld} {%s} {%s}",
43                 ti->ti_unbind, op->o_msgid, suf_tcl, conn->c_dn ?
44                 conn->c_dn : "");
45         Tcl_Free (suf_tcl);
46
47         ldap_pvt_thread_mutex_lock (&tcl_interpreter_mutex);
48         code = Tcl_GlobalEval (ti->ti_ii->interp, command);
49         results = (char *) ch_strdup (ti->ti_ii->interp->result);
50         ldap_pvt_thread_mutex_unlock (&tcl_interpreter_mutex);
51         free (command);
52
53         if (code != TCL_OK) {
54                 Debug (LDAP_DEBUG_SHELL, "tcl_unbind_error: %s\n", results,
55                         0, 0);
56         }
57
58         free (results);
59         return (err);
60 }