]> git.sur5r.net Git - openldap/blobdiff - servers/slapd/back-tcl/tcl_compare.c
Fix objectSubClassIndexer bug
[openldap] / servers / slapd / back-tcl / tcl_compare.c
index 3184b5fa582e0ef631e174c0437f3550a1875f47..3bb705cce75c2fead8172373ce50d1bc2eddbfc8 100644 (file)
@@ -1,6 +1,5 @@
+/* $OpenLDAP$ */
 /* compare.c - tcl compare routines
- *
- * $Id: tcl_compare.c,v 1.6 1999/07/16 00:45:52 kdz Exp $
  *
  * Copyright 1999, Ben Collins <bcollins@debian.org>, All rights reserved.
  *
@@ -22,30 +21,36 @@ tcl_back_compare (
        Backend * be,
        Connection * conn,
        Operation * op,
-       char *dn,
-       Ava * ava
+       struct berval *dn,
+       struct berval *ndn,
+       AttributeAssertion * ava
 )
 {
-       char *command, *suf_tcl, *results;
-       int i, code, err = 0;
+       char *command, *results;
+       struct berval suf_tcl;
+       int code, err = 0;
        struct tclinfo *ti = (struct tclinfo *) be->be_private;
 
-       if (ti->ti_compare == NULL) {
+       if (ti->ti_compare.bv_len == 0) {
                send_ldap_result (conn, op, LDAP_UNWILLING_TO_PERFORM, NULL,
                        "compare not implemented", NULL, NULL );
                return (-1);
        }
 
-       for (i = 0; be->be_suffix[i] != NULL; i++);
-       suf_tcl = Tcl_Merge (i, be->be_suffix);
+       if (tcl_merge_bvlist (be->be_suffix, &suf_tcl) == NULL) {
+               send_ldap_result (conn, op, LDAP_OPERATIONS_ERROR, NULL,
+                       NULL, NULL, NULL );
+               return (-1);
+       }
 
-       command = (char *) ch_malloc (strlen (ti->ti_compare) +
-               strlen (suf_tcl) + strlen (dn) + strlen (ava->ava_type) +
-               strlen (ava->ava_value.bv_val) + 64);
-       sprintf (command, "%s COMPARE {%ld} {%s} {%s} {%s: %s}",
-               ti->ti_compare, op->o_msgid, suf_tcl, dn, ava->ava_type,
-               ava->ava_value.bv_val);
-       Tcl_Free (suf_tcl);
+       command = (char *) ch_malloc (ti->ti_compare.bv_len +
+               suf_tcl.bv_len + dn->bv_len + ava->aa_desc->ad_cname.bv_len +
+               ava->aa_value.bv_len + 84);
+       sprintf (command, "%s COMPARE {%ld/%ld} {%s} {%s} {%s: %s}",
+               ti->ti_compare.bv_val, op->o_connid, (long) op->o_msgid,
+               suf_tcl.bv_val, dn->bv_val,
+               ava->aa_desc->ad_cname.bv_val, ava->aa_value.bv_val);
+       Tcl_Free (suf_tcl.bv_val);
 
        ldap_pvt_thread_mutex_lock (&tcl_interpreter_mutex);
        code = Tcl_GlobalEval (ti->ti_ii->interp, command);