]> git.sur5r.net Git - openldap/blob - servers/slapd/back-shell/fork.c
include portable.h
[openldap] / servers / slapd / back-shell / fork.c
1 /* fork.c - fork and exec a process, connecting stdin/out w/pipes */
2
3 #include "portable.h"
4
5 #include <stdio.h>
6 #include <string.h>
7 #include <sys/types.h>
8 #include <sys/socket.h>
9 #include "slap.h"
10
11 forkandexec(
12     char        **args,
13     FILE        **rfp,
14     FILE        **wfp
15 )
16 {
17         int     p2c[2], c2p[2];
18         int     pid;
19
20         if ( pipe( p2c ) != 0 || pipe( c2p ) != 0 ) {
21                 Debug( LDAP_DEBUG_ANY, "pipe failed\n", 0, 0, 0 );
22                 return( -1 );
23         }
24
25         /*
26          * what we're trying to set up looks like this:
27          *      parent *wfp -> p2c[1] | p2c[0] -> stdin child
28          *      parent *rfp <- c2p[0] | c2p[1] <- stdout child
29          */
30
31         switch ( (pid = fork()) ) {
32         case 0:         /* child */
33                 close( p2c[1] );
34                 close( c2p[0] );
35                 if ( dup2( p2c[0], 0 ) == -1 || dup2( c2p[1], 1 ) == -1 ) {
36                         Debug( LDAP_DEBUG_ANY, "dup2 failed\n", 0, 0, 0 );
37                         exit( -1 );
38                 }
39
40                 execv( args[0], args );
41
42                 Debug( LDAP_DEBUG_ANY, "execv failed\n", 0, 0, 0 );
43                 exit( -1 );
44
45         case -1:        /* trouble */
46                 Debug( LDAP_DEBUG_ANY, "fork failed\n", 0, 0, 0 );
47                 return( -1 );
48
49         default:        /* parent */
50                 close( p2c[0] );
51                 close( c2p[1] );
52                 break;
53         }
54
55         if ( (*rfp = fdopen( c2p[0], "r" )) == NULL || (*wfp = fdopen( p2c[1],
56             "w" )) == NULL ) {
57                 Debug( LDAP_DEBUG_ANY, "fdopen failed\n", 0, 0, 0 );
58                 close( c2p[0] );
59                 close( p2c[1] );
60
61                 return( -1 );
62         }
63
64         return( pid );
65 }