summaryrefslogtreecommitdiff
path: root/src/libstddjb/child_spawn1.c
blob: bb51ab96c90fb400e4197497a8a58a7c040714d2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
/* ISC license. */

#include <skalibs/sysdeps.h>
#include <sys/types.h>
#include <unistd.h>
#include <errno.h>
#include <skalibs/djbunix.h>

#ifdef SKALIBS_HASPOSIXSPAWN

#include <spawn.h>
#include <stdlib.h>
#include <skalibs/config.h>
#include <skalibs/env.h>

pid_t child_spawn1 (char const *prog, char const *const *argv, char const *const *envp, int *fd, int to)
{
  posix_spawn_file_actions_t actions ;
  int e ;
  int p[2] ;
  pid_t pid ;
  int haspath = !!env_get("PATH") ;
  if (pipe(p) < 0) return 0 ;
  to = !!to ;
  e = posix_spawn_file_actions_init(&actions) ;
  if (e) goto err ;
  e = posix_spawn_file_actions_addclose(&actions, p[!to]) ;
  if (e) goto erractions ;
  e = posix_spawn_file_actions_adddup2(&actions, p[to], to) ;
  if (e) goto erractions ;
  if (!haspath && (setenv("PATH", SKALIBS_DEFAULTPATH, 0) < 0)) { e = errno ; goto erractions ; }
  e = posix_spawnp(&pid, prog, &actions, 0, (char *const *)argv, (char *const *)envp) ;
  if (!haspath) unsetenv("PATH") ;
  posix_spawn_file_actions_destroy(&actions) ;
  fd_close(p[to]) ;
  if (e) goto errp ;
  *fd = p[!to] ;
  return pid ;

 erractions:
  posix_spawn_file_actions_destroy(&actions) ;
 err:
  fd_close(p[to]) ;
 errp:
  fd_close(p[!to]) ;
  errno = e ;
  return 0 ;
}

#else

#include <skalibs/allreadwrite.h>

pid_t child_spawn1 (char const *prog, char const *const *argv, char const *const *envp, int *fd, int to)
{
  int e ;
  int syncp[2] ;
  int p[2] ;
  pid_t pid ;
  if (pipe(p) < 0) return 0 ;
  if (pipecoe(syncp) < 0)
  {
    e = errno ;
    fd_close(p[1]) ;
    fd_close(p[0]) ;
    errno = e ;
    return 0 ;
  }
  to = !!to ;
  pid = fork() ;
  if (pid < 0)
  {
    e = errno ;
    fd_close(syncp[1]) ;
    fd_close(syncp[0]) ;
    fd_close(p[1]) ;
    fd_close(p[0]) ;
    errno = e ;
    return 0 ;
  }
  if (pid)
  {
    fd_close(syncp[0]) ;
    fd_close(p[!to]) ;
    if (fd_move(to, p[to]) < 0) goto err ;
    pathexec_run(prog, argv, envp) ;
err:
    e = errno ;
    fd_write(syncp[1], (char *)&e, sizeof(e)) ;
    _exit(127) ;
  }
  fd_close(syncp[1]) ;
  fd_close(p[to]) ;
  syncp[1] = fd_read(syncp[0], (char *)&e, sizeof(e)) ;
  if (syncp[1] < 0)
  {
    e = errno ;
    fd_close(syncp[0]) ;
    fd_close(p[!to]) ;
    errno = e ;
    return 0 ;
  }
  fd_close(syncp[0]) ;
  if (syncp[1] == sizeof(e))
  {
    fd_close(p[!to]) ;
    wait_pid(pid, &syncp[1]) ;
    errno = e ;
    return 0 ;
  }
  *fd = p[!to] ;
  return pid ;
}

#endif