Bump the version to 3.82.90.
[make.git] / job.c
blobf4e6fa463b9ad32f2d5926664948f4cbf6712228
1 /* Job execution and handling for GNU Make.
2 Copyright (C) 1988, 1989, 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997,
3 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009,
4 2010 Free Software Foundation, Inc.
5 This file is part of GNU Make.
7 GNU Make is free software; you can redistribute it and/or modify it under the
8 terms of the GNU General Public License as published by the Free Software
9 Foundation; either version 3 of the License, or (at your option) any later
10 version.
12 GNU Make is distributed in the hope that it will be useful, but WITHOUT ANY
13 WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
14 A PARTICULAR PURPOSE. See the GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License along with
17 this program. If not, see <http://www.gnu.org/licenses/>. */
19 #include "make.h"
21 #include <assert.h>
23 #include "job.h"
24 #include "debug.h"
25 #include "filedef.h"
26 #include "commands.h"
27 #include "variable.h"
28 #include "debug.h"
30 #include <string.h>
32 /* Default shell to use. */
33 #ifdef WINDOWS32
34 #include <windows.h>
36 char *default_shell = "sh.exe";
37 int no_default_sh_exe = 1;
38 int batch_mode_shell = 1;
39 HANDLE main_thread;
41 #elif defined (_AMIGA)
43 char default_shell[] = "";
44 extern int MyExecute (char **);
45 int batch_mode_shell = 0;
47 #elif defined (__MSDOS__)
49 /* The default shell is a pointer so we can change it if Makefile
50 says so. It is without an explicit path so we get a chance
51 to search the $PATH for it (since MSDOS doesn't have standard
52 directories we could trust). */
53 char *default_shell = "command.com";
54 int batch_mode_shell = 0;
56 #elif defined (__EMX__)
58 char *default_shell = "/bin/sh";
59 int batch_mode_shell = 0;
61 #elif defined (VMS)
63 # include <descrip.h>
64 char default_shell[] = "";
65 int batch_mode_shell = 0;
67 #elif defined (__riscos__)
69 char default_shell[] = "";
70 int batch_mode_shell = 0;
72 #else
74 char default_shell[] = "/bin/sh";
75 int batch_mode_shell = 0;
77 #endif
79 #ifdef __MSDOS__
80 # include <process.h>
81 static int execute_by_shell;
82 static int dos_pid = 123;
83 int dos_status;
84 int dos_command_running;
85 #endif /* __MSDOS__ */
87 #ifdef _AMIGA
88 # include <proto/dos.h>
89 static int amiga_pid = 123;
90 static int amiga_status;
91 static char amiga_bname[32];
92 static int amiga_batch_file;
93 #endif /* Amiga. */
95 #ifdef VMS
96 # ifndef __GNUC__
97 # include <processes.h>
98 # endif
99 # include <starlet.h>
100 # include <lib$routines.h>
101 static void vmsWaitForChildren (int *);
102 #endif
104 #ifdef WINDOWS32
105 # include <windows.h>
106 # include <io.h>
107 # include <process.h>
108 # include "sub_proc.h"
109 # include "w32err.h"
110 # include "pathstuff.h"
111 #endif /* WINDOWS32 */
113 #ifdef __EMX__
114 # include <process.h>
115 #endif
117 #if defined (HAVE_SYS_WAIT_H) || defined (HAVE_UNION_WAIT)
118 # include <sys/wait.h>
119 #endif
121 #ifdef HAVE_WAITPID
122 # define WAIT_NOHANG(status) waitpid (-1, (status), WNOHANG)
123 #else /* Don't have waitpid. */
124 # ifdef HAVE_WAIT3
125 # ifndef wait3
126 extern int wait3 ();
127 # endif
128 # define WAIT_NOHANG(status) wait3 ((status), WNOHANG, (struct rusage *) 0)
129 # endif /* Have wait3. */
130 #endif /* Have waitpid. */
132 #if !defined (wait) && !defined (POSIX)
133 int wait ();
134 #endif
136 #ifndef HAVE_UNION_WAIT
138 # define WAIT_T int
140 # ifndef WTERMSIG
141 # define WTERMSIG(x) ((x) & 0x7f)
142 # endif
143 # ifndef WCOREDUMP
144 # define WCOREDUMP(x) ((x) & 0x80)
145 # endif
146 # ifndef WEXITSTATUS
147 # define WEXITSTATUS(x) (((x) >> 8) & 0xff)
148 # endif
149 # ifndef WIFSIGNALED
150 # define WIFSIGNALED(x) (WTERMSIG (x) != 0)
151 # endif
152 # ifndef WIFEXITED
153 # define WIFEXITED(x) (WTERMSIG (x) == 0)
154 # endif
156 #else /* Have `union wait'. */
158 # define WAIT_T union wait
159 # ifndef WTERMSIG
160 # define WTERMSIG(x) ((x).w_termsig)
161 # endif
162 # ifndef WCOREDUMP
163 # define WCOREDUMP(x) ((x).w_coredump)
164 # endif
165 # ifndef WEXITSTATUS
166 # define WEXITSTATUS(x) ((x).w_retcode)
167 # endif
168 # ifndef WIFSIGNALED
169 # define WIFSIGNALED(x) (WTERMSIG(x) != 0)
170 # endif
171 # ifndef WIFEXITED
172 # define WIFEXITED(x) (WTERMSIG(x) == 0)
173 # endif
175 #endif /* Don't have `union wait'. */
177 #if !defined(HAVE_UNISTD_H) && !defined(WINDOWS32)
178 int dup2 ();
179 int execve ();
180 void _exit ();
181 # ifndef VMS
182 int geteuid ();
183 int getegid ();
184 int setgid ();
185 int getgid ();
186 # endif
187 #endif
189 /* Different systems have different requirements for pid_t.
190 Plus we have to support gettext string translation... Argh. */
191 static const char *
192 pid2str (pid_t pid)
194 static char pidstring[100];
195 #if defined(WINDOWS32) && (__GNUC__ > 3 || _MSC_VER > 1300)
196 /* %Id is only needed for 64-builds, which were not supported by
197 older versions of Windows compilers. */
198 sprintf (pidstring, "%Id", pid);
199 #else
200 sprintf (pidstring, "%lu", (unsigned long) pid);
201 #endif
202 return pidstring;
205 int getloadavg (double loadavg[], int nelem);
206 int start_remote_job (char **argv, char **envp, int stdin_fd, int *is_remote,
207 int *id_ptr, int *used_stdin);
208 int start_remote_job_p (int);
209 int remote_status (int *exit_code_ptr, int *signal_ptr, int *coredump_ptr,
210 int block);
212 RETSIGTYPE child_handler (int);
213 static void free_child (struct child *);
214 static void start_job_command (struct child *child);
215 static int load_too_high (void);
216 static int job_next_command (struct child *);
217 static int start_waiting_job (struct child *);
219 /* Chain of all live (or recently deceased) children. */
221 struct child *children = 0;
223 /* Number of children currently running. */
225 unsigned int job_slots_used = 0;
227 /* Nonzero if the `good' standard input is in use. */
229 static int good_stdin_used = 0;
231 /* Chain of children waiting to run until the load average goes down. */
233 static struct child *waiting_jobs = 0;
235 /* Non-zero if we use a *real* shell (always so on Unix). */
237 int unixy_shell = 1;
239 /* Number of jobs started in the current second. */
241 unsigned long job_counter = 0;
243 /* Number of jobserver tokens this instance is currently using. */
245 unsigned int jobserver_tokens = 0;
247 #ifdef WINDOWS32
249 * The macro which references this function is defined in make.h.
252 w32_kill(pid_t pid, int sig)
254 return ((process_kill((HANDLE)pid, sig) == TRUE) ? 0 : -1);
257 /* This function creates a temporary file name with an extension specified
258 * by the unixy arg.
259 * Return an xmalloc'ed string of a newly created temp file and its
260 * file descriptor, or die. */
261 static char *
262 create_batch_file (char const *base, int unixy, int *fd)
264 const char *const ext = unixy ? "sh" : "bat";
265 const char *error_string = NULL;
266 char temp_path[MAXPATHLEN]; /* need to know its length */
267 unsigned path_size = GetTempPath(sizeof temp_path, temp_path);
268 int path_is_dot = 0;
269 unsigned uniq = 1;
270 const unsigned sizemax = strlen (base) + strlen (ext) + 10;
272 if (path_size == 0)
274 path_size = GetCurrentDirectory (sizeof temp_path, temp_path);
275 path_is_dot = 1;
278 while (path_size > 0 &&
279 path_size + sizemax < sizeof temp_path &&
280 uniq < 0x10000)
282 unsigned size = sprintf (temp_path + path_size,
283 "%s%s-%x.%s",
284 temp_path[path_size - 1] == '\\' ? "" : "\\",
285 base, uniq, ext);
286 HANDLE h = CreateFile (temp_path, /* file name */
287 GENERIC_READ | GENERIC_WRITE, /* desired access */
288 0, /* no share mode */
289 NULL, /* default security attributes */
290 CREATE_NEW, /* creation disposition */
291 FILE_ATTRIBUTE_NORMAL | /* flags and attributes */
292 FILE_ATTRIBUTE_TEMPORARY, /* we'll delete it */
293 NULL); /* no template file */
295 if (h == INVALID_HANDLE_VALUE)
297 const DWORD er = GetLastError();
299 if (er == ERROR_FILE_EXISTS || er == ERROR_ALREADY_EXISTS)
300 ++uniq;
302 /* the temporary path is not guaranteed to exist */
303 else if (path_is_dot == 0)
305 path_size = GetCurrentDirectory (sizeof temp_path, temp_path);
306 path_is_dot = 1;
309 else
311 error_string = map_windows32_error_to_string (er);
312 break;
315 else
317 const unsigned final_size = path_size + size + 1;
318 char *const path = xmalloc (final_size);
319 memcpy (path, temp_path, final_size);
320 *fd = _open_osfhandle ((intptr_t)h, 0);
321 if (unixy)
323 char *p;
324 int ch;
325 for (p = path; (ch = *p) != 0; ++p)
326 if (ch == '\\')
327 *p = '/';
329 return path; /* good return */
333 *fd = -1;
334 if (error_string == NULL)
335 error_string = _("Cannot create a temporary file\n");
336 fatal (NILF, error_string);
338 /* not reached */
339 return NULL;
341 #endif /* WINDOWS32 */
343 #ifdef __EMX__
344 /* returns whether path is assumed to be a unix like shell. */
346 _is_unixy_shell (const char *path)
348 /* list of non unix shells */
349 const char *known_os2shells[] = {
350 "cmd.exe",
351 "cmd",
352 "4os2.exe",
353 "4os2",
354 "4dos.exe",
355 "4dos",
356 "command.com",
357 "command",
358 NULL
361 /* find the rightmost '/' or '\\' */
362 const char *name = strrchr (path, '/');
363 const char *p = strrchr (path, '\\');
364 unsigned i;
366 if (name && p) /* take the max */
367 name = (name > p) ? name : p;
368 else if (p) /* name must be 0 */
369 name = p;
370 else if (!name) /* name and p must be 0 */
371 name = path;
373 if (*name == '/' || *name == '\\') name++;
375 i = 0;
376 while (known_os2shells[i] != NULL) {
377 if (strcasecmp (name, known_os2shells[i]) == 0)
378 return 0; /* not a unix shell */
379 i++;
382 /* in doubt assume a unix like shell */
383 return 1;
385 #endif /* __EMX__ */
387 /* determines whether path looks to be a Bourne-like shell. */
389 is_bourne_compatible_shell (const char *path)
391 /* list of known unix (Bourne-like) shells */
392 const char *unix_shells[] = {
393 "sh",
394 "bash",
395 "ksh",
396 "rksh",
397 "zsh",
398 "ash",
399 "dash",
400 NULL
402 unsigned i, len;
404 /* find the rightmost '/' or '\\' */
405 const char *name = strrchr (path, '/');
406 char *p = strrchr (path, '\\');
408 if (name && p) /* take the max */
409 name = (name > p) ? name : p;
410 else if (p) /* name must be 0 */
411 name = p;
412 else if (!name) /* name and p must be 0 */
413 name = path;
415 if (*name == '/' || *name == '\\') name++;
417 /* this should be able to deal with extensions on Windows-like systems */
418 for (i = 0; unix_shells[i] != NULL; i++) {
419 len = strlen(unix_shells[i]);
420 #if defined(WINDOWS32) || defined(__MSDOS__)
421 if ((strncasecmp (name, unix_shells[i], len) == 0) &&
422 (strlen(name) >= len && (name[len] == '\0' || name[len] == '.')))
423 #else
424 if ((strncmp (name, unix_shells[i], len) == 0) &&
425 (strlen(name) >= len && name[len] == '\0'))
426 #endif
427 return 1; /* a known unix-style shell */
430 /* if not on the list, assume it's not a Bourne-like shell */
431 return 0;
435 /* Write an error message describing the exit status given in
436 EXIT_CODE, EXIT_SIG, and COREDUMP, for the target TARGET_NAME.
437 Append "(ignored)" if IGNORED is nonzero. */
439 static void
440 child_error (const struct file *file,
441 int exit_code, int exit_sig, int coredump, int ignored)
443 const char *nm;
444 const char *pre = "*** ";
445 const char *post = "";
446 const char *dump = "";
447 struct floc *flocp = &file->cmds->fileinfo;
449 if (ignored && silent_flag)
450 return;
452 if (exit_sig && coredump)
453 dump = _(" (core dumped)");
455 if (ignored)
457 pre = "";
458 post = _(" (ignored)");
461 if (! flocp->filenm)
462 nm = _("<builtin>");
463 else
465 char *a = alloca (strlen (flocp->filenm) + 1 + 11 + 1);
466 sprintf (a, "%s:%lu", flocp->filenm, flocp->lineno);
467 nm = a;
469 message (0, _("%s: recipe for target `%s' failed"), nm, file->name);
471 #ifdef VMS
472 if (!(exit_code & 1))
473 error (NILF, _("%s[%s] Error 0x%x%s"), pre, file->name, exit_code, post);
474 #else
475 if (exit_sig == 0)
476 error (NILF, _("%s[%s] Error %d%s"), pre, file->name, exit_code, post);
477 else
478 error (NILF, _("%s[%s] %s%s%s"),
479 pre, file->name, strsignal (exit_sig), dump, post);
480 #endif /* VMS */
484 /* Handle a dead child. This handler may or may not ever be installed.
486 If we're using the jobserver feature, we need it. First, installing it
487 ensures the read will interrupt on SIGCHLD. Second, we close the dup'd
488 read FD to ensure we don't enter another blocking read without reaping all
489 the dead children. In this case we don't need the dead_children count.
491 If we don't have either waitpid or wait3, then make is unreliable, but we
492 use the dead_children count to reap children as best we can. */
494 static unsigned int dead_children = 0;
496 RETSIGTYPE
497 child_handler (int sig UNUSED)
499 ++dead_children;
501 if (job_rfd >= 0)
503 close (job_rfd);
504 job_rfd = -1;
507 #ifdef __EMX__
508 /* The signal handler must called only once! */
509 signal (SIGCHLD, SIG_DFL);
510 #endif
512 /* This causes problems if the SIGCHLD interrupts a printf().
513 DB (DB_JOBS, (_("Got a SIGCHLD; %u unreaped children.\n"), dead_children));
517 extern int shell_function_pid, shell_function_completed;
519 /* Reap all dead children, storing the returned status and the new command
520 state (`cs_finished') in the `file' member of the `struct child' for the
521 dead child, and removing the child from the chain. In addition, if BLOCK
522 nonzero, we block in this function until we've reaped at least one
523 complete child, waiting for it to die if necessary. If ERR is nonzero,
524 print an error message first. */
526 void
527 reap_children (int block, int err)
529 #ifndef WINDOWS32
530 WAIT_T status;
531 /* Initially, assume we have some. */
532 int reap_more = 1;
533 #endif
535 #ifdef WAIT_NOHANG
536 # define REAP_MORE reap_more
537 #else
538 # define REAP_MORE dead_children
539 #endif
541 /* As long as:
543 We have at least one child outstanding OR a shell function in progress,
545 We're blocking for a complete child OR there are more children to reap
547 we'll keep reaping children. */
549 while ((children != 0 || shell_function_pid != 0)
550 && (block || REAP_MORE))
552 int remote = 0;
553 pid_t pid;
554 int exit_code, exit_sig, coredump;
555 struct child *lastc, *c;
556 int child_failed;
557 int any_remote, any_local;
558 int dontcare;
560 if (err && block)
562 static int printed = 0;
564 /* We might block for a while, so let the user know why.
565 Only print this message once no matter how many jobs are left. */
566 fflush (stdout);
567 if (!printed)
568 error (NILF, _("*** Waiting for unfinished jobs...."));
569 printed = 1;
572 /* We have one less dead child to reap. As noted in
573 child_handler() above, this count is completely unimportant for
574 all modern, POSIX-y systems that support wait3() or waitpid().
575 The rest of this comment below applies only to early, broken
576 pre-POSIX systems. We keep the count only because... it's there...
578 The test and decrement are not atomic; if it is compiled into:
579 register = dead_children - 1;
580 dead_children = register;
581 a SIGCHLD could come between the two instructions.
582 child_handler increments dead_children.
583 The second instruction here would lose that increment. But the
584 only effect of dead_children being wrong is that we might wait
585 longer than necessary to reap a child, and lose some parallelism;
586 and we might print the "Waiting for unfinished jobs" message above
587 when not necessary. */
589 if (dead_children > 0)
590 --dead_children;
592 any_remote = 0;
593 any_local = shell_function_pid != 0;
594 for (c = children; c != 0; c = c->next)
596 any_remote |= c->remote;
597 any_local |= ! c->remote;
598 DB (DB_JOBS, (_("Live child %p (%s) PID %s %s\n"),
599 c, c->file->name, pid2str (c->pid),
600 c->remote ? _(" (remote)") : ""));
601 #ifdef VMS
602 break;
603 #endif
606 /* First, check for remote children. */
607 if (any_remote)
608 pid = remote_status (&exit_code, &exit_sig, &coredump, 0);
609 else
610 pid = 0;
612 if (pid > 0)
613 /* We got a remote child. */
614 remote = 1;
615 else if (pid < 0)
617 /* A remote status command failed miserably. Punt. */
618 remote_status_lose:
619 pfatal_with_name ("remote_status");
621 else
623 /* No remote children. Check for local children. */
624 #if !defined(__MSDOS__) && !defined(_AMIGA) && !defined(WINDOWS32)
625 if (any_local)
627 #ifdef VMS
628 vmsWaitForChildren (&status);
629 pid = c->pid;
630 #else
631 #ifdef WAIT_NOHANG
632 if (!block)
633 pid = WAIT_NOHANG (&status);
634 else
635 #endif
636 EINTRLOOP(pid, wait (&status));
637 #endif /* !VMS */
639 else
640 pid = 0;
642 if (pid < 0)
644 /* The wait*() failed miserably. Punt. */
645 pfatal_with_name ("wait");
647 else if (pid > 0)
649 /* We got a child exit; chop the status word up. */
650 exit_code = WEXITSTATUS (status);
651 exit_sig = WIFSIGNALED (status) ? WTERMSIG (status) : 0;
652 coredump = WCOREDUMP (status);
654 /* If we have started jobs in this second, remove one. */
655 if (job_counter)
656 --job_counter;
658 else
660 /* No local children are dead. */
661 reap_more = 0;
663 if (!block || !any_remote)
664 break;
666 /* Now try a blocking wait for a remote child. */
667 pid = remote_status (&exit_code, &exit_sig, &coredump, 1);
668 if (pid < 0)
669 goto remote_status_lose;
670 else if (pid == 0)
671 /* No remote children either. Finally give up. */
672 break;
674 /* We got a remote child. */
675 remote = 1;
677 #endif /* !__MSDOS__, !Amiga, !WINDOWS32. */
679 #ifdef __MSDOS__
680 /* Life is very different on MSDOS. */
681 pid = dos_pid - 1;
682 status = dos_status;
683 exit_code = WEXITSTATUS (status);
684 if (exit_code == 0xff)
685 exit_code = -1;
686 exit_sig = WIFSIGNALED (status) ? WTERMSIG (status) : 0;
687 coredump = 0;
688 #endif /* __MSDOS__ */
689 #ifdef _AMIGA
690 /* Same on Amiga */
691 pid = amiga_pid - 1;
692 status = amiga_status;
693 exit_code = amiga_status;
694 exit_sig = 0;
695 coredump = 0;
696 #endif /* _AMIGA */
697 #ifdef WINDOWS32
699 HANDLE hPID;
700 int werr;
701 HANDLE hcTID, hcPID;
702 exit_code = 0;
703 exit_sig = 0;
704 coredump = 0;
706 /* Record the thread ID of the main process, so that we
707 could suspend it in the signal handler. */
708 if (!main_thread)
710 hcTID = GetCurrentThread ();
711 hcPID = GetCurrentProcess ();
712 if (!DuplicateHandle (hcPID, hcTID, hcPID, &main_thread, 0,
713 FALSE, DUPLICATE_SAME_ACCESS))
715 DWORD e = GetLastError ();
716 fprintf (stderr,
717 "Determine main thread ID (Error %ld: %s)\n",
718 e, map_windows32_error_to_string(e));
720 else
721 DB (DB_VERBOSE, ("Main thread handle = %p\n", main_thread));
724 /* wait for anything to finish */
725 hPID = process_wait_for_any();
726 if (hPID)
729 /* was an error found on this process? */
730 werr = process_last_err(hPID);
732 /* get exit data */
733 exit_code = process_exit_code(hPID);
735 if (werr)
736 fprintf(stderr, "make (e=%d): %s",
737 exit_code, map_windows32_error_to_string(exit_code));
739 /* signal */
740 exit_sig = process_signal(hPID);
742 /* cleanup process */
743 process_cleanup(hPID);
745 coredump = 0;
747 pid = (pid_t) hPID;
749 #endif /* WINDOWS32 */
752 /* Check if this is the child of the `shell' function. */
753 if (!remote && pid == shell_function_pid)
755 /* It is. Leave an indicator for the `shell' function. */
756 if (exit_sig == 0 && exit_code == 127)
757 shell_function_completed = -1;
758 else
759 shell_function_completed = 1;
760 break;
763 child_failed = exit_sig != 0 || exit_code != 0;
765 /* Search for a child matching the deceased one. */
766 lastc = 0;
767 for (c = children; c != 0; lastc = c, c = c->next)
768 if (c->remote == remote && c->pid == pid)
769 break;
771 if (c == 0)
772 /* An unknown child died.
773 Ignore it; it was inherited from our invoker. */
774 continue;
776 DB (DB_JOBS, (child_failed
777 ? _("Reaping losing child %p PID %s %s\n")
778 : _("Reaping winning child %p PID %s %s\n"),
779 c, pid2str (c->pid), c->remote ? _(" (remote)") : ""));
781 if (c->sh_batch_file) {
782 DB (DB_JOBS, (_("Cleaning up temp batch file %s\n"),
783 c->sh_batch_file));
785 /* just try and remove, don't care if this fails */
786 remove (c->sh_batch_file);
788 /* all done with memory */
789 free (c->sh_batch_file);
790 c->sh_batch_file = NULL;
793 /* If this child had the good stdin, say it is now free. */
794 if (c->good_stdin)
795 good_stdin_used = 0;
797 dontcare = c->dontcare;
799 if (child_failed && !c->noerror && !ignore_errors_flag)
801 /* The commands failed. Write an error message,
802 delete non-precious targets, and abort. */
803 static int delete_on_error = -1;
805 if (!dontcare)
806 child_error (c->file, exit_code, exit_sig, coredump, 0);
808 c->file->update_status = 2;
809 if (delete_on_error == -1)
811 struct file *f = lookup_file (".DELETE_ON_ERROR");
812 delete_on_error = f != 0 && f->is_target;
814 if (exit_sig != 0 || delete_on_error)
815 delete_child_targets (c);
817 else
819 if (child_failed)
821 /* The commands failed, but we don't care. */
822 child_error (c->file, exit_code, exit_sig, coredump, 1);
823 child_failed = 0;
826 /* If there are more commands to run, try to start them. */
827 if (job_next_command (c))
829 if (handling_fatal_signal)
831 /* Never start new commands while we are dying.
832 Since there are more commands that wanted to be run,
833 the target was not completely remade. So we treat
834 this as if a command had failed. */
835 c->file->update_status = 2;
837 else
839 /* Check again whether to start remotely.
840 Whether or not we want to changes over time.
841 Also, start_remote_job may need state set up
842 by start_remote_job_p. */
843 c->remote = start_remote_job_p (0);
844 start_job_command (c);
845 /* Fatal signals are left blocked in case we were
846 about to put that child on the chain. But it is
847 already there, so it is safe for a fatal signal to
848 arrive now; it will clean up this child's targets. */
849 unblock_sigs ();
850 if (c->file->command_state == cs_running)
851 /* We successfully started the new command.
852 Loop to reap more children. */
853 continue;
856 if (c->file->update_status != 0)
857 /* We failed to start the commands. */
858 delete_child_targets (c);
860 else
861 /* There are no more commands. We got through them all
862 without an unignored error. Now the target has been
863 successfully updated. */
864 c->file->update_status = 0;
867 /* When we get here, all the commands for C->file are finished
868 (or aborted) and C->file->update_status contains 0 or 2. But
869 C->file->command_state is still cs_running if all the commands
870 ran; notice_finish_file looks for cs_running to tell it that
871 it's interesting to check the file's modtime again now. */
873 if (! handling_fatal_signal)
874 /* Notice if the target of the commands has been changed.
875 This also propagates its values for command_state and
876 update_status to its also_make files. */
877 notice_finished_file (c->file);
879 DB (DB_JOBS, (_("Removing child %p PID %s%s from chain.\n"),
880 c, pid2str (c->pid), c->remote ? _(" (remote)") : ""));
882 /* Block fatal signals while frobnicating the list, so that
883 children and job_slots_used are always consistent. Otherwise
884 a fatal signal arriving after the child is off the chain and
885 before job_slots_used is decremented would believe a child was
886 live and call reap_children again. */
887 block_sigs ();
889 /* There is now another slot open. */
890 if (job_slots_used > 0)
891 --job_slots_used;
893 /* Remove the child from the chain and free it. */
894 if (lastc == 0)
895 children = c->next;
896 else
897 lastc->next = c->next;
899 free_child (c);
901 unblock_sigs ();
903 /* If the job failed, and the -k flag was not given, die,
904 unless we are already in the process of dying. */
905 if (!err && child_failed && !dontcare && !keep_going_flag &&
906 /* fatal_error_signal will die with the right signal. */
907 !handling_fatal_signal)
908 die (2);
910 /* Only block for one child. */
911 block = 0;
914 return;
917 /* Free the storage allocated for CHILD. */
919 static void
920 free_child (struct child *child)
922 if (!jobserver_tokens)
923 fatal (NILF, "INTERNAL: Freeing child %p (%s) but no tokens left!\n",
924 child, child->file->name);
926 /* If we're using the jobserver and this child is not the only outstanding
927 job, put a token back into the pipe for it. */
929 if (job_fds[1] >= 0 && jobserver_tokens > 1)
931 char token = '+';
932 int r;
934 /* Write a job token back to the pipe. */
936 EINTRLOOP (r, write (job_fds[1], &token, 1));
937 if (r != 1)
938 pfatal_with_name (_("write jobserver"));
940 DB (DB_JOBS, (_("Released token for child %p (%s).\n"),
941 child, child->file->name));
944 --jobserver_tokens;
946 if (handling_fatal_signal) /* Don't bother free'ing if about to die. */
947 return;
949 if (child->command_lines != 0)
951 register unsigned int i;
952 for (i = 0; i < child->file->cmds->ncommand_lines; ++i)
953 free (child->command_lines[i]);
954 free (child->command_lines);
957 if (child->environment != 0)
959 register char **ep = child->environment;
960 while (*ep != 0)
961 free (*ep++);
962 free (child->environment);
965 free (child);
968 #ifdef POSIX
969 extern sigset_t fatal_signal_set;
970 #endif
972 void
973 block_sigs (void)
975 #ifdef POSIX
976 (void) sigprocmask (SIG_BLOCK, &fatal_signal_set, (sigset_t *) 0);
977 #else
978 # ifdef HAVE_SIGSETMASK
979 (void) sigblock (fatal_signal_mask);
980 # endif
981 #endif
984 #ifdef POSIX
985 void
986 unblock_sigs (void)
988 sigset_t empty;
989 sigemptyset (&empty);
990 sigprocmask (SIG_SETMASK, &empty, (sigset_t *) 0);
992 #endif
994 #ifdef MAKE_JOBSERVER
995 RETSIGTYPE
996 job_noop (int sig UNUSED)
999 /* Set the child handler action flags to FLAGS. */
1000 static void
1001 set_child_handler_action_flags (int set_handler, int set_alarm)
1003 struct sigaction sa;
1005 #ifdef __EMX__
1006 /* The child handler must be turned off here. */
1007 signal (SIGCHLD, SIG_DFL);
1008 #endif
1010 memset (&sa, '\0', sizeof sa);
1011 sa.sa_handler = child_handler;
1012 sa.sa_flags = set_handler ? 0 : SA_RESTART;
1013 #if defined SIGCHLD
1014 sigaction (SIGCHLD, &sa, NULL);
1015 #endif
1016 #if defined SIGCLD && SIGCLD != SIGCHLD
1017 sigaction (SIGCLD, &sa, NULL);
1018 #endif
1019 #if defined SIGALRM
1020 if (set_alarm)
1022 /* If we're about to enter the read(), set an alarm to wake up in a
1023 second so we can check if the load has dropped and we can start more
1024 work. On the way out, turn off the alarm and set SIG_DFL. */
1025 alarm (set_handler ? 1 : 0);
1026 sa.sa_handler = set_handler ? job_noop : SIG_DFL;
1027 sa.sa_flags = 0;
1028 sigaction (SIGALRM, &sa, NULL);
1030 #endif
1032 #endif
1035 /* Start a job to run the commands specified in CHILD.
1036 CHILD is updated to reflect the commands and ID of the child process.
1038 NOTE: On return fatal signals are blocked! The caller is responsible
1039 for calling `unblock_sigs', once the new child is safely on the chain so
1040 it can be cleaned up in the event of a fatal signal. */
1042 static void
1043 start_job_command (struct child *child)
1045 #if !defined(_AMIGA) && !defined(WINDOWS32)
1046 static int bad_stdin = -1;
1047 #endif
1048 char *p;
1049 /* Must be volatile to silence bogus GCC warning about longjmp/vfork. */
1050 volatile int flags;
1051 #ifdef VMS
1052 char *argv;
1053 #else
1054 char **argv;
1055 #endif
1057 /* If we have a completely empty commandset, stop now. */
1058 if (!child->command_ptr)
1059 goto next_command;
1061 /* Combine the flags parsed for the line itself with
1062 the flags specified globally for this target. */
1063 flags = (child->file->command_flags
1064 | child->file->cmds->lines_flags[child->command_line - 1]);
1066 p = child->command_ptr;
1067 child->noerror = ((flags & COMMANDS_NOERROR) != 0);
1069 while (*p != '\0')
1071 if (*p == '@')
1072 flags |= COMMANDS_SILENT;
1073 else if (*p == '+')
1074 flags |= COMMANDS_RECURSE;
1075 else if (*p == '-')
1076 child->noerror = 1;
1077 else if (!isblank ((unsigned char)*p))
1078 break;
1079 ++p;
1082 /* Update the file's command flags with any new ones we found. We only
1083 keep the COMMANDS_RECURSE setting. Even this isn't 100% correct; we are
1084 now marking more commands recursive than should be in the case of
1085 multiline define/endef scripts where only one line is marked "+". In
1086 order to really fix this, we'll have to keep a lines_flags for every
1087 actual line, after expansion. */
1088 child->file->cmds->lines_flags[child->command_line - 1]
1089 |= flags & COMMANDS_RECURSE;
1091 /* Figure out an argument list from this command line. */
1094 char *end = 0;
1095 #ifdef VMS
1096 argv = p;
1097 #else
1098 argv = construct_command_argv (p, &end, child->file,
1099 child->file->cmds->lines_flags[child->command_line - 1],
1100 &child->sh_batch_file);
1101 #endif
1102 if (end == NULL)
1103 child->command_ptr = NULL;
1104 else
1106 *end++ = '\0';
1107 child->command_ptr = end;
1111 /* If -q was given, say that updating `failed' if there was any text on the
1112 command line, or `succeeded' otherwise. The exit status of 1 tells the
1113 user that -q is saying `something to do'; the exit status for a random
1114 error is 2. */
1115 if (argv != 0 && question_flag && !(flags & COMMANDS_RECURSE))
1117 #ifndef VMS
1118 free (argv[0]);
1119 free (argv);
1120 #endif
1121 child->file->update_status = 1;
1122 notice_finished_file (child->file);
1123 return;
1126 if (touch_flag && !(flags & COMMANDS_RECURSE))
1128 /* Go on to the next command. It might be the recursive one.
1129 We construct ARGV only to find the end of the command line. */
1130 #ifndef VMS
1131 if (argv)
1133 free (argv[0]);
1134 free (argv);
1136 #endif
1137 argv = 0;
1140 if (argv == 0)
1142 next_command:
1143 #ifdef __MSDOS__
1144 execute_by_shell = 0; /* in case construct_command_argv sets it */
1145 #endif
1146 /* This line has no commands. Go to the next. */
1147 if (job_next_command (child))
1148 start_job_command (child);
1149 else
1151 /* No more commands. Make sure we're "running"; we might not be if
1152 (e.g.) all commands were skipped due to -n. */
1153 set_command_state (child->file, cs_running);
1154 child->file->update_status = 0;
1155 notice_finished_file (child->file);
1157 return;
1160 /* Print out the command. If silent, we call `message' with null so it
1161 can log the working directory before the command's own error messages
1162 appear. */
1164 message (0, (just_print_flag || trace_flag
1165 || (!(flags & COMMANDS_SILENT) && !silent_flag))
1166 ? "%s" : (char *) 0, p);
1168 /* Tell update_goal_chain that a command has been started on behalf of
1169 this target. It is important that this happens here and not in
1170 reap_children (where we used to do it), because reap_children might be
1171 reaping children from a different target. We want this increment to
1172 guaranteedly indicate that a command was started for the dependency
1173 chain (i.e., update_file recursion chain) we are processing. */
1175 ++commands_started;
1177 /* Optimize an empty command. People use this for timestamp rules,
1178 so avoid forking a useless shell. Do this after we increment
1179 commands_started so make still treats this special case as if it
1180 performed some action (makes a difference as to what messages are
1181 printed, etc. */
1183 #if !defined(VMS) && !defined(_AMIGA)
1184 if (
1185 #if defined __MSDOS__ || defined (__EMX__)
1186 unixy_shell /* the test is complicated and we already did it */
1187 #else
1188 (argv[0] && is_bourne_compatible_shell(argv[0]))
1189 #endif
1190 && (argv[1] && argv[1][0] == '-'
1192 ((argv[1][1] == 'c' && argv[1][2] == '\0')
1194 (argv[1][1] == 'e' && argv[1][2] == 'c' && argv[1][3] == '\0')))
1195 && (argv[2] && argv[2][0] == ':' && argv[2][1] == '\0')
1196 && argv[3] == NULL)
1198 free (argv[0]);
1199 free (argv);
1200 goto next_command;
1202 #endif /* !VMS && !_AMIGA */
1204 /* If -n was given, recurse to get the next line in the sequence. */
1206 if (just_print_flag && !(flags & COMMANDS_RECURSE))
1208 #ifndef VMS
1209 free (argv[0]);
1210 free (argv);
1211 #endif
1212 goto next_command;
1215 /* Flush the output streams so they won't have things written twice. */
1217 fflush (stdout);
1218 fflush (stderr);
1220 #ifndef VMS
1221 #if !defined(WINDOWS32) && !defined(_AMIGA) && !defined(__MSDOS__)
1223 /* Set up a bad standard input that reads from a broken pipe. */
1225 if (bad_stdin == -1)
1227 /* Make a file descriptor that is the read end of a broken pipe.
1228 This will be used for some children's standard inputs. */
1229 int pd[2];
1230 if (pipe (pd) == 0)
1232 /* Close the write side. */
1233 (void) close (pd[1]);
1234 /* Save the read side. */
1235 bad_stdin = pd[0];
1237 /* Set the descriptor to close on exec, so it does not litter any
1238 child's descriptor table. When it is dup2'd onto descriptor 0,
1239 that descriptor will not close on exec. */
1240 CLOSE_ON_EXEC (bad_stdin);
1244 #endif /* !WINDOWS32 && !_AMIGA && !__MSDOS__ */
1246 /* Decide whether to give this child the `good' standard input
1247 (one that points to the terminal or whatever), or the `bad' one
1248 that points to the read side of a broken pipe. */
1250 child->good_stdin = !good_stdin_used;
1251 if (child->good_stdin)
1252 good_stdin_used = 1;
1254 #endif /* !VMS */
1256 child->deleted = 0;
1258 #ifndef _AMIGA
1259 /* Set up the environment for the child. */
1260 if (child->environment == 0)
1261 child->environment = target_environment (child->file);
1262 #endif
1264 #if !defined(__MSDOS__) && !defined(_AMIGA) && !defined(WINDOWS32)
1266 #ifndef VMS
1267 /* start_waiting_job has set CHILD->remote if we can start a remote job. */
1268 if (child->remote)
1270 int is_remote, id, used_stdin;
1271 if (start_remote_job (argv, child->environment,
1272 child->good_stdin ? 0 : bad_stdin,
1273 &is_remote, &id, &used_stdin))
1274 /* Don't give up; remote execution may fail for various reasons. If
1275 so, simply run the job locally. */
1276 goto run_local;
1277 else
1279 if (child->good_stdin && !used_stdin)
1281 child->good_stdin = 0;
1282 good_stdin_used = 0;
1284 child->remote = is_remote;
1285 child->pid = id;
1288 else
1289 #endif /* !VMS */
1291 /* Fork the child process. */
1293 char **parent_environ;
1295 run_local:
1296 block_sigs ();
1298 child->remote = 0;
1300 #ifdef VMS
1301 if (!child_execute_job (argv, child)) {
1302 /* Fork failed! */
1303 perror_with_name ("vfork", "");
1304 goto error;
1307 #else
1309 parent_environ = environ;
1311 # ifdef __EMX__
1312 /* If we aren't running a recursive command and we have a jobserver
1313 pipe, close it before exec'ing. */
1314 if (!(flags & COMMANDS_RECURSE) && job_fds[0] >= 0)
1316 CLOSE_ON_EXEC (job_fds[0]);
1317 CLOSE_ON_EXEC (job_fds[1]);
1319 if (job_rfd >= 0)
1320 CLOSE_ON_EXEC (job_rfd);
1322 /* Never use fork()/exec() here! Use spawn() instead in exec_command() */
1323 child->pid = child_execute_job (child->good_stdin ? 0 : bad_stdin, 1,
1324 argv, child->environment);
1325 if (child->pid < 0)
1327 /* spawn failed! */
1328 unblock_sigs ();
1329 perror_with_name ("spawn", "");
1330 goto error;
1333 /* undo CLOSE_ON_EXEC() after the child process has been started */
1334 if (!(flags & COMMANDS_RECURSE) && job_fds[0] >= 0)
1336 fcntl (job_fds[0], F_SETFD, 0);
1337 fcntl (job_fds[1], F_SETFD, 0);
1339 if (job_rfd >= 0)
1340 fcntl (job_rfd, F_SETFD, 0);
1342 #else /* !__EMX__ */
1344 child->pid = vfork ();
1345 environ = parent_environ; /* Restore value child may have clobbered. */
1346 if (child->pid == 0)
1348 /* We are the child side. */
1349 unblock_sigs ();
1351 /* If we aren't running a recursive command and we have a jobserver
1352 pipe, close it before exec'ing. */
1353 if (!(flags & COMMANDS_RECURSE) && job_fds[0] >= 0)
1355 close (job_fds[0]);
1356 close (job_fds[1]);
1358 if (job_rfd >= 0)
1359 close (job_rfd);
1361 #ifdef SET_STACK_SIZE
1362 /* Reset limits, if necessary. */
1363 if (stack_limit.rlim_cur)
1364 setrlimit (RLIMIT_STACK, &stack_limit);
1365 #endif
1367 child_execute_job (child->good_stdin ? 0 : bad_stdin, 1,
1368 argv, child->environment);
1370 else if (child->pid < 0)
1372 /* Fork failed! */
1373 unblock_sigs ();
1374 perror_with_name ("vfork", "");
1375 goto error;
1377 # endif /* !__EMX__ */
1378 #endif /* !VMS */
1381 #else /* __MSDOS__ or Amiga or WINDOWS32 */
1382 #ifdef __MSDOS__
1384 int proc_return;
1386 block_sigs ();
1387 dos_status = 0;
1389 /* We call `system' to do the job of the SHELL, since stock DOS
1390 shell is too dumb. Our `system' knows how to handle long
1391 command lines even if pipes/redirection is needed; it will only
1392 call COMMAND.COM when its internal commands are used. */
1393 if (execute_by_shell)
1395 char *cmdline = argv[0];
1396 /* We don't have a way to pass environment to `system',
1397 so we need to save and restore ours, sigh... */
1398 char **parent_environ = environ;
1400 environ = child->environment;
1402 /* If we have a *real* shell, tell `system' to call
1403 it to do everything for us. */
1404 if (unixy_shell)
1406 /* A *real* shell on MSDOS may not support long
1407 command lines the DJGPP way, so we must use `system'. */
1408 cmdline = argv[2]; /* get past "shell -c" */
1411 dos_command_running = 1;
1412 proc_return = system (cmdline);
1413 environ = parent_environ;
1414 execute_by_shell = 0; /* for the next time */
1416 else
1418 dos_command_running = 1;
1419 proc_return = spawnvpe (P_WAIT, argv[0], argv, child->environment);
1422 /* Need to unblock signals before turning off
1423 dos_command_running, so that child's signals
1424 will be treated as such (see fatal_error_signal). */
1425 unblock_sigs ();
1426 dos_command_running = 0;
1428 /* If the child got a signal, dos_status has its
1429 high 8 bits set, so be careful not to alter them. */
1430 if (proc_return == -1)
1431 dos_status |= 0xff;
1432 else
1433 dos_status |= (proc_return & 0xff);
1434 ++dead_children;
1435 child->pid = dos_pid++;
1437 #endif /* __MSDOS__ */
1438 #ifdef _AMIGA
1439 amiga_status = MyExecute (argv);
1441 ++dead_children;
1442 child->pid = amiga_pid++;
1443 if (amiga_batch_file)
1445 amiga_batch_file = 0;
1446 DeleteFile (amiga_bname); /* Ignore errors. */
1448 #endif /* Amiga */
1449 #ifdef WINDOWS32
1451 HANDLE hPID;
1452 char* arg0;
1454 /* make UNC paths safe for CreateProcess -- backslash format */
1455 arg0 = argv[0];
1456 if (arg0 && arg0[0] == '/' && arg0[1] == '/')
1457 for ( ; arg0 && *arg0; arg0++)
1458 if (*arg0 == '/')
1459 *arg0 = '\\';
1461 /* make sure CreateProcess() has Path it needs */
1462 sync_Path_environment();
1464 hPID = process_easy(argv, child->environment);
1466 if (hPID != INVALID_HANDLE_VALUE)
1467 child->pid = (pid_t) hPID;
1468 else {
1469 int i;
1470 unblock_sigs();
1471 fprintf(stderr,
1472 _("process_easy() failed to launch process (e=%ld)\n"),
1473 process_last_err(hPID));
1474 for (i = 0; argv[i]; i++)
1475 fprintf(stderr, "%s ", argv[i]);
1476 fprintf(stderr, _("\nCounted %d args in failed launch\n"), i);
1477 goto error;
1480 #endif /* WINDOWS32 */
1481 #endif /* __MSDOS__ or Amiga or WINDOWS32 */
1483 /* Bump the number of jobs started in this second. */
1484 ++job_counter;
1486 /* We are the parent side. Set the state to
1487 say the commands are running and return. */
1489 set_command_state (child->file, cs_running);
1491 /* Free the storage used by the child's argument list. */
1492 #ifndef VMS
1493 free (argv[0]);
1494 free (argv);
1495 #endif
1497 return;
1499 error:
1500 child->file->update_status = 2;
1501 notice_finished_file (child->file);
1502 return;
1505 /* Try to start a child running.
1506 Returns nonzero if the child was started (and maybe finished), or zero if
1507 the load was too high and the child was put on the `waiting_jobs' chain. */
1509 static int
1510 start_waiting_job (struct child *c)
1512 struct file *f = c->file;
1514 /* If we can start a job remotely, we always want to, and don't care about
1515 the local load average. We record that the job should be started
1516 remotely in C->remote for start_job_command to test. */
1518 c->remote = start_remote_job_p (1);
1520 /* If we are running at least one job already and the load average
1521 is too high, make this one wait. */
1522 if (!c->remote
1523 && ((job_slots_used > 0 && load_too_high ())
1524 #ifdef WINDOWS32
1525 || (process_used_slots () >= MAXIMUM_WAIT_OBJECTS)
1526 #endif
1529 /* Put this child on the chain of children waiting for the load average
1530 to go down. */
1531 set_command_state (f, cs_running);
1532 c->next = waiting_jobs;
1533 waiting_jobs = c;
1534 return 0;
1537 /* Start the first command; reap_children will run later command lines. */
1538 start_job_command (c);
1540 switch (f->command_state)
1542 case cs_running:
1543 c->next = children;
1544 DB (DB_JOBS, (_("Putting child %p (%s) PID %s%s on the chain.\n"),
1545 c, c->file->name, pid2str (c->pid),
1546 c->remote ? _(" (remote)") : ""));
1547 children = c;
1548 /* One more job slot is in use. */
1549 ++job_slots_used;
1550 unblock_sigs ();
1551 break;
1553 case cs_not_started:
1554 /* All the command lines turned out to be empty. */
1555 f->update_status = 0;
1556 /* FALLTHROUGH */
1558 case cs_finished:
1559 notice_finished_file (f);
1560 free_child (c);
1561 break;
1563 default:
1564 assert (f->command_state == cs_finished);
1565 break;
1568 return 1;
1571 /* Create a `struct child' for FILE and start its commands running. */
1573 void
1574 new_job (struct file *file)
1576 struct commands *cmds = file->cmds;
1577 struct child *c;
1578 char **lines;
1579 unsigned int i;
1581 /* Let any previously decided-upon jobs that are waiting
1582 for the load to go down start before this new one. */
1583 start_waiting_jobs ();
1585 /* Reap any children that might have finished recently. */
1586 reap_children (0, 0);
1588 /* Chop the commands up into lines if they aren't already. */
1589 chop_commands (cmds);
1591 /* Expand the command lines and store the results in LINES. */
1592 lines = xmalloc (cmds->ncommand_lines * sizeof (char *));
1593 for (i = 0; i < cmds->ncommand_lines; ++i)
1595 /* Collapse backslash-newline combinations that are inside variable
1596 or function references. These are left alone by the parser so
1597 that they will appear in the echoing of commands (where they look
1598 nice); and collapsed by construct_command_argv when it tokenizes.
1599 But letting them survive inside function invocations loses because
1600 we don't want the functions to see them as part of the text. */
1602 char *in, *out, *ref;
1604 /* IN points to where in the line we are scanning.
1605 OUT points to where in the line we are writing.
1606 When we collapse a backslash-newline combination,
1607 IN gets ahead of OUT. */
1609 in = out = cmds->command_lines[i];
1610 while ((ref = strchr (in, '$')) != 0)
1612 ++ref; /* Move past the $. */
1614 if (out != in)
1615 /* Copy the text between the end of the last chunk
1616 we processed (where IN points) and the new chunk
1617 we are about to process (where REF points). */
1618 memmove (out, in, ref - in);
1620 /* Move both pointers past the boring stuff. */
1621 out += ref - in;
1622 in = ref;
1624 if (*ref == '(' || *ref == '{')
1626 char openparen = *ref;
1627 char closeparen = openparen == '(' ? ')' : '}';
1628 int count;
1629 char *p;
1631 *out++ = *in++; /* Copy OPENPAREN. */
1632 /* IN now points past the opening paren or brace.
1633 Count parens or braces until it is matched. */
1634 count = 0;
1635 while (*in != '\0')
1637 if (*in == closeparen && --count < 0)
1638 break;
1639 else if (*in == '\\' && in[1] == '\n')
1641 /* We have found a backslash-newline inside a
1642 variable or function reference. Eat it and
1643 any following whitespace. */
1645 int quoted = 0;
1646 for (p = in - 1; p > ref && *p == '\\'; --p)
1647 quoted = !quoted;
1649 if (quoted)
1650 /* There were two or more backslashes, so this is
1651 not really a continuation line. We don't collapse
1652 the quoting backslashes here as is done in
1653 collapse_continuations, because the line will
1654 be collapsed again after expansion. */
1655 *out++ = *in++;
1656 else
1658 /* Skip the backslash, newline and
1659 any following whitespace. */
1660 in = next_token (in + 2);
1662 /* Discard any preceding whitespace that has
1663 already been written to the output. */
1664 while (out > ref
1665 && isblank ((unsigned char)out[-1]))
1666 --out;
1668 /* Replace it all with a single space. */
1669 *out++ = ' ';
1672 else
1674 if (*in == openparen)
1675 ++count;
1677 *out++ = *in++;
1683 /* There are no more references in this line to worry about.
1684 Copy the remaining uninteresting text to the output. */
1685 if (out != in)
1686 memmove (out, in, strlen (in) + 1);
1688 /* Finally, expand the line. */
1689 lines[i] = allocated_variable_expand_for_file (cmds->command_lines[i],
1690 file);
1693 /* Start the command sequence, record it in a new
1694 `struct child', and add that to the chain. */
1696 c = xcalloc (sizeof (struct child));
1697 c->file = file;
1698 c->command_lines = lines;
1699 c->sh_batch_file = NULL;
1701 /* Cache dontcare flag because file->dontcare can be changed once we
1702 return. Check dontcare inheritance mechanism for details. */
1703 c->dontcare = file->dontcare;
1705 /* Fetch the first command line to be run. */
1706 job_next_command (c);
1708 /* Wait for a job slot to be freed up. If we allow an infinite number
1709 don't bother; also job_slots will == 0 if we're using the jobserver. */
1711 if (job_slots != 0)
1712 while (job_slots_used == job_slots)
1713 reap_children (1, 0);
1715 #ifdef MAKE_JOBSERVER
1716 /* If we are controlling multiple jobs make sure we have a token before
1717 starting the child. */
1719 /* This can be inefficient. There's a decent chance that this job won't
1720 actually have to run any subprocesses: the command script may be empty
1721 or otherwise optimized away. It would be nice if we could defer
1722 obtaining a token until just before we need it, in start_job_command.
1723 To do that we'd need to keep track of whether we'd already obtained a
1724 token (since start_job_command is called for each line of the job, not
1725 just once). Also more thought needs to go into the entire algorithm;
1726 this is where the old parallel job code waits, so... */
1728 else if (job_fds[0] >= 0)
1729 while (1)
1731 char token;
1732 int got_token;
1733 int saved_errno;
1735 DB (DB_JOBS, ("Need a job token; we %shave children\n",
1736 children ? "" : "don't "));
1738 /* If we don't already have a job started, use our "free" token. */
1739 if (!jobserver_tokens)
1740 break;
1742 /* Read a token. As long as there's no token available we'll block.
1743 We enable interruptible system calls before the read(2) so that if
1744 we get a SIGCHLD while we're waiting, we'll return with EINTR and
1745 we can process the death(s) and return tokens to the free pool.
1747 Once we return from the read, we immediately reinstate restartable
1748 system calls. This allows us to not worry about checking for
1749 EINTR on all the other system calls in the program.
1751 There is one other twist: there is a span between the time
1752 reap_children() does its last check for dead children and the time
1753 the read(2) call is entered, below, where if a child dies we won't
1754 notice. This is extremely serious as it could cause us to
1755 deadlock, given the right set of events.
1757 To avoid this, we do the following: before we reap_children(), we
1758 dup(2) the read FD on the jobserver pipe. The read(2) call below
1759 uses that new FD. In the signal handler, we close that FD. That
1760 way, if a child dies during the section mentioned above, the
1761 read(2) will be invoked with an invalid FD and will return
1762 immediately with EBADF. */
1764 /* Make sure we have a dup'd FD. */
1765 if (job_rfd < 0)
1767 DB (DB_JOBS, ("Duplicate the job FD\n"));
1768 job_rfd = dup (job_fds[0]);
1771 /* Reap anything that's currently waiting. */
1772 reap_children (0, 0);
1774 /* Kick off any jobs we have waiting for an opportunity that
1775 can run now (ie waiting for load). */
1776 start_waiting_jobs ();
1778 /* If our "free" slot has become available, use it; we don't need an
1779 actual token. */
1780 if (!jobserver_tokens)
1781 break;
1783 /* There must be at least one child already, or we have no business
1784 waiting for a token. */
1785 if (!children)
1786 fatal (NILF, "INTERNAL: no children as we go to sleep on read\n");
1788 /* Set interruptible system calls, and read() for a job token. */
1789 set_child_handler_action_flags (1, waiting_jobs != NULL);
1790 got_token = read (job_rfd, &token, 1);
1791 saved_errno = errno;
1792 set_child_handler_action_flags (0, waiting_jobs != NULL);
1794 /* If we got one, we're done here. */
1795 if (got_token == 1)
1797 DB (DB_JOBS, (_("Obtained token for child %p (%s).\n"),
1798 c, c->file->name));
1799 break;
1802 /* If the error _wasn't_ expected (EINTR or EBADF), punt. Otherwise,
1803 go back and reap_children(), and try again. */
1804 errno = saved_errno;
1805 if (errno != EINTR && errno != EBADF)
1806 pfatal_with_name (_("read jobs pipe"));
1807 if (errno == EBADF)
1808 DB (DB_JOBS, ("Read returned EBADF.\n"));
1810 #endif
1812 ++jobserver_tokens;
1814 /* Trace the build.
1815 Use message here so that changes to working directories are logged. */
1816 if (trace_flag)
1818 char *newer = allocated_variable_expand_for_file ("$?", c->file);
1819 char *nm;
1821 if (! cmds->fileinfo.filenm)
1822 nm = _("<builtin>");
1823 else
1825 nm = alloca (strlen (cmds->fileinfo.filenm) + 1 + 11 + 1);
1826 sprintf (nm, "%s:%lu", cmds->fileinfo.filenm, cmds->fileinfo.lineno);
1829 if (newer[0] == '\0')
1830 message (0, _("%s: target `%s' does not exist"), nm, c->file->name);
1831 else
1832 message (0, _("%s: update target `%s' due to: %s"), nm,
1833 c->file->name, newer);
1835 free (newer);
1839 /* The job is now primed. Start it running.
1840 (This will notice if there is in fact no recipe.) */
1841 start_waiting_job (c);
1843 if (job_slots == 1 || not_parallel)
1844 /* Since there is only one job slot, make things run linearly.
1845 Wait for the child to die, setting the state to `cs_finished'. */
1846 while (file->command_state == cs_running)
1847 reap_children (1, 0);
1849 return;
1852 /* Move CHILD's pointers to the next command for it to execute.
1853 Returns nonzero if there is another command. */
1855 static int
1856 job_next_command (struct child *child)
1858 while (child->command_ptr == 0 || *child->command_ptr == '\0')
1860 /* There are no more lines in the expansion of this line. */
1861 if (child->command_line == child->file->cmds->ncommand_lines)
1863 /* There are no more lines to be expanded. */
1864 child->command_ptr = 0;
1865 return 0;
1867 else
1868 /* Get the next line to run. */
1869 child->command_ptr = child->command_lines[child->command_line++];
1871 return 1;
1874 /* Determine if the load average on the system is too high to start a new job.
1875 The real system load average is only recomputed once a second. However, a
1876 very parallel make can easily start tens or even hundreds of jobs in a
1877 second, which brings the system to its knees for a while until that first
1878 batch of jobs clears out.
1880 To avoid this we use a weighted algorithm to try to account for jobs which
1881 have been started since the last second, and guess what the load average
1882 would be now if it were computed.
1884 This algorithm was provided by Thomas Riedl <thomas.riedl@siemens.com>,
1885 who writes:
1887 ! calculate something load-oid and add to the observed sys.load,
1888 ! so that latter can catch up:
1889 ! - every job started increases jobctr;
1890 ! - every dying job decreases a positive jobctr;
1891 ! - the jobctr value gets zeroed every change of seconds,
1892 ! after its value*weight_b is stored into the 'backlog' value last_sec
1893 ! - weight_a times the sum of jobctr and last_sec gets
1894 ! added to the observed sys.load.
1896 ! The two weights have been tried out on 24 and 48 proc. Sun Solaris-9
1897 ! machines, using a several-thousand-jobs-mix of cpp, cc, cxx and smallish
1898 ! sub-shelled commands (rm, echo, sed...) for tests.
1899 ! lowering the 'direct influence' factor weight_a (e.g. to 0.1)
1900 ! resulted in significant excession of the load limit, raising it
1901 ! (e.g. to 0.5) took bad to small, fast-executing jobs and didn't
1902 ! reach the limit in most test cases.
1904 ! lowering the 'history influence' weight_b (e.g. to 0.1) resulted in
1905 ! exceeding the limit for longer-running stuff (compile jobs in
1906 ! the .5 to 1.5 sec. range),raising it (e.g. to 0.5) overrepresented
1907 ! small jobs' effects.
1911 #define LOAD_WEIGHT_A 0.25
1912 #define LOAD_WEIGHT_B 0.25
1914 static int
1915 load_too_high (void)
1917 #if defined(__MSDOS__) || defined(VMS) || defined(_AMIGA) || defined(__riscos__)
1918 return 1;
1919 #else
1920 static double last_sec;
1921 static time_t last_now;
1922 double load, guess;
1923 time_t now;
1925 #ifdef WINDOWS32
1926 /* sub_proc.c cannot wait for more than MAXIMUM_WAIT_OBJECTS children */
1927 if (process_used_slots () >= MAXIMUM_WAIT_OBJECTS)
1928 return 1;
1929 #endif
1931 if (max_load_average < 0)
1932 return 0;
1934 /* Find the real system load average. */
1935 make_access ();
1936 if (getloadavg (&load, 1) != 1)
1938 static int lossage = -1;
1939 /* Complain only once for the same error. */
1940 if (lossage == -1 || errno != lossage)
1942 if (errno == 0)
1943 /* An errno value of zero means getloadavg is just unsupported. */
1944 error (NILF,
1945 _("cannot enforce load limits on this operating system"));
1946 else
1947 perror_with_name (_("cannot enforce load limit: "), "getloadavg");
1949 lossage = errno;
1950 load = 0;
1952 user_access ();
1954 /* If we're in a new second zero the counter and correct the backlog
1955 value. Only keep the backlog for one extra second; after that it's 0. */
1956 now = time (NULL);
1957 if (last_now < now)
1959 if (last_now == now - 1)
1960 last_sec = LOAD_WEIGHT_B * job_counter;
1961 else
1962 last_sec = 0.0;
1964 job_counter = 0;
1965 last_now = now;
1968 /* Try to guess what the load would be right now. */
1969 guess = load + (LOAD_WEIGHT_A * (job_counter + last_sec));
1971 DB (DB_JOBS, ("Estimated system load = %f (actual = %f) (max requested = %f)\n",
1972 guess, load, max_load_average));
1974 return guess >= max_load_average;
1975 #endif
1978 /* Start jobs that are waiting for the load to be lower. */
1980 void
1981 start_waiting_jobs (void)
1983 struct child *job;
1985 if (waiting_jobs == 0)
1986 return;
1990 /* Check for recently deceased descendants. */
1991 reap_children (0, 0);
1993 /* Take a job off the waiting list. */
1994 job = waiting_jobs;
1995 waiting_jobs = job->next;
1997 /* Try to start that job. We break out of the loop as soon
1998 as start_waiting_job puts one back on the waiting list. */
2000 while (start_waiting_job (job) && waiting_jobs != 0);
2002 return;
2005 #ifndef WINDOWS32
2007 /* EMX: Start a child process. This function returns the new pid. */
2008 # if defined __EMX__
2010 child_execute_job (int stdin_fd, int stdout_fd, char **argv, char **envp)
2012 int pid;
2013 /* stdin_fd == 0 means: nothing to do for stdin;
2014 stdout_fd == 1 means: nothing to do for stdout */
2015 int save_stdin = (stdin_fd != 0) ? dup (0) : 0;
2016 int save_stdout = (stdout_fd != 1) ? dup (1): 1;
2018 /* < 0 only if dup() failed */
2019 if (save_stdin < 0)
2020 fatal (NILF, _("no more file handles: could not duplicate stdin\n"));
2021 if (save_stdout < 0)
2022 fatal (NILF, _("no more file handles: could not duplicate stdout\n"));
2024 /* Close unnecessary file handles for the child. */
2025 if (save_stdin != 0)
2026 CLOSE_ON_EXEC (save_stdin);
2027 if (save_stdout != 1)
2028 CLOSE_ON_EXEC (save_stdout);
2030 /* Connect the pipes to the child process. */
2031 if (stdin_fd != 0)
2032 (void) dup2 (stdin_fd, 0);
2033 if (stdout_fd != 1)
2034 (void) dup2 (stdout_fd, 1);
2036 /* stdin_fd and stdout_fd must be closed on exit because we are
2037 still in the parent process */
2038 if (stdin_fd != 0)
2039 CLOSE_ON_EXEC (stdin_fd);
2040 if (stdout_fd != 1)
2041 CLOSE_ON_EXEC (stdout_fd);
2043 /* Run the command. */
2044 pid = exec_command (argv, envp);
2046 /* Restore stdout/stdin of the parent and close temporary FDs. */
2047 if (stdin_fd != 0)
2049 if (dup2 (save_stdin, 0) != 0)
2050 fatal (NILF, _("Could not restore stdin\n"));
2051 else
2052 close (save_stdin);
2055 if (stdout_fd != 1)
2057 if (dup2 (save_stdout, 1) != 1)
2058 fatal (NILF, _("Could not restore stdout\n"));
2059 else
2060 close (save_stdout);
2063 return pid;
2066 #elif !defined (_AMIGA) && !defined (__MSDOS__) && !defined (VMS)
2068 /* UNIX:
2069 Replace the current process with one executing the command in ARGV.
2070 STDIN_FD and STDOUT_FD are used as the process's stdin and stdout; ENVP is
2071 the environment of the new program. This function does not return. */
2072 void
2073 child_execute_job (int stdin_fd, int stdout_fd, char **argv, char **envp)
2075 if (stdin_fd != 0)
2076 (void) dup2 (stdin_fd, 0);
2077 if (stdout_fd != 1)
2078 (void) dup2 (stdout_fd, 1);
2079 if (stdin_fd != 0)
2080 (void) close (stdin_fd);
2081 if (stdout_fd != 1)
2082 (void) close (stdout_fd);
2084 /* Run the command. */
2085 exec_command (argv, envp);
2087 #endif /* !AMIGA && !__MSDOS__ && !VMS */
2088 #endif /* !WINDOWS32 */
2090 #ifndef _AMIGA
2091 /* Replace the current process with one running the command in ARGV,
2092 with environment ENVP. This function does not return. */
2094 /* EMX: This function returns the pid of the child process. */
2095 # ifdef __EMX__
2097 # else
2098 void
2099 # endif
2100 exec_command (char **argv, char **envp)
2102 #ifdef VMS
2103 /* to work around a problem with signals and execve: ignore them */
2104 #ifdef SIGCHLD
2105 signal (SIGCHLD,SIG_IGN);
2106 #endif
2107 /* Run the program. */
2108 execve (argv[0], argv, envp);
2109 perror_with_name ("execve: ", argv[0]);
2110 _exit (EXIT_FAILURE);
2111 #else
2112 #ifdef WINDOWS32
2113 HANDLE hPID;
2114 HANDLE hWaitPID;
2115 int err = 0;
2116 int exit_code = EXIT_FAILURE;
2118 /* make sure CreateProcess() has Path it needs */
2119 sync_Path_environment();
2121 /* launch command */
2122 hPID = process_easy(argv, envp);
2124 /* make sure launch ok */
2125 if (hPID == INVALID_HANDLE_VALUE)
2127 int i;
2128 fprintf(stderr,
2129 _("process_easy() failed to launch process (e=%ld)\n"),
2130 process_last_err(hPID));
2131 for (i = 0; argv[i]; i++)
2132 fprintf(stderr, "%s ", argv[i]);
2133 fprintf(stderr, _("\nCounted %d args in failed launch\n"), i);
2134 exit(EXIT_FAILURE);
2137 /* wait and reap last child */
2138 hWaitPID = process_wait_for_any();
2139 while (hWaitPID)
2141 /* was an error found on this process? */
2142 err = process_last_err(hWaitPID);
2144 /* get exit data */
2145 exit_code = process_exit_code(hWaitPID);
2147 if (err)
2148 fprintf(stderr, "make (e=%d, rc=%d): %s",
2149 err, exit_code, map_windows32_error_to_string(err));
2151 /* cleanup process */
2152 process_cleanup(hWaitPID);
2154 /* expect to find only last pid, warn about other pids reaped */
2155 if (hWaitPID == hPID)
2156 break;
2157 else
2159 char *pidstr = xstrdup (pid2str ((pid_t)hWaitPID));
2161 fprintf(stderr,
2162 _("make reaped child pid %s, still waiting for pid %s\n"),
2163 pidstr, pid2str ((pid_t)hPID));
2164 free (pidstr);
2168 /* return child's exit code as our exit code */
2169 exit(exit_code);
2171 #else /* !WINDOWS32 */
2173 # ifdef __EMX__
2174 int pid;
2175 # endif
2177 /* Be the user, permanently. */
2178 child_access ();
2180 # ifdef __EMX__
2182 /* Run the program. */
2183 pid = spawnvpe (P_NOWAIT, argv[0], argv, envp);
2185 if (pid >= 0)
2186 return pid;
2188 /* the file might have a strange shell extension */
2189 if (errno == ENOENT)
2190 errno = ENOEXEC;
2192 # else
2194 /* Run the program. */
2195 environ = envp;
2196 execvp (argv[0], argv);
2198 # endif /* !__EMX__ */
2200 switch (errno)
2202 case ENOENT:
2203 error (NILF, _("%s: Command not found"), argv[0]);
2204 break;
2205 case ENOEXEC:
2207 /* The file is not executable. Try it as a shell script. */
2208 extern char *getenv ();
2209 char *shell;
2210 char **new_argv;
2211 int argc;
2212 int i=1;
2214 # ifdef __EMX__
2215 /* Do not use $SHELL from the environment */
2216 struct variable *p = lookup_variable ("SHELL", 5);
2217 if (p)
2218 shell = p->value;
2219 else
2220 shell = 0;
2221 # else
2222 shell = getenv ("SHELL");
2223 # endif
2224 if (shell == 0)
2225 shell = default_shell;
2227 argc = 1;
2228 while (argv[argc] != 0)
2229 ++argc;
2231 # ifdef __EMX__
2232 if (!unixy_shell)
2233 ++argc;
2234 # endif
2236 new_argv = alloca ((1 + argc + 1) * sizeof (char *));
2237 new_argv[0] = shell;
2239 # ifdef __EMX__
2240 if (!unixy_shell)
2242 new_argv[1] = "/c";
2243 ++i;
2244 --argc;
2246 # endif
2248 new_argv[i] = argv[0];
2249 while (argc > 0)
2251 new_argv[i + argc] = argv[argc];
2252 --argc;
2255 # ifdef __EMX__
2256 pid = spawnvpe (P_NOWAIT, shell, new_argv, envp);
2257 if (pid >= 0)
2258 break;
2259 # else
2260 execvp (shell, new_argv);
2261 # endif
2262 if (errno == ENOENT)
2263 error (NILF, _("%s: Shell program not found"), shell);
2264 else
2265 perror_with_name ("execvp: ", shell);
2266 break;
2269 # ifdef __EMX__
2270 case EINVAL:
2271 /* this nasty error was driving me nuts :-( */
2272 error (NILF, _("spawnvpe: environment space might be exhausted"));
2273 /* FALLTHROUGH */
2274 # endif
2276 default:
2277 perror_with_name ("execvp: ", argv[0]);
2278 break;
2281 # ifdef __EMX__
2282 return pid;
2283 # else
2284 _exit (127);
2285 # endif
2286 #endif /* !WINDOWS32 */
2287 #endif /* !VMS */
2289 #else /* On Amiga */
2290 void exec_command (char **argv)
2292 MyExecute (argv);
2295 void clean_tmp (void)
2297 DeleteFile (amiga_bname);
2300 #endif /* On Amiga */
2302 #ifndef VMS
2303 /* Figure out the argument list necessary to run LINE as a command. Try to
2304 avoid using a shell. This routine handles only ' quoting, and " quoting
2305 when no backslash, $ or ` characters are seen in the quotes. Starting
2306 quotes may be escaped with a backslash. If any of the characters in
2307 sh_chars[] is seen, or any of the builtin commands listed in sh_cmds[]
2308 is the first word of a line, the shell is used.
2310 If RESTP is not NULL, *RESTP is set to point to the first newline in LINE.
2311 If *RESTP is NULL, newlines will be ignored.
2313 SHELL is the shell to use, or nil to use the default shell.
2314 IFS is the value of $IFS, or nil (meaning the default).
2316 FLAGS is the value of lines_flags for this command line. It is
2317 used in the WINDOWS32 port to check whether + or $(MAKE) were found
2318 in this command line, in which case the effect of just_print_flag
2319 is overridden. */
2321 static char **
2322 construct_command_argv_internal (char *line, char **restp, char *shell,
2323 char *shellflags, char *ifs, int flags,
2324 char **batch_filename_ptr)
2326 #ifdef __MSDOS__
2327 /* MSDOS supports both the stock DOS shell and ports of Unixy shells.
2328 We call `system' for anything that requires ``slow'' processing,
2329 because DOS shells are too dumb. When $SHELL points to a real
2330 (unix-style) shell, `system' just calls it to do everything. When
2331 $SHELL points to a DOS shell, `system' does most of the work
2332 internally, calling the shell only for its internal commands.
2333 However, it looks on the $PATH first, so you can e.g. have an
2334 external command named `mkdir'.
2336 Since we call `system', certain characters and commands below are
2337 actually not specific to COMMAND.COM, but to the DJGPP implementation
2338 of `system'. In particular:
2340 The shell wildcard characters are in DOS_CHARS because they will
2341 not be expanded if we call the child via `spawnXX'.
2343 The `;' is in DOS_CHARS, because our `system' knows how to run
2344 multiple commands on a single line.
2346 DOS_CHARS also include characters special to 4DOS/NDOS, so we
2347 won't have to tell one from another and have one more set of
2348 commands and special characters. */
2349 static char sh_chars_dos[] = "*?[];|<>%^&()";
2350 static char *sh_cmds_dos[] = { "break", "call", "cd", "chcp", "chdir", "cls",
2351 "copy", "ctty", "date", "del", "dir", "echo",
2352 "erase", "exit", "for", "goto", "if", "md",
2353 "mkdir", "path", "pause", "prompt", "rd",
2354 "rmdir", "rem", "ren", "rename", "set",
2355 "shift", "time", "type", "ver", "verify",
2356 "vol", ":", 0 };
2358 static char sh_chars_sh[] = "#;\"*?[]&|<>(){}$`^";
2359 static char *sh_cmds_sh[] = { "cd", "echo", "eval", "exec", "exit", "login",
2360 "logout", "set", "umask", "wait", "while",
2361 "for", "case", "if", ":", ".", "break",
2362 "continue", "export", "read", "readonly",
2363 "shift", "times", "trap", "switch", "unset",
2364 "ulimit", 0 };
2366 char *sh_chars;
2367 char **sh_cmds;
2368 #elif defined (__EMX__)
2369 static char sh_chars_dos[] = "*?[];|<>%^&()";
2370 static char *sh_cmds_dos[] = { "break", "call", "cd", "chcp", "chdir", "cls",
2371 "copy", "ctty", "date", "del", "dir", "echo",
2372 "erase", "exit", "for", "goto", "if", "md",
2373 "mkdir", "path", "pause", "prompt", "rd",
2374 "rmdir", "rem", "ren", "rename", "set",
2375 "shift", "time", "type", "ver", "verify",
2376 "vol", ":", 0 };
2378 static char sh_chars_os2[] = "*?[];|<>%^()\"'&";
2379 static char *sh_cmds_os2[] = { "call", "cd", "chcp", "chdir", "cls", "copy",
2380 "date", "del", "detach", "dir", "echo",
2381 "endlocal", "erase", "exit", "for", "goto", "if",
2382 "keys", "md", "mkdir", "move", "path", "pause",
2383 "prompt", "rd", "rem", "ren", "rename", "rmdir",
2384 "set", "setlocal", "shift", "start", "time",
2385 "type", "ver", "verify", "vol", ":", 0 };
2387 static char sh_chars_sh[] = "#;\"*?[]&|<>(){}$`^~'";
2388 static char *sh_cmds_sh[] = { "echo", "cd", "eval", "exec", "exit", "login",
2389 "logout", "set", "umask", "wait", "while",
2390 "for", "case", "if", ":", ".", "break",
2391 "continue", "export", "read", "readonly",
2392 "shift", "times", "trap", "switch", "unset",
2393 0 };
2394 char *sh_chars;
2395 char **sh_cmds;
2397 #elif defined (_AMIGA)
2398 static char sh_chars[] = "#;\"|<>()?*$`";
2399 static char *sh_cmds[] = { "cd", "eval", "if", "delete", "echo", "copy",
2400 "rename", "set", "setenv", "date", "makedir",
2401 "skip", "else", "endif", "path", "prompt",
2402 "unset", "unsetenv", "version",
2403 0 };
2404 #elif defined (WINDOWS32)
2405 static char sh_chars_dos[] = "\"|&<>";
2406 static char *sh_cmds_dos[] = { "assoc", "break", "call", "cd", "chcp",
2407 "chdir", "cls", "color", "copy", "ctty",
2408 "date", "del", "dir", "echo", "echo.",
2409 "endlocal", "erase", "exit", "for", "ftype",
2410 "goto", "if", "if", "md", "mkdir", "path",
2411 "pause", "prompt", "rd", "rem", "ren",
2412 "rename", "rmdir", "set", "setlocal",
2413 "shift", "time", "title", "type", "ver",
2414 "verify", "vol", ":", 0 };
2415 static char sh_chars_sh[] = "#;\"*?[]&|<>(){}$`^";
2416 static char *sh_cmds_sh[] = { "cd", "eval", "exec", "exit", "login",
2417 "logout", "set", "umask", "wait", "while", "for",
2418 "case", "if", ":", ".", "break", "continue",
2419 "export", "read", "readonly", "shift", "times",
2420 "trap", "switch", "test",
2421 #ifdef BATCH_MODE_ONLY_SHELL
2422 "echo",
2423 #endif
2424 0 };
2425 char* sh_chars;
2426 char** sh_cmds;
2427 #elif defined(__riscos__)
2428 static char sh_chars[] = "";
2429 static char *sh_cmds[] = { 0 };
2430 #else /* must be UNIX-ish */
2431 static char sh_chars[] = "#;\"*?[]&|<>(){}$`^~!";
2432 static char *sh_cmds[] = { ".", ":", "break", "case", "cd", "continue",
2433 "eval", "exec", "exit", "export", "for", "if",
2434 "login", "logout", "read", "readonly", "set",
2435 "shift", "switch", "test", "times", "trap",
2436 "ulimit", "umask", "unset", "wait", "while", 0 };
2437 # ifdef HAVE_DOS_PATHS
2438 /* This is required if the MSYS/Cygwin ports (which do not define
2439 WINDOWS32) are compiled with HAVE_DOS_PATHS defined, which uses
2440 sh_chars_sh[] directly (see below). */
2441 static char *sh_chars_sh = sh_chars;
2442 # endif /* HAVE_DOS_PATHS */
2443 #endif
2444 int i;
2445 char *p;
2446 char *ap;
2447 char *end;
2448 int instring, word_has_equals, seen_nonequals, last_argument_was_empty;
2449 char **new_argv = 0;
2450 char *argstr = 0;
2451 #ifdef WINDOWS32
2452 int slow_flag = 0;
2454 if (!unixy_shell) {
2455 sh_cmds = sh_cmds_dos;
2456 sh_chars = sh_chars_dos;
2457 } else {
2458 sh_cmds = sh_cmds_sh;
2459 sh_chars = sh_chars_sh;
2461 #endif /* WINDOWS32 */
2463 if (restp != NULL)
2464 *restp = NULL;
2466 /* Make sure not to bother processing an empty line. */
2467 while (isblank ((unsigned char)*line))
2468 ++line;
2469 if (*line == '\0')
2470 return 0;
2472 if (shellflags == 0)
2473 shellflags = posix_pedantic ? "-ec" : "-c";
2475 /* See if it is safe to parse commands internally. */
2476 if (shell == 0)
2477 shell = default_shell;
2478 #ifdef WINDOWS32
2479 else if (strcmp (shell, default_shell))
2481 char *s1 = _fullpath (NULL, shell, 0);
2482 char *s2 = _fullpath (NULL, default_shell, 0);
2484 slow_flag = strcmp ((s1 ? s1 : ""), (s2 ? s2 : ""));
2486 if (s1)
2487 free (s1);
2488 if (s2)
2489 free (s2);
2491 if (slow_flag)
2492 goto slow;
2493 #else /* not WINDOWS32 */
2494 #if defined (__MSDOS__) || defined (__EMX__)
2495 else if (strcasecmp (shell, default_shell))
2497 extern int _is_unixy_shell (const char *_path);
2499 DB (DB_BASIC, (_("$SHELL changed (was `%s', now `%s')\n"),
2500 default_shell, shell));
2501 unixy_shell = _is_unixy_shell (shell);
2502 /* we must allocate a copy of shell: construct_command_argv() will free
2503 * shell after this function returns. */
2504 default_shell = xstrdup (shell);
2506 if (unixy_shell)
2508 sh_chars = sh_chars_sh;
2509 sh_cmds = sh_cmds_sh;
2511 else
2513 sh_chars = sh_chars_dos;
2514 sh_cmds = sh_cmds_dos;
2515 # ifdef __EMX__
2516 if (_osmode == OS2_MODE)
2518 sh_chars = sh_chars_os2;
2519 sh_cmds = sh_cmds_os2;
2521 # endif
2523 #else /* !__MSDOS__ */
2524 else if (strcmp (shell, default_shell))
2525 goto slow;
2526 #endif /* !__MSDOS__ && !__EMX__ */
2527 #endif /* not WINDOWS32 */
2529 if (ifs != 0)
2530 for (ap = ifs; *ap != '\0'; ++ap)
2531 if (*ap != ' ' && *ap != '\t' && *ap != '\n')
2532 goto slow;
2534 if (shellflags != 0)
2535 if (shellflags[0] != '-'
2536 || ((shellflags[1] != 'c' || shellflags[2] != '\0')
2537 && (shellflags[1] != 'e' || shellflags[2] != 'c' || shellflags[3] != '\0')))
2538 goto slow;
2540 i = strlen (line) + 1;
2542 /* More than 1 arg per character is impossible. */
2543 new_argv = xmalloc (i * sizeof (char *));
2545 /* All the args can fit in a buffer as big as LINE is. */
2546 ap = new_argv[0] = argstr = xmalloc (i);
2547 end = ap + i;
2549 /* I is how many complete arguments have been found. */
2550 i = 0;
2551 instring = word_has_equals = seen_nonequals = last_argument_was_empty = 0;
2552 for (p = line; *p != '\0'; ++p)
2554 assert (ap <= end);
2556 if (instring)
2558 /* Inside a string, just copy any char except a closing quote
2559 or a backslash-newline combination. */
2560 if (*p == instring)
2562 instring = 0;
2563 if (ap == new_argv[0] || *(ap-1) == '\0')
2564 last_argument_was_empty = 1;
2566 else if (*p == '\\' && p[1] == '\n')
2568 /* Backslash-newline is handled differently depending on what
2569 kind of string we're in: inside single-quoted strings you
2570 keep them; in double-quoted strings they disappear.
2571 For DOS/Windows/OS2, if we don't have a POSIX shell,
2572 we keep the pre-POSIX behavior of removing the
2573 backslash-newline. */
2574 if (instring == '"'
2575 #if defined (__MSDOS__) || defined (__EMX__) || defined (WINDOWS32)
2576 || !unixy_shell
2577 #endif
2579 ++p;
2580 else
2582 *(ap++) = *(p++);
2583 *(ap++) = *p;
2586 else if (*p == '\n' && restp != NULL)
2588 /* End of the command line. */
2589 *restp = p;
2590 goto end_of_line;
2592 /* Backslash, $, and ` are special inside double quotes.
2593 If we see any of those, punt.
2594 But on MSDOS, if we use COMMAND.COM, double and single
2595 quotes have the same effect. */
2596 else if (instring == '"' && strchr ("\\$`", *p) != 0 && unixy_shell)
2597 goto slow;
2598 else
2599 *ap++ = *p;
2601 else if (strchr (sh_chars, *p) != 0)
2602 /* Not inside a string, but it's a special char. */
2603 goto slow;
2604 else if (one_shell && *p == '\n')
2605 /* In .ONESHELL mode \n is a separator like ; or && */
2606 goto slow;
2607 #ifdef __MSDOS__
2608 else if (*p == '.' && p[1] == '.' && p[2] == '.' && p[3] != '.')
2609 /* `...' is a wildcard in DJGPP. */
2610 goto slow;
2611 #endif
2612 else
2613 /* Not a special char. */
2614 switch (*p)
2616 case '=':
2617 /* Equals is a special character in leading words before the
2618 first word with no equals sign in it. This is not the case
2619 with sh -k, but we never get here when using nonstandard
2620 shell flags. */
2621 if (! seen_nonequals && unixy_shell)
2622 goto slow;
2623 word_has_equals = 1;
2624 *ap++ = '=';
2625 break;
2627 case '\\':
2628 /* Backslash-newline has special case handling, ref POSIX.
2629 We're in the fastpath, so emulate what the shell would do. */
2630 if (p[1] == '\n')
2632 /* Throw out the backslash and newline. */
2633 ++p;
2635 /* If there's nothing in this argument yet, skip any
2636 whitespace before the start of the next word. */
2637 if (ap == new_argv[i])
2638 p = next_token (p + 1) - 1;
2640 else if (p[1] != '\0')
2642 #ifdef HAVE_DOS_PATHS
2643 /* Only remove backslashes before characters special to Unixy
2644 shells. All other backslashes are copied verbatim, since
2645 they are probably DOS-style directory separators. This
2646 still leaves a small window for problems, but at least it
2647 should work for the vast majority of naive users. */
2649 #ifdef __MSDOS__
2650 /* A dot is only special as part of the "..."
2651 wildcard. */
2652 if (strneq (p + 1, ".\\.\\.", 5))
2654 *ap++ = '.';
2655 *ap++ = '.';
2656 p += 4;
2658 else
2659 #endif
2660 if (p[1] != '\\' && p[1] != '\''
2661 && !isspace ((unsigned char)p[1])
2662 && strchr (sh_chars_sh, p[1]) == 0)
2663 /* back up one notch, to copy the backslash */
2664 --p;
2665 #endif /* HAVE_DOS_PATHS */
2667 /* Copy and skip the following char. */
2668 *ap++ = *++p;
2670 break;
2672 case '\'':
2673 case '"':
2674 instring = *p;
2675 break;
2677 case '\n':
2678 if (restp != NULL)
2680 /* End of the command line. */
2681 *restp = p;
2682 goto end_of_line;
2684 else
2685 /* Newlines are not special. */
2686 *ap++ = '\n';
2687 break;
2689 case ' ':
2690 case '\t':
2691 /* We have the end of an argument.
2692 Terminate the text of the argument. */
2693 *ap++ = '\0';
2694 new_argv[++i] = ap;
2695 last_argument_was_empty = 0;
2697 /* Update SEEN_NONEQUALS, which tells us if every word
2698 heretofore has contained an `='. */
2699 seen_nonequals |= ! word_has_equals;
2700 if (word_has_equals && ! seen_nonequals)
2701 /* An `=' in a word before the first
2702 word without one is magical. */
2703 goto slow;
2704 word_has_equals = 0; /* Prepare for the next word. */
2706 /* If this argument is the command name,
2707 see if it is a built-in shell command.
2708 If so, have the shell handle it. */
2709 if (i == 1)
2711 register int j;
2712 for (j = 0; sh_cmds[j] != 0; ++j)
2714 if (streq (sh_cmds[j], new_argv[0]))
2715 goto slow;
2716 # ifdef __EMX__
2717 /* Non-Unix shells are case insensitive. */
2718 if (!unixy_shell
2719 && strcasecmp (sh_cmds[j], new_argv[0]) == 0)
2720 goto slow;
2721 # endif
2725 /* Ignore multiple whitespace chars. */
2726 p = next_token (p) - 1;
2727 break;
2729 default:
2730 *ap++ = *p;
2731 break;
2734 end_of_line:
2736 if (instring)
2737 /* Let the shell deal with an unterminated quote. */
2738 goto slow;
2740 /* Terminate the last argument and the argument list. */
2742 *ap = '\0';
2743 if (new_argv[i][0] != '\0' || last_argument_was_empty)
2744 ++i;
2745 new_argv[i] = 0;
2747 if (i == 1)
2749 register int j;
2750 for (j = 0; sh_cmds[j] != 0; ++j)
2751 if (streq (sh_cmds[j], new_argv[0]))
2752 goto slow;
2755 if (new_argv[0] == 0)
2757 /* Line was empty. */
2758 free (argstr);
2759 free (new_argv);
2760 return 0;
2763 return new_argv;
2765 slow:;
2766 /* We must use the shell. */
2768 if (new_argv != 0)
2770 /* Free the old argument list we were working on. */
2771 free (argstr);
2772 free (new_argv);
2775 #ifdef __MSDOS__
2776 execute_by_shell = 1; /* actually, call `system' if shell isn't unixy */
2777 #endif
2779 #ifdef _AMIGA
2781 char *ptr;
2782 char *buffer;
2783 char *dptr;
2785 buffer = xmalloc (strlen (line)+1);
2787 ptr = line;
2788 for (dptr=buffer; *ptr; )
2790 if (*ptr == '\\' && ptr[1] == '\n')
2791 ptr += 2;
2792 else if (*ptr == '@') /* Kludge: multiline commands */
2794 ptr += 2;
2795 *dptr++ = '\n';
2797 else
2798 *dptr++ = *ptr++;
2800 *dptr = 0;
2802 new_argv = xmalloc (2 * sizeof (char *));
2803 new_argv[0] = buffer;
2804 new_argv[1] = 0;
2806 #else /* Not Amiga */
2807 #ifdef WINDOWS32
2809 * Not eating this whitespace caused things like
2811 * sh -c "\n"
2813 * which gave the shell fits. I think we have to eat
2814 * whitespace here, but this code should be considered
2815 * suspicious if things start failing....
2818 /* Make sure not to bother processing an empty line. */
2819 while (isspace ((unsigned char)*line))
2820 ++line;
2821 if (*line == '\0')
2822 return 0;
2823 #endif /* WINDOWS32 */
2826 /* SHELL may be a multi-word command. Construct a command line
2827 "$(SHELL) $(.SHELLFLAGS) LINE", with all special chars in LINE escaped.
2828 Then recurse, expanding this command line to get the final
2829 argument list. */
2831 unsigned int shell_len = strlen (shell);
2832 unsigned int line_len = strlen (line);
2833 unsigned int sflags_len = strlen (shellflags);
2834 char *command_ptr = NULL; /* used for batch_mode_shell mode */
2835 char *new_line;
2837 # ifdef __EMX__ /* is this necessary? */
2838 if (!unixy_shell)
2839 shellflags[0] = '/'; /* "/c" */
2840 # endif
2842 /* In .ONESHELL mode we are allowed to throw the entire current
2843 recipe string at a single shell and trust that the user
2844 has configured the shell and shell flags, and formatted
2845 the string, appropriately. */
2846 if (one_shell)
2848 /* If the shell is Bourne compatible, we must remove and ignore
2849 interior special chars [@+-] because they're meaningless to
2850 the shell itself. If, however, we're in .ONESHELL mode and
2851 have changed SHELL to something non-standard, we should
2852 leave those alone because they could be part of the
2853 script. In this case we must also leave in place
2854 any leading [@+-] for the same reason. */
2856 /* Remove and ignore interior prefix chars [@+-] because they're
2857 meaningless given a single shell. */
2858 #if defined __MSDOS__ || defined (__EMX__)
2859 if (unixy_shell) /* the test is complicated and we already did it */
2860 #else
2861 if (is_bourne_compatible_shell(shell))
2862 #endif
2864 const char *f = line;
2865 char *t = line;
2867 /* Copy the recipe, removing and ignoring interior prefix chars
2868 [@+-]: they're meaningless in .ONESHELL mode. */
2869 while (f[0] != '\0')
2871 int esc = 0;
2873 /* This is the start of a new recipe line.
2874 Skip whitespace and prefix characters. */
2875 while (isblank (*f) || *f == '-' || *f == '@' || *f == '+')
2876 ++f;
2878 /* Copy until we get to the next logical recipe line. */
2879 while (*f != '\0')
2881 *(t++) = *(f++);
2882 if (f[-1] == '\\')
2883 esc = !esc;
2884 else
2886 /* On unescaped newline, we're done with this line. */
2887 if (f[-1] == '\n' && ! esc)
2888 break;
2890 /* Something else: reset the escape sequence. */
2891 esc = 0;
2895 *t = '\0';
2898 new_argv = xmalloc (4 * sizeof (char *));
2899 new_argv[0] = xstrdup(shell);
2900 new_argv[1] = xstrdup(shellflags);
2901 new_argv[2] = line;
2902 new_argv[3] = NULL;
2903 return new_argv;
2906 new_line = alloca (shell_len + 1 + sflags_len + 1
2907 + (line_len*2) + 1);
2908 ap = new_line;
2909 memcpy (ap, shell, shell_len);
2910 ap += shell_len;
2911 *(ap++) = ' ';
2912 memcpy (ap, shellflags, sflags_len);
2913 ap += sflags_len;
2914 *(ap++) = ' ';
2915 command_ptr = ap;
2916 for (p = line; *p != '\0'; ++p)
2918 if (restp != NULL && *p == '\n')
2920 *restp = p;
2921 break;
2923 else if (*p == '\\' && p[1] == '\n')
2925 /* POSIX says we keep the backslash-newline. If we don't have a
2926 POSIX shell on DOS/Windows/OS2, mimic the pre-POSIX behavior
2927 and remove the backslash/newline. */
2928 #if defined (__MSDOS__) || defined (__EMX__) || defined (WINDOWS32)
2929 # define PRESERVE_BSNL unixy_shell
2930 #else
2931 # define PRESERVE_BSNL 1
2932 #endif
2933 if (PRESERVE_BSNL)
2935 *(ap++) = '\\';
2936 /* Only non-batch execution needs another backslash,
2937 because it will be passed through a recursive
2938 invocation of this function. */
2939 if (!batch_mode_shell)
2940 *(ap++) = '\\';
2941 *(ap++) = '\n';
2943 ++p;
2944 continue;
2947 /* DOS shells don't know about backslash-escaping. */
2948 if (unixy_shell && !batch_mode_shell &&
2949 (*p == '\\' || *p == '\'' || *p == '"'
2950 || isspace ((unsigned char)*p)
2951 || strchr (sh_chars, *p) != 0))
2952 *ap++ = '\\';
2953 #ifdef __MSDOS__
2954 else if (unixy_shell && strneq (p, "...", 3))
2956 /* The case of `...' wildcard again. */
2957 strcpy (ap, "\\.\\.\\");
2958 ap += 5;
2959 p += 2;
2961 #endif
2962 *ap++ = *p;
2964 if (ap == new_line + shell_len + sflags_len + 2)
2965 /* Line was empty. */
2966 return 0;
2967 *ap = '\0';
2969 #ifdef WINDOWS32
2970 /* Some shells do not work well when invoked as 'sh -c xxx' to run a
2971 command line (e.g. Cygnus GNUWIN32 sh.exe on WIN32 systems). In these
2972 cases, run commands via a script file. */
2973 if (just_print_flag && !(flags & COMMANDS_RECURSE)) {
2974 /* Need to allocate new_argv, although it's unused, because
2975 start_job_command will want to free it and its 0'th element. */
2976 new_argv = xmalloc(2 * sizeof (char *));
2977 new_argv[0] = xstrdup ("");
2978 new_argv[1] = NULL;
2979 } else if ((no_default_sh_exe || batch_mode_shell) && batch_filename_ptr) {
2980 int temp_fd;
2981 FILE* batch = NULL;
2982 int id = GetCurrentProcessId();
2983 PATH_VAR(fbuf);
2985 /* create a file name */
2986 sprintf(fbuf, "make%d", id);
2987 *batch_filename_ptr = create_batch_file (fbuf, unixy_shell, &temp_fd);
2989 DB (DB_JOBS, (_("Creating temporary batch file %s\n"),
2990 *batch_filename_ptr));
2992 /* Create a FILE object for the batch file, and write to it the
2993 commands to be executed. Put the batch file in TEXT mode. */
2994 _setmode (temp_fd, _O_TEXT);
2995 batch = _fdopen (temp_fd, "wt");
2996 if (!unixy_shell)
2997 fputs ("@echo off\n", batch);
2998 fputs (command_ptr, batch);
2999 fputc ('\n', batch);
3000 fclose (batch);
3001 DB (DB_JOBS, (_("Batch file contents:%s\n\t%s\n"),
3002 !unixy_shell ? "\n\t@echo off" : "", command_ptr));
3004 /* create argv */
3005 new_argv = xmalloc(3 * sizeof (char *));
3006 if (unixy_shell) {
3007 new_argv[0] = xstrdup (shell);
3008 new_argv[1] = *batch_filename_ptr; /* only argv[0] gets freed later */
3009 } else {
3010 new_argv[0] = xstrdup (*batch_filename_ptr);
3011 new_argv[1] = NULL;
3013 new_argv[2] = NULL;
3014 } else
3015 #endif /* WINDOWS32 */
3017 if (unixy_shell)
3018 new_argv = construct_command_argv_internal (new_line, 0, 0, 0, 0,
3019 flags, 0);
3021 #ifdef __EMX__
3022 else if (!unixy_shell)
3024 /* new_line is local, must not be freed therefore
3025 We use line here instead of new_line because we run the shell
3026 manually. */
3027 size_t line_len = strlen (line);
3028 char *p = new_line;
3029 char *q = new_line;
3030 memcpy (new_line, line, line_len + 1);
3031 /* Replace all backslash-newline combination and also following tabs.
3032 Important: stop at the first '\n' because that's what the loop above
3033 did. The next line starting at restp[0] will be executed during the
3034 next call of this function. */
3035 while (*q != '\0' && *q != '\n')
3037 if (q[0] == '\\' && q[1] == '\n')
3038 q += 2; /* remove '\\' and '\n' */
3039 else
3040 *p++ = *q++;
3042 *p = '\0';
3044 # ifndef NO_CMD_DEFAULT
3045 if (strnicmp (new_line, "echo", 4) == 0
3046 && (new_line[4] == ' ' || new_line[4] == '\t'))
3048 /* the builtin echo command: handle it separately */
3049 size_t echo_len = line_len - 5;
3050 char *echo_line = new_line + 5;
3052 /* special case: echo 'x="y"'
3053 cmd works this way: a string is printed as is, i.e., no quotes
3054 are removed. But autoconf uses a command like echo 'x="y"' to
3055 determine whether make works. autoconf expects the output x="y"
3056 so we will do exactly that.
3057 Note: if we do not allow cmd to be the default shell
3058 we do not need this kind of voodoo */
3059 if (echo_line[0] == '\''
3060 && echo_line[echo_len - 1] == '\''
3061 && strncmp (echo_line + 1, "ac_maketemp=",
3062 strlen ("ac_maketemp=")) == 0)
3064 /* remove the enclosing quotes */
3065 memmove (echo_line, echo_line + 1, echo_len - 2);
3066 echo_line[echo_len - 2] = '\0';
3069 # endif
3072 /* Let the shell decide what to do. Put the command line into the
3073 2nd command line argument and hope for the best ;-) */
3074 size_t sh_len = strlen (shell);
3076 /* exactly 3 arguments + NULL */
3077 new_argv = xmalloc (4 * sizeof (char *));
3078 /* Exactly strlen(shell) + strlen("/c") + strlen(line) + 3 times
3079 the trailing '\0' */
3080 new_argv[0] = xmalloc (sh_len + line_len + 5);
3081 memcpy (new_argv[0], shell, sh_len + 1);
3082 new_argv[1] = new_argv[0] + sh_len + 1;
3083 memcpy (new_argv[1], "/c", 3);
3084 new_argv[2] = new_argv[1] + 3;
3085 memcpy (new_argv[2], new_line, line_len + 1);
3086 new_argv[3] = NULL;
3089 #elif defined(__MSDOS__)
3090 else
3092 /* With MSDOS shells, we must construct the command line here
3093 instead of recursively calling ourselves, because we
3094 cannot backslash-escape the special characters (see above). */
3095 new_argv = xmalloc (sizeof (char *));
3096 line_len = strlen (new_line) - shell_len - sflags_len - 2;
3097 new_argv[0] = xmalloc (line_len + 1);
3098 strncpy (new_argv[0],
3099 new_line + shell_len + sflags_len + 2, line_len);
3100 new_argv[0][line_len] = '\0';
3102 #else
3103 else
3104 fatal (NILF, _("%s (line %d) Bad shell context (!unixy && !batch_mode_shell)\n"),
3105 __FILE__, __LINE__);
3106 #endif
3108 #endif /* ! AMIGA */
3110 return new_argv;
3112 #endif /* !VMS */
3114 /* Figure out the argument list necessary to run LINE as a command. Try to
3115 avoid using a shell. This routine handles only ' quoting, and " quoting
3116 when no backslash, $ or ` characters are seen in the quotes. Starting
3117 quotes may be escaped with a backslash. If any of the characters in
3118 sh_chars[] is seen, or any of the builtin commands listed in sh_cmds[]
3119 is the first word of a line, the shell is used.
3121 If RESTP is not NULL, *RESTP is set to point to the first newline in LINE.
3122 If *RESTP is NULL, newlines will be ignored.
3124 FILE is the target whose commands these are. It is used for
3125 variable expansion for $(SHELL) and $(IFS). */
3127 char **
3128 construct_command_argv (char *line, char **restp, struct file *file,
3129 int cmd_flags, char **batch_filename_ptr)
3131 char *shell, *ifs, *shellflags;
3132 char **argv;
3134 #ifdef VMS
3135 char *cptr;
3136 int argc;
3138 argc = 0;
3139 cptr = line;
3140 for (;;)
3142 while ((*cptr != 0)
3143 && (isspace ((unsigned char)*cptr)))
3144 cptr++;
3145 if (*cptr == 0)
3146 break;
3147 while ((*cptr != 0)
3148 && (!isspace((unsigned char)*cptr)))
3149 cptr++;
3150 argc++;
3153 argv = xmalloc (argc * sizeof (char *));
3154 if (argv == 0)
3155 abort ();
3157 cptr = line;
3158 argc = 0;
3159 for (;;)
3161 while ((*cptr != 0)
3162 && (isspace ((unsigned char)*cptr)))
3163 cptr++;
3164 if (*cptr == 0)
3165 break;
3166 DB (DB_JOBS, ("argv[%d] = [%s]\n", argc, cptr));
3167 argv[argc++] = cptr;
3168 while ((*cptr != 0)
3169 && (!isspace((unsigned char)*cptr)))
3170 cptr++;
3171 if (*cptr != 0)
3172 *cptr++ = 0;
3174 #else
3176 /* Turn off --warn-undefined-variables while we expand SHELL and IFS. */
3177 int save = warn_undefined_variables_flag;
3178 warn_undefined_variables_flag = 0;
3180 shell = allocated_variable_expand_for_file ("$(SHELL)", file);
3181 #ifdef WINDOWS32
3183 * Convert to forward slashes so that construct_command_argv_internal()
3184 * is not confused.
3186 if (shell) {
3187 char *p = w32ify (shell, 0);
3188 strcpy (shell, p);
3190 #endif
3191 #ifdef __EMX__
3193 static const char *unixroot = NULL;
3194 static const char *last_shell = "";
3195 static int init = 0;
3196 if (init == 0)
3198 unixroot = getenv ("UNIXROOT");
3199 /* unixroot must be NULL or not empty */
3200 if (unixroot && unixroot[0] == '\0') unixroot = NULL;
3201 init = 1;
3204 /* if we have an unixroot drive and if shell is not default_shell
3205 (which means it's either cmd.exe or the test has already been
3206 performed) and if shell is an absolute path without drive letter,
3207 try whether it exists e.g.: if "/bin/sh" does not exist use
3208 "$UNIXROOT/bin/sh" instead. */
3209 if (unixroot && shell && strcmp (shell, last_shell) != 0
3210 && (shell[0] == '/' || shell[0] == '\\'))
3212 /* trying a new shell, check whether it exists */
3213 size_t size = strlen (shell);
3214 char *buf = xmalloc (size + 7);
3215 memcpy (buf, shell, size);
3216 memcpy (buf + size, ".exe", 5); /* including the trailing '\0' */
3217 if (access (shell, F_OK) != 0 && access (buf, F_OK) != 0)
3219 /* try the same for the unixroot drive */
3220 memmove (buf + 2, buf, size + 5);
3221 buf[0] = unixroot[0];
3222 buf[1] = unixroot[1];
3223 if (access (buf, F_OK) == 0)
3224 /* we have found a shell! */
3225 /* free(shell); */
3226 shell = buf;
3227 else
3228 free (buf);
3230 else
3231 free (buf);
3234 #endif /* __EMX__ */
3236 shellflags = allocated_variable_expand_for_file ("$(.SHELLFLAGS)", file);
3237 ifs = allocated_variable_expand_for_file ("$(IFS)", file);
3239 warn_undefined_variables_flag = save;
3242 argv = construct_command_argv_internal (line, restp, shell, shellflags, ifs,
3243 cmd_flags, batch_filename_ptr);
3245 free (shell);
3246 free (shellflags);
3247 free (ifs);
3248 #endif /* !VMS */
3249 return argv;
3252 #if !defined(HAVE_DUP2) && !defined(_AMIGA)
3254 dup2 (int old, int new)
3256 int fd;
3258 (void) close (new);
3259 fd = dup (old);
3260 if (fd != new)
3262 (void) close (fd);
3263 errno = EMFILE;
3264 return -1;
3267 return fd;
3269 #endif /* !HAVE_DUP2 && !_AMIGA */
3271 /* On VMS systems, include special VMS functions. */
3273 #ifdef VMS
3274 #include "vmsjobs.c"
3275 #endif