]> git.sur5r.net Git - openldap/blob - servers/slapd/back-tcl/tcl_search.c
More system schema checks
[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         AttributeName *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         AttributeName *an;
42
43         if (ti->ti_search == NULL) {
44                 send_ldap_result (conn, op, LDAP_UNWILLING_TO_PERFORM, NULL,
45                         "search not implemented", NULL, NULL );
46                 return (-1);
47         }
48
49         for (i = 0, an = attrs; an && an->an_name.bv_val; an++, i++);
50         if (i > 0) {
51                 sattrs = ch_malloc( (i+1) * sizeof(char *));
52                 for (i = 0, an = attrs; an->an_name.bv_val; an++, i++)
53                         sattrs[i] = an->an_name.bv_val;
54                 sattrs[i] = NULL;
55                 attrs_tcl = Tcl_Merge (i, sattrs);
56                 free(sattrs);
57         }
58
59         for (i = 0; be->be_suffix[i] != NULL; i++);
60         suf_tcl = Tcl_Merge (i, be->be_suffix);
61
62         command = (char *) ch_malloc (strlen (ti->ti_search) + strlen (suf_tcl)
63                 + strlen (base) + 40 + strlen (filterstr) + (attrs_tcl ==
64                         NULL ? 5
65                         : strlen (attrs_tcl)) + 72);
66         sprintf (command,
67                 "%s SEARCH {%ld} {%s} {%s} {%d} {%d} {%d} {%d} {%s} {%d} {%s}",
68                 ti->ti_search, op->o_msgid, suf_tcl, base, scope, deref,
69                 sizelimit, timelimit, filterstr, attrsonly ? 1 : 0,
70                 attrs_tcl ==
71                 NULL ? "{all}" : attrs_tcl);
72         Tcl_Free (attrs_tcl);
73         Tcl_Free (suf_tcl);
74
75         ldap_pvt_thread_mutex_lock (&tcl_interpreter_mutex);
76         code = Tcl_GlobalEval (ti->ti_ii->interp, command);
77         results = (char *) ch_strdup (ti->ti_ii->interp->result);
78         ldap_pvt_thread_mutex_unlock (&tcl_interpreter_mutex);
79         free (command);
80
81         if (code != TCL_OK) {
82                 err = LDAP_OPERATIONS_ERROR;
83                 Debug (LDAP_DEBUG_SHELL, "tcl_search_error: %s\n", results,
84                         0, 0);
85         } else {
86                 interp_send_results (be, conn, op, results, attrs, 0);
87         }
88
89         if (err != LDAP_SUCCESS)
90                 send_ldap_result (conn, op, err, NULL,
91                         "internal backend error", NULL, NULL );
92
93         free (results);
94         return (err);
95 }