]> git.sur5r.net Git - openldap/blob - servers/slapd/back-tcl/tcl_modrdn.c
Add OpenLDAP RCSid to *.[ch] in clients, libraries, and servers.
[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         char *dn,
38         char *newrdn,
39         int deleteoldrdn,
40         char *newSuperior
41 )
42 {
43         char *command, *suf_tcl, *results;
44         int i, code, err = 0;
45         struct tclinfo *ti = (struct tclinfo *) be->be_private;
46
47         if (ti->ti_modrdn == NULL) {
48                 send_ldap_result (conn, op, LDAP_UNWILLING_TO_PERFORM, NULL,
49                         "modrdn not implemented", NULL, NULL );
50                 return (-1);
51         }
52
53         for (i = 0; be->be_suffix[i] != NULL; i++);
54         suf_tcl = Tcl_Merge (i, be->be_suffix);
55
56         command = (char *) ch_malloc (strlen (ti->ti_modrdn) + strlen (suf_tcl)
57                 + strlen (dn) + strlen (newrdn)
58                 + (newSuperior ? strlen(newSuperior) : 0) + 64);
59         if ( newSuperior ) {
60                 sprintf (command, "%s MODRDN {%ld} {%s} {%s} {%s} %d {%s}",
61                          ti->ti_add, op->o_msgid, suf_tcl, dn, newrdn,
62                          deleteoldrdn ? 1 : 0, newSuperior );
63         } else {
64                 sprintf (command, "%s MODRDN {%ld} {%s} {%s} {%s} %d",
65                          ti->ti_add, op->o_msgid, suf_tcl, dn, newrdn,
66                          deleteoldrdn ? 1 : 0 );
67         }       
68         Tcl_Free (suf_tcl);
69
70         ldap_pvt_thread_mutex_lock (&tcl_interpreter_mutex);
71         code = Tcl_GlobalEval (ti->ti_ii->interp, command);
72         results = (char *) ch_strdup (ti->ti_ii->interp->result);
73         ldap_pvt_thread_mutex_unlock (&tcl_interpreter_mutex);
74         free (command);
75
76         if (code != TCL_OK) {
77                 err = LDAP_OPERATIONS_ERROR;
78                 Debug (LDAP_DEBUG_SHELL, "tcl_modrdn_error: %s\n", results,
79                         0, 0);
80         } else {
81                 interp_send_results (be, conn, op, results, NULL, 0);
82         }
83
84         if (err != LDAP_SUCCESS)
85                 send_ldap_result (conn, op, err, NULL,
86                         "internal backend error", NULL, NULL );
87
88         free (results);
89         return (err);
90 }