]> git.sur5r.net Git - openldap/blob - servers/slapd/back-tcl/tcl_modrdn.c
4f48d62234d26a0cb7f49850652bb95ddb2b7be6
[openldap] / servers / slapd / back-tcl / tcl_modrdn.c
1 /* modrdn.c - tcl modify rdn routines
2  *
3  * $Id: tcl_modrdn.c,v 1.3 1999/02/18 01:18:39 bcollins Exp $
4  *
5  * Copyright 1999, Ben Collins <bcollins@debian.org>, All rights reserved.
6  *
7  * Redistribution and use in source and binary forms are permitted only
8  * as authorized by the OpenLDAP Public License.  A copy of this
9  * license is available at http://www.OpenLDAP.org/license.html or
10  * in file LICENSE in the top-level directory of the distribution.
11  */
12
13 #include "portable.h"
14
15 #include <stdio.h>
16
17 #include "slap.h"
18 #include "tcl_back.h"
19
20 int
21 tcl_back_modrdn (
22         Backend * be,
23         Connection * conn,
24         Operation * op,
25         char *dn,
26         char *newrdn,
27         int deleteoldrdn
28 )
29 {
30         char *command, *suf_tcl, *results;
31         int i, code, err = 0;
32         struct tclinfo *ti = (struct tclinfo *) be->be_private;
33
34         if (ti->ti_modrdn == NULL) {
35                 send_ldap_result (conn, op, LDAP_UNWILLING_TO_PERFORM, NULL,
36                         "modrdn not implemented");
37                 return (-1);
38         }
39
40         for (i = 0; be->be_suffix[i] != NULL; i++);
41         suf_tcl = Tcl_Merge (i, be->be_suffix);
42
43         command = (char *) ch_malloc (strlen (ti->ti_modrdn) + strlen (suf_tcl)
44                 + strlen (dn) + strlen (newrdn) + 64);
45         sprintf (command, "%s MODRDN {%ld} {%s} {%s} {%s} %d",
46                 ti->ti_add, op->o_msgid, suf_tcl, dn, newrdn, deleteoldrdn
47                 ? 1 : 0);
48         Tcl_Free (suf_tcl);
49
50         ldap_pvt_thread_mutex_lock (&tcl_interpreter_mutex);
51         code = Tcl_GlobalEval (ti->ti_ii->interp, command);
52         results = (char *) ch_strdup (ti->ti_ii->interp->result);
53         ldap_pvt_thread_mutex_unlock (&tcl_interpreter_mutex);
54         free (command);
55
56         if (code != TCL_OK) {
57                 err = LDAP_OPERATIONS_ERROR;
58                 Debug (LDAP_DEBUG_ANY, "tcl_modrdn_error: %s\n", results,
59                         0, 0);
60         } else {
61                 interp_send_results (be, conn, op, results, NULL, 0);
62         }
63
64         if (err != LDAP_SUCCESS)
65                 send_ldap_result (conn, op, err, NULL,
66                         "internal backend error");
67
68         free (results);
69         return (err);
70 }