2005-12-29 Paul Brook <paul@codesourcery.com>
[official-gcc.git] / libiberty / pex-common.c
blobb2ca6e08ce208151554088d44c7b103f5974e839
1 /* Common code for executing a program in a sub-process.
2 Copyright (C) 2005 Free Software Foundation, Inc.
3 Written by Ian Lance Taylor <ian@airs.com>.
5 This file is part of the libiberty library.
6 Libiberty is free software; you can redistribute it and/or
7 modify it under the terms of the GNU Library General Public
8 License as published by the Free Software Foundation; either
9 version 2 of the License, or (at your option) any later version.
11 Libiberty 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 GNU
14 Library General Public License for more details.
16 You should have received a copy of the GNU Library General Public
17 License along with libiberty; see the file COPYING.LIB. If not,
18 write to the Free Software Foundation, Inc., 51 Franklin Street - Fifth Floor,
19 Boston, MA 02110-1301, USA. */
21 #include "config.h"
22 #include "libiberty.h"
23 #include "pex-common.h"
25 #include <stdio.h>
26 #include <errno.h>
27 #ifdef NEED_DECLARATION_ERRNO
28 extern int errno;
29 #endif
30 #ifdef HAVE_STDLIB_H
31 #include <stdlib.h>
32 #endif
33 #ifdef HAVE_STRING_H
34 #include <string.h>
35 #endif
36 #ifdef HAVE_UNISTD_H
37 #include <unistd.h>
38 #endif
40 extern int mkstemps (char *, int);
42 /* This file contains subroutines for the program execution routines
43 (pex_init, pex_run, etc.). This file is compiled on all
44 systems. */
46 static void pex_add_remove (struct pex_obj *, const char *, int);
47 static int pex_get_status_and_time (struct pex_obj *, int, const char **,
48 int *);
50 /* Initialize a pex_obj structure. */
52 struct pex_obj *
53 pex_init_common (int flags, const char *pname, const char *tempbase,
54 const struct pex_funcs *funcs)
56 struct pex_obj *obj;
58 obj = XNEW (struct pex_obj);
59 obj->flags = flags;
60 obj->pname = pname;
61 obj->tempbase = tempbase;
62 obj->next_input = STDIN_FILE_NO;
63 obj->next_input_name = NULL;
64 obj->next_input_name_allocated = 0;
65 obj->count = 0;
66 obj->children = NULL;
67 obj->status = NULL;
68 obj->time = NULL;
69 obj->number_waited = 0;
70 obj->read_output = NULL;
71 obj->remove_count = 0;
72 obj->remove = NULL;
73 obj->funcs = funcs;
74 obj->sysdep = NULL;
75 return obj;
78 /* Add a file to be removed when we are done. */
80 static void
81 pex_add_remove (struct pex_obj *obj, const char *name, int allocated)
83 char *add;
85 ++obj->remove_count;
86 obj->remove = XRESIZEVEC (char *, obj->remove, obj->remove_count);
87 if (allocated)
88 add = (char *) name;
89 else
90 add = xstrdup (name);
91 obj->remove[obj->remove_count - 1] = add;
94 /* Run a program. */
96 const char *
97 pex_run (struct pex_obj *obj, int flags, const char *executable,
98 char * const * argv, const char *orig_outname, const char *errname,
99 int *err)
101 const char *errmsg;
102 int in, out, errdes;
103 char *outname;
104 int outname_allocated;
105 int p[2];
106 long pid;
108 in = -1;
109 out = -1;
110 errdes = -1;
111 outname = (char *) orig_outname;
112 outname_allocated = 0;
114 /* Set IN. */
116 if (obj->next_input_name != NULL)
118 /* We have to make sure that the previous process has completed
119 before we try to read the file. */
120 if (!pex_get_status_and_time (obj, 0, &errmsg, err))
121 goto error_exit;
123 in = obj->funcs->open_read (obj, obj->next_input_name,
124 (flags & PEX_BINARY_INPUT) != 0);
125 if (in < 0)
127 *err = errno;
128 errmsg = "open temporary file";
129 goto error_exit;
131 if (obj->next_input_name_allocated)
133 free (obj->next_input_name);
134 obj->next_input_name_allocated = 0;
136 obj->next_input_name = NULL;
138 else
140 in = obj->next_input;
141 if (in < 0)
143 *err = 0;
144 errmsg = "pipeline already complete";
145 goto error_exit;
149 /* Set OUT and OBJ->NEXT_INPUT/OBJ->NEXT_INPUT_NAME. */
151 if ((flags & PEX_LAST) != 0)
153 if (outname == NULL)
154 out = STDOUT_FILE_NO;
155 else if ((flags & PEX_SUFFIX) != 0)
157 outname = concat (obj->tempbase, outname, NULL);
158 outname_allocated = 1;
160 obj->next_input = -1;
162 else if ((obj->flags & PEX_USE_PIPES) == 0)
164 if (outname == NULL)
166 if (obj->tempbase == NULL)
168 outname = make_temp_file (NULL);
169 outname_allocated = 1;
171 else
173 int len = strlen (obj->tempbase);
175 if (len >= 6
176 && strcmp (obj->tempbase + len - 6, "XXXXXX") == 0)
177 outname = xstrdup (obj->tempbase);
178 else
179 outname = concat (obj->tempbase, "XXXXXX", NULL);
181 outname_allocated = 1;
183 out = mkstemps (outname, 0);
184 if (out < 0)
186 *err = 0;
187 errmsg = "could not create temporary output file";
188 goto error_exit;
191 /* This isn't obj->funcs->close because we got the
192 descriptor from mkstemps, not from a function in
193 obj->funcs. Calling close here is just like what
194 make_temp_file does. */
195 close (out);
196 out = -1;
199 else if ((flags & PEX_SUFFIX) != 0)
201 if (obj->tempbase == NULL)
202 outname = make_temp_file (outname);
203 else
204 outname = concat (obj->tempbase, outname, NULL);
205 outname_allocated = 1;
208 if ((obj->flags & PEX_SAVE_TEMPS) == 0)
210 pex_add_remove (obj, outname, outname_allocated);
211 outname_allocated = 0;
214 if (!outname_allocated)
216 obj->next_input_name = outname;
217 obj->next_input_name_allocated = 0;
219 else
221 obj->next_input_name = outname;
222 outname_allocated = 0;
223 obj->next_input_name_allocated = 1;
226 else
228 if (obj->funcs->pipe (obj, p, (flags & PEX_BINARY_OUTPUT) != 0) < 0)
230 *err = errno;
231 errmsg = "pipe";
232 goto error_exit;
235 out = p[WRITE_PORT];
236 obj->next_input = p[READ_PORT];
239 if (out < 0)
241 out = obj->funcs->open_write (obj, outname,
242 (flags & PEX_BINARY_OUTPUT) != 0);
243 if (out < 0)
245 *err = errno;
246 errmsg = "open temporary output file";
247 goto error_exit;
251 if (outname_allocated)
253 free (outname);
254 outname_allocated = 0;
257 /* Set ERRDES. */
259 if (errname == NULL)
260 errdes = STDERR_FILE_NO;
261 else
263 /* We assume that stderr is in text mode--it certainly shouldn't
264 be controlled by PEX_BINARY_OUTPUT. If necessary, we can add
265 a PEX_BINARY_STDERR flag. */
266 errdes = obj->funcs->open_write (obj, errname, 0);
267 if (errdes < 0)
269 *err = errno;
270 errmsg = "open error file";
271 goto error_exit;
275 /* Run the program. */
277 pid = obj->funcs->exec_child (obj, flags, executable, argv, in, out, errdes,
278 &errmsg, err);
279 if (pid < 0)
280 goto error_exit;
282 ++obj->count;
283 obj->children = XRESIZEVEC (long, obj->children, obj->count);
284 obj->children[obj->count - 1] = pid;
286 return NULL;
288 error_exit:
289 if (in >= 0 && in != STDIN_FILE_NO)
290 obj->funcs->close (obj, in);
291 if (out >= 0 && out != STDOUT_FILE_NO)
292 obj->funcs->close (obj, out);
293 if (errdes >= 0 && errdes != STDERR_FILE_NO)
294 obj->funcs->close (obj, errdes);
295 if (outname_allocated)
296 free (outname);
297 return errmsg;
300 /* Return a FILE pointer for the output of the last program
301 executed. */
303 FILE *
304 pex_read_output (struct pex_obj *obj, int binary)
306 if (obj->next_input_name != NULL)
308 const char *errmsg;
309 int err;
311 /* We have to make sure that the process has completed before we
312 try to read the file. */
313 if (!pex_get_status_and_time (obj, 0, &errmsg, &err))
315 errno = err;
316 return NULL;
319 obj->read_output = fopen (obj->next_input_name, binary ? "rb" : "r");
321 if (obj->next_input_name_allocated)
323 free (obj->next_input_name);
324 obj->next_input_name_allocated = 0;
326 obj->next_input_name = NULL;
328 else
330 int o;
332 o = obj->next_input;
333 if (o < 0 || o == STDIN_FILE_NO)
334 return NULL;
335 obj->read_output = obj->funcs->fdopenr (obj, o, binary);
336 obj->next_input = -1;
339 return obj->read_output;
342 /* Get the exit status and, if requested, the resource time for all
343 the child processes. Return 0 on failure, 1 on success. */
345 static int
346 pex_get_status_and_time (struct pex_obj *obj, int done, const char **errmsg,
347 int *err)
349 int ret;
350 int i;
352 if (obj->number_waited == obj->count)
353 return 1;
355 obj->status = XRESIZEVEC (int, obj->status, obj->count);
356 if ((obj->flags & PEX_RECORD_TIMES) != 0)
357 obj->time = XRESIZEVEC (struct pex_time, obj->time, obj->count);
359 ret = 1;
360 for (i = obj->number_waited; i < obj->count; ++i)
362 if (obj->funcs->wait (obj, obj->children[i], &obj->status[i],
363 obj->time == NULL ? NULL : &obj->time[i],
364 done, errmsg, err) < 0)
365 ret = 0;
367 obj->number_waited = i;
369 return ret;
372 /* Get exit status of executed programs. */
375 pex_get_status (struct pex_obj *obj, int count, int *vector)
377 if (obj->status == NULL)
379 const char *errmsg;
380 int err;
382 if (!pex_get_status_and_time (obj, 0, &errmsg, &err))
383 return 0;
386 if (count > obj->count)
388 memset (vector + obj->count, 0, (count - obj->count) * sizeof (int));
389 count = obj->count;
392 memcpy (vector, obj->status, count * sizeof (int));
394 return 1;
397 /* Get process times of executed programs. */
400 pex_get_times (struct pex_obj *obj, int count, struct pex_time *vector)
402 if (obj->status == NULL)
404 const char *errmsg;
405 int err;
407 if (!pex_get_status_and_time (obj, 0, &errmsg, &err))
408 return 0;
411 if (obj->time == NULL)
412 return 0;
414 if (count > obj->count)
416 memset (vector + obj->count, 0,
417 (count - obj->count) * sizeof (struct pex_time));
418 count = obj->count;
421 memcpy (vector, obj->time, count * sizeof (struct pex_time));
423 return 1;
426 /* Free a pex_obj structure. */
428 void
429 pex_free (struct pex_obj *obj)
431 if (obj->next_input >= 0 && obj->next_input != STDIN_FILE_NO)
432 obj->funcs->close (obj, obj->next_input);
434 /* If the caller forgot to wait for the children, we do it here, to
435 avoid zombies. */
436 if (obj->status == NULL)
438 const char *errmsg;
439 int err;
441 obj->flags &= ~ PEX_RECORD_TIMES;
442 pex_get_status_and_time (obj, 1, &errmsg, &err);
445 if (obj->next_input_name_allocated)
446 free (obj->next_input_name);
447 if (obj->children != NULL)
448 free (obj->children);
449 if (obj->status != NULL)
450 free (obj->status);
451 if (obj->time != NULL)
452 free (obj->time);
453 if (obj->read_output != NULL)
454 fclose (obj->read_output);
456 if (obj->remove_count > 0)
458 int i;
460 for (i = 0; i < obj->remove_count; ++i)
462 remove (obj->remove[i]);
463 free (obj->remove[i]);
465 free (obj->remove);
468 if (obj->funcs->cleanup != NULL)
469 obj->funcs->cleanup (obj);
471 free (obj);