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