]> git.sur5r.net Git - openldap/blob - servers/slapd/back-tcl/tcl_modrdn.c
Added return()
[openldap] / servers / slapd / back-tcl / tcl_modrdn.c
1 /*
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 #include "portable.h"
13
14 #include <stdio.h>
15
16 #include "slap.h"
17 #include "tcl_back.h"
18
19 int tcl_back_modrdn (
20         Backend * be,
21         Connection * conn,
22         Operation * op,
23         char *dn,
24         char *newrdn,
25         int deleteoldrdn
26 )
27 {
28         char *command, *suf_tcl, *results;
29         int i, code, err = 0;
30         struct tclinfo *ti = (struct tclinfo *) be->be_private;
31
32         if (ti->ti_modrdn == NULL) {
33                 send_ldap_result (conn, op, LDAP_UNWILLING_TO_PERFORM, NULL,
34                         "modrdn not implemented");
35                 return (-1);
36         }
37
38         for ( i = 0; be->be_suffix[i] != NULL; i++ )
39                 ;
40         suf_tcl = Tcl_Merge(i, be->be_suffix);
41
42         command = (char *) ch_malloc (strlen(ti->ti_modrdn) + strlen(suf_tcl)
43                 + strlen(dn) + strlen(newrdn) + 64);
44         sprintf(command, "%s MODRDN {%ld} {%s} {%s} {%s} %d",
45                 ti->ti_add, op->o_msgid, suf_tcl, dn, newrdn, deleteoldrdn ? 1 : 0);
46         Tcl_Free(suf_tcl);
47
48         ldap_pvt_thread_mutex_lock( &tcl_interpreter_mutex );
49         code = Tcl_GlobalEval(ti->ti_ii->interp, command);
50         results = (char *) strdup(ti->ti_ii->interp->result);
51         ldap_pvt_thread_mutex_unlock( &tcl_interpreter_mutex );
52         free(command);
53
54         if (code != TCL_OK) {
55                 err = LDAP_OPERATIONS_ERROR;
56                 Debug(LDAP_DEBUG_ANY, "tcl_modrdn_error: %s\n", results, 0, 0);
57         } else {
58                 interp_send_results ( be, conn, op, results, NULL, 0 );
59         }
60
61         if (err != LDAP_SUCCESS)
62                 send_ldap_result (conn, op, err, NULL, "internal backend error");
63
64         return (0);
65 }