]> git.sur5r.net Git - openldap/blob - servers/slapd/back-tcl/tcl_modrdn.c
Fixes for NO_THREADS
[openldap] / servers / slapd / back-tcl / tcl_modrdn.c
1 /* $OpenLDAP$ */
2 /* modrdn.c - tcl modify rdn 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 /*
13  * LDAP v3 newSuperior support.
14  *
15  * Copyright 1999, Juan C. Gomez, All rights reserved.
16  * This software is not subject to any license of Silicon Graphics 
17  * Inc. or Purdue University.
18  *
19  * Redistribution and use in source and binary forms are permitted
20  * without restriction or fee of any kind as long as this notice
21  * is preserved.
22  *
23  */
24
25 #include "portable.h"
26
27 #include <stdio.h>
28
29 #include "slap.h"
30 #include "tcl_back.h"
31
32 int
33 tcl_back_modrdn (
34         Backend * be,
35         Connection * conn,
36         Operation * op,
37         struct berval *dn,
38         struct berval *ndn,
39         struct berval *newrdn,
40         struct berval *nnewrdn,
41         int deleteoldrdn,
42         struct berval *newSuperior,
43         struct berval *nnewSuperior
44 )
45 {
46         char *command, *results;
47         struct berval suf_tcl;
48         int code, err = 0;
49         struct tclinfo *ti = (struct tclinfo *) be->be_private;
50
51         if (ti->ti_modrdn.bv_len == 0) {
52                 send_ldap_result (conn, op, LDAP_UNWILLING_TO_PERFORM, NULL,
53                         "modrdn not implemented", NULL, NULL );
54                 return (-1);
55         }
56
57         if (tcl_merge_bvlist (be->be_suffix, &suf_tcl) == NULL) {
58                 send_ldap_result (conn, op, LDAP_OPERATIONS_ERROR, NULL,
59                         NULL, NULL, NULL );
60                 return (-1);
61         }
62
63         command = (char *) ch_malloc (ti->ti_modrdn.bv_len + suf_tcl.bv_len
64                 + dn->bv_len + newrdn->bv_len
65                 + (newSuperior ? newSuperior->bv_len : 0) + 84);
66         if ( newSuperior ) {
67                 sprintf (command, "%s MODRDN {%ld/%ld} {%s} {%s} {%s} %d {%s}",
68                          ti->ti_modrdn.bv_val,
69                          op->o_connid, (long) op->o_msgid, 
70                          suf_tcl.bv_val, dn->bv_val,
71                          newrdn->bv_val, deleteoldrdn ? 1 : 0, 
72                          newSuperior->bv_val );
73         } else {
74                 sprintf (command, "%s MODRDN {%ld} {%s} {%s} {%s} %d",
75                          ti->ti_modrdn.bv_val, (long) op->o_msgid, 
76                          suf_tcl.bv_val, dn->bv_val,
77                          newrdn->bv_val, deleteoldrdn ? 1 : 0 );
78         }       
79         Tcl_Free (suf_tcl.bv_val);
80
81         ldap_pvt_thread_mutex_lock (&tcl_interpreter_mutex);
82         code = Tcl_GlobalEval (ti->ti_ii->interp, command);
83         results = (char *) ch_strdup (ti->ti_ii->interp->result);
84         ldap_pvt_thread_mutex_unlock (&tcl_interpreter_mutex);
85         free (command);
86
87         if (code != TCL_OK) {
88                 err = LDAP_OPERATIONS_ERROR;
89                 Debug (LDAP_DEBUG_SHELL, "tcl_modrdn_error: %s\n", results,
90                         0, 0);
91         } else {
92                 interp_send_results (be, conn, op, results, NULL, 0);
93         }
94
95         if (err != LDAP_SUCCESS)
96                 send_ldap_result (conn, op, err, NULL,
97                         "internal backend error", NULL, NULL );
98
99         free (results);
100         return (err);
101 }