]> git.sur5r.net Git - openldap/blob - servers/slapd/back-tcl/tcl_compare.c
Add OpenLDAP RCSid to *.[ch] in clients, libraries, and servers.
[openldap] / servers / slapd / back-tcl / tcl_compare.c
1 /* $OpenLDAP$ */
2 /* compare.c - tcl compare 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_compare (
21         Backend * be,
22         Connection * conn,
23         Operation * op,
24         char *dn,
25         Ava * ava
26 )
27 {
28         char *command, *suf_tcl, *results;
29         int i, code, err = 0;
30         struct tclinfo *ti = (struct tclinfo *) be->be_private;
31
32         if (ti->ti_compare == NULL) {
33                 send_ldap_result (conn, op, LDAP_UNWILLING_TO_PERFORM, NULL,
34                         "compare not implemented", NULL, NULL );
35                 return (-1);
36         }
37
38         for (i = 0; be->be_suffix[i] != NULL; i++);
39         suf_tcl = Tcl_Merge (i, be->be_suffix);
40
41         command = (char *) ch_malloc (strlen (ti->ti_compare) +
42                 strlen (suf_tcl) + strlen (dn) + strlen (ava->ava_type) +
43                 strlen (ava->ava_value.bv_val) + 64);
44         sprintf (command, "%s COMPARE {%ld} {%s} {%s} {%s: %s}",
45                 ti->ti_compare, op->o_msgid, suf_tcl, dn, ava->ava_type,
46                 ava->ava_value.bv_val);
47         Tcl_Free (suf_tcl);
48
49         ldap_pvt_thread_mutex_lock (&tcl_interpreter_mutex);
50         code = Tcl_GlobalEval (ti->ti_ii->interp, command);
51         results = (char *) ch_strdup (ti->ti_ii->interp->result);
52         ldap_pvt_thread_mutex_unlock (&tcl_interpreter_mutex);
53         free (command);
54
55         if (code != TCL_OK) {
56                 err = LDAP_OPERATIONS_ERROR;
57                 Debug (LDAP_DEBUG_SHELL, "tcl_compare_error: %s\n", results,
58                         0, 0);
59         } else {
60                 interp_send_results (be, conn, op, results, NULL, 0);
61         }
62
63         if (err != LDAP_SUCCESS)
64                 send_ldap_result (conn, op, err, NULL,
65                         "internal backend error", NULL, NULL );
66
67         free (results);
68         return (err);
69 }