]> git.sur5r.net Git - openldap/blob - servers/slapd/back-shell/modrdn.c
Update copyright statements
[openldap] / servers / slapd / back-shell / modrdn.c
1 /* modrdn.c - shell backend modrdn function */
2 /* $OpenLDAP$ */
3 /*
4  * Copyright 1998-2002 The OpenLDAP Foundation, All Rights Reserved.
5  * COPYING RESTRICTIONS APPLY, see COPYRIGHT file
6  */
7
8 /*
9  * LDAP v3 newSuperior support.
10  *
11  * Copyright 1999, Juan C. Gomez, All rights reserved.
12  * This software is not subject to any license of Silicon Graphics 
13  * Inc. or Purdue University.
14  *
15  * Redistribution and use in source and binary forms are permitted
16  * without restriction or fee of any kind as long as this notice
17  * is preserved.
18  *
19  */
20
21 #include "portable.h"
22
23 #include <stdio.h>
24
25 #include <ac/socket.h>
26 #include <ac/string.h>
27
28 #include "slap.h"
29 #include "shell.h"
30
31 int
32 shell_back_modrdn(
33     Backend     *be,
34     Connection  *conn,
35     Operation   *op,
36     struct berval *dn,
37     struct berval *ndn,
38     struct berval *newrdn,
39     struct berval *nnewrdn,
40     int         deleteoldrdn,
41     struct berval *newSuperior,
42     struct berval *nnewSuperior
43 )
44 {
45         struct shellinfo        *si = (struct shellinfo *) be->be_private;
46         FILE                    *rfp, *wfp;
47
48         if ( si->si_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         if ( (op->o_private = (void *) forkandexec( si->si_modrdn, &rfp, &wfp ))
55             == (void *) -1 ) {
56                 send_ldap_result( conn, op, LDAP_OPERATIONS_ERROR, NULL,
57                     "could not fork/exec", NULL, NULL );
58                 return( -1 );
59         }
60
61         /* write out the request to the modrdn process */
62         fprintf( wfp, "MODRDN\n" );
63         fprintf( wfp, "msgid: %ld\n", (long) op->o_msgid );
64         print_suffixes( wfp, be );
65         fprintf( wfp, "dn: %s\n", dn->bv_val );
66         fprintf( wfp, "newrdn: %s\n", newrdn->bv_val );
67         fprintf( wfp, "deleteoldrdn: %d\n", deleteoldrdn ? 1 : 0 );
68         if (newSuperior != NULL) {
69                 fprintf( wfp, "newSuperior: %s\n", newSuperior->bv_val );
70         }
71         fclose( wfp );
72
73         /* read in the results and send them along */
74         read_and_send_results( be, conn, op, rfp, NULL, 0 );
75         fclose( rfp );
76         return( 0 );
77 }