2003-01-24 22:31:35 +01:00
|
|
|
/* Utilities to execute a program in a subprocess (possibly linked by pipes
|
|
|
|
with other subprocesses), and wait for it. Shared logic.
|
2004-03-18 05:07:41 +01:00
|
|
|
Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2003, 2004
|
2003-01-24 22:31:35 +01:00
|
|
|
Free Software Foundation, Inc.
|
|
|
|
|
|
|
|
This file is part of the libiberty library.
|
|
|
|
Libiberty is free software; you can redistribute it and/or
|
|
|
|
modify it under the terms of the GNU Library General Public
|
|
|
|
License as published by the Free Software Foundation; either
|
|
|
|
version 2 of the License, or (at your option) any later version.
|
|
|
|
|
|
|
|
Libiberty is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
Library General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU Library General Public
|
|
|
|
License along with libiberty; see the file COPYING.LIB. If not,
|
2005-05-10 17:33:34 +02:00
|
|
|
write to the Free Software Foundation, Inc., 51 Franklin Street - Fifth Floor,
|
|
|
|
Boston, MA 02110-1301, USA. */
|
2003-01-24 22:31:35 +01:00
|
|
|
|
|
|
|
#ifndef PEX_COMMON_H
|
|
|
|
#define PEX_COMMON_H
|
|
|
|
|
|
|
|
#include "config.h"
|
|
|
|
#include "libiberty.h"
|
libiberty:
* pex-common.c: New file.
* pex-one.c: New file.
* pexecute.c: New file.
* pex-common.h: Include <stdio.h>.
(struct pex_obj): Define.
(struct pex_funcs): Define.
(pex_init_common): Declare.
* pex-unix.c: Rewrite.
* pex-win32.c: Rewrite.
* pex-djgpp.c: Rewrite.
* pex-msdos.c: Rewrite.
* testsuite/text-pexecute.c: New file.
* pexecute.txh: Rewrite.
* configure.ac: Check for wait3 and wait4. Set CHECK to
really-check rather than check-cplus-dem.
* functions.texi: Rebuild.
* Makefile.in: Rebuild dependencies.
(CFILES): Add pexecute.c, pex-common.c, pex-one.c.
(REQUIRED_OFILES): Add pexecute.o, pex-common.o, pex-one.o.
* testsuite/Makefile.in (really-check): New target.
(check-pexecute, test-pexecute): New targets.
* configure: Rebuild.
include:
* libiberty.h: Include <stdio.h>.
(PEX_RECORD_TIMES, PEX_USE_PIPES, PEX_SAVE_TEMPS): Define.
(PEX_LAST, PEX_SEARCH, PEX_SUFFIX, PEX_STDERR_TO_STDOUT): Define.
(PEX_BINARY_INPUT, PEX_BINARY_OUTPUT): Define.
(pex_init, pex_run, pex_read_output): Declare.
(pex_get_status, pex_get_times, pex_free, pex_one): Declare.
(struct pex_time): Define.
2005-03-29 04:15:24 +02:00
|
|
|
#include <stdio.h>
|
2003-01-24 22:31:35 +01:00
|
|
|
|
|
|
|
#define install_error_msg "installation problem, cannot exec `%s'"
|
|
|
|
|
|
|
|
/* stdin file number. */
|
|
|
|
#define STDIN_FILE_NO 0
|
|
|
|
|
|
|
|
/* stdout file number. */
|
|
|
|
#define STDOUT_FILE_NO 1
|
|
|
|
|
2004-03-18 05:07:41 +01:00
|
|
|
/* stderr file number. */
|
|
|
|
#define STDERR_FILE_NO 2
|
|
|
|
|
2003-01-24 22:31:35 +01:00
|
|
|
/* value of `pipe': port index for reading. */
|
|
|
|
#define READ_PORT 0
|
|
|
|
|
|
|
|
/* value of `pipe': port index for writing. */
|
|
|
|
#define WRITE_PORT 1
|
|
|
|
|
libiberty:
* pex-common.c: New file.
* pex-one.c: New file.
* pexecute.c: New file.
* pex-common.h: Include <stdio.h>.
(struct pex_obj): Define.
(struct pex_funcs): Define.
(pex_init_common): Declare.
* pex-unix.c: Rewrite.
* pex-win32.c: Rewrite.
* pex-djgpp.c: Rewrite.
* pex-msdos.c: Rewrite.
* testsuite/text-pexecute.c: New file.
* pexecute.txh: Rewrite.
* configure.ac: Check for wait3 and wait4. Set CHECK to
really-check rather than check-cplus-dem.
* functions.texi: Rebuild.
* Makefile.in: Rebuild dependencies.
(CFILES): Add pexecute.c, pex-common.c, pex-one.c.
(REQUIRED_OFILES): Add pexecute.o, pex-common.o, pex-one.o.
* testsuite/Makefile.in (really-check): New target.
(check-pexecute, test-pexecute): New targets.
* configure: Rebuild.
include:
* libiberty.h: Include <stdio.h>.
(PEX_RECORD_TIMES, PEX_USE_PIPES, PEX_SAVE_TEMPS): Define.
(PEX_LAST, PEX_SEARCH, PEX_SUFFIX, PEX_STDERR_TO_STDOUT): Define.
(PEX_BINARY_INPUT, PEX_BINARY_OUTPUT): Define.
(pex_init, pex_run, pex_read_output): Declare.
(pex_get_status, pex_get_times, pex_free, pex_one): Declare.
(struct pex_time): Define.
2005-03-29 04:15:24 +02:00
|
|
|
/* The structure used by pex_init and friends. */
|
|
|
|
|
|
|
|
struct pex_obj
|
|
|
|
{
|
|
|
|
/* Flags. */
|
|
|
|
int flags;
|
|
|
|
/* Name of calling program, for error messages. */
|
|
|
|
const char *pname;
|
|
|
|
/* Base name to use for temporary files. */
|
|
|
|
const char *tempbase;
|
|
|
|
/* Pipe to use as stdin for next process. */
|
|
|
|
int next_input;
|
|
|
|
/* File name to use as stdin for next process. */
|
|
|
|
char *next_input_name;
|
|
|
|
/* Whether next_input_name was allocated using malloc. */
|
|
|
|
int next_input_name_allocated;
|
|
|
|
/* Number of child processes. */
|
|
|
|
int count;
|
2006-03-13 21:00:44 +01:00
|
|
|
/* PIDs of child processes; array allocated using malloc. */
|
libiberty:
* pex-common.c: New file.
* pex-one.c: New file.
* pexecute.c: New file.
* pex-common.h: Include <stdio.h>.
(struct pex_obj): Define.
(struct pex_funcs): Define.
(pex_init_common): Declare.
* pex-unix.c: Rewrite.
* pex-win32.c: Rewrite.
* pex-djgpp.c: Rewrite.
* pex-msdos.c: Rewrite.
* testsuite/text-pexecute.c: New file.
* pexecute.txh: Rewrite.
* configure.ac: Check for wait3 and wait4. Set CHECK to
really-check rather than check-cplus-dem.
* functions.texi: Rebuild.
* Makefile.in: Rebuild dependencies.
(CFILES): Add pexecute.c, pex-common.c, pex-one.c.
(REQUIRED_OFILES): Add pexecute.o, pex-common.o, pex-one.o.
* testsuite/Makefile.in (really-check): New target.
(check-pexecute, test-pexecute): New targets.
* configure: Rebuild.
include:
* libiberty.h: Include <stdio.h>.
(PEX_RECORD_TIMES, PEX_USE_PIPES, PEX_SAVE_TEMPS): Define.
(PEX_LAST, PEX_SEARCH, PEX_SUFFIX, PEX_STDERR_TO_STDOUT): Define.
(PEX_BINARY_INPUT, PEX_BINARY_OUTPUT): Define.
(pex_init, pex_run, pex_read_output): Declare.
(pex_get_status, pex_get_times, pex_free, pex_one): Declare.
(struct pex_time): Define.
2005-03-29 04:15:24 +02:00
|
|
|
long *children;
|
|
|
|
/* Exit statuses of child processes; array allocated using malloc. */
|
|
|
|
int *status;
|
|
|
|
/* Time used by child processes; array allocated using malloc. */
|
|
|
|
struct pex_time *time;
|
|
|
|
/* Number of children we have already waited for. */
|
|
|
|
int number_waited;
|
2006-04-12 20:42:01 +02:00
|
|
|
/* FILE created by pex_input_file. */
|
|
|
|
FILE *input_file;
|
libiberty:
* pex-common.c: New file.
* pex-one.c: New file.
* pexecute.c: New file.
* pex-common.h: Include <stdio.h>.
(struct pex_obj): Define.
(struct pex_funcs): Define.
(pex_init_common): Declare.
* pex-unix.c: Rewrite.
* pex-win32.c: Rewrite.
* pex-djgpp.c: Rewrite.
* pex-msdos.c: Rewrite.
* testsuite/text-pexecute.c: New file.
* pexecute.txh: Rewrite.
* configure.ac: Check for wait3 and wait4. Set CHECK to
really-check rather than check-cplus-dem.
* functions.texi: Rebuild.
* Makefile.in: Rebuild dependencies.
(CFILES): Add pexecute.c, pex-common.c, pex-one.c.
(REQUIRED_OFILES): Add pexecute.o, pex-common.o, pex-one.o.
* testsuite/Makefile.in (really-check): New target.
(check-pexecute, test-pexecute): New targets.
* configure: Rebuild.
include:
* libiberty.h: Include <stdio.h>.
(PEX_RECORD_TIMES, PEX_USE_PIPES, PEX_SAVE_TEMPS): Define.
(PEX_LAST, PEX_SEARCH, PEX_SUFFIX, PEX_STDERR_TO_STDOUT): Define.
(PEX_BINARY_INPUT, PEX_BINARY_OUTPUT): Define.
(pex_init, pex_run, pex_read_output): Declare.
(pex_get_status, pex_get_times, pex_free, pex_one): Declare.
(struct pex_time): Define.
2005-03-29 04:15:24 +02:00
|
|
|
/* FILE created by pex_read_output. */
|
|
|
|
FILE *read_output;
|
|
|
|
/* Number of temporary files to remove. */
|
|
|
|
int remove_count;
|
|
|
|
/* List of temporary files to remove; array allocated using malloc
|
|
|
|
of strings allocated using malloc. */
|
|
|
|
char **remove;
|
|
|
|
/* Pointers to system dependent functions. */
|
|
|
|
const struct pex_funcs *funcs;
|
|
|
|
/* For use by system dependent code. */
|
|
|
|
void *sysdep;
|
|
|
|
};
|
|
|
|
|
|
|
|
/* Functions passed to pex_run_common. */
|
|
|
|
|
|
|
|
struct pex_funcs
|
|
|
|
{
|
|
|
|
/* Open file NAME for reading. If BINARY is non-zero, open in
|
|
|
|
binary mode. Return >= 0 on success, -1 on error. */
|
2006-03-13 21:00:44 +01:00
|
|
|
int (*open_read) (struct pex_obj *, const char */* name */, int /* binary */);
|
libiberty:
* pex-common.c: New file.
* pex-one.c: New file.
* pexecute.c: New file.
* pex-common.h: Include <stdio.h>.
(struct pex_obj): Define.
(struct pex_funcs): Define.
(pex_init_common): Declare.
* pex-unix.c: Rewrite.
* pex-win32.c: Rewrite.
* pex-djgpp.c: Rewrite.
* pex-msdos.c: Rewrite.
* testsuite/text-pexecute.c: New file.
* pexecute.txh: Rewrite.
* configure.ac: Check for wait3 and wait4. Set CHECK to
really-check rather than check-cplus-dem.
* functions.texi: Rebuild.
* Makefile.in: Rebuild dependencies.
(CFILES): Add pexecute.c, pex-common.c, pex-one.c.
(REQUIRED_OFILES): Add pexecute.o, pex-common.o, pex-one.o.
* testsuite/Makefile.in (really-check): New target.
(check-pexecute, test-pexecute): New targets.
* configure: Rebuild.
include:
* libiberty.h: Include <stdio.h>.
(PEX_RECORD_TIMES, PEX_USE_PIPES, PEX_SAVE_TEMPS): Define.
(PEX_LAST, PEX_SEARCH, PEX_SUFFIX, PEX_STDERR_TO_STDOUT): Define.
(PEX_BINARY_INPUT, PEX_BINARY_OUTPUT): Define.
(pex_init, pex_run, pex_read_output): Declare.
(pex_get_status, pex_get_times, pex_free, pex_one): Declare.
(struct pex_time): Define.
2005-03-29 04:15:24 +02:00
|
|
|
/* Open file NAME for writing. If BINARY is non-zero, open in
|
|
|
|
binary mode. Return >= 0 on success, -1 on error. */
|
2006-03-13 21:00:44 +01:00
|
|
|
int (*open_write) (struct pex_obj *, const char */* name */,
|
|
|
|
int /* binary */);
|
libiberty:
* pex-common.c: New file.
* pex-one.c: New file.
* pexecute.c: New file.
* pex-common.h: Include <stdio.h>.
(struct pex_obj): Define.
(struct pex_funcs): Define.
(pex_init_common): Declare.
* pex-unix.c: Rewrite.
* pex-win32.c: Rewrite.
* pex-djgpp.c: Rewrite.
* pex-msdos.c: Rewrite.
* testsuite/text-pexecute.c: New file.
* pexecute.txh: Rewrite.
* configure.ac: Check for wait3 and wait4. Set CHECK to
really-check rather than check-cplus-dem.
* functions.texi: Rebuild.
* Makefile.in: Rebuild dependencies.
(CFILES): Add pexecute.c, pex-common.c, pex-one.c.
(REQUIRED_OFILES): Add pexecute.o, pex-common.o, pex-one.o.
* testsuite/Makefile.in (really-check): New target.
(check-pexecute, test-pexecute): New targets.
* configure: Rebuild.
include:
* libiberty.h: Include <stdio.h>.
(PEX_RECORD_TIMES, PEX_USE_PIPES, PEX_SAVE_TEMPS): Define.
(PEX_LAST, PEX_SEARCH, PEX_SUFFIX, PEX_STDERR_TO_STDOUT): Define.
(PEX_BINARY_INPUT, PEX_BINARY_OUTPUT): Define.
(pex_init, pex_run, pex_read_output): Declare.
(pex_get_status, pex_get_times, pex_free, pex_one): Declare.
(struct pex_time): Define.
2005-03-29 04:15:24 +02:00
|
|
|
/* Execute a child process. FLAGS, EXECUTABLE, ARGV, ERR are from
|
|
|
|
pex_run. IN, OUT, ERRDES are each a descriptor, from open_read,
|
|
|
|
open_write, or pipe, or they are one of STDIN_FILE_NO,
|
|
|
|
STDOUT_FILE_NO or STDERR_FILE_NO; if not STD*_FILE_NO, they
|
|
|
|
should be closed. The function should handle the
|
|
|
|
PEX_STDERR_TO_STDOUT flag. Return >= 0 on success, or -1 on
|
|
|
|
error and set *ERRMSG and *ERR. */
|
2006-03-13 21:00:44 +01:00
|
|
|
long (*exec_child) (struct pex_obj *, int /* flags */,
|
|
|
|
const char */* executable */, char * const * /* argv */,
|
2006-06-01 16:57:50 +02:00
|
|
|
char * const * /* env */,
|
2006-03-13 21:00:44 +01:00
|
|
|
int /* in */, int /* out */, int /* errdes */,
|
|
|
|
const char **/* errmsg */, int */* err */);
|
libiberty:
* pex-common.c: New file.
* pex-one.c: New file.
* pexecute.c: New file.
* pex-common.h: Include <stdio.h>.
(struct pex_obj): Define.
(struct pex_funcs): Define.
(pex_init_common): Declare.
* pex-unix.c: Rewrite.
* pex-win32.c: Rewrite.
* pex-djgpp.c: Rewrite.
* pex-msdos.c: Rewrite.
* testsuite/text-pexecute.c: New file.
* pexecute.txh: Rewrite.
* configure.ac: Check for wait3 and wait4. Set CHECK to
really-check rather than check-cplus-dem.
* functions.texi: Rebuild.
* Makefile.in: Rebuild dependencies.
(CFILES): Add pexecute.c, pex-common.c, pex-one.c.
(REQUIRED_OFILES): Add pexecute.o, pex-common.o, pex-one.o.
* testsuite/Makefile.in (really-check): New target.
(check-pexecute, test-pexecute): New targets.
* configure: Rebuild.
include:
* libiberty.h: Include <stdio.h>.
(PEX_RECORD_TIMES, PEX_USE_PIPES, PEX_SAVE_TEMPS): Define.
(PEX_LAST, PEX_SEARCH, PEX_SUFFIX, PEX_STDERR_TO_STDOUT): Define.
(PEX_BINARY_INPUT, PEX_BINARY_OUTPUT): Define.
(pex_init, pex_run, pex_read_output): Declare.
(pex_get_status, pex_get_times, pex_free, pex_one): Declare.
(struct pex_time): Define.
2005-03-29 04:15:24 +02:00
|
|
|
/* Close a descriptor. Return 0 on success, -1 on error. */
|
|
|
|
int (*close) (struct pex_obj *, int);
|
|
|
|
/* Wait for a child to complete, returning exit status in *STATUS
|
|
|
|
and time in *TIME (if it is not null). CHILD is from fork. DONE
|
|
|
|
is 1 if this is called via pex_free. ERRMSG and ERR are as in
|
|
|
|
fork. Return 0 on success, -1 on error. */
|
2006-03-13 21:00:44 +01:00
|
|
|
int (*wait) (struct pex_obj *, long /* child */, int * /* status */,
|
|
|
|
struct pex_time * /* time */, int /* done */,
|
|
|
|
const char ** /* errmsg */, int * /* err */);
|
libiberty:
* pex-common.c: New file.
* pex-one.c: New file.
* pexecute.c: New file.
* pex-common.h: Include <stdio.h>.
(struct pex_obj): Define.
(struct pex_funcs): Define.
(pex_init_common): Declare.
* pex-unix.c: Rewrite.
* pex-win32.c: Rewrite.
* pex-djgpp.c: Rewrite.
* pex-msdos.c: Rewrite.
* testsuite/text-pexecute.c: New file.
* pexecute.txh: Rewrite.
* configure.ac: Check for wait3 and wait4. Set CHECK to
really-check rather than check-cplus-dem.
* functions.texi: Rebuild.
* Makefile.in: Rebuild dependencies.
(CFILES): Add pexecute.c, pex-common.c, pex-one.c.
(REQUIRED_OFILES): Add pexecute.o, pex-common.o, pex-one.o.
* testsuite/Makefile.in (really-check): New target.
(check-pexecute, test-pexecute): New targets.
* configure: Rebuild.
include:
* libiberty.h: Include <stdio.h>.
(PEX_RECORD_TIMES, PEX_USE_PIPES, PEX_SAVE_TEMPS): Define.
(PEX_LAST, PEX_SEARCH, PEX_SUFFIX, PEX_STDERR_TO_STDOUT): Define.
(PEX_BINARY_INPUT, PEX_BINARY_OUTPUT): Define.
(pex_init, pex_run, pex_read_output): Declare.
(pex_get_status, pex_get_times, pex_free, pex_one): Declare.
(struct pex_time): Define.
2005-03-29 04:15:24 +02:00
|
|
|
/* Create a pipe (only called if PEX_USE_PIPES is set) storing two
|
2006-03-13 21:00:44 +01:00
|
|
|
descriptors in P[0] and P[1]. If BINARY is non-zero, open in
|
|
|
|
binary mode. Return 0 on success, -1 on error. */
|
|
|
|
int (*pipe) (struct pex_obj *, int * /* p */, int /* binary */);
|
libiberty:
* pex-common.c: New file.
* pex-one.c: New file.
* pexecute.c: New file.
* pex-common.h: Include <stdio.h>.
(struct pex_obj): Define.
(struct pex_funcs): Define.
(pex_init_common): Declare.
* pex-unix.c: Rewrite.
* pex-win32.c: Rewrite.
* pex-djgpp.c: Rewrite.
* pex-msdos.c: Rewrite.
* testsuite/text-pexecute.c: New file.
* pexecute.txh: Rewrite.
* configure.ac: Check for wait3 and wait4. Set CHECK to
really-check rather than check-cplus-dem.
* functions.texi: Rebuild.
* Makefile.in: Rebuild dependencies.
(CFILES): Add pexecute.c, pex-common.c, pex-one.c.
(REQUIRED_OFILES): Add pexecute.o, pex-common.o, pex-one.o.
* testsuite/Makefile.in (really-check): New target.
(check-pexecute, test-pexecute): New targets.
* configure: Rebuild.
include:
* libiberty.h: Include <stdio.h>.
(PEX_RECORD_TIMES, PEX_USE_PIPES, PEX_SAVE_TEMPS): Define.
(PEX_LAST, PEX_SEARCH, PEX_SUFFIX, PEX_STDERR_TO_STDOUT): Define.
(PEX_BINARY_INPUT, PEX_BINARY_OUTPUT): Define.
(pex_init, pex_run, pex_read_output): Declare.
(pex_get_status, pex_get_times, pex_free, pex_one): Declare.
(struct pex_time): Define.
2005-03-29 04:15:24 +02:00
|
|
|
/* Get a FILE pointer to read from a file descriptor (only called if
|
|
|
|
PEX_USE_PIPES is set). If BINARY is non-zero, open in binary
|
|
|
|
mode. Return pointer on success, NULL on error. */
|
2006-03-13 21:00:44 +01:00
|
|
|
FILE * (*fdopenr) (struct pex_obj *, int /* fd */, int /* binary */);
|
2006-04-12 20:42:01 +02:00
|
|
|
/* Get a FILE pointer to write to the file descriptor FD (only
|
|
|
|
called if PEX_USE_PIPES is set). If BINARY is non-zero, open in
|
|
|
|
binary mode. Arrange for FD not to be inherited by the child
|
|
|
|
processes. Return pointer on success, NULL on error. */
|
|
|
|
FILE * (*fdopenw) (struct pex_obj *, int /* fd */, int /* binary */);
|
libiberty:
* pex-common.c: New file.
* pex-one.c: New file.
* pexecute.c: New file.
* pex-common.h: Include <stdio.h>.
(struct pex_obj): Define.
(struct pex_funcs): Define.
(pex_init_common): Declare.
* pex-unix.c: Rewrite.
* pex-win32.c: Rewrite.
* pex-djgpp.c: Rewrite.
* pex-msdos.c: Rewrite.
* testsuite/text-pexecute.c: New file.
* pexecute.txh: Rewrite.
* configure.ac: Check for wait3 and wait4. Set CHECK to
really-check rather than check-cplus-dem.
* functions.texi: Rebuild.
* Makefile.in: Rebuild dependencies.
(CFILES): Add pexecute.c, pex-common.c, pex-one.c.
(REQUIRED_OFILES): Add pexecute.o, pex-common.o, pex-one.o.
* testsuite/Makefile.in (really-check): New target.
(check-pexecute, test-pexecute): New targets.
* configure: Rebuild.
include:
* libiberty.h: Include <stdio.h>.
(PEX_RECORD_TIMES, PEX_USE_PIPES, PEX_SAVE_TEMPS): Define.
(PEX_LAST, PEX_SEARCH, PEX_SUFFIX, PEX_STDERR_TO_STDOUT): Define.
(PEX_BINARY_INPUT, PEX_BINARY_OUTPUT): Define.
(pex_init, pex_run, pex_read_output): Declare.
(pex_get_status, pex_get_times, pex_free, pex_one): Declare.
(struct pex_time): Define.
2005-03-29 04:15:24 +02:00
|
|
|
/* Free any system dependent data associated with OBJ. May be
|
|
|
|
NULL if there is nothing to do. */
|
|
|
|
void (*cleanup) (struct pex_obj *);
|
|
|
|
};
|
|
|
|
|
|
|
|
extern struct pex_obj *pex_init_common (int, const char *, const char *,
|
|
|
|
const struct pex_funcs *);
|
|
|
|
|
2003-01-24 22:31:35 +01:00
|
|
|
#endif
|