]> git.sur5r.net Git - openldap/blob - servers/slapd/back-tcl/tcl_search.c
Fix attrs handling
[openldap] / servers / slapd / back-tcl / tcl_search.c
1 /* $OpenLDAP$ */
2 /* search.c - tcl search 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_search (
21         Backend * be,
22         Connection * conn,
23         Operation * op,
24         const char *base,
25         const char *nbase,
26         int scope,
27         int deref,
28         int sizelimit,
29         int timelimit,
30         Filter * filter,
31         const char *filterstr,
32         struct berval **attrs,
33         int attrsonly
34 )
35 {
36         char *attrs_tcl = NULL, *suf_tcl, *results, *command;
37         int i, err = 0, code;
38         struct tclinfo *ti = (struct tclinfo *) be->be_private;
39         char **sattrs = NULL;
40         Entry *e;
41
42         if (ti->ti_search == NULL) {
43                 send_ldap_result (conn, op, LDAP_UNWILLING_TO_PERFORM, NULL,
44                         "search not implemented", NULL, NULL );
45                 return (-1);
46         }
47
48         for (i = 0; attrs != NULL && attrs[i] != NULL; i++)
49                 charray_add(&sattrs, attrs[i]->bv_val);
50         if (i > 0) {
51                 attrs_tcl = Tcl_Merge (i, sattrs);
52                 charray_free(sattrs);
53         }
54
55         for (i = 0; be->be_suffix[i] != NULL; i++);
56         suf_tcl = Tcl_Merge (i, be->be_suffix);
57
58         command = (char *) ch_malloc (strlen (ti->ti_search) + strlen (suf_tcl)
59                 + strlen (base) + 40 + strlen (filterstr) + (attrs_tcl ==
60                         NULL ? 5
61                         : strlen (attrs_tcl)) + 72);
62         sprintf (command,
63                 "%s SEARCH {%ld} {%s} {%s} {%d} {%d} {%d} {%d} {%s} {%d} {%s}",
64                 ti->ti_search, op->o_msgid, suf_tcl, base, scope, deref,
65                 sizelimit, timelimit, filterstr, attrsonly ? 1 : 0,
66                 attrs_tcl ==
67                 NULL ? "{all}" : attrs_tcl);
68         Tcl_Free (attrs_tcl);
69         Tcl_Free (suf_tcl);
70
71         ldap_pvt_thread_mutex_lock (&tcl_interpreter_mutex);
72         code = Tcl_GlobalEval (ti->ti_ii->interp, command);
73         results = (char *) ch_strdup (ti->ti_ii->interp->result);
74         ldap_pvt_thread_mutex_unlock (&tcl_interpreter_mutex);
75         free (command);
76
77         if (code != TCL_OK) {
78                 err = LDAP_OPERATIONS_ERROR;
79                 Debug (LDAP_DEBUG_SHELL, "tcl_search_error: %s\n", results,
80                         0, 0);
81         } else {
82                 interp_send_results (be, conn, op, results, NULL, 0);
83         }
84
85         if (err != LDAP_SUCCESS)
86                 send_ldap_result (conn, op, err, NULL,
87                         "internal backend error", NULL, NULL );
88
89         free (results);
90         return (err);
91 }