Be sure to start parsing prereqs in the right place even if there are
[make.git] / job.c
blobf359520d54cfa4999e1bd00f6caae0bba6fa7dfe
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 # define WAIT_NOHANG 1
112 #endif /* WINDOWS32 */
114 #ifdef __EMX__
115 # include <process.h>
116 #endif
118 #if defined (HAVE_SYS_WAIT_H) || defined (HAVE_UNION_WAIT)
119 # include <sys/wait.h>
120 #endif
122 #ifdef HAVE_WAITPID
123 # define WAIT_NOHANG(status) waitpid (-1, (status), WNOHANG)
124 #else /* Don't have waitpid. */
125 # ifdef HAVE_WAIT3
126 # ifndef wait3
127 extern int wait3 ();
128 # endif
129 # define WAIT_NOHANG(status) wait3 ((status), WNOHANG, (struct rusage *) 0)
130 # endif /* Have wait3. */
131 #endif /* Have waitpid. */
133 #if !defined (wait) && !defined (POSIX)
134 int wait ();
135 #endif
137 #ifndef HAVE_UNION_WAIT
139 # define WAIT_T int
141 # ifndef WTERMSIG
142 # define WTERMSIG(x) ((x) & 0x7f)
143 # endif
144 # ifndef WCOREDUMP
145 # define WCOREDUMP(x) ((x) & 0x80)
146 # endif
147 # ifndef WEXITSTATUS
148 # define WEXITSTATUS(x) (((x) >> 8) & 0xff)
149 # endif
150 # ifndef WIFSIGNALED
151 # define WIFSIGNALED(x) (WTERMSIG (x) != 0)
152 # endif
153 # ifndef WIFEXITED
154 # define WIFEXITED(x) (WTERMSIG (x) == 0)
155 # endif
157 #else /* Have `union wait'. */
159 # define WAIT_T union wait
160 # ifndef WTERMSIG
161 # define WTERMSIG(x) ((x).w_termsig)
162 # endif
163 # ifndef WCOREDUMP
164 # define WCOREDUMP(x) ((x).w_coredump)
165 # endif
166 # ifndef WEXITSTATUS
167 # define WEXITSTATUS(x) ((x).w_retcode)
168 # endif
169 # ifndef WIFSIGNALED
170 # define WIFSIGNALED(x) (WTERMSIG(x) != 0)
171 # endif
172 # ifndef WIFEXITED
173 # define WIFEXITED(x) (WTERMSIG(x) == 0)
174 # endif
176 #endif /* Don't have `union wait'. */
178 #if !defined(HAVE_UNISTD_H) && !defined(WINDOWS32)
179 int dup2 ();
180 int execve ();
181 void _exit ();
182 # ifndef VMS
183 int geteuid ();
184 int getegid ();
185 int setgid ();
186 int getgid ();
187 # endif
188 #endif
190 /* Different systems have different requirements for pid_t.
191 Plus we have to support gettext string translation... Argh. */
192 static const char *
193 pid2str (pid_t pid)
195 static char pidstring[100];
196 #if defined(WINDOWS32) && (__GNUC__ > 3 || _MSC_VER > 1300)
197 /* %Id is only needed for 64-builds, which were not supported by
198 older versions of Windows compilers. */
199 sprintf (pidstring, "%Id", pid);
200 #else
201 sprintf (pidstring, "%lu", (unsigned long) pid);
202 #endif
203 return pidstring;
206 int getloadavg (double loadavg[], int nelem);
207 int start_remote_job (char **argv, char **envp, int stdin_fd, int *is_remote,
208 int *id_ptr, int *used_stdin);
209 int start_remote_job_p (int);
210 int remote_status (int *exit_code_ptr, int *signal_ptr, int *coredump_ptr,
211 int block);
213 RETSIGTYPE child_handler (int);
214 static void free_child (struct child *);
215 static void start_job_command (struct child *child);
216 static int load_too_high (void);
217 static int job_next_command (struct child *);
218 static int start_waiting_job (struct child *);
220 /* Chain of all live (or recently deceased) children. */
222 struct child *children = 0;
224 /* Number of children currently running. */
226 unsigned int job_slots_used = 0;
228 /* Nonzero if the `good' standard input is in use. */
230 static int good_stdin_used = 0;
232 /* Chain of children waiting to run until the load average goes down. */
234 static struct child *waiting_jobs = 0;
236 /* Non-zero if we use a *real* shell (always so on Unix). */
238 int unixy_shell = 1;
240 /* Number of jobs started in the current second. */
242 unsigned long job_counter = 0;
244 /* Number of jobserver tokens this instance is currently using. */
246 unsigned int jobserver_tokens = 0;
248 #ifdef WINDOWS32
250 * The macro which references this function is defined in make.h.
253 w32_kill(pid_t pid, int sig)
255 return ((process_kill((HANDLE)pid, sig) == TRUE) ? 0 : -1);
258 /* This function creates a temporary file name with an extension specified
259 * by the unixy arg.
260 * Return an xmalloc'ed string of a newly created temp file and its
261 * file descriptor, or die. */
262 static char *
263 create_batch_file (char const *base, int unixy, int *fd)
265 const char *const ext = unixy ? "sh" : "bat";
266 const char *error_string = NULL;
267 char temp_path[MAXPATHLEN]; /* need to know its length */
268 unsigned path_size = GetTempPath(sizeof temp_path, temp_path);
269 int path_is_dot = 0;
270 unsigned uniq = 1;
271 const unsigned sizemax = strlen (base) + strlen (ext) + 10;
273 if (path_size == 0)
275 path_size = GetCurrentDirectory (sizeof temp_path, temp_path);
276 path_is_dot = 1;
279 while (path_size > 0 &&
280 path_size + sizemax < sizeof temp_path &&
281 uniq < 0x10000)
283 unsigned size = sprintf (temp_path + path_size,
284 "%s%s-%x.%s",
285 temp_path[path_size - 1] == '\\' ? "" : "\\",
286 base, uniq, ext);
287 HANDLE h = CreateFile (temp_path, /* file name */
288 GENERIC_READ | GENERIC_WRITE, /* desired access */
289 0, /* no share mode */
290 NULL, /* default security attributes */
291 CREATE_NEW, /* creation disposition */
292 FILE_ATTRIBUTE_NORMAL | /* flags and attributes */
293 FILE_ATTRIBUTE_TEMPORARY, /* we'll delete it */
294 NULL); /* no template file */
296 if (h == INVALID_HANDLE_VALUE)
298 const DWORD er = GetLastError();
300 if (er == ERROR_FILE_EXISTS || er == ERROR_ALREADY_EXISTS)
301 ++uniq;
303 /* the temporary path is not guaranteed to exist */
304 else if (path_is_dot == 0)
306 path_size = GetCurrentDirectory (sizeof temp_path, temp_path);
307 path_is_dot = 1;
310 else
312 error_string = map_windows32_error_to_string (er);
313 break;
316 else
318 const unsigned final_size = path_size + size + 1;
319 char *const path = xmalloc (final_size);
320 memcpy (path, temp_path, final_size);
321 *fd = _open_osfhandle ((intptr_t)h, 0);
322 if (unixy)
324 char *p;
325 int ch;
326 for (p = path; (ch = *p) != 0; ++p)
327 if (ch == '\\')
328 *p = '/';
330 return path; /* good return */
334 *fd = -1;
335 if (error_string == NULL)
336 error_string = _("Cannot create a temporary file\n");
337 fatal (NILF, error_string);
339 /* not reached */
340 return NULL;
342 #endif /* WINDOWS32 */
344 #ifdef __EMX__
345 /* returns whether path is assumed to be a unix like shell. */
347 _is_unixy_shell (const char *path)
349 /* list of non unix shells */
350 const char *known_os2shells[] = {
351 "cmd.exe",
352 "cmd",
353 "4os2.exe",
354 "4os2",
355 "4dos.exe",
356 "4dos",
357 "command.com",
358 "command",
359 NULL
362 /* find the rightmost '/' or '\\' */
363 const char *name = strrchr (path, '/');
364 const char *p = strrchr (path, '\\');
365 unsigned i;
367 if (name && p) /* take the max */
368 name = (name > p) ? name : p;
369 else if (p) /* name must be 0 */
370 name = p;
371 else if (!name) /* name and p must be 0 */
372 name = path;
374 if (*name == '/' || *name == '\\') name++;
376 i = 0;
377 while (known_os2shells[i] != NULL) {
378 if (strcasecmp (name, known_os2shells[i]) == 0)
379 return 0; /* not a unix shell */
380 i++;
383 /* in doubt assume a unix like shell */
384 return 1;
386 #endif /* __EMX__ */
388 /* determines whether path looks to be a Bourne-like shell. */
390 is_bourne_compatible_shell (const char *path)
392 /* list of known unix (Bourne-like) shells */
393 const char *unix_shells[] = {
394 "sh",
395 "bash",
396 "ksh",
397 "rksh",
398 "zsh",
399 "ash",
400 "dash",
401 NULL
403 unsigned i, len;
405 /* find the rightmost '/' or '\\' */
406 const char *name = strrchr (path, '/');
407 char *p = strrchr (path, '\\');
409 if (name && p) /* take the max */
410 name = (name > p) ? name : p;
411 else if (p) /* name must be 0 */
412 name = p;
413 else if (!name) /* name and p must be 0 */
414 name = path;
416 if (*name == '/' || *name == '\\') name++;
418 /* this should be able to deal with extensions on Windows-like systems */
419 for (i = 0; unix_shells[i] != NULL; i++) {
420 len = strlen(unix_shells[i]);
421 #if defined(WINDOWS32) || defined(__MSDOS__)
422 if ((strncasecmp (name, unix_shells[i], len) == 0) &&
423 (strlen(name) >= len && (name[len] == '\0' || name[len] == '.')))
424 #else
425 if ((strncmp (name, unix_shells[i], len) == 0) &&
426 (strlen(name) >= len && name[len] == '\0'))
427 #endif
428 return 1; /* a known unix-style shell */
431 /* if not on the list, assume it's not a Bourne-like shell */
432 return 0;
436 /* Write an error message describing the exit status given in
437 EXIT_CODE, EXIT_SIG, and COREDUMP, for the target TARGET_NAME.
438 Append "(ignored)" if IGNORED is nonzero. */
440 static void
441 child_error (const struct file *file,
442 int exit_code, int exit_sig, int coredump, int ignored)
444 const char *nm;
445 const char *pre = "*** ";
446 const char *post = "";
447 const char *dump = "";
448 struct floc *flocp = &file->cmds->fileinfo;
450 if (ignored && silent_flag)
451 return;
453 if (exit_sig && coredump)
454 dump = _(" (core dumped)");
456 if (ignored)
458 pre = "";
459 post = _(" (ignored)");
462 if (! flocp->filenm)
463 nm = _("<builtin>");
464 else
466 char *a = alloca (strlen (flocp->filenm) + 1 + 11 + 1);
467 sprintf (a, "%s:%lu", flocp->filenm, flocp->lineno);
468 nm = a;
470 message (0, _("%s: recipe for target `%s' failed"), nm, file->name);
472 #ifdef VMS
473 if (!(exit_code & 1))
474 error (NILF, _("%s[%s] Error 0x%x%s"), pre, file->name, exit_code, post);
475 #else
476 if (exit_sig == 0)
477 error (NILF, _("%s[%s] Error %d%s"), pre, file->name, exit_code, post);
478 else
479 error (NILF, _("%s[%s] %s%s%s"),
480 pre, file->name, strsignal (exit_sig), dump, post);
481 #endif /* VMS */
485 /* Handle a dead child. This handler may or may not ever be installed.
487 If we're using the jobserver feature, we need it. First, installing it
488 ensures the read will interrupt on SIGCHLD. Second, we close the dup'd
489 read FD to ensure we don't enter another blocking read without reaping all
490 the dead children. In this case we don't need the dead_children count.
492 If we don't have either waitpid or wait3, then make is unreliable, but we
493 use the dead_children count to reap children as best we can. */
495 static unsigned int dead_children = 0;
497 RETSIGTYPE
498 child_handler (int sig UNUSED)
500 ++dead_children;
502 if (job_rfd >= 0)
504 close (job_rfd);
505 job_rfd = -1;
508 #ifdef __EMX__
509 /* The signal handler must called only once! */
510 signal (SIGCHLD, SIG_DFL);
511 #endif
513 /* This causes problems if the SIGCHLD interrupts a printf().
514 DB (DB_JOBS, (_("Got a SIGCHLD; %u unreaped children.\n"), dead_children));
518 extern int shell_function_pid, shell_function_completed;
520 /* Reap all dead children, storing the returned status and the new command
521 state (`cs_finished') in the `file' member of the `struct child' for the
522 dead child, and removing the child from the chain. In addition, if BLOCK
523 nonzero, we block in this function until we've reaped at least one
524 complete child, waiting for it to die if necessary. If ERR is nonzero,
525 print an error message first. */
527 void
528 reap_children (int block, int err)
530 #ifndef WINDOWS32
531 WAIT_T status;
532 #endif
533 /* Initially, assume we have some. */
534 int reap_more = 1;
536 #ifdef WAIT_NOHANG
537 # define REAP_MORE reap_more
538 #else
539 # define REAP_MORE dead_children
540 #endif
542 /* As long as:
544 We have at least one child outstanding OR a shell function in progress,
546 We're blocking for a complete child OR there are more children to reap
548 we'll keep reaping children. */
550 while ((children != 0 || shell_function_pid != 0)
551 && (block || REAP_MORE))
553 int remote = 0;
554 pid_t pid;
555 int exit_code, exit_sig, coredump;
556 struct child *lastc, *c;
557 int child_failed;
558 int any_remote, any_local;
559 int dontcare;
561 if (err && block)
563 static int printed = 0;
565 /* We might block for a while, so let the user know why.
566 Only print this message once no matter how many jobs are left. */
567 fflush (stdout);
568 if (!printed)
569 error (NILF, _("*** Waiting for unfinished jobs...."));
570 printed = 1;
573 /* We have one less dead child to reap. As noted in
574 child_handler() above, this count is completely unimportant for
575 all modern, POSIX-y systems that support wait3() or waitpid().
576 The rest of this comment below applies only to early, broken
577 pre-POSIX systems. We keep the count only because... it's there...
579 The test and decrement are not atomic; if it is compiled into:
580 register = dead_children - 1;
581 dead_children = register;
582 a SIGCHLD could come between the two instructions.
583 child_handler increments dead_children.
584 The second instruction here would lose that increment. But the
585 only effect of dead_children being wrong is that we might wait
586 longer than necessary to reap a child, and lose some parallelism;
587 and we might print the "Waiting for unfinished jobs" message above
588 when not necessary. */
590 if (dead_children > 0)
591 --dead_children;
593 any_remote = 0;
594 any_local = shell_function_pid != 0;
595 for (c = children; c != 0; c = c->next)
597 any_remote |= c->remote;
598 any_local |= ! c->remote;
599 DB (DB_JOBS, (_("Live child %p (%s) PID %s %s\n"),
600 c, c->file->name, pid2str (c->pid),
601 c->remote ? _(" (remote)") : ""));
602 #ifdef VMS
603 break;
604 #endif
607 /* First, check for remote children. */
608 if (any_remote)
609 pid = remote_status (&exit_code, &exit_sig, &coredump, 0);
610 else
611 pid = 0;
613 if (pid > 0)
614 /* We got a remote child. */
615 remote = 1;
616 else if (pid < 0)
618 /* A remote status command failed miserably. Punt. */
619 remote_status_lose:
620 pfatal_with_name ("remote_status");
622 else
624 /* No remote children. Check for local children. */
625 #if !defined(__MSDOS__) && !defined(_AMIGA) && !defined(WINDOWS32)
626 if (any_local)
628 #ifdef VMS
629 vmsWaitForChildren (&status);
630 pid = c->pid;
631 #else
632 #ifdef WAIT_NOHANG
633 if (!block)
634 pid = WAIT_NOHANG (&status);
635 else
636 #endif
637 EINTRLOOP(pid, wait (&status));
638 #endif /* !VMS */
640 else
641 pid = 0;
643 if (pid < 0)
645 /* The wait*() failed miserably. Punt. */
646 pfatal_with_name ("wait");
648 else if (pid > 0)
650 /* We got a child exit; chop the status word up. */
651 exit_code = WEXITSTATUS (status);
652 exit_sig = WIFSIGNALED (status) ? WTERMSIG (status) : 0;
653 coredump = WCOREDUMP (status);
655 /* If we have started jobs in this second, remove one. */
656 if (job_counter)
657 --job_counter;
659 else
661 /* No local children are dead. */
662 reap_more = 0;
664 if (!block || !any_remote)
665 break;
667 /* Now try a blocking wait for a remote child. */
668 pid = remote_status (&exit_code, &exit_sig, &coredump, 1);
669 if (pid < 0)
670 goto remote_status_lose;
671 else if (pid == 0)
672 /* No remote children either. Finally give up. */
673 break;
675 /* We got a remote child. */
676 remote = 1;
678 #endif /* !__MSDOS__, !Amiga, !WINDOWS32. */
680 #ifdef __MSDOS__
681 /* Life is very different on MSDOS. */
682 pid = dos_pid - 1;
683 status = dos_status;
684 exit_code = WEXITSTATUS (status);
685 if (exit_code == 0xff)
686 exit_code = -1;
687 exit_sig = WIFSIGNALED (status) ? WTERMSIG (status) : 0;
688 coredump = 0;
689 #endif /* __MSDOS__ */
690 #ifdef _AMIGA
691 /* Same on Amiga */
692 pid = amiga_pid - 1;
693 status = amiga_status;
694 exit_code = amiga_status;
695 exit_sig = 0;
696 coredump = 0;
697 #endif /* _AMIGA */
698 #ifdef WINDOWS32
700 HANDLE hPID;
701 int werr;
702 HANDLE hcTID, hcPID;
703 DWORD dwWaitStatus = 0;
704 exit_code = 0;
705 exit_sig = 0;
706 coredump = 0;
708 /* Record the thread ID of the main process, so that we
709 could suspend it in the signal handler. */
710 if (!main_thread)
712 hcTID = GetCurrentThread ();
713 hcPID = GetCurrentProcess ();
714 if (!DuplicateHandle (hcPID, hcTID, hcPID, &main_thread, 0,
715 FALSE, DUPLICATE_SAME_ACCESS))
717 DWORD e = GetLastError ();
718 fprintf (stderr,
719 "Determine main thread ID (Error %ld: %s)\n",
720 e, map_windows32_error_to_string(e));
722 else
723 DB (DB_VERBOSE, ("Main thread handle = %p\n", main_thread));
726 /* wait for anything to finish */
727 hPID = process_wait_for_any(block, &dwWaitStatus);
728 if (hPID)
731 /* was an error found on this process? */
732 werr = process_last_err(hPID);
734 /* get exit data */
735 exit_code = process_exit_code(hPID);
737 if (werr)
738 fprintf(stderr, "make (e=%d): %s",
739 exit_code, map_windows32_error_to_string(exit_code));
741 /* signal */
742 exit_sig = process_signal(hPID);
744 /* cleanup process */
745 process_cleanup(hPID);
747 coredump = 0;
749 else if (dwWaitStatus == WAIT_FAILED)
751 /* The WaitForMultipleObjects() failed miserably. Punt. */
752 pfatal_with_name ("WaitForMultipleObjects");
754 else if (dwWaitStatus == WAIT_TIMEOUT)
756 /* No child processes are finished. Give up waiting. */
757 reap_more = 0;
758 break;
761 pid = (pid_t) hPID;
763 #endif /* WINDOWS32 */
766 /* Check if this is the child of the `shell' function. */
767 if (!remote && pid == shell_function_pid)
769 /* It is. Leave an indicator for the `shell' function. */
770 if (exit_sig == 0 && exit_code == 127)
771 shell_function_completed = -1;
772 else
773 shell_function_completed = 1;
774 break;
777 child_failed = exit_sig != 0 || exit_code != 0;
779 /* Search for a child matching the deceased one. */
780 lastc = 0;
781 for (c = children; c != 0; lastc = c, c = c->next)
782 if (c->remote == remote && c->pid == pid)
783 break;
785 if (c == 0)
786 /* An unknown child died.
787 Ignore it; it was inherited from our invoker. */
788 continue;
790 DB (DB_JOBS, (child_failed
791 ? _("Reaping losing child %p PID %s %s\n")
792 : _("Reaping winning child %p PID %s %s\n"),
793 c, pid2str (c->pid), c->remote ? _(" (remote)") : ""));
795 if (c->sh_batch_file) {
796 DB (DB_JOBS, (_("Cleaning up temp batch file %s\n"),
797 c->sh_batch_file));
799 /* just try and remove, don't care if this fails */
800 remove (c->sh_batch_file);
802 /* all done with memory */
803 free (c->sh_batch_file);
804 c->sh_batch_file = NULL;
807 /* If this child had the good stdin, say it is now free. */
808 if (c->good_stdin)
809 good_stdin_used = 0;
811 dontcare = c->dontcare;
813 if (child_failed && !c->noerror && !ignore_errors_flag)
815 /* The commands failed. Write an error message,
816 delete non-precious targets, and abort. */
817 static int delete_on_error = -1;
819 if (!dontcare)
820 child_error (c->file, exit_code, exit_sig, coredump, 0);
822 c->file->update_status = 2;
823 if (delete_on_error == -1)
825 struct file *f = lookup_file (".DELETE_ON_ERROR");
826 delete_on_error = f != 0 && f->is_target;
828 if (exit_sig != 0 || delete_on_error)
829 delete_child_targets (c);
831 else
833 if (child_failed)
835 /* The commands failed, but we don't care. */
836 child_error (c->file, exit_code, exit_sig, coredump, 1);
837 child_failed = 0;
840 /* If there are more commands to run, try to start them. */
841 if (job_next_command (c))
843 if (handling_fatal_signal)
845 /* Never start new commands while we are dying.
846 Since there are more commands that wanted to be run,
847 the target was not completely remade. So we treat
848 this as if a command had failed. */
849 c->file->update_status = 2;
851 else
853 /* Check again whether to start remotely.
854 Whether or not we want to changes over time.
855 Also, start_remote_job may need state set up
856 by start_remote_job_p. */
857 c->remote = start_remote_job_p (0);
858 start_job_command (c);
859 /* Fatal signals are left blocked in case we were
860 about to put that child on the chain. But it is
861 already there, so it is safe for a fatal signal to
862 arrive now; it will clean up this child's targets. */
863 unblock_sigs ();
864 if (c->file->command_state == cs_running)
865 /* We successfully started the new command.
866 Loop to reap more children. */
867 continue;
870 if (c->file->update_status != 0)
871 /* We failed to start the commands. */
872 delete_child_targets (c);
874 else
875 /* There are no more commands. We got through them all
876 without an unignored error. Now the target has been
877 successfully updated. */
878 c->file->update_status = 0;
881 /* When we get here, all the commands for C->file are finished
882 (or aborted) and C->file->update_status contains 0 or 2. But
883 C->file->command_state is still cs_running if all the commands
884 ran; notice_finish_file looks for cs_running to tell it that
885 it's interesting to check the file's modtime again now. */
887 if (! handling_fatal_signal)
888 /* Notice if the target of the commands has been changed.
889 This also propagates its values for command_state and
890 update_status to its also_make files. */
891 notice_finished_file (c->file);
893 DB (DB_JOBS, (_("Removing child %p PID %s%s from chain.\n"),
894 c, pid2str (c->pid), c->remote ? _(" (remote)") : ""));
896 /* Block fatal signals while frobnicating the list, so that
897 children and job_slots_used are always consistent. Otherwise
898 a fatal signal arriving after the child is off the chain and
899 before job_slots_used is decremented would believe a child was
900 live and call reap_children again. */
901 block_sigs ();
903 /* There is now another slot open. */
904 if (job_slots_used > 0)
905 --job_slots_used;
907 /* Remove the child from the chain and free it. */
908 if (lastc == 0)
909 children = c->next;
910 else
911 lastc->next = c->next;
913 free_child (c);
915 unblock_sigs ();
917 /* If the job failed, and the -k flag was not given, die,
918 unless we are already in the process of dying. */
919 if (!err && child_failed && !dontcare && !keep_going_flag &&
920 /* fatal_error_signal will die with the right signal. */
921 !handling_fatal_signal)
922 die (2);
924 /* Only block for one child. */
925 block = 0;
928 return;
931 /* Free the storage allocated for CHILD. */
933 static void
934 free_child (struct child *child)
936 if (!jobserver_tokens)
937 fatal (NILF, "INTERNAL: Freeing child %p (%s) but no tokens left!\n",
938 child, child->file->name);
940 /* If we're using the jobserver and this child is not the only outstanding
941 job, put a token back into the pipe for it. */
943 #ifdef WINDOWS32
944 if (has_jobserver_semaphore() && jobserver_tokens > 1)
946 if (! release_jobserver_semaphore())
948 DWORD err = GetLastError();
949 fatal (NILF,_("release jobserver semaphore: (Error %d: %s)"),
950 err, map_windows32_error_to_string(err));
953 DB (DB_JOBS, (_("Released token for child %p (%s).\n"), child, child->file->name));
955 #else
956 if (job_fds[1] >= 0 && jobserver_tokens > 1)
958 char token = '+';
959 int r;
961 /* Write a job token back to the pipe. */
963 EINTRLOOP (r, write (job_fds[1], &token, 1));
964 if (r != 1)
965 pfatal_with_name (_("write jobserver"));
967 DB (DB_JOBS, (_("Released token for child %p (%s).\n"),
968 child, child->file->name));
970 #endif
972 --jobserver_tokens;
974 if (handling_fatal_signal) /* Don't bother free'ing if about to die. */
975 return;
977 if (child->command_lines != 0)
979 register unsigned int i;
980 for (i = 0; i < child->file->cmds->ncommand_lines; ++i)
981 free (child->command_lines[i]);
982 free (child->command_lines);
985 if (child->environment != 0)
987 register char **ep = child->environment;
988 while (*ep != 0)
989 free (*ep++);
990 free (child->environment);
993 free (child);
996 #ifdef POSIX
997 extern sigset_t fatal_signal_set;
998 #endif
1000 void
1001 block_sigs (void)
1003 #ifdef POSIX
1004 (void) sigprocmask (SIG_BLOCK, &fatal_signal_set, (sigset_t *) 0);
1005 #else
1006 # ifdef HAVE_SIGSETMASK
1007 (void) sigblock (fatal_signal_mask);
1008 # endif
1009 #endif
1012 #ifdef POSIX
1013 void
1014 unblock_sigs (void)
1016 sigset_t empty;
1017 sigemptyset (&empty);
1018 sigprocmask (SIG_SETMASK, &empty, (sigset_t *) 0);
1020 #endif
1022 #if defined(MAKE_JOBSERVER) && !defined(WINDOWS32)
1023 RETSIGTYPE
1024 job_noop (int sig UNUSED)
1027 /* Set the child handler action flags to FLAGS. */
1028 static void
1029 set_child_handler_action_flags (int set_handler, int set_alarm)
1031 struct sigaction sa;
1033 #ifdef __EMX__
1034 /* The child handler must be turned off here. */
1035 signal (SIGCHLD, SIG_DFL);
1036 #endif
1038 memset (&sa, '\0', sizeof sa);
1039 sa.sa_handler = child_handler;
1040 sa.sa_flags = set_handler ? 0 : SA_RESTART;
1041 #if defined SIGCHLD
1042 sigaction (SIGCHLD, &sa, NULL);
1043 #endif
1044 #if defined SIGCLD && SIGCLD != SIGCHLD
1045 sigaction (SIGCLD, &sa, NULL);
1046 #endif
1047 #if defined SIGALRM
1048 if (set_alarm)
1050 /* If we're about to enter the read(), set an alarm to wake up in a
1051 second so we can check if the load has dropped and we can start more
1052 work. On the way out, turn off the alarm and set SIG_DFL. */
1053 alarm (set_handler ? 1 : 0);
1054 sa.sa_handler = set_handler ? job_noop : SIG_DFL;
1055 sa.sa_flags = 0;
1056 sigaction (SIGALRM, &sa, NULL);
1058 #endif
1060 #endif
1063 /* Start a job to run the commands specified in CHILD.
1064 CHILD is updated to reflect the commands and ID of the child process.
1066 NOTE: On return fatal signals are blocked! The caller is responsible
1067 for calling `unblock_sigs', once the new child is safely on the chain so
1068 it can be cleaned up in the event of a fatal signal. */
1070 static void
1071 start_job_command (struct child *child)
1073 #if !defined(_AMIGA) && !defined(WINDOWS32)
1074 static int bad_stdin = -1;
1075 #endif
1076 char *p;
1077 /* Must be volatile to silence bogus GCC warning about longjmp/vfork. */
1078 volatile int flags;
1079 #ifdef VMS
1080 char *argv;
1081 #else
1082 char **argv;
1083 #endif
1085 /* If we have a completely empty commandset, stop now. */
1086 if (!child->command_ptr)
1087 goto next_command;
1089 /* Combine the flags parsed for the line itself with
1090 the flags specified globally for this target. */
1091 flags = (child->file->command_flags
1092 | child->file->cmds->lines_flags[child->command_line - 1]);
1094 p = child->command_ptr;
1095 child->noerror = ((flags & COMMANDS_NOERROR) != 0);
1097 while (*p != '\0')
1099 if (*p == '@')
1100 flags |= COMMANDS_SILENT;
1101 else if (*p == '+')
1102 flags |= COMMANDS_RECURSE;
1103 else if (*p == '-')
1104 child->noerror = 1;
1105 else if (!isblank ((unsigned char)*p))
1106 break;
1107 ++p;
1110 /* Update the file's command flags with any new ones we found. We only
1111 keep the COMMANDS_RECURSE setting. Even this isn't 100% correct; we are
1112 now marking more commands recursive than should be in the case of
1113 multiline define/endef scripts where only one line is marked "+". In
1114 order to really fix this, we'll have to keep a lines_flags for every
1115 actual line, after expansion. */
1116 child->file->cmds->lines_flags[child->command_line - 1]
1117 |= flags & COMMANDS_RECURSE;
1119 /* POSIX requires that a recipe prefix after a backslash-newline should
1120 be ignored. Remove it now so the output is correct. */
1122 char prefix = child->file->cmds->recipe_prefix;
1123 char *p1, *p2;
1124 p1 = p2 = p;
1125 while (*p1 != '\0')
1127 *(p2++) = *p1;
1128 if (p1[0] == '\n' && p1[1] == prefix)
1129 ++p1;
1130 ++p1;
1132 *p2 = *p1;
1135 /* Figure out an argument list from this command line. */
1137 char *end = 0;
1138 #ifdef VMS
1139 argv = p;
1140 #else
1141 argv = construct_command_argv (p, &end, child->file,
1142 child->file->cmds->lines_flags[child->command_line - 1],
1143 &child->sh_batch_file);
1144 #endif
1145 if (end == NULL)
1146 child->command_ptr = NULL;
1147 else
1149 *end++ = '\0';
1150 child->command_ptr = end;
1154 /* If -q was given, say that updating `failed' if there was any text on the
1155 command line, or `succeeded' otherwise. The exit status of 1 tells the
1156 user that -q is saying `something to do'; the exit status for a random
1157 error is 2. */
1158 if (argv != 0 && question_flag && !(flags & COMMANDS_RECURSE))
1160 #ifndef VMS
1161 free (argv[0]);
1162 free (argv);
1163 #endif
1164 child->file->update_status = 1;
1165 notice_finished_file (child->file);
1166 return;
1169 if (touch_flag && !(flags & COMMANDS_RECURSE))
1171 /* Go on to the next command. It might be the recursive one.
1172 We construct ARGV only to find the end of the command line. */
1173 #ifndef VMS
1174 if (argv)
1176 free (argv[0]);
1177 free (argv);
1179 #endif
1180 argv = 0;
1183 if (argv == 0)
1185 next_command:
1186 #ifdef __MSDOS__
1187 execute_by_shell = 0; /* in case construct_command_argv sets it */
1188 #endif
1189 /* This line has no commands. Go to the next. */
1190 if (job_next_command (child))
1191 start_job_command (child);
1192 else
1194 /* No more commands. Make sure we're "running"; we might not be if
1195 (e.g.) all commands were skipped due to -n. */
1196 set_command_state (child->file, cs_running);
1197 child->file->update_status = 0;
1198 notice_finished_file (child->file);
1200 return;
1203 /* Print out the command. If silent, we call `message' with null so it
1204 can log the working directory before the command's own error messages
1205 appear. */
1207 message (0, (just_print_flag || trace_flag
1208 || (!(flags & COMMANDS_SILENT) && !silent_flag))
1209 ? "%s" : (char *) 0, p);
1211 /* Tell update_goal_chain that a command has been started on behalf of
1212 this target. It is important that this happens here and not in
1213 reap_children (where we used to do it), because reap_children might be
1214 reaping children from a different target. We want this increment to
1215 guaranteedly indicate that a command was started for the dependency
1216 chain (i.e., update_file recursion chain) we are processing. */
1218 ++commands_started;
1220 /* Optimize an empty command. People use this for timestamp rules,
1221 so avoid forking a useless shell. Do this after we increment
1222 commands_started so make still treats this special case as if it
1223 performed some action (makes a difference as to what messages are
1224 printed, etc. */
1226 #if !defined(VMS) && !defined(_AMIGA)
1227 if (
1228 #if defined __MSDOS__ || defined (__EMX__)
1229 unixy_shell /* the test is complicated and we already did it */
1230 #else
1231 (argv[0] && is_bourne_compatible_shell(argv[0]))
1232 #endif
1233 && (argv[1] && argv[1][0] == '-'
1235 ((argv[1][1] == 'c' && argv[1][2] == '\0')
1237 (argv[1][1] == 'e' && argv[1][2] == 'c' && argv[1][3] == '\0')))
1238 && (argv[2] && argv[2][0] == ':' && argv[2][1] == '\0')
1239 && argv[3] == NULL)
1241 free (argv[0]);
1242 free (argv);
1243 goto next_command;
1245 #endif /* !VMS && !_AMIGA */
1247 /* If -n was given, recurse to get the next line in the sequence. */
1249 if (just_print_flag && !(flags & COMMANDS_RECURSE))
1251 #ifndef VMS
1252 free (argv[0]);
1253 free (argv);
1254 #endif
1255 goto next_command;
1258 /* Flush the output streams so they won't have things written twice. */
1260 fflush (stdout);
1261 fflush (stderr);
1263 #ifndef VMS
1264 #if !defined(WINDOWS32) && !defined(_AMIGA) && !defined(__MSDOS__)
1266 /* Set up a bad standard input that reads from a broken pipe. */
1268 if (bad_stdin == -1)
1270 /* Make a file descriptor that is the read end of a broken pipe.
1271 This will be used for some children's standard inputs. */
1272 int pd[2];
1273 if (pipe (pd) == 0)
1275 /* Close the write side. */
1276 (void) close (pd[1]);
1277 /* Save the read side. */
1278 bad_stdin = pd[0];
1280 /* Set the descriptor to close on exec, so it does not litter any
1281 child's descriptor table. When it is dup2'd onto descriptor 0,
1282 that descriptor will not close on exec. */
1283 CLOSE_ON_EXEC (bad_stdin);
1287 #endif /* !WINDOWS32 && !_AMIGA && !__MSDOS__ */
1289 /* Decide whether to give this child the `good' standard input
1290 (one that points to the terminal or whatever), or the `bad' one
1291 that points to the read side of a broken pipe. */
1293 child->good_stdin = !good_stdin_used;
1294 if (child->good_stdin)
1295 good_stdin_used = 1;
1297 #endif /* !VMS */
1299 child->deleted = 0;
1301 #ifndef _AMIGA
1302 /* Set up the environment for the child. */
1303 if (child->environment == 0)
1304 child->environment = target_environment (child->file);
1305 #endif
1307 #if !defined(__MSDOS__) && !defined(_AMIGA) && !defined(WINDOWS32)
1309 #ifndef VMS
1310 /* start_waiting_job has set CHILD->remote if we can start a remote job. */
1311 if (child->remote)
1313 int is_remote, id, used_stdin;
1314 if (start_remote_job (argv, child->environment,
1315 child->good_stdin ? 0 : bad_stdin,
1316 &is_remote, &id, &used_stdin))
1317 /* Don't give up; remote execution may fail for various reasons. If
1318 so, simply run the job locally. */
1319 goto run_local;
1320 else
1322 if (child->good_stdin && !used_stdin)
1324 child->good_stdin = 0;
1325 good_stdin_used = 0;
1327 child->remote = is_remote;
1328 child->pid = id;
1331 else
1332 #endif /* !VMS */
1334 /* Fork the child process. */
1336 char **parent_environ;
1338 run_local:
1339 block_sigs ();
1341 child->remote = 0;
1343 #ifdef VMS
1344 if (!child_execute_job (argv, child)) {
1345 /* Fork failed! */
1346 perror_with_name ("vfork", "");
1347 goto error;
1350 #else
1352 parent_environ = environ;
1354 # ifdef __EMX__
1355 /* If we aren't running a recursive command and we have a jobserver
1356 pipe, close it before exec'ing. */
1357 if (!(flags & COMMANDS_RECURSE) && job_fds[0] >= 0)
1359 CLOSE_ON_EXEC (job_fds[0]);
1360 CLOSE_ON_EXEC (job_fds[1]);
1362 if (job_rfd >= 0)
1363 CLOSE_ON_EXEC (job_rfd);
1365 /* Never use fork()/exec() here! Use spawn() instead in exec_command() */
1366 child->pid = child_execute_job (child->good_stdin ? 0 : bad_stdin, 1,
1367 argv, child->environment);
1368 if (child->pid < 0)
1370 /* spawn failed! */
1371 unblock_sigs ();
1372 perror_with_name ("spawn", "");
1373 goto error;
1376 /* undo CLOSE_ON_EXEC() after the child process has been started */
1377 if (!(flags & COMMANDS_RECURSE) && job_fds[0] >= 0)
1379 fcntl (job_fds[0], F_SETFD, 0);
1380 fcntl (job_fds[1], F_SETFD, 0);
1382 if (job_rfd >= 0)
1383 fcntl (job_rfd, F_SETFD, 0);
1385 #else /* !__EMX__ */
1387 child->pid = vfork ();
1388 environ = parent_environ; /* Restore value child may have clobbered. */
1389 if (child->pid == 0)
1391 /* We are the child side. */
1392 unblock_sigs ();
1394 /* If we aren't running a recursive command and we have a jobserver
1395 pipe, close it before exec'ing. */
1396 if (!(flags & COMMANDS_RECURSE) && job_fds[0] >= 0)
1398 close (job_fds[0]);
1399 close (job_fds[1]);
1401 if (job_rfd >= 0)
1402 close (job_rfd);
1404 #ifdef SET_STACK_SIZE
1405 /* Reset limits, if necessary. */
1406 if (stack_limit.rlim_cur)
1407 setrlimit (RLIMIT_STACK, &stack_limit);
1408 #endif
1410 child_execute_job (child->good_stdin ? 0 : bad_stdin, 1,
1411 argv, child->environment);
1413 else if (child->pid < 0)
1415 /* Fork failed! */
1416 unblock_sigs ();
1417 perror_with_name ("vfork", "");
1418 goto error;
1420 # endif /* !__EMX__ */
1421 #endif /* !VMS */
1424 #else /* __MSDOS__ or Amiga or WINDOWS32 */
1425 #ifdef __MSDOS__
1427 int proc_return;
1429 block_sigs ();
1430 dos_status = 0;
1432 /* We call `system' to do the job of the SHELL, since stock DOS
1433 shell is too dumb. Our `system' knows how to handle long
1434 command lines even if pipes/redirection is needed; it will only
1435 call COMMAND.COM when its internal commands are used. */
1436 if (execute_by_shell)
1438 char *cmdline = argv[0];
1439 /* We don't have a way to pass environment to `system',
1440 so we need to save and restore ours, sigh... */
1441 char **parent_environ = environ;
1443 environ = child->environment;
1445 /* If we have a *real* shell, tell `system' to call
1446 it to do everything for us. */
1447 if (unixy_shell)
1449 /* A *real* shell on MSDOS may not support long
1450 command lines the DJGPP way, so we must use `system'. */
1451 cmdline = argv[2]; /* get past "shell -c" */
1454 dos_command_running = 1;
1455 proc_return = system (cmdline);
1456 environ = parent_environ;
1457 execute_by_shell = 0; /* for the next time */
1459 else
1461 dos_command_running = 1;
1462 proc_return = spawnvpe (P_WAIT, argv[0], argv, child->environment);
1465 /* Need to unblock signals before turning off
1466 dos_command_running, so that child's signals
1467 will be treated as such (see fatal_error_signal). */
1468 unblock_sigs ();
1469 dos_command_running = 0;
1471 /* If the child got a signal, dos_status has its
1472 high 8 bits set, so be careful not to alter them. */
1473 if (proc_return == -1)
1474 dos_status |= 0xff;
1475 else
1476 dos_status |= (proc_return & 0xff);
1477 ++dead_children;
1478 child->pid = dos_pid++;
1480 #endif /* __MSDOS__ */
1481 #ifdef _AMIGA
1482 amiga_status = MyExecute (argv);
1484 ++dead_children;
1485 child->pid = amiga_pid++;
1486 if (amiga_batch_file)
1488 amiga_batch_file = 0;
1489 DeleteFile (amiga_bname); /* Ignore errors. */
1491 #endif /* Amiga */
1492 #ifdef WINDOWS32
1494 HANDLE hPID;
1495 char* arg0;
1497 /* make UNC paths safe for CreateProcess -- backslash format */
1498 arg0 = argv[0];
1499 if (arg0 && arg0[0] == '/' && arg0[1] == '/')
1500 for ( ; arg0 && *arg0; arg0++)
1501 if (*arg0 == '/')
1502 *arg0 = '\\';
1504 /* make sure CreateProcess() has Path it needs */
1505 sync_Path_environment();
1507 hPID = process_easy(argv, child->environment);
1509 if (hPID != INVALID_HANDLE_VALUE)
1510 child->pid = (pid_t) hPID;
1511 else {
1512 int i;
1513 unblock_sigs();
1514 fprintf(stderr,
1515 _("process_easy() failed to launch process (e=%ld)\n"),
1516 process_last_err(hPID));
1517 for (i = 0; argv[i]; i++)
1518 fprintf(stderr, "%s ", argv[i]);
1519 fprintf(stderr, _("\nCounted %d args in failed launch\n"), i);
1520 goto error;
1523 #endif /* WINDOWS32 */
1524 #endif /* __MSDOS__ or Amiga or WINDOWS32 */
1526 /* Bump the number of jobs started in this second. */
1527 ++job_counter;
1529 /* We are the parent side. Set the state to
1530 say the commands are running and return. */
1532 set_command_state (child->file, cs_running);
1534 /* Free the storage used by the child's argument list. */
1535 #ifndef VMS
1536 free (argv[0]);
1537 free (argv);
1538 #endif
1540 return;
1542 error:
1543 child->file->update_status = 2;
1544 notice_finished_file (child->file);
1545 return;
1548 /* Try to start a child running.
1549 Returns nonzero if the child was started (and maybe finished), or zero if
1550 the load was too high and the child was put on the `waiting_jobs' chain. */
1552 static int
1553 start_waiting_job (struct child *c)
1555 struct file *f = c->file;
1557 /* If we can start a job remotely, we always want to, and don't care about
1558 the local load average. We record that the job should be started
1559 remotely in C->remote for start_job_command to test. */
1561 c->remote = start_remote_job_p (1);
1563 /* If we are running at least one job already and the load average
1564 is too high, make this one wait. */
1565 if (!c->remote
1566 && ((job_slots_used > 0 && load_too_high ())
1567 #ifdef WINDOWS32
1568 || (process_used_slots () >= MAXIMUM_WAIT_OBJECTS)
1569 #endif
1572 /* Put this child on the chain of children waiting for the load average
1573 to go down. */
1574 set_command_state (f, cs_running);
1575 c->next = waiting_jobs;
1576 waiting_jobs = c;
1577 return 0;
1580 /* Start the first command; reap_children will run later command lines. */
1581 start_job_command (c);
1583 switch (f->command_state)
1585 case cs_running:
1586 c->next = children;
1587 DB (DB_JOBS, (_("Putting child %p (%s) PID %s%s on the chain.\n"),
1588 c, c->file->name, pid2str (c->pid),
1589 c->remote ? _(" (remote)") : ""));
1590 children = c;
1591 /* One more job slot is in use. */
1592 ++job_slots_used;
1593 unblock_sigs ();
1594 break;
1596 case cs_not_started:
1597 /* All the command lines turned out to be empty. */
1598 f->update_status = 0;
1599 /* FALLTHROUGH */
1601 case cs_finished:
1602 notice_finished_file (f);
1603 free_child (c);
1604 break;
1606 default:
1607 assert (f->command_state == cs_finished);
1608 break;
1611 return 1;
1614 /* Create a `struct child' for FILE and start its commands running. */
1616 void
1617 new_job (struct file *file)
1619 struct commands *cmds = file->cmds;
1620 struct child *c;
1621 char **lines;
1622 unsigned int i;
1624 /* Let any previously decided-upon jobs that are waiting
1625 for the load to go down start before this new one. */
1626 start_waiting_jobs ();
1628 /* Reap any children that might have finished recently. */
1629 reap_children (0, 0);
1631 /* Chop the commands up into lines if they aren't already. */
1632 chop_commands (cmds);
1634 /* Expand the command lines and store the results in LINES. */
1635 lines = xmalloc (cmds->ncommand_lines * sizeof (char *));
1636 for (i = 0; i < cmds->ncommand_lines; ++i)
1638 /* Collapse backslash-newline combinations that are inside variable
1639 or function references. These are left alone by the parser so
1640 that they will appear in the echoing of commands (where they look
1641 nice); and collapsed by construct_command_argv when it tokenizes.
1642 But letting them survive inside function invocations loses because
1643 we don't want the functions to see them as part of the text. */
1645 char *in, *out, *ref;
1647 /* IN points to where in the line we are scanning.
1648 OUT points to where in the line we are writing.
1649 When we collapse a backslash-newline combination,
1650 IN gets ahead of OUT. */
1652 in = out = cmds->command_lines[i];
1653 while ((ref = strchr (in, '$')) != 0)
1655 ++ref; /* Move past the $. */
1657 if (out != in)
1658 /* Copy the text between the end of the last chunk
1659 we processed (where IN points) and the new chunk
1660 we are about to process (where REF points). */
1661 memmove (out, in, ref - in);
1663 /* Move both pointers past the boring stuff. */
1664 out += ref - in;
1665 in = ref;
1667 if (*ref == '(' || *ref == '{')
1669 char openparen = *ref;
1670 char closeparen = openparen == '(' ? ')' : '}';
1671 int count;
1672 char *p;
1674 *out++ = *in++; /* Copy OPENPAREN. */
1675 /* IN now points past the opening paren or brace.
1676 Count parens or braces until it is matched. */
1677 count = 0;
1678 while (*in != '\0')
1680 if (*in == closeparen && --count < 0)
1681 break;
1682 else if (*in == '\\' && in[1] == '\n')
1684 /* We have found a backslash-newline inside a
1685 variable or function reference. Eat it and
1686 any following whitespace. */
1688 int quoted = 0;
1689 for (p = in - 1; p > ref && *p == '\\'; --p)
1690 quoted = !quoted;
1692 if (quoted)
1693 /* There were two or more backslashes, so this is
1694 not really a continuation line. We don't collapse
1695 the quoting backslashes here as is done in
1696 collapse_continuations, because the line will
1697 be collapsed again after expansion. */
1698 *out++ = *in++;
1699 else
1701 /* Skip the backslash, newline and
1702 any following whitespace. */
1703 in = next_token (in + 2);
1705 /* Discard any preceding whitespace that has
1706 already been written to the output. */
1707 while (out > ref
1708 && isblank ((unsigned char)out[-1]))
1709 --out;
1711 /* Replace it all with a single space. */
1712 *out++ = ' ';
1715 else
1717 if (*in == openparen)
1718 ++count;
1720 *out++ = *in++;
1726 /* There are no more references in this line to worry about.
1727 Copy the remaining uninteresting text to the output. */
1728 if (out != in)
1729 memmove (out, in, strlen (in) + 1);
1731 /* Finally, expand the line. */
1732 lines[i] = allocated_variable_expand_for_file (cmds->command_lines[i],
1733 file);
1736 /* Start the command sequence, record it in a new
1737 `struct child', and add that to the chain. */
1739 c = xcalloc (sizeof (struct child));
1740 c->file = file;
1741 c->command_lines = lines;
1742 c->sh_batch_file = NULL;
1744 /* Cache dontcare flag because file->dontcare can be changed once we
1745 return. Check dontcare inheritance mechanism for details. */
1746 c->dontcare = file->dontcare;
1748 /* Fetch the first command line to be run. */
1749 job_next_command (c);
1751 /* Wait for a job slot to be freed up. If we allow an infinite number
1752 don't bother; also job_slots will == 0 if we're using the jobserver. */
1754 if (job_slots != 0)
1755 while (job_slots_used == job_slots)
1756 reap_children (1, 0);
1758 #ifdef MAKE_JOBSERVER
1759 /* If we are controlling multiple jobs make sure we have a token before
1760 starting the child. */
1762 /* This can be inefficient. There's a decent chance that this job won't
1763 actually have to run any subprocesses: the command script may be empty
1764 or otherwise optimized away. It would be nice if we could defer
1765 obtaining a token until just before we need it, in start_job_command.
1766 To do that we'd need to keep track of whether we'd already obtained a
1767 token (since start_job_command is called for each line of the job, not
1768 just once). Also more thought needs to go into the entire algorithm;
1769 this is where the old parallel job code waits, so... */
1771 #ifdef WINDOWS32
1772 else if (has_jobserver_semaphore())
1773 #else
1774 else if (job_fds[0] >= 0)
1775 #endif
1776 while (1)
1778 char token;
1779 int got_token;
1780 int saved_errno;
1782 DB (DB_JOBS, ("Need a job token; we %shave children\n",
1783 children ? "" : "don't "));
1785 /* If we don't already have a job started, use our "free" token. */
1786 if (!jobserver_tokens)
1787 break;
1789 #ifndef WINDOWS32
1790 /* Read a token. As long as there's no token available we'll block.
1791 We enable interruptible system calls before the read(2) so that if
1792 we get a SIGCHLD while we're waiting, we'll return with EINTR and
1793 we can process the death(s) and return tokens to the free pool.
1795 Once we return from the read, we immediately reinstate restartable
1796 system calls. This allows us to not worry about checking for
1797 EINTR on all the other system calls in the program.
1799 There is one other twist: there is a span between the time
1800 reap_children() does its last check for dead children and the time
1801 the read(2) call is entered, below, where if a child dies we won't
1802 notice. This is extremely serious as it could cause us to
1803 deadlock, given the right set of events.
1805 To avoid this, we do the following: before we reap_children(), we
1806 dup(2) the read FD on the jobserver pipe. The read(2) call below
1807 uses that new FD. In the signal handler, we close that FD. That
1808 way, if a child dies during the section mentioned above, the
1809 read(2) will be invoked with an invalid FD and will return
1810 immediately with EBADF. */
1812 /* Make sure we have a dup'd FD. */
1813 if (job_rfd < 0)
1815 DB (DB_JOBS, ("Duplicate the job FD\n"));
1816 job_rfd = dup (job_fds[0]);
1818 #endif
1820 /* Reap anything that's currently waiting. */
1821 reap_children (0, 0);
1823 /* Kick off any jobs we have waiting for an opportunity that
1824 can run now (ie waiting for load). */
1825 start_waiting_jobs ();
1827 /* If our "free" slot has become available, use it; we don't need an
1828 actual token. */
1829 if (!jobserver_tokens)
1830 break;
1832 /* There must be at least one child already, or we have no business
1833 waiting for a token. */
1834 if (!children)
1835 fatal (NILF, "INTERNAL: no children as we go to sleep on read\n");
1837 #ifdef WINDOWS32
1838 /* On Windows we simply wait for the jobserver semaphore to become
1839 * signalled or one of our child processes to terminate.
1841 got_token = wait_for_semaphore_or_child_process();
1842 if (got_token < 0)
1844 DWORD err = GetLastError();
1845 fatal (NILF,_("semaphore or child process wait: (Error %d: %s)"),
1846 err, map_windows32_error_to_string(err));
1848 #else
1849 /* Set interruptible system calls, and read() for a job token. */
1850 set_child_handler_action_flags (1, waiting_jobs != NULL);
1851 got_token = read (job_rfd, &token, 1);
1852 saved_errno = errno;
1853 set_child_handler_action_flags (0, waiting_jobs != NULL);
1854 #endif
1856 /* If we got one, we're done here. */
1857 if (got_token == 1)
1859 DB (DB_JOBS, (_("Obtained token for child %p (%s).\n"),
1860 c, c->file->name));
1861 break;
1864 #ifndef WINDOWS32
1865 /* If the error _wasn't_ expected (EINTR or EBADF), punt. Otherwise,
1866 go back and reap_children(), and try again. */
1867 errno = saved_errno;
1868 if (errno != EINTR && errno != EBADF)
1869 pfatal_with_name (_("read jobs pipe"));
1870 if (errno == EBADF)
1871 DB (DB_JOBS, ("Read returned EBADF.\n"));
1872 #endif
1874 #endif
1876 ++jobserver_tokens;
1878 /* Trace the build.
1879 Use message here so that changes to working directories are logged. */
1880 if (trace_flag)
1882 char *newer = allocated_variable_expand_for_file ("$?", c->file);
1883 char *nm;
1885 if (! cmds->fileinfo.filenm)
1886 nm = _("<builtin>");
1887 else
1889 nm = alloca (strlen (cmds->fileinfo.filenm) + 1 + 11 + 1);
1890 sprintf (nm, "%s:%lu", cmds->fileinfo.filenm, cmds->fileinfo.lineno);
1893 if (newer[0] == '\0')
1894 message (0, _("%s: target `%s' does not exist"), nm, c->file->name);
1895 else
1896 message (0, _("%s: update target `%s' due to: %s"), nm,
1897 c->file->name, newer);
1899 free (newer);
1903 /* The job is now primed. Start it running.
1904 (This will notice if there is in fact no recipe.) */
1905 start_waiting_job (c);
1907 if (job_slots == 1 || not_parallel)
1908 /* Since there is only one job slot, make things run linearly.
1909 Wait for the child to die, setting the state to `cs_finished'. */
1910 while (file->command_state == cs_running)
1911 reap_children (1, 0);
1913 return;
1916 /* Move CHILD's pointers to the next command for it to execute.
1917 Returns nonzero if there is another command. */
1919 static int
1920 job_next_command (struct child *child)
1922 while (child->command_ptr == 0 || *child->command_ptr == '\0')
1924 /* There are no more lines in the expansion of this line. */
1925 if (child->command_line == child->file->cmds->ncommand_lines)
1927 /* There are no more lines to be expanded. */
1928 child->command_ptr = 0;
1929 return 0;
1931 else
1932 /* Get the next line to run. */
1933 child->command_ptr = child->command_lines[child->command_line++];
1935 return 1;
1938 /* Determine if the load average on the system is too high to start a new job.
1939 The real system load average is only recomputed once a second. However, a
1940 very parallel make can easily start tens or even hundreds of jobs in a
1941 second, which brings the system to its knees for a while until that first
1942 batch of jobs clears out.
1944 To avoid this we use a weighted algorithm to try to account for jobs which
1945 have been started since the last second, and guess what the load average
1946 would be now if it were computed.
1948 This algorithm was provided by Thomas Riedl <thomas.riedl@siemens.com>,
1949 who writes:
1951 ! calculate something load-oid and add to the observed sys.load,
1952 ! so that latter can catch up:
1953 ! - every job started increases jobctr;
1954 ! - every dying job decreases a positive jobctr;
1955 ! - the jobctr value gets zeroed every change of seconds,
1956 ! after its value*weight_b is stored into the 'backlog' value last_sec
1957 ! - weight_a times the sum of jobctr and last_sec gets
1958 ! added to the observed sys.load.
1960 ! The two weights have been tried out on 24 and 48 proc. Sun Solaris-9
1961 ! machines, using a several-thousand-jobs-mix of cpp, cc, cxx and smallish
1962 ! sub-shelled commands (rm, echo, sed...) for tests.
1963 ! lowering the 'direct influence' factor weight_a (e.g. to 0.1)
1964 ! resulted in significant excession of the load limit, raising it
1965 ! (e.g. to 0.5) took bad to small, fast-executing jobs and didn't
1966 ! reach the limit in most test cases.
1968 ! lowering the 'history influence' weight_b (e.g. to 0.1) resulted in
1969 ! exceeding the limit for longer-running stuff (compile jobs in
1970 ! the .5 to 1.5 sec. range),raising it (e.g. to 0.5) overrepresented
1971 ! small jobs' effects.
1975 #define LOAD_WEIGHT_A 0.25
1976 #define LOAD_WEIGHT_B 0.25
1978 static int
1979 load_too_high (void)
1981 #if defined(__MSDOS__) || defined(VMS) || defined(_AMIGA) || defined(__riscos__)
1982 return 1;
1983 #else
1984 static double last_sec;
1985 static time_t last_now;
1986 double load, guess;
1987 time_t now;
1989 #ifdef WINDOWS32
1990 /* sub_proc.c cannot wait for more than MAXIMUM_WAIT_OBJECTS children */
1991 if (process_used_slots () >= MAXIMUM_WAIT_OBJECTS)
1992 return 1;
1993 #endif
1995 if (max_load_average < 0)
1996 return 0;
1998 /* Find the real system load average. */
1999 make_access ();
2000 if (getloadavg (&load, 1) != 1)
2002 static int lossage = -1;
2003 /* Complain only once for the same error. */
2004 if (lossage == -1 || errno != lossage)
2006 if (errno == 0)
2007 /* An errno value of zero means getloadavg is just unsupported. */
2008 error (NILF,
2009 _("cannot enforce load limits on this operating system"));
2010 else
2011 perror_with_name (_("cannot enforce load limit: "), "getloadavg");
2013 lossage = errno;
2014 load = 0;
2016 user_access ();
2018 /* If we're in a new second zero the counter and correct the backlog
2019 value. Only keep the backlog for one extra second; after that it's 0. */
2020 now = time (NULL);
2021 if (last_now < now)
2023 if (last_now == now - 1)
2024 last_sec = LOAD_WEIGHT_B * job_counter;
2025 else
2026 last_sec = 0.0;
2028 job_counter = 0;
2029 last_now = now;
2032 /* Try to guess what the load would be right now. */
2033 guess = load + (LOAD_WEIGHT_A * (job_counter + last_sec));
2035 DB (DB_JOBS, ("Estimated system load = %f (actual = %f) (max requested = %f)\n",
2036 guess, load, max_load_average));
2038 return guess >= max_load_average;
2039 #endif
2042 /* Start jobs that are waiting for the load to be lower. */
2044 void
2045 start_waiting_jobs (void)
2047 struct child *job;
2049 if (waiting_jobs == 0)
2050 return;
2054 /* Check for recently deceased descendants. */
2055 reap_children (0, 0);
2057 /* Take a job off the waiting list. */
2058 job = waiting_jobs;
2059 waiting_jobs = job->next;
2061 /* Try to start that job. We break out of the loop as soon
2062 as start_waiting_job puts one back on the waiting list. */
2064 while (start_waiting_job (job) && waiting_jobs != 0);
2066 return;
2069 #ifndef WINDOWS32
2071 /* EMX: Start a child process. This function returns the new pid. */
2072 # if defined __EMX__
2074 child_execute_job (int stdin_fd, int stdout_fd, char **argv, char **envp)
2076 int pid;
2077 /* stdin_fd == 0 means: nothing to do for stdin;
2078 stdout_fd == 1 means: nothing to do for stdout */
2079 int save_stdin = (stdin_fd != 0) ? dup (0) : 0;
2080 int save_stdout = (stdout_fd != 1) ? dup (1): 1;
2082 /* < 0 only if dup() failed */
2083 if (save_stdin < 0)
2084 fatal (NILF, _("no more file handles: could not duplicate stdin\n"));
2085 if (save_stdout < 0)
2086 fatal (NILF, _("no more file handles: could not duplicate stdout\n"));
2088 /* Close unnecessary file handles for the child. */
2089 if (save_stdin != 0)
2090 CLOSE_ON_EXEC (save_stdin);
2091 if (save_stdout != 1)
2092 CLOSE_ON_EXEC (save_stdout);
2094 /* Connect the pipes to the child process. */
2095 if (stdin_fd != 0)
2096 (void) dup2 (stdin_fd, 0);
2097 if (stdout_fd != 1)
2098 (void) dup2 (stdout_fd, 1);
2100 /* stdin_fd and stdout_fd must be closed on exit because we are
2101 still in the parent process */
2102 if (stdin_fd != 0)
2103 CLOSE_ON_EXEC (stdin_fd);
2104 if (stdout_fd != 1)
2105 CLOSE_ON_EXEC (stdout_fd);
2107 /* Run the command. */
2108 pid = exec_command (argv, envp);
2110 /* Restore stdout/stdin of the parent and close temporary FDs. */
2111 if (stdin_fd != 0)
2113 if (dup2 (save_stdin, 0) != 0)
2114 fatal (NILF, _("Could not restore stdin\n"));
2115 else
2116 close (save_stdin);
2119 if (stdout_fd != 1)
2121 if (dup2 (save_stdout, 1) != 1)
2122 fatal (NILF, _("Could not restore stdout\n"));
2123 else
2124 close (save_stdout);
2127 return pid;
2130 #elif !defined (_AMIGA) && !defined (__MSDOS__) && !defined (VMS)
2132 /* UNIX:
2133 Replace the current process with one executing the command in ARGV.
2134 STDIN_FD and STDOUT_FD are used as the process's stdin and stdout; ENVP is
2135 the environment of the new program. This function does not return. */
2136 void
2137 child_execute_job (int stdin_fd, int stdout_fd, char **argv, char **envp)
2139 if (stdin_fd != 0)
2140 (void) dup2 (stdin_fd, 0);
2141 if (stdout_fd != 1)
2142 (void) dup2 (stdout_fd, 1);
2143 if (stdin_fd != 0)
2144 (void) close (stdin_fd);
2145 if (stdout_fd != 1)
2146 (void) close (stdout_fd);
2148 /* Run the command. */
2149 exec_command (argv, envp);
2151 #endif /* !AMIGA && !__MSDOS__ && !VMS */
2152 #endif /* !WINDOWS32 */
2154 #ifndef _AMIGA
2155 /* Replace the current process with one running the command in ARGV,
2156 with environment ENVP. This function does not return. */
2158 /* EMX: This function returns the pid of the child process. */
2159 # ifdef __EMX__
2161 # else
2162 void
2163 # endif
2164 exec_command (char **argv, char **envp)
2166 #ifdef VMS
2167 /* to work around a problem with signals and execve: ignore them */
2168 #ifdef SIGCHLD
2169 signal (SIGCHLD,SIG_IGN);
2170 #endif
2171 /* Run the program. */
2172 execve (argv[0], argv, envp);
2173 perror_with_name ("execve: ", argv[0]);
2174 _exit (EXIT_FAILURE);
2175 #else
2176 #ifdef WINDOWS32
2177 HANDLE hPID;
2178 HANDLE hWaitPID;
2179 int err = 0;
2180 int exit_code = EXIT_FAILURE;
2182 /* make sure CreateProcess() has Path it needs */
2183 sync_Path_environment();
2185 /* launch command */
2186 hPID = process_easy(argv, envp);
2188 /* make sure launch ok */
2189 if (hPID == INVALID_HANDLE_VALUE)
2191 int i;
2192 fprintf(stderr,
2193 _("process_easy() failed to launch process (e=%ld)\n"),
2194 process_last_err(hPID));
2195 for (i = 0; argv[i]; i++)
2196 fprintf(stderr, "%s ", argv[i]);
2197 fprintf(stderr, _("\nCounted %d args in failed launch\n"), i);
2198 exit(EXIT_FAILURE);
2201 /* wait and reap last child */
2202 hWaitPID = process_wait_for_any(1, 0);
2203 while (hWaitPID)
2205 /* was an error found on this process? */
2206 err = process_last_err(hWaitPID);
2208 /* get exit data */
2209 exit_code = process_exit_code(hWaitPID);
2211 if (err)
2212 fprintf(stderr, "make (e=%d, rc=%d): %s",
2213 err, exit_code, map_windows32_error_to_string(err));
2215 /* cleanup process */
2216 process_cleanup(hWaitPID);
2218 /* expect to find only last pid, warn about other pids reaped */
2219 if (hWaitPID == hPID)
2220 break;
2221 else
2223 char *pidstr = xstrdup (pid2str ((pid_t)hWaitPID));
2225 fprintf(stderr,
2226 _("make reaped child pid %s, still waiting for pid %s\n"),
2227 pidstr, pid2str ((pid_t)hPID));
2228 free (pidstr);
2232 /* return child's exit code as our exit code */
2233 exit(exit_code);
2235 #else /* !WINDOWS32 */
2237 # ifdef __EMX__
2238 int pid;
2239 # endif
2241 /* Be the user, permanently. */
2242 child_access ();
2244 # ifdef __EMX__
2246 /* Run the program. */
2247 pid = spawnvpe (P_NOWAIT, argv[0], argv, envp);
2249 if (pid >= 0)
2250 return pid;
2252 /* the file might have a strange shell extension */
2253 if (errno == ENOENT)
2254 errno = ENOEXEC;
2256 # else
2258 /* Run the program. */
2259 environ = envp;
2260 execvp (argv[0], argv);
2262 # endif /* !__EMX__ */
2264 switch (errno)
2266 case ENOENT:
2267 error (NILF, _("%s: Command not found"), argv[0]);
2268 break;
2269 case ENOEXEC:
2271 /* The file is not executable. Try it as a shell script. */
2272 extern char *getenv ();
2273 char *shell;
2274 char **new_argv;
2275 int argc;
2276 int i=1;
2278 # ifdef __EMX__
2279 /* Do not use $SHELL from the environment */
2280 struct variable *p = lookup_variable ("SHELL", 5);
2281 if (p)
2282 shell = p->value;
2283 else
2284 shell = 0;
2285 # else
2286 shell = getenv ("SHELL");
2287 # endif
2288 if (shell == 0)
2289 shell = default_shell;
2291 argc = 1;
2292 while (argv[argc] != 0)
2293 ++argc;
2295 # ifdef __EMX__
2296 if (!unixy_shell)
2297 ++argc;
2298 # endif
2300 new_argv = alloca ((1 + argc + 1) * sizeof (char *));
2301 new_argv[0] = shell;
2303 # ifdef __EMX__
2304 if (!unixy_shell)
2306 new_argv[1] = "/c";
2307 ++i;
2308 --argc;
2310 # endif
2312 new_argv[i] = argv[0];
2313 while (argc > 0)
2315 new_argv[i + argc] = argv[argc];
2316 --argc;
2319 # ifdef __EMX__
2320 pid = spawnvpe (P_NOWAIT, shell, new_argv, envp);
2321 if (pid >= 0)
2322 break;
2323 # else
2324 execvp (shell, new_argv);
2325 # endif
2326 if (errno == ENOENT)
2327 error (NILF, _("%s: Shell program not found"), shell);
2328 else
2329 perror_with_name ("execvp: ", shell);
2330 break;
2333 # ifdef __EMX__
2334 case EINVAL:
2335 /* this nasty error was driving me nuts :-( */
2336 error (NILF, _("spawnvpe: environment space might be exhausted"));
2337 /* FALLTHROUGH */
2338 # endif
2340 default:
2341 perror_with_name ("execvp: ", argv[0]);
2342 break;
2345 # ifdef __EMX__
2346 return pid;
2347 # else
2348 _exit (127);
2349 # endif
2350 #endif /* !WINDOWS32 */
2351 #endif /* !VMS */
2353 #else /* On Amiga */
2354 void exec_command (char **argv)
2356 MyExecute (argv);
2359 void clean_tmp (void)
2361 DeleteFile (amiga_bname);
2364 #endif /* On Amiga */
2366 #ifndef VMS
2367 /* Figure out the argument list necessary to run LINE as a command. Try to
2368 avoid using a shell. This routine handles only ' quoting, and " quoting
2369 when no backslash, $ or ` characters are seen in the quotes. Starting
2370 quotes may be escaped with a backslash. If any of the characters in
2371 sh_chars[] is seen, or any of the builtin commands listed in sh_cmds[]
2372 is the first word of a line, the shell is used.
2374 If RESTP is not NULL, *RESTP is set to point to the first newline in LINE.
2375 If *RESTP is NULL, newlines will be ignored.
2377 SHELL is the shell to use, or nil to use the default shell.
2378 IFS is the value of $IFS, or nil (meaning the default).
2380 FLAGS is the value of lines_flags for this command line. It is
2381 used in the WINDOWS32 port to check whether + or $(MAKE) were found
2382 in this command line, in which case the effect of just_print_flag
2383 is overridden. */
2385 static char **
2386 construct_command_argv_internal (char *line, char **restp, char *shell,
2387 char *shellflags, char *ifs, int flags,
2388 char **batch_filename UNUSED)
2390 #ifdef __MSDOS__
2391 /* MSDOS supports both the stock DOS shell and ports of Unixy shells.
2392 We call `system' for anything that requires ``slow'' processing,
2393 because DOS shells are too dumb. When $SHELL points to a real
2394 (unix-style) shell, `system' just calls it to do everything. When
2395 $SHELL points to a DOS shell, `system' does most of the work
2396 internally, calling the shell only for its internal commands.
2397 However, it looks on the $PATH first, so you can e.g. have an
2398 external command named `mkdir'.
2400 Since we call `system', certain characters and commands below are
2401 actually not specific to COMMAND.COM, but to the DJGPP implementation
2402 of `system'. In particular:
2404 The shell wildcard characters are in DOS_CHARS because they will
2405 not be expanded if we call the child via `spawnXX'.
2407 The `;' is in DOS_CHARS, because our `system' knows how to run
2408 multiple commands on a single line.
2410 DOS_CHARS also include characters special to 4DOS/NDOS, so we
2411 won't have to tell one from another and have one more set of
2412 commands and special characters. */
2413 static char sh_chars_dos[] = "*?[];|<>%^&()";
2414 static char *sh_cmds_dos[] = { "break", "call", "cd", "chcp", "chdir", "cls",
2415 "copy", "ctty", "date", "del", "dir", "echo",
2416 "erase", "exit", "for", "goto", "if", "md",
2417 "mkdir", "path", "pause", "prompt", "rd",
2418 "rmdir", "rem", "ren", "rename", "set",
2419 "shift", "time", "type", "ver", "verify",
2420 "vol", ":", 0 };
2422 static char sh_chars_sh[] = "#;\"*?[]&|<>(){}$`^";
2423 static char *sh_cmds_sh[] = { "cd", "echo", "eval", "exec", "exit", "login",
2424 "logout", "set", "umask", "wait", "while",
2425 "for", "case", "if", ":", ".", "break",
2426 "continue", "export", "read", "readonly",
2427 "shift", "times", "trap", "switch", "unset",
2428 "ulimit", 0 };
2430 char *sh_chars;
2431 char **sh_cmds;
2432 #elif defined (__EMX__)
2433 static char sh_chars_dos[] = "*?[];|<>%^&()";
2434 static char *sh_cmds_dos[] = { "break", "call", "cd", "chcp", "chdir", "cls",
2435 "copy", "ctty", "date", "del", "dir", "echo",
2436 "erase", "exit", "for", "goto", "if", "md",
2437 "mkdir", "path", "pause", "prompt", "rd",
2438 "rmdir", "rem", "ren", "rename", "set",
2439 "shift", "time", "type", "ver", "verify",
2440 "vol", ":", 0 };
2442 static char sh_chars_os2[] = "*?[];|<>%^()\"'&";
2443 static char *sh_cmds_os2[] = { "call", "cd", "chcp", "chdir", "cls", "copy",
2444 "date", "del", "detach", "dir", "echo",
2445 "endlocal", "erase", "exit", "for", "goto", "if",
2446 "keys", "md", "mkdir", "move", "path", "pause",
2447 "prompt", "rd", "rem", "ren", "rename", "rmdir",
2448 "set", "setlocal", "shift", "start", "time",
2449 "type", "ver", "verify", "vol", ":", 0 };
2451 static char sh_chars_sh[] = "#;\"*?[]&|<>(){}$`^~'";
2452 static char *sh_cmds_sh[] = { "echo", "cd", "eval", "exec", "exit", "login",
2453 "logout", "set", "umask", "wait", "while",
2454 "for", "case", "if", ":", ".", "break",
2455 "continue", "export", "read", "readonly",
2456 "shift", "times", "trap", "switch", "unset",
2457 0 };
2458 char *sh_chars;
2459 char **sh_cmds;
2461 #elif defined (_AMIGA)
2462 static char sh_chars[] = "#;\"|<>()?*$`";
2463 static char *sh_cmds[] = { "cd", "eval", "if", "delete", "echo", "copy",
2464 "rename", "set", "setenv", "date", "makedir",
2465 "skip", "else", "endif", "path", "prompt",
2466 "unset", "unsetenv", "version",
2467 0 };
2468 #elif defined (WINDOWS32)
2469 static char sh_chars_dos[] = "\"|&<>";
2470 static char *sh_cmds_dos[] = { "assoc", "break", "call", "cd", "chcp",
2471 "chdir", "cls", "color", "copy", "ctty",
2472 "date", "del", "dir", "echo", "echo.",
2473 "endlocal", "erase", "exit", "for", "ftype",
2474 "goto", "if", "if", "md", "mkdir", "path",
2475 "pause", "prompt", "rd", "rem", "ren",
2476 "rename", "rmdir", "set", "setlocal",
2477 "shift", "time", "title", "type", "ver",
2478 "verify", "vol", ":", 0 };
2479 static char sh_chars_sh[] = "#;\"*?[]&|<>(){}$`^";
2480 static char *sh_cmds_sh[] = { "cd", "eval", "exec", "exit", "login",
2481 "logout", "set", "umask", "wait", "while", "for",
2482 "case", "if", ":", ".", "break", "continue",
2483 "export", "read", "readonly", "shift", "times",
2484 "trap", "switch", "test",
2485 #ifdef BATCH_MODE_ONLY_SHELL
2486 "echo",
2487 #endif
2488 0 };
2489 char* sh_chars;
2490 char** sh_cmds;
2491 #elif defined(__riscos__)
2492 static char sh_chars[] = "";
2493 static char *sh_cmds[] = { 0 };
2494 #else /* must be UNIX-ish */
2495 static char sh_chars[] = "#;\"*?[]&|<>(){}$`^~!";
2496 static char *sh_cmds[] = { ".", ":", "break", "case", "cd", "continue",
2497 "eval", "exec", "exit", "export", "for", "if",
2498 "login", "logout", "read", "readonly", "set",
2499 "shift", "switch", "test", "times", "trap",
2500 "ulimit", "umask", "unset", "wait", "while", 0 };
2501 # ifdef HAVE_DOS_PATHS
2502 /* This is required if the MSYS/Cygwin ports (which do not define
2503 WINDOWS32) are compiled with HAVE_DOS_PATHS defined, which uses
2504 sh_chars_sh[] directly (see below). */
2505 static char *sh_chars_sh = sh_chars;
2506 # endif /* HAVE_DOS_PATHS */
2507 #endif
2508 int i;
2509 char *p;
2510 char *ap;
2511 char *end;
2512 int instring, word_has_equals, seen_nonequals, last_argument_was_empty;
2513 char **new_argv = 0;
2514 char *argstr = 0;
2515 #ifdef WINDOWS32
2516 int slow_flag = 0;
2518 if (!unixy_shell) {
2519 sh_cmds = sh_cmds_dos;
2520 sh_chars = sh_chars_dos;
2521 } else {
2522 sh_cmds = sh_cmds_sh;
2523 sh_chars = sh_chars_sh;
2525 #endif /* WINDOWS32 */
2527 if (restp != NULL)
2528 *restp = NULL;
2530 /* Make sure not to bother processing an empty line. */
2531 while (isblank ((unsigned char)*line))
2532 ++line;
2533 if (*line == '\0')
2534 return 0;
2536 if (shellflags == 0)
2537 shellflags = posix_pedantic ? "-ec" : "-c";
2539 /* See if it is safe to parse commands internally. */
2540 if (shell == 0)
2541 shell = default_shell;
2542 #ifdef WINDOWS32
2543 else if (strcmp (shell, default_shell))
2545 char *s1 = _fullpath (NULL, shell, 0);
2546 char *s2 = _fullpath (NULL, default_shell, 0);
2548 slow_flag = strcmp ((s1 ? s1 : ""), (s2 ? s2 : ""));
2550 if (s1)
2551 free (s1);
2552 if (s2)
2553 free (s2);
2555 if (slow_flag)
2556 goto slow;
2557 #else /* not WINDOWS32 */
2558 #if defined (__MSDOS__) || defined (__EMX__)
2559 else if (strcasecmp (shell, default_shell))
2561 extern int _is_unixy_shell (const char *_path);
2563 DB (DB_BASIC, (_("$SHELL changed (was `%s', now `%s')\n"),
2564 default_shell, shell));
2565 unixy_shell = _is_unixy_shell (shell);
2566 /* we must allocate a copy of shell: construct_command_argv() will free
2567 * shell after this function returns. */
2568 default_shell = xstrdup (shell);
2570 if (unixy_shell)
2572 sh_chars = sh_chars_sh;
2573 sh_cmds = sh_cmds_sh;
2575 else
2577 sh_chars = sh_chars_dos;
2578 sh_cmds = sh_cmds_dos;
2579 # ifdef __EMX__
2580 if (_osmode == OS2_MODE)
2582 sh_chars = sh_chars_os2;
2583 sh_cmds = sh_cmds_os2;
2585 # endif
2587 #else /* !__MSDOS__ */
2588 else if (strcmp (shell, default_shell))
2589 goto slow;
2590 #endif /* !__MSDOS__ && !__EMX__ */
2591 #endif /* not WINDOWS32 */
2593 if (ifs != 0)
2594 for (ap = ifs; *ap != '\0'; ++ap)
2595 if (*ap != ' ' && *ap != '\t' && *ap != '\n')
2596 goto slow;
2598 if (shellflags != 0)
2599 if (shellflags[0] != '-'
2600 || ((shellflags[1] != 'c' || shellflags[2] != '\0')
2601 && (shellflags[1] != 'e' || shellflags[2] != 'c' || shellflags[3] != '\0')))
2602 goto slow;
2604 i = strlen (line) + 1;
2606 /* More than 1 arg per character is impossible. */
2607 new_argv = xmalloc (i * sizeof (char *));
2609 /* All the args can fit in a buffer as big as LINE is. */
2610 ap = new_argv[0] = argstr = xmalloc (i);
2611 end = ap + i;
2613 /* I is how many complete arguments have been found. */
2614 i = 0;
2615 instring = word_has_equals = seen_nonequals = last_argument_was_empty = 0;
2616 for (p = line; *p != '\0'; ++p)
2618 assert (ap <= end);
2620 if (instring)
2622 /* Inside a string, just copy any char except a closing quote
2623 or a backslash-newline combination. */
2624 if (*p == instring)
2626 instring = 0;
2627 if (ap == new_argv[0] || *(ap-1) == '\0')
2628 last_argument_was_empty = 1;
2630 else if (*p == '\\' && p[1] == '\n')
2632 /* Backslash-newline is handled differently depending on what
2633 kind of string we're in: inside single-quoted strings you
2634 keep them; in double-quoted strings they disappear. For
2635 DOS/Windows/OS2, if we don't have a POSIX shell, we keep the
2636 pre-POSIX behavior of removing the backslash-newline. */
2637 if (instring == '"'
2638 #if defined (__MSDOS__) || defined (__EMX__) || defined (WINDOWS32)
2639 || !unixy_shell
2640 #endif
2642 ++p;
2643 else
2645 *(ap++) = *(p++);
2646 *(ap++) = *p;
2649 else if (*p == '\n' && restp != NULL)
2651 /* End of the command line. */
2652 *restp = p;
2653 goto end_of_line;
2655 /* Backslash, $, and ` are special inside double quotes.
2656 If we see any of those, punt.
2657 But on MSDOS, if we use COMMAND.COM, double and single
2658 quotes have the same effect. */
2659 else if (instring == '"' && strchr ("\\$`", *p) != 0 && unixy_shell)
2660 goto slow;
2661 else
2662 *ap++ = *p;
2664 else if (strchr (sh_chars, *p) != 0)
2665 /* Not inside a string, but it's a special char. */
2666 goto slow;
2667 else if (one_shell && *p == '\n')
2668 /* In .ONESHELL mode \n is a separator like ; or && */
2669 goto slow;
2670 #ifdef __MSDOS__
2671 else if (*p == '.' && p[1] == '.' && p[2] == '.' && p[3] != '.')
2672 /* `...' is a wildcard in DJGPP. */
2673 goto slow;
2674 #endif
2675 else
2676 /* Not a special char. */
2677 switch (*p)
2679 case '=':
2680 /* Equals is a special character in leading words before the
2681 first word with no equals sign in it. This is not the case
2682 with sh -k, but we never get here when using nonstandard
2683 shell flags. */
2684 if (! seen_nonequals && unixy_shell)
2685 goto slow;
2686 word_has_equals = 1;
2687 *ap++ = '=';
2688 break;
2690 case '\\':
2691 /* Backslash-newline has special case handling, ref POSIX.
2692 We're in the fastpath, so emulate what the shell would do. */
2693 if (p[1] == '\n')
2695 /* Throw out the backslash and newline. */
2696 ++p;
2698 /* If there's nothing in this argument yet, skip any
2699 whitespace before the start of the next word. */
2700 if (ap == new_argv[i])
2701 p = next_token (p + 1) - 1;
2703 else if (p[1] != '\0')
2705 #ifdef HAVE_DOS_PATHS
2706 /* Only remove backslashes before characters special to Unixy
2707 shells. All other backslashes are copied verbatim, since
2708 they are probably DOS-style directory separators. This
2709 still leaves a small window for problems, but at least it
2710 should work for the vast majority of naive users. */
2712 #ifdef __MSDOS__
2713 /* A dot is only special as part of the "..."
2714 wildcard. */
2715 if (strneq (p + 1, ".\\.\\.", 5))
2717 *ap++ = '.';
2718 *ap++ = '.';
2719 p += 4;
2721 else
2722 #endif
2723 if (p[1] != '\\' && p[1] != '\''
2724 && !isspace ((unsigned char)p[1])
2725 && strchr (sh_chars_sh, p[1]) == 0)
2726 /* back up one notch, to copy the backslash */
2727 --p;
2728 #endif /* HAVE_DOS_PATHS */
2730 /* Copy and skip the following char. */
2731 *ap++ = *++p;
2733 break;
2735 case '\'':
2736 case '"':
2737 instring = *p;
2738 break;
2740 case '\n':
2741 if (restp != NULL)
2743 /* End of the command line. */
2744 *restp = p;
2745 goto end_of_line;
2747 else
2748 /* Newlines are not special. */
2749 *ap++ = '\n';
2750 break;
2752 case ' ':
2753 case '\t':
2754 /* We have the end of an argument.
2755 Terminate the text of the argument. */
2756 *ap++ = '\0';
2757 new_argv[++i] = ap;
2758 last_argument_was_empty = 0;
2760 /* Update SEEN_NONEQUALS, which tells us if every word
2761 heretofore has contained an `='. */
2762 seen_nonequals |= ! word_has_equals;
2763 if (word_has_equals && ! seen_nonequals)
2764 /* An `=' in a word before the first
2765 word without one is magical. */
2766 goto slow;
2767 word_has_equals = 0; /* Prepare for the next word. */
2769 /* If this argument is the command name,
2770 see if it is a built-in shell command.
2771 If so, have the shell handle it. */
2772 if (i == 1)
2774 register int j;
2775 for (j = 0; sh_cmds[j] != 0; ++j)
2777 if (streq (sh_cmds[j], new_argv[0]))
2778 goto slow;
2779 # ifdef __EMX__
2780 /* Non-Unix shells are case insensitive. */
2781 if (!unixy_shell
2782 && strcasecmp (sh_cmds[j], new_argv[0]) == 0)
2783 goto slow;
2784 # endif
2788 /* Ignore multiple whitespace chars. */
2789 p = next_token (p) - 1;
2790 break;
2792 default:
2793 *ap++ = *p;
2794 break;
2797 end_of_line:
2799 if (instring)
2800 /* Let the shell deal with an unterminated quote. */
2801 goto slow;
2803 /* Terminate the last argument and the argument list. */
2805 *ap = '\0';
2806 if (new_argv[i][0] != '\0' || last_argument_was_empty)
2807 ++i;
2808 new_argv[i] = 0;
2810 if (i == 1)
2812 register int j;
2813 for (j = 0; sh_cmds[j] != 0; ++j)
2814 if (streq (sh_cmds[j], new_argv[0]))
2815 goto slow;
2818 if (new_argv[0] == 0)
2820 /* Line was empty. */
2821 free (argstr);
2822 free (new_argv);
2823 return 0;
2826 return new_argv;
2828 slow:;
2829 /* We must use the shell. */
2831 if (new_argv != 0)
2833 /* Free the old argument list we were working on. */
2834 free (argstr);
2835 free (new_argv);
2838 #ifdef __MSDOS__
2839 execute_by_shell = 1; /* actually, call `system' if shell isn't unixy */
2840 #endif
2842 #ifdef _AMIGA
2844 char *ptr;
2845 char *buffer;
2846 char *dptr;
2848 buffer = xmalloc (strlen (line)+1);
2850 ptr = line;
2851 for (dptr=buffer; *ptr; )
2853 if (*ptr == '\\' && ptr[1] == '\n')
2854 ptr += 2;
2855 else if (*ptr == '@') /* Kludge: multiline commands */
2857 ptr += 2;
2858 *dptr++ = '\n';
2860 else
2861 *dptr++ = *ptr++;
2863 *dptr = 0;
2865 new_argv = xmalloc (2 * sizeof (char *));
2866 new_argv[0] = buffer;
2867 new_argv[1] = 0;
2869 #else /* Not Amiga */
2870 #ifdef WINDOWS32
2872 * Not eating this whitespace caused things like
2874 * sh -c "\n"
2876 * which gave the shell fits. I think we have to eat
2877 * whitespace here, but this code should be considered
2878 * suspicious if things start failing....
2881 /* Make sure not to bother processing an empty line. */
2882 while (isspace ((unsigned char)*line))
2883 ++line;
2884 if (*line == '\0')
2885 return 0;
2886 #endif /* WINDOWS32 */
2889 /* SHELL may be a multi-word command. Construct a command line
2890 "$(SHELL) $(.SHELLFLAGS) LINE", with all special chars in LINE escaped.
2891 Then recurse, expanding this command line to get the final
2892 argument list. */
2894 unsigned int shell_len = strlen (shell);
2895 unsigned int line_len = strlen (line);
2896 unsigned int sflags_len = shellflags ? strlen (shellflags) : 0;
2897 char *command_ptr = NULL; /* used for batch_mode_shell mode */
2898 char *new_line;
2900 # ifdef __EMX__ /* is this necessary? */
2901 if (!unixy_shell && shellflags)
2902 shellflags[0] = '/'; /* "/c" */
2903 # endif
2905 /* In .ONESHELL mode we are allowed to throw the entire current
2906 recipe string at a single shell and trust that the user
2907 has configured the shell and shell flags, and formatted
2908 the string, appropriately. */
2909 if (one_shell)
2911 /* If the shell is Bourne compatible, we must remove and ignore
2912 interior special chars [@+-] because they're meaningless to
2913 the shell itself. If, however, we're in .ONESHELL mode and
2914 have changed SHELL to something non-standard, we should
2915 leave those alone because they could be part of the
2916 script. In this case we must also leave in place
2917 any leading [@+-] for the same reason. */
2919 /* Remove and ignore interior prefix chars [@+-] because they're
2920 meaningless given a single shell. */
2921 #if defined __MSDOS__ || defined (__EMX__)
2922 if (unixy_shell) /* the test is complicated and we already did it */
2923 #else
2924 if (is_bourne_compatible_shell(shell))
2925 #endif
2927 const char *f = line;
2928 char *t = line;
2930 /* Copy the recipe, removing and ignoring interior prefix chars
2931 [@+-]: they're meaningless in .ONESHELL mode. */
2932 while (f[0] != '\0')
2934 int esc = 0;
2936 /* This is the start of a new recipe line.
2937 Skip whitespace and prefix characters. */
2938 while (isblank (*f) || *f == '-' || *f == '@' || *f == '+')
2939 ++f;
2941 /* Copy until we get to the next logical recipe line. */
2942 while (*f != '\0')
2944 *(t++) = *(f++);
2945 if (f[-1] == '\\')
2946 esc = !esc;
2947 else
2949 /* On unescaped newline, we're done with this line. */
2950 if (f[-1] == '\n' && ! esc)
2951 break;
2953 /* Something else: reset the escape sequence. */
2954 esc = 0;
2958 *t = '\0';
2961 new_argv = xmalloc (4 * sizeof (char *));
2962 new_argv[0] = xstrdup(shell);
2963 new_argv[1] = xstrdup(shellflags ? shellflags : "");
2964 new_argv[2] = line;
2965 new_argv[3] = NULL;
2966 return new_argv;
2969 new_line = alloca ((shell_len*2) + 1 + sflags_len + 1
2970 + (line_len*2) + 1);
2971 ap = new_line;
2972 /* Copy SHELL, escaping any characters special to the shell. If
2973 we don't escape them, construct_command_argv_internal will
2974 recursively call itself ad nauseam, or until stack overflow,
2975 whichever happens first. */
2976 for (p = shell; *p != '\0'; ++p)
2978 if (strchr (sh_chars, *p) != 0)
2979 *(ap++) = '\\';
2980 *(ap++) = *p;
2982 *(ap++) = ' ';
2983 if (shellflags)
2984 memcpy (ap, shellflags, sflags_len);
2985 ap += sflags_len;
2986 *(ap++) = ' ';
2987 command_ptr = ap;
2988 for (p = line; *p != '\0'; ++p)
2990 if (restp != NULL && *p == '\n')
2992 *restp = p;
2993 break;
2995 else if (*p == '\\' && p[1] == '\n')
2997 /* POSIX says we keep the backslash-newline. If we don't have a
2998 POSIX shell on DOS/Windows/OS2, mimic the pre-POSIX behavior
2999 and remove the backslash/newline. */
3000 #if defined (__MSDOS__) || defined (__EMX__) || defined (WINDOWS32)
3001 # define PRESERVE_BSNL unixy_shell
3002 #else
3003 # define PRESERVE_BSNL 1
3004 #endif
3005 if (PRESERVE_BSNL)
3007 *(ap++) = '\\';
3008 /* Only non-batch execution needs another backslash,
3009 because it will be passed through a recursive
3010 invocation of this function. */
3011 if (!batch_mode_shell)
3012 *(ap++) = '\\';
3013 *(ap++) = '\n';
3015 ++p;
3016 continue;
3019 /* DOS shells don't know about backslash-escaping. */
3020 if (unixy_shell && !batch_mode_shell &&
3021 (*p == '\\' || *p == '\'' || *p == '"'
3022 || isspace ((unsigned char)*p)
3023 || strchr (sh_chars, *p) != 0))
3024 *ap++ = '\\';
3025 #ifdef __MSDOS__
3026 else if (unixy_shell && strneq (p, "...", 3))
3028 /* The case of `...' wildcard again. */
3029 strcpy (ap, "\\.\\.\\");
3030 ap += 5;
3031 p += 2;
3033 #endif
3034 *ap++ = *p;
3036 if (ap == new_line + shell_len + sflags_len + 2)
3037 /* Line was empty. */
3038 return 0;
3039 *ap = '\0';
3041 #ifdef WINDOWS32
3042 /* Some shells do not work well when invoked as 'sh -c xxx' to run a
3043 command line (e.g. Cygnus GNUWIN32 sh.exe on WIN32 systems). In these
3044 cases, run commands via a script file. */
3045 if (just_print_flag && !(flags & COMMANDS_RECURSE)) {
3046 /* Need to allocate new_argv, although it's unused, because
3047 start_job_command will want to free it and its 0'th element. */
3048 new_argv = xmalloc(2 * sizeof (char *));
3049 new_argv[0] = xstrdup ("");
3050 new_argv[1] = NULL;
3051 } else if ((no_default_sh_exe || batch_mode_shell) && batch_filename) {
3052 int temp_fd;
3053 FILE* batch = NULL;
3054 int id = GetCurrentProcessId();
3055 PATH_VAR(fbuf);
3057 /* create a file name */
3058 sprintf(fbuf, "make%d", id);
3059 *batch_filename = create_batch_file (fbuf, unixy_shell, &temp_fd);
3061 DB (DB_JOBS, (_("Creating temporary batch file %s\n"),
3062 *batch_filename));
3064 /* Create a FILE object for the batch file, and write to it the
3065 commands to be executed. Put the batch file in TEXT mode. */
3066 _setmode (temp_fd, _O_TEXT);
3067 batch = _fdopen (temp_fd, "wt");
3068 if (!unixy_shell)
3069 fputs ("@echo off\n", batch);
3070 fputs (command_ptr, batch);
3071 fputc ('\n', batch);
3072 fclose (batch);
3073 DB (DB_JOBS, (_("Batch file contents:%s\n\t%s\n"),
3074 !unixy_shell ? "\n\t@echo off" : "", command_ptr));
3076 /* create argv */
3077 new_argv = xmalloc(3 * sizeof (char *));
3078 if (unixy_shell) {
3079 new_argv[0] = xstrdup (shell);
3080 new_argv[1] = *batch_filename; /* only argv[0] gets freed later */
3081 } else {
3082 new_argv[0] = xstrdup (*batch_filename);
3083 new_argv[1] = NULL;
3085 new_argv[2] = NULL;
3086 } else
3087 #endif /* WINDOWS32 */
3089 if (unixy_shell)
3090 new_argv = construct_command_argv_internal (new_line, 0, 0, 0, 0,
3091 flags, 0);
3093 #ifdef __EMX__
3094 else if (!unixy_shell)
3096 /* new_line is local, must not be freed therefore
3097 We use line here instead of new_line because we run the shell
3098 manually. */
3099 size_t line_len = strlen (line);
3100 char *p = new_line;
3101 char *q = new_line;
3102 memcpy (new_line, line, line_len + 1);
3103 /* Replace all backslash-newline combination and also following tabs.
3104 Important: stop at the first '\n' because that's what the loop above
3105 did. The next line starting at restp[0] will be executed during the
3106 next call of this function. */
3107 while (*q != '\0' && *q != '\n')
3109 if (q[0] == '\\' && q[1] == '\n')
3110 q += 2; /* remove '\\' and '\n' */
3111 else
3112 *p++ = *q++;
3114 *p = '\0';
3116 # ifndef NO_CMD_DEFAULT
3117 if (strnicmp (new_line, "echo", 4) == 0
3118 && (new_line[4] == ' ' || new_line[4] == '\t'))
3120 /* the builtin echo command: handle it separately */
3121 size_t echo_len = line_len - 5;
3122 char *echo_line = new_line + 5;
3124 /* special case: echo 'x="y"'
3125 cmd works this way: a string is printed as is, i.e., no quotes
3126 are removed. But autoconf uses a command like echo 'x="y"' to
3127 determine whether make works. autoconf expects the output x="y"
3128 so we will do exactly that.
3129 Note: if we do not allow cmd to be the default shell
3130 we do not need this kind of voodoo */
3131 if (echo_line[0] == '\''
3132 && echo_line[echo_len - 1] == '\''
3133 && strncmp (echo_line + 1, "ac_maketemp=",
3134 strlen ("ac_maketemp=")) == 0)
3136 /* remove the enclosing quotes */
3137 memmove (echo_line, echo_line + 1, echo_len - 2);
3138 echo_line[echo_len - 2] = '\0';
3141 # endif
3144 /* Let the shell decide what to do. Put the command line into the
3145 2nd command line argument and hope for the best ;-) */
3146 size_t sh_len = strlen (shell);
3148 /* exactly 3 arguments + NULL */
3149 new_argv = xmalloc (4 * sizeof (char *));
3150 /* Exactly strlen(shell) + strlen("/c") + strlen(line) + 3 times
3151 the trailing '\0' */
3152 new_argv[0] = xmalloc (sh_len + line_len + 5);
3153 memcpy (new_argv[0], shell, sh_len + 1);
3154 new_argv[1] = new_argv[0] + sh_len + 1;
3155 memcpy (new_argv[1], "/c", 3);
3156 new_argv[2] = new_argv[1] + 3;
3157 memcpy (new_argv[2], new_line, line_len + 1);
3158 new_argv[3] = NULL;
3161 #elif defined(__MSDOS__)
3162 else
3164 /* With MSDOS shells, we must construct the command line here
3165 instead of recursively calling ourselves, because we
3166 cannot backslash-escape the special characters (see above). */
3167 new_argv = xmalloc (sizeof (char *));
3168 line_len = strlen (new_line) - shell_len - sflags_len - 2;
3169 new_argv[0] = xmalloc (line_len + 1);
3170 strncpy (new_argv[0],
3171 new_line + shell_len + sflags_len + 2, line_len);
3172 new_argv[0][line_len] = '\0';
3174 #else
3175 else
3176 fatal (NILF, _("%s (line %d) Bad shell context (!unixy && !batch_mode_shell)\n"),
3177 __FILE__, __LINE__);
3178 #endif
3180 #endif /* ! AMIGA */
3182 return new_argv;
3184 #endif /* !VMS */
3186 /* Figure out the argument list necessary to run LINE as a command. Try to
3187 avoid using a shell. This routine handles only ' quoting, and " quoting
3188 when no backslash, $ or ` characters are seen in the quotes. Starting
3189 quotes may be escaped with a backslash. If any of the characters in
3190 sh_chars[] is seen, or any of the builtin commands listed in sh_cmds[]
3191 is the first word of a line, the shell is used.
3193 If RESTP is not NULL, *RESTP is set to point to the first newline in LINE.
3194 If *RESTP is NULL, newlines will be ignored.
3196 FILE is the target whose commands these are. It is used for
3197 variable expansion for $(SHELL) and $(IFS). */
3199 char **
3200 construct_command_argv (char *line, char **restp, struct file *file,
3201 int cmd_flags, char **batch_filename)
3203 char *shell, *ifs, *shellflags;
3204 char **argv;
3206 #ifdef VMS
3207 char *cptr;
3208 int argc;
3210 argc = 0;
3211 cptr = line;
3212 for (;;)
3214 while ((*cptr != 0)
3215 && (isspace ((unsigned char)*cptr)))
3216 cptr++;
3217 if (*cptr == 0)
3218 break;
3219 while ((*cptr != 0)
3220 && (!isspace((unsigned char)*cptr)))
3221 cptr++;
3222 argc++;
3225 argv = xmalloc (argc * sizeof (char *));
3226 if (argv == 0)
3227 abort ();
3229 cptr = line;
3230 argc = 0;
3231 for (;;)
3233 while ((*cptr != 0)
3234 && (isspace ((unsigned char)*cptr)))
3235 cptr++;
3236 if (*cptr == 0)
3237 break;
3238 DB (DB_JOBS, ("argv[%d] = [%s]\n", argc, cptr));
3239 argv[argc++] = cptr;
3240 while ((*cptr != 0)
3241 && (!isspace((unsigned char)*cptr)))
3242 cptr++;
3243 if (*cptr != 0)
3244 *cptr++ = 0;
3246 #else
3248 /* Turn off --warn-undefined-variables while we expand SHELL and IFS. */
3249 int save = warn_undefined_variables_flag;
3250 warn_undefined_variables_flag = 0;
3252 shell = allocated_variable_expand_for_file ("$(SHELL)", file);
3253 #ifdef WINDOWS32
3255 * Convert to forward slashes so that construct_command_argv_internal()
3256 * is not confused.
3258 if (shell) {
3259 char *p = w32ify (shell, 0);
3260 strcpy (shell, p);
3262 #endif
3263 #ifdef __EMX__
3265 static const char *unixroot = NULL;
3266 static const char *last_shell = "";
3267 static int init = 0;
3268 if (init == 0)
3270 unixroot = getenv ("UNIXROOT");
3271 /* unixroot must be NULL or not empty */
3272 if (unixroot && unixroot[0] == '\0') unixroot = NULL;
3273 init = 1;
3276 /* if we have an unixroot drive and if shell is not default_shell
3277 (which means it's either cmd.exe or the test has already been
3278 performed) and if shell is an absolute path without drive letter,
3279 try whether it exists e.g.: if "/bin/sh" does not exist use
3280 "$UNIXROOT/bin/sh" instead. */
3281 if (unixroot && shell && strcmp (shell, last_shell) != 0
3282 && (shell[0] == '/' || shell[0] == '\\'))
3284 /* trying a new shell, check whether it exists */
3285 size_t size = strlen (shell);
3286 char *buf = xmalloc (size + 7);
3287 memcpy (buf, shell, size);
3288 memcpy (buf + size, ".exe", 5); /* including the trailing '\0' */
3289 if (access (shell, F_OK) != 0 && access (buf, F_OK) != 0)
3291 /* try the same for the unixroot drive */
3292 memmove (buf + 2, buf, size + 5);
3293 buf[0] = unixroot[0];
3294 buf[1] = unixroot[1];
3295 if (access (buf, F_OK) == 0)
3296 /* we have found a shell! */
3297 /* free(shell); */
3298 shell = buf;
3299 else
3300 free (buf);
3302 else
3303 free (buf);
3306 #endif /* __EMX__ */
3308 shellflags = allocated_variable_expand_for_file ("$(.SHELLFLAGS)", file);
3309 ifs = allocated_variable_expand_for_file ("$(IFS)", file);
3311 warn_undefined_variables_flag = save;
3314 argv = construct_command_argv_internal (line, restp, shell, shellflags, ifs,
3315 cmd_flags, batch_filename);
3317 free (shell);
3318 free (shellflags);
3319 free (ifs);
3320 #endif /* !VMS */
3321 return argv;
3324 #if !defined(HAVE_DUP2) && !defined(_AMIGA)
3326 dup2 (int old, int new)
3328 int fd;
3330 (void) close (new);
3331 fd = dup (old);
3332 if (fd != new)
3334 (void) close (fd);
3335 errno = EMFILE;
3336 return -1;
3339 return fd;
3341 #endif /* !HAVE_DUP2 && !_AMIGA */
3343 /* On VMS systems, include special VMS functions. */
3345 #ifdef VMS
3346 #include "vmsjobs.c"
3347 #endif