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