sys_stat: Fix 'implicit declaration of function' warning on OS/2 kLIBC.
[gnulib.git] / lib / pipe-filter-gi.c
blob42321a40a34c59d93537f1f7f0cf605ebcc0eb8e
1 /* Filtering of data through a subprocess.
2 Copyright (C) 2001-2003, 2008-2019 Free Software Foundation, Inc.
3 Written by Paolo Bonzini <bonzini@gnu.org>, 2009,
4 and Bruno Haible <bruno@clisp.org>, 2009.
6 This program is free software: you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 3 of the License, or
9 (at your option) any later version.
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with this program. If not, see <https://www.gnu.org/licenses/>. */
19 #include <config.h>
21 #include "pipe-filter.h"
23 #include <errno.h>
24 #include <fcntl.h>
25 #include <stdbool.h>
26 #include <stdint.h>
27 #include <stdlib.h>
28 #include <unistd.h>
29 #if defined _WIN32 && ! defined __CYGWIN__
30 # include <windows.h>
31 #else
32 # include <signal.h>
33 # include <sys/select.h>
34 #endif
36 #include "error.h"
37 #include "spawn-pipe.h"
38 #include "wait-process.h"
39 #include "xalloc.h"
40 #include "gettext.h"
42 #define _(str) gettext (str)
44 #include "pipe-filter-aux.h"
46 struct pipe_filter_gi
48 /* Arguments passed to pipe_filter_gi_create. */
49 const char *progname;
50 bool null_stderr;
51 bool exit_on_error;
52 prepare_read_fn prepare_read;
53 done_read_fn done_read;
54 void *private_data;
56 /* Management of the subprocess. */
57 pid_t child;
58 int fd[2];
59 bool exited;
60 int exitstatus;
62 /* Status of the writer part. */
63 volatile bool writer_terminated;
64 int writer_errno;
65 /* Status of the reader part. */
66 volatile bool reader_terminated;
67 volatile int reader_errno;
69 #if defined _WIN32 && ! defined __CYGWIN__
70 CRITICAL_SECTION lock; /* protects the volatile fields */
71 HANDLE reader_thread_handle;
72 #else
73 struct sigaction orig_sigpipe_action;
74 fd_set readfds; /* All bits except fd[0] are always cleared. */
75 fd_set writefds; /* All bits except fd[1] are always cleared. */
76 #endif
80 /* Platform dependent functions. */
82 /* Perform additional initializations.
83 Return 0 if successful, -1 upon failure. */
84 static int filter_init (struct pipe_filter_gi *filter);
86 /* Write count bytes starting at buf, while at the same time invoking the
87 read iterator (the functions prepare_read/done_read) when needed. */
88 static void filter_loop (struct pipe_filter_gi *filter,
89 const char *wbuf, size_t count);
91 /* Perform cleanup actions at the end.
92 finish_reading is true if there was no error, or false if some error
93 occurred already. */
94 static void filter_cleanup (struct pipe_filter_gi *filter,
95 bool finish_reading);
98 #if defined _WIN32 && ! defined __CYGWIN__
99 /* Native Windows API. */
101 static unsigned int WINAPI
102 reader_thread_func (void *thread_arg)
104 struct pipe_filter_gi *filter = (struct pipe_filter_gi *) thread_arg;
106 for (;;)
108 size_t bufsize;
109 void *buf = filter->prepare_read (&bufsize, filter->private_data);
110 if (!(buf != NULL && bufsize > 0))
111 /* prepare_read returned wrong values. */
112 abort ();
114 ssize_t nread =
115 read (filter->fd[0], buf, bufsize > SSIZE_MAX ? SSIZE_MAX : bufsize);
116 EnterCriticalSection (&filter->lock);
117 /* If the writer already encountered an error, terminate. */
118 if (filter->writer_terminated)
119 break;
120 if (nread < 0)
122 filter->reader_errno = errno;
123 break;
125 else if (nread > 0)
126 filter->done_read (buf, nread, filter->private_data);
127 else /* nread == 0 */
128 break;
129 LeaveCriticalSection (&filter->lock);
133 filter->reader_terminated = true;
134 LeaveCriticalSection (&filter->lock);
135 _endthreadex (0); /* calls ExitThread (0) */
136 abort ();
139 static int
140 filter_init (struct pipe_filter_gi *filter)
142 InitializeCriticalSection (&filter->lock);
143 EnterCriticalSection (&filter->lock);
145 filter->reader_thread_handle =
146 (HANDLE) _beginthreadex (NULL, 100000, reader_thread_func, filter,
147 0, NULL);
149 if (filter->reader_thread_handle == NULL)
151 if (filter->exit_on_error)
152 error (EXIT_FAILURE, 0, _("creation of reading thread failed"));
153 return -1;
155 else
156 return 0;
159 static void
160 filter_loop (struct pipe_filter_gi *filter, const char *wbuf, size_t count)
162 if (!filter->writer_terminated)
164 for (;;)
166 ssize_t nwritten;
168 /* Allow the reader thread to continue. */
169 LeaveCriticalSection (&filter->lock);
171 nwritten =
172 write (filter->fd[1], wbuf, count > SSIZE_MAX ? SSIZE_MAX : count);
174 /* Get the lock back from the reader thread. */
175 EnterCriticalSection (&filter->lock);
177 if (nwritten < 0)
179 /* Don't assume that the gnulib modules 'write' and 'sigpipe' are
180 used. */
181 if (GetLastError () == ERROR_NO_DATA)
182 errno = EPIPE;
183 filter->writer_errno = errno;
184 filter->writer_terminated = true;
185 break;
187 else if (nwritten > 0)
189 count -= nwritten;
190 if (count == 0)
191 break;
192 wbuf += nwritten;
194 else /* nwritten == 0 */
196 filter->writer_terminated = true;
197 break;
203 static void
204 filter_cleanup (struct pipe_filter_gi *filter, bool finish_reading)
206 if (finish_reading)
208 LeaveCriticalSection (&filter->lock);
209 WaitForSingleObject (filter->reader_thread_handle, INFINITE);
211 else
212 TerminateThread (filter->reader_thread_handle, 1);
214 CloseHandle (filter->reader_thread_handle);
215 DeleteCriticalSection (&filter->lock);
218 #else
219 /* Unix API. */
221 static int
222 filter_init (struct pipe_filter_gi *filter)
224 #if !(defined _WIN32 && ! defined __CYGWIN__)
225 /* When we write to the child process and it has just terminated,
226 we don't want to die from a SIGPIPE signal. So set the SIGPIPE
227 handler to SIG_IGN, and handle EPIPE error codes in write(). */
229 struct sigaction sigpipe_action;
231 sigpipe_action.sa_handler = SIG_IGN;
232 sigpipe_action.sa_flags = 0;
233 sigemptyset (&sigpipe_action.sa_mask);
234 if (sigaction (SIGPIPE, &sigpipe_action, &filter->orig_sigpipe_action) < 0)
235 abort ();
237 #endif
239 /* Enable non-blocking I/O. This permits the read() and write() calls
240 to return -1/EAGAIN without blocking; this is important for polling
241 if HAVE_SELECT is not defined. It also permits the read() and write()
242 calls to return after partial reads/writes; this is important if
243 HAVE_SELECT is defined, because select() only says that some data
244 can be read or written, not how many. Without non-blocking I/O,
245 Linux 2.2.17 and BSD systems prefer to block instead of returning
246 with partial results. */
248 int fcntl_flags;
250 if ((fcntl_flags = fcntl (filter->fd[1], F_GETFL, 0)) < 0
251 || fcntl (filter->fd[1], F_SETFL, fcntl_flags | O_NONBLOCK) == -1
252 || (fcntl_flags = fcntl (filter->fd[0], F_GETFL, 0)) < 0
253 || fcntl (filter->fd[0], F_SETFL, fcntl_flags | O_NONBLOCK) == -1)
255 if (filter->exit_on_error)
256 error (EXIT_FAILURE, errno,
257 _("cannot set up nonblocking I/O to %s subprocess"),
258 filter->progname);
259 return -1;
263 FD_ZERO (&filter->readfds);
264 FD_ZERO (&filter->writefds);
266 return 0;
269 static void
270 filter_loop (struct pipe_filter_gi *filter, const char *wbuf, size_t count)
272 /* This function is used in two situations:
273 - in order to write some data to the subprocess
274 [done_writing = false],
275 - in order to read the remaining data after everything was written
276 [done_writing = true]. In this case buf is NULL and count is
277 ignored. */
278 bool done_writing = (wbuf == NULL);
280 if (!done_writing)
282 if (filter->writer_terminated || filter->reader_terminated)
283 /* pipe_filter_gi_write was called when it should not be. */
284 abort ();
286 else
288 if (filter->reader_terminated)
289 return;
292 /* Loop, trying to write the given buffer or reading, whichever is
293 possible. */
294 for (;;)
296 /* Here filter->writer_terminated is false. When it becomes true, this
297 loop is terminated. */
298 /* Whereas filter->reader_terminated is initially false but may become
299 true during this loop. */
300 /* Here, if !done_writing, count > 0. When count becomes 0, this loop
301 is terminated. */
302 /* Here, if done_writing, filter->reader_terminated is false. When
303 filter->reader_terminated becomes true, this loop is terminated. */
304 # if HAVE_SELECT
305 int n, retval;
307 /* See whether reading or writing is possible. */
308 n = 1;
309 if (!filter->reader_terminated)
311 FD_SET (filter->fd[0], &filter->readfds);
312 n = filter->fd[0] + 1;
314 if (!done_writing)
316 FD_SET (filter->fd[1], &filter->writefds);
317 if (n <= filter->fd[1])
318 n = filter->fd[1] + 1;
320 /* Do EINTR handling here instead of in pipe-filter-aux.h,
321 because select() cannot be referred to from an inline
322 function on AIX 7.1. */
324 retval = select (n,
325 (!filter->reader_terminated ? &filter->readfds : NULL),
326 (!done_writing ? &filter->writefds : NULL),
327 NULL, NULL);
328 while (retval < 0 && errno == EINTR);
329 n = retval;
331 if (n < 0)
333 if (filter->exit_on_error)
334 error (EXIT_FAILURE, errno,
335 _("communication with %s subprocess failed"),
336 filter->progname);
337 filter->writer_errno = errno;
338 filter->writer_terminated = true;
339 break;
342 if (!done_writing && FD_ISSET (filter->fd[1], &filter->writefds))
343 goto try_write;
344 if (!filter->reader_terminated
345 && FD_ISSET (filter->fd[0], &filter->readfds))
346 goto try_read;
347 /* How could select() return if none of the two descriptors is ready? */
348 abort ();
349 # endif
351 /* Attempt to write. */
352 # if HAVE_SELECT
353 try_write:
354 # endif
355 if (!done_writing)
357 ssize_t nwritten =
358 write (filter->fd[1], wbuf, count > SSIZE_MAX ? SSIZE_MAX : count);
359 if (nwritten < 0)
361 if (!IS_EAGAIN (errno))
363 if (filter->exit_on_error)
364 error (EXIT_FAILURE, errno,
365 _("write to %s subprocess failed"),
366 filter->progname);
367 filter->writer_errno = errno;
368 filter->writer_terminated = true;
369 break;
372 else if (nwritten > 0)
374 count -= nwritten;
375 if (count == 0)
376 break;
377 wbuf += nwritten;
380 # if HAVE_SELECT
381 continue;
382 # endif
384 /* Attempt to read. */
385 # if HAVE_SELECT
386 try_read:
387 # endif
388 if (!filter->reader_terminated)
390 size_t bufsize;
391 void *buf = filter->prepare_read (&bufsize, filter->private_data);
392 if (!(buf != NULL && bufsize > 0))
393 /* prepare_read returned wrong values. */
394 abort ();
396 ssize_t nread =
397 read (filter->fd[0], buf,
398 bufsize > SSIZE_MAX ? SSIZE_MAX : bufsize);
399 if (nread < 0)
401 if (!IS_EAGAIN (errno))
403 if (filter->exit_on_error)
404 error (EXIT_FAILURE, errno,
405 _("read from %s subprocess failed"),
406 filter->progname);
407 filter->reader_errno = errno;
408 filter->reader_terminated = true;
409 break;
412 else if (nread > 0)
413 filter->done_read (buf, nread, filter->private_data);
414 else /* nread == 0 */
416 filter->reader_terminated = true;
417 if (done_writing)
418 break;
422 # if HAVE_SELECT
423 continue;
424 # endif
428 static void
429 filter_cleanup (struct pipe_filter_gi *filter, bool finish_reading)
431 if (finish_reading)
432 /* A select loop, with done_writing = true. */
433 filter_loop (filter, NULL, 0);
435 if (sigaction (SIGPIPE, &filter->orig_sigpipe_action, NULL) < 0)
436 abort ();
439 #endif
442 /* Terminate the child process. Do nothing if it already exited. */
443 static void
444 filter_terminate (struct pipe_filter_gi *filter)
446 if (!filter->exited)
448 /* Tell the child there is nothing more the parent will send. */
449 close (filter->fd[1]);
450 filter_cleanup (filter, !filter->reader_terminated);
451 close (filter->fd[0]);
452 filter->exitstatus =
453 wait_subprocess (filter->child, filter->progname, true,
454 filter->null_stderr, true, filter->exit_on_error,
455 NULL);
456 if (filter->exitstatus != 0 && filter->exit_on_error)
457 error (EXIT_FAILURE, 0,
458 _("subprocess %s terminated with exit code %d"),
459 filter->progname, filter->exitstatus);
460 filter->exited = true;
464 /* After filter_terminate:
465 Return 0 upon success, or (only if exit_on_error is false):
466 - -1 with errno set upon failure,
467 - the positive exit code of the subprocess if that failed. */
468 static int
469 filter_retcode (struct pipe_filter_gi *filter)
471 if (filter->writer_errno != 0)
473 errno = filter->writer_errno;
474 return -1;
476 else if (filter->reader_errno != 0)
478 errno = filter->reader_errno;
479 return -1;
481 else
482 return filter->exitstatus;
485 struct pipe_filter_gi *
486 pipe_filter_gi_create (const char *progname,
487 const char *prog_path, const char **prog_argv,
488 bool null_stderr, bool exit_on_error,
489 prepare_read_fn prepare_read,
490 done_read_fn done_read,
491 void *private_data)
493 struct pipe_filter_gi *filter;
495 filter =
496 (struct pipe_filter_gi *) xmalloc (sizeof (struct pipe_filter_gi));
498 /* Open a bidirectional pipe to a subprocess. */
499 filter->child = create_pipe_bidi (progname, prog_path, (char **) prog_argv,
500 null_stderr, true, exit_on_error,
501 filter->fd);
502 filter->progname = progname;
503 filter->null_stderr = null_stderr;
504 filter->exit_on_error = exit_on_error;
505 filter->prepare_read = prepare_read;
506 filter->done_read = done_read;
507 filter->private_data = private_data;
508 filter->exited = false;
509 filter->exitstatus = 0;
510 filter->writer_terminated = false;
511 filter->writer_errno = 0;
512 filter->reader_terminated = false;
513 filter->reader_errno = 0;
515 if (filter->child == -1)
517 /* Child process could not be created.
518 Arrange for filter_retcode (filter) to be the current errno. */
519 filter->writer_errno = errno;
520 filter->writer_terminated = true;
521 filter->exited = true;
523 else if (filter_init (filter) < 0)
524 filter_terminate (filter);
526 return filter;
530 pipe_filter_gi_write (struct pipe_filter_gi *filter,
531 const void *buf, size_t size)
533 if (buf == NULL)
534 /* Invalid argument. */
535 abort ();
537 if (filter->exited)
538 return filter_retcode (filter);
540 if (size > 0)
542 filter_loop (filter, buf, size);
543 if (filter->writer_terminated || filter->reader_terminated)
545 filter_terminate (filter);
546 return filter_retcode (filter);
549 return 0;
553 pipe_filter_gi_close (struct pipe_filter_gi *filter)
555 int ret;
556 int saved_errno;
558 filter_terminate (filter);
559 ret = filter_retcode (filter);
560 saved_errno = errno;
561 free (filter);
562 errno = saved_errno;
563 return ret;