]> git.sur5r.net Git - openldap/blob - servers/slapd/back-shell/modify.c
Initial revision
[openldap] / servers / slapd / back-shell / modify.c
1 /* modify.c - shell backend modify function */
2
3 #include <stdio.h>
4 #include <string.h>
5 #include <sys/types.h>
6 #include <sys/socket.h>
7 #include "slap.h"
8 #include "shell.h"
9
10 void
11 shell_back_modify(
12     Backend     *be,
13     Connection  *conn,
14     Operation   *op,
15     char        *dn,
16     LDAPMod     *mods
17 )
18 {
19         struct shellinfo        *si = (struct shellinfo *) be->be_private;
20         FILE                    *rfp, *wfp;
21         int                     i;
22
23         if ( si->si_modify == NULL ) {
24                 send_ldap_result( conn, op, LDAP_UNWILLING_TO_PERFORM, NULL,
25                     "modify not implemented" );
26                 return;
27         }
28
29         if ( (op->o_private = forkandexec( si->si_modify, &rfp, &wfp ))
30             == -1 ) {
31                 send_ldap_result( conn, op, LDAP_OPERATIONS_ERROR, NULL,
32                     "could not fork/exec" );
33                 return;
34         }
35
36         /* write out the request to the modify process */
37         fprintf( wfp, "MODIFY\n" );
38         fprintf( wfp, "msgid: %d\n", op->o_msgid );
39         print_suffixes( wfp, be );
40         fprintf( wfp, "dn: %s\n", dn );
41         for ( ; mods != NULL; mods = mods->mod_next ) {
42                 switch ( mods->mod_op & ~LDAP_MOD_BVALUES ) {
43                 case LDAP_MOD_ADD:
44                         fprintf( wfp, "add: %s", mods->mod_type );
45                         break;
46
47                 case LDAP_MOD_DELETE:
48                         fprintf( wfp, "delete: %s", mods->mod_type );
49                         break;
50
51                 case LDAP_MOD_REPLACE:
52                         fprintf( wfp, "replace: %s", mods->mod_type );
53                         break;
54                 }
55
56                 for ( i = 0; mods->mod_bvalues != NULL && mods->mod_bvalues[i]
57                     != NULL; i++ ) {
58                         fprintf( wfp, "%s: %s\n", mods->mod_type,
59                             mods->mod_bvalues[i]->bv_val );
60                 }
61         }
62         fclose( wfp );
63
64         /* read in the results and send them along */
65         read_and_send_results( be, conn, op, rfp, NULL, 0 );
66         fclose( rfp );
67 }