]> git.sur5r.net Git - openldap/blob - servers/slapd/back-tcl/tcl_add.c
Fix objectSubClassIndexer bug
[openldap] / servers / slapd / back-tcl / tcl_add.c
1 /* $OpenLDAP$ */
2 /* add.c - tcl add routine
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_add (
21         Backend * be,
22         Connection * conn,
23         Operation * op,
24         Entry * e
25 )
26 {
27         char *command, *entrystr, *results;
28         struct berval suf_tcl;
29         int code, err = 0;
30         struct tclinfo *ti = (struct tclinfo *) be->be_private;
31
32         if (ti->ti_add.bv_len == 0) {
33                 send_ldap_result (conn, op, LDAP_UNWILLING_TO_PERFORM, NULL,
34                         "add not implemented", NULL, NULL );
35                 return (-1);
36         }
37
38         if (tcl_merge_bvlist (be->be_suffix, &suf_tcl) == NULL) {
39                 send_ldap_result (conn, op, LDAP_OPERATIONS_ERROR, NULL,
40                         NULL, NULL, NULL );
41                 return (-1);
42         }
43
44         entrystr = tcl_clean_entry(e);
45
46         command = (char *) ch_malloc (ti->ti_add.bv_len + suf_tcl.bv_len +
47                 strlen(entrystr) + 52);
48         sprintf (command, "%s ADD {%ld/%ld} {%s} {%s}",
49                 ti->ti_add.bv_val, op->o_connid, (long) op->o_msgid, 
50                 suf_tcl.bv_val, entrystr);
51         Tcl_Free (suf_tcl.bv_val);
52         free (entrystr);
53
54         ldap_pvt_thread_mutex_lock (&tcl_interpreter_mutex);
55         code = Tcl_GlobalEval (ti->ti_ii->interp, command);
56         results = (char *) ch_strdup (ti->ti_ii->interp->result);
57         ldap_pvt_thread_mutex_unlock (&tcl_interpreter_mutex);
58         free (command);
59
60         if (code != TCL_OK) {
61                 err = LDAP_OPERATIONS_ERROR;
62                 Debug (LDAP_DEBUG_SHELL, "tcl_add_error: %s\n", results, 0, 0);
63         } else {
64                 interp_send_results (be, conn, op, results, NULL, 0);
65         }
66
67         if (err != LDAP_SUCCESS)
68                 send_ldap_result (conn, op, err, NULL,
69                         "internal backend error", NULL, NULL );
70
71         free (results);
72         return (err);
73 }