Remove unneeded code.
[gnulib.git] / m4 / posix_spawn.m4
1 # posix_spawn.m4 serial 3
2 dnl Copyright (C) 2008 Free Software Foundation, Inc.
3 dnl This file is free software; the Free Software Foundation
4 dnl gives unlimited permission to copy and/or distribute it,
5 dnl with or without modifications, as long as this notice is preserved.
6
7 dnl Tests whether the entire posix_spawn facility is available.
8 AC_DEFUN([gl_POSIX_SPAWN],
9 [
10   AC_REQUIRE([gl_POSIX_SPAWN_BODY])
11 ])
12
13 AC_DEFUN([gl_POSIX_SPAWN_BODY],
14 [
15   AC_REQUIRE([gl_SPAWN_H_DEFAULTS])
16   AC_CHECK_FUNCS_ONCE([posix_spawn])
17   dnl Assume that when the main function exists, all the others are
18   dnl available as well.
19   dnl AC_CHECK_FUNCS_ONCE([posix_spawnp])
20   dnl AC_CHECK_FUNCS_ONCE([posix_spawn_file_actions_init])
21   dnl AC_CHECK_FUNCS_ONCE([posix_spawn_file_actions_addclose])
22   dnl AC_CHECK_FUNCS_ONCE([posix_spawn_file_actions_adddup2])
23   dnl AC_CHECK_FUNCS_ONCE([posix_spawn_file_actions_addopen])
24   dnl AC_CHECK_FUNCS_ONCE([posix_spawn_file_actions_destroy])
25   dnl AC_CHECK_FUNCS_ONCE([posix_spawnattr_init])
26   dnl AC_CHECK_FUNCS_ONCE([posix_spawnattr_getflags])
27   dnl AC_CHECK_FUNCS_ONCE([posix_spawnattr_setflags])
28   dnl AC_CHECK_FUNCS_ONCE([posix_spawnattr_getpgroup])
29   dnl AC_CHECK_FUNCS_ONCE([posix_spawnattr_setpgroup])
30   dnl AC_CHECK_FUNCS_ONCE([posix_spawnattr_getschedparam])
31   dnl AC_CHECK_FUNCS_ONCE([posix_spawnattr_setschedparam])
32   dnl AC_CHECK_FUNCS_ONCE([posix_spawnattr_getschedpolicy])
33   dnl AC_CHECK_FUNCS_ONCE([posix_spawnattr_setschedpolicy])
34   dnl AC_CHECK_FUNCS_ONCE([posix_spawnattr_getsigdefault])
35   dnl AC_CHECK_FUNCS_ONCE([posix_spawnattr_setsigdefault])
36   dnl AC_CHECK_FUNCS_ONCE([posix_spawnattr_getsigmask])
37   dnl AC_CHECK_FUNCS_ONCE([posix_spawnattr_setsigmask])
38   dnl AC_CHECK_FUNCS_ONCE([posix_spawnattr_destroy])
39   if test $ac_cv_func_posix_spawn = yes; then
40     gl_POSIX_SPAWN_WORKS
41     case "$gl_cv_func_posix_spawn_works" in
42       *yes) ;;
43       *) REPLACE_POSIX_SPAWN=1 ;;
44     esac
45   else
46     HAVE_POSIX_SPAWN=0
47   fi
48 ])
49
50 dnl Test whether posix_spawn actually works.
51 dnl posix_spawn on AIX 5.3..6.1 has a bug: When it fails to execute the
52 dnl program, the child process exits with exit() rather than _exit(),
53 dnl which causes the stdio buffers to be flushed. Reported by Rainer Tammer.
54 dnl posix_spawn on AIX 5.3..6.1 has also a second bug: It does not work
55 dnl when POSIX threads are used. But we don't test against this bug here.
56 AC_DEFUN([gl_POSIX_SPAWN_WORKS],
57 [
58   AC_REQUIRE([AC_PROG_CC])
59   AC_REQUIRE([AC_CANONICAL_HOST]) dnl for cross-compiles
60   AC_CACHE_CHECK([whether posix_spawn works], [gl_cv_func_posix_spawn_works],
61     [if test $cross_compiling = no; then
62        AC_LINK_IFELSE([AC_LANG_PROGRAM([[
63 #include <errno.h>
64 #include <fcntl.h>
65 #include <signal.h>
66 #include <spawn.h>
67 #include <stdbool.h>
68 #include <stdio.h>
69 #include <stdlib.h>
70 #include <string.h>
71 #include <unistd.h>
72 #include <sys/types.h>
73 #include <sys/wait.h>
74
75 extern char **environ;
76
77 #ifndef STDIN_FILENO
78 # define STDIN_FILENO 0
79 #endif
80 #ifndef STDOUT_FILENO
81 # define STDOUT_FILENO 1
82 #endif
83 #ifndef STDERR_FILENO
84 # define STDERR_FILENO 2
85 #endif
86
87 #ifndef WTERMSIG
88 # define WTERMSIG(x) ((x) & 0x7f)
89 #endif
90 #ifndef WIFEXITED
91 # define WIFEXITED(x) (WTERMSIG (x) == 0)
92 #endif
93 #ifndef WEXITSTATUS
94 # define WEXITSTATUS(x) (((x) >> 8) & 0xff)
95 #endif
96
97 #define CHILD_PROGRAM_FILENAME "/non/exist/ent"
98
99 static int
100 fd_safer (int fd)
101 {
102   if (0 <= fd && fd <= 2)
103     {
104       int f = fd_safer (dup (fd));
105       int e = errno;
106       close (fd);
107       errno = e;
108       fd = f;
109     }
110
111   return fd;
112 }  
113 ]],
114 dnl Now comes the main() function.
115 [[
116   char *argv[2] = { CHILD_PROGRAM_FILENAME, NULL };
117   int ofd[2];
118   sigset_t blocked_signals;
119   sigset_t fatal_signal_set;
120   posix_spawn_file_actions_t actions;
121   bool actions_allocated;
122   posix_spawnattr_t attrs;
123   bool attrs_allocated;
124   int err;
125   pid_t child;
126   int status;
127   int exitstatus;
128
129   setvbuf (stdout, NULL, _IOFBF, 0);
130   puts ("This should be seen only once.");
131   if (pipe (ofd) < 0 || (ofd[1] = fd_safer (ofd[1])) < 0)
132     {
133       perror ("cannot create pipe");
134       exit (1);
135     }
136   sigprocmask (SIG_SETMASK, NULL, &blocked_signals);
137   sigemptyset (&fatal_signal_set);
138   sigaddset (&fatal_signal_set, SIGINT);
139   sigaddset (&fatal_signal_set, SIGTERM);
140   sigaddset (&fatal_signal_set, SIGHUP);
141   sigaddset (&fatal_signal_set, SIGPIPE);
142   sigprocmask (SIG_BLOCK, &fatal_signal_set, NULL);
143   actions_allocated = false;
144   attrs_allocated = false;
145   if ((err = posix_spawn_file_actions_init (&actions)) != 0
146       || (actions_allocated = true,
147           (err = posix_spawn_file_actions_adddup2 (&actions, ofd[0], STDIN_FILENO)) != 0
148           || (err = posix_spawn_file_actions_addclose (&actions, ofd[0])) != 0
149           || (err = posix_spawn_file_actions_addclose (&actions, ofd[1])) != 0
150           || (err = posix_spawnattr_init (&attrs)) != 0
151           || (attrs_allocated = true,
152               (err = posix_spawnattr_setsigmask (&attrs, &blocked_signals)) != 0
153               || (err = posix_spawnattr_setflags (&attrs, POSIX_SPAWN_SETSIGMASK)) != 0)
154           || (err = posix_spawnp (&child, CHILD_PROGRAM_FILENAME, &actions, &attrs, argv, environ)) != 0))
155     {
156       if (actions_allocated)
157         posix_spawn_file_actions_destroy (&actions);
158       if (attrs_allocated)
159         posix_spawnattr_destroy (&attrs);
160       sigprocmask (SIG_UNBLOCK, &fatal_signal_set, NULL);
161       errno = err;
162       perror ("subprocess failed");
163       exit (1);
164     }
165   posix_spawn_file_actions_destroy (&actions);
166   posix_spawnattr_destroy (&attrs);
167   sigprocmask (SIG_UNBLOCK, &fatal_signal_set, NULL);
168   close (ofd[0]);
169   close (ofd[1]);
170   status = 0;
171   while (waitpid (child, &status, 0) != child)
172     ;
173   if (!WIFEXITED (status))
174     {
175       fprintf (stderr, "subprocess terminated with unexpected wait status %d\n", status);
176       exit (1);
177     }
178   exitstatus = WEXITSTATUS (status);
179   if (exitstatus != 127)
180     {
181       fprintf (stderr, "subprocess terminated with unexpected exit status %d\n", exitstatus);
182       exit (1);
183     }
184 ]])],
185          [if test -s conftest$ac_exeext \
186              && ./conftest$ac_exeext > conftest.out \
187              && echo 'This should be seen only once.' > conftest.ok \
188              && cmp conftest.out conftest.ok > /dev/null; then
189             gl_cv_func_posix_spawn_works=yes
190           else
191             gl_cv_func_posix_spawn_works=no
192           fi],
193          [gl_cv_func_posix_spawn_works=no])
194      else
195        case "$host_os" in
196          aix*) gl_cv_func_posix_spawn_works="guessing no";;
197          *)    gl_cv_func_posix_spawn_works="guessing yes";;
198        esac
199      fi
200     ])
201 ])
202
203 AC_DEFUN([gl_POSIX_SPAWN_INTERNAL],
204 [
205   AC_LIBOBJ([spawni])
206   dnl Prerequisites of lib/spawni.c.
207   AC_CHECK_HEADERS([paths.h])
208   AC_CHECK_FUNCS([confstr sched_setparam sched_setscheduler setegid seteuid vfork])
209 ])