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