1999-09-09 03:06:24 +08:00
|
|
|
/* $OpenLDAP$ */
|
1999-02-18 10:18:39 +08:00
|
|
|
/* search.c - tcl search routines
|
1999-02-15 03:20:14 +08:00
|
|
|
*
|
|
|
|
* Copyright 1999, Ben Collins <bcollins@debian.org>, All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms are permitted only
|
|
|
|
* as authorized by the OpenLDAP Public License. A copy of this
|
|
|
|
* license is available at http://www.OpenLDAP.org/license.html or
|
|
|
|
* in file LICENSE in the top-level directory of the distribution.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "portable.h"
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
|
|
|
|
#include "slap.h"
|
|
|
|
#include "tcl_back.h"
|
|
|
|
|
1999-02-18 10:18:39 +08:00
|
|
|
int
|
|
|
|
tcl_back_search (
|
1999-02-15 03:20:14 +08:00
|
|
|
Operation * op,
|
2003-03-30 17:03:54 +08:00
|
|
|
SlapReply * rs )
|
1999-02-15 03:20:14 +08:00
|
|
|
{
|
2002-04-08 17:43:22 +08:00
|
|
|
char *attrs_tcl = NULL, *results, *command;
|
|
|
|
struct berval suf_tcl;
|
2003-03-30 17:03:54 +08:00
|
|
|
int i, code;
|
|
|
|
struct tclinfo *ti = (struct tclinfo *) op->o_bd->be_private;
|
2001-12-31 19:35:52 +08:00
|
|
|
AttributeName *an;
|
1999-02-15 03:20:14 +08:00
|
|
|
|
2002-04-08 17:43:22 +08:00
|
|
|
if (ti->ti_search.bv_len == 0) {
|
2003-03-30 17:03:54 +08:00
|
|
|
send_ldap_error (op, rs, LDAP_UNWILLING_TO_PERFORM,
|
|
|
|
"search not implemented" );
|
1999-02-15 03:20:14 +08:00
|
|
|
return (-1);
|
|
|
|
}
|
|
|
|
|
2003-03-30 17:03:54 +08:00
|
|
|
for (i = 0, an = op->oq_search.rs_attrs; an && an->an_name.bv_val; an++, i++);
|
2001-12-26 16:49:27 +08:00
|
|
|
if (i > 0) {
|
2002-04-19 03:28:26 +08:00
|
|
|
char **sattrs = ch_malloc( (i+1) * sizeof(char *));
|
2003-03-30 17:03:54 +08:00
|
|
|
for (i = 0, an = op->oq_search.rs_attrs; an->an_name.bv_val; an++, i++)
|
2001-12-31 19:35:52 +08:00
|
|
|
sattrs[i] = an->an_name.bv_val;
|
2001-12-26 17:19:57 +08:00
|
|
|
sattrs[i] = NULL;
|
2001-12-26 16:49:27 +08:00
|
|
|
attrs_tcl = Tcl_Merge (i, sattrs);
|
2002-04-19 03:28:26 +08:00
|
|
|
ch_free(sattrs);
|
2001-12-26 16:49:27 +08:00
|
|
|
}
|
1999-02-15 03:20:14 +08:00
|
|
|
|
2003-03-30 17:03:54 +08:00
|
|
|
if (tcl_merge_bvlist (op->o_bd->be_suffix, &suf_tcl) == NULL) {
|
2002-04-08 17:43:22 +08:00
|
|
|
Tcl_Free (attrs_tcl);
|
2003-03-30 17:03:54 +08:00
|
|
|
send_ldap_error (op, rs, LDAP_OTHER, NULL);
|
2002-04-08 17:43:22 +08:00
|
|
|
return (-1);
|
|
|
|
}
|
1999-02-15 03:20:14 +08:00
|
|
|
|
2002-04-08 17:43:22 +08:00
|
|
|
command = (char *) ch_malloc (ti->ti_search.bv_len + suf_tcl.bv_len
|
2003-03-30 17:03:54 +08:00
|
|
|
+ op->o_req_dn.bv_len + 60 + op->oq_search.rs_filterstr.bv_len +
|
2002-04-08 17:43:22 +08:00
|
|
|
(attrs_tcl == NULL ? 5 : strlen (attrs_tcl)) + 72);
|
1999-02-18 10:18:39 +08:00
|
|
|
sprintf (command,
|
2002-05-09 10:11:39 +08:00
|
|
|
"%s SEARCH {%ld/%ld} {%s} {%s} {%d} {%d} {%d} {%d} {%s} {%d} {%s}",
|
|
|
|
ti->ti_search.bv_val, op->o_connid, (long) op->o_msgid,
|
2003-03-30 17:03:54 +08:00
|
|
|
suf_tcl.bv_val, op->o_req_dn.bv_val, op->oq_search.rs_scope, op->oq_search.rs_deref,
|
|
|
|
op->oq_search.rs_slimit, op->oq_search.rs_tlimit, op->oq_search.rs_filterstr.bv_val,
|
|
|
|
op->oq_search.rs_attrsonly ? 1 : 0, attrs_tcl == NULL ? "{all}" : attrs_tcl);
|
1999-02-18 10:18:39 +08:00
|
|
|
Tcl_Free (attrs_tcl);
|
2002-04-08 17:43:22 +08:00
|
|
|
Tcl_Free (suf_tcl.bv_val);
|
1999-02-15 03:20:14 +08:00
|
|
|
|
1999-02-18 10:18:39 +08:00
|
|
|
ldap_pvt_thread_mutex_lock (&tcl_interpreter_mutex);
|
|
|
|
code = Tcl_GlobalEval (ti->ti_ii->interp, command);
|
1999-02-19 15:55:20 +08:00
|
|
|
results = (char *) ch_strdup (ti->ti_ii->interp->result);
|
1999-02-18 10:18:39 +08:00
|
|
|
ldap_pvt_thread_mutex_unlock (&tcl_interpreter_mutex);
|
|
|
|
free (command);
|
1999-02-15 03:20:14 +08:00
|
|
|
|
|
|
|
if (code != TCL_OK) {
|
2003-03-30 17:03:54 +08:00
|
|
|
rs->sr_err = LDAP_OTHER;
|
1999-02-28 13:55:48 +08:00
|
|
|
Debug (LDAP_DEBUG_SHELL, "tcl_search_error: %s\n", results,
|
1999-02-18 10:18:39 +08:00
|
|
|
0, 0);
|
1999-02-15 03:20:14 +08:00
|
|
|
} else {
|
2003-03-30 17:03:54 +08:00
|
|
|
interp_send_results (op, rs, results );
|
1999-02-15 03:20:14 +08:00
|
|
|
}
|
|
|
|
|
2003-03-30 17:03:54 +08:00
|
|
|
if (rs->sr_err != LDAP_SUCCESS) {
|
|
|
|
rs->sr_text = "internal backend error";
|
|
|
|
send_ldap_result (op, rs );
|
|
|
|
}
|
1999-02-15 03:20:14 +08:00
|
|
|
|
1999-02-19 15:55:20 +08:00
|
|
|
free (results);
|
2003-03-30 17:03:54 +08:00
|
|
|
return (rs->sr_err);
|
1999-02-15 03:20:14 +08:00
|
|
|
}
|