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
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/>. */
32 /* Default shell to use. */
36 char *default_shell
= "sh.exe";
37 int no_default_sh_exe
= 1;
38 int batch_mode_shell
= 1;
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;
64 char default_shell
[] = "";
65 int batch_mode_shell
= 0;
67 #elif defined (__riscos__)
69 char default_shell
[] = "";
70 int batch_mode_shell
= 0;
74 char default_shell
[] = "/bin/sh";
75 int batch_mode_shell
= 0;
81 static int execute_by_shell
;
82 static int dos_pid
= 123;
84 int dos_command_running
;
85 #endif /* __MSDOS__ */
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
;
97 # include <processes.h>
100 # include <lib$routines.h>
101 static void vmsWaitForChildren (int *);
105 # include <windows.h>
107 # include <process.h>
108 # include "sub_proc.h"
110 # include "pathstuff.h"
111 #endif /* WINDOWS32 */
114 # include <process.h>
117 #if defined (HAVE_SYS_WAIT_H) || defined (HAVE_UNION_WAIT)
118 # include <sys/wait.h>
122 # define WAIT_NOHANG(status) waitpid (-1, (status), WNOHANG)
123 #else /* Don't have waitpid. */
128 # define WAIT_NOHANG(status) wait3 ((status), WNOHANG, (struct rusage *) 0)
129 # endif /* Have wait3. */
130 #endif /* Have waitpid. */
132 #if !defined (wait) && !defined (POSIX)
136 #ifndef HAVE_UNION_WAIT
141 # define WTERMSIG(x) ((x) & 0x7f)
144 # define WCOREDUMP(x) ((x) & 0x80)
147 # define WEXITSTATUS(x) (((x) >> 8) & 0xff)
150 # define WIFSIGNALED(x) (WTERMSIG (x) != 0)
153 # define WIFEXITED(x) (WTERMSIG (x) == 0)
156 #else /* Have `union wait'. */
158 # define WAIT_T union wait
160 # define WTERMSIG(x) ((x).w_termsig)
163 # define WCOREDUMP(x) ((x).w_coredump)
166 # define WEXITSTATUS(x) ((x).w_retcode)
169 # define WIFSIGNALED(x) (WTERMSIG(x) != 0)
172 # define WIFEXITED(x) (WTERMSIG(x) == 0)
175 #endif /* Don't have `union wait'. */
177 #if !defined(HAVE_UNISTD_H) && !defined(WINDOWS32)
189 /* Different systems have different requirements for pid_t.
190 Plus we have to support gettext string translation... Argh. */
194 static char pidstring
[100];
195 #if defined(WINDOWS32) && (__GNUC__ > 3 || _MSC_VER > 1300)
196 /* %Id is only needed for 64-builds, which were not supported by
197 older versions of Windows compilers. */
198 sprintf (pidstring
, "%Id", pid
);
200 sprintf (pidstring
, "%lu", (unsigned long) pid
);
205 int getloadavg (double loadavg
[], int nelem
);
206 int start_remote_job (char **argv
, char **envp
, int stdin_fd
, int *is_remote
,
207 int *id_ptr
, int *used_stdin
);
208 int start_remote_job_p (int);
209 int remote_status (int *exit_code_ptr
, int *signal_ptr
, int *coredump_ptr
,
212 RETSIGTYPE
child_handler (int);
213 static void free_child (struct child
*);
214 static void start_job_command (struct child
*child
);
215 static int load_too_high (void);
216 static int job_next_command (struct child
*);
217 static int start_waiting_job (struct child
*);
219 /* Chain of all live (or recently deceased) children. */
221 struct child
*children
= 0;
223 /* Number of children currently running. */
225 unsigned int job_slots_used
= 0;
227 /* Nonzero if the `good' standard input is in use. */
229 static int good_stdin_used
= 0;
231 /* Chain of children waiting to run until the load average goes down. */
233 static struct child
*waiting_jobs
= 0;
235 /* Non-zero if we use a *real* shell (always so on Unix). */
239 /* Number of jobs started in the current second. */
241 unsigned long job_counter
= 0;
243 /* Number of jobserver tokens this instance is currently using. */
245 unsigned int jobserver_tokens
= 0;
249 * The macro which references this function is defined in make.h.
252 w32_kill(pid_t pid
, int sig
)
254 return ((process_kill((HANDLE
)pid
, sig
) == TRUE
) ? 0 : -1);
257 /* This function creates a temporary file name with an extension specified
259 * Return an xmalloc'ed string of a newly created temp file and its
260 * file descriptor, or die. */
262 create_batch_file (char const *base
, int unixy
, int *fd
)
264 const char *const ext
= unixy
? "sh" : "bat";
265 const char *error_string
= NULL
;
266 char temp_path
[MAXPATHLEN
]; /* need to know its length */
267 unsigned path_size
= GetTempPath(sizeof temp_path
, temp_path
);
270 const unsigned sizemax
= strlen (base
) + strlen (ext
) + 10;
274 path_size
= GetCurrentDirectory (sizeof temp_path
, temp_path
);
278 while (path_size
> 0 &&
279 path_size
+ sizemax
< sizeof temp_path
&&
282 unsigned size
= sprintf (temp_path
+ path_size
,
284 temp_path
[path_size
- 1] == '\\' ? "" : "\\",
286 HANDLE h
= CreateFile (temp_path
, /* file name */
287 GENERIC_READ
| GENERIC_WRITE
, /* desired access */
288 0, /* no share mode */
289 NULL
, /* default security attributes */
290 CREATE_NEW
, /* creation disposition */
291 FILE_ATTRIBUTE_NORMAL
| /* flags and attributes */
292 FILE_ATTRIBUTE_TEMPORARY
, /* we'll delete it */
293 NULL
); /* no template file */
295 if (h
== INVALID_HANDLE_VALUE
)
297 const DWORD er
= GetLastError();
299 if (er
== ERROR_FILE_EXISTS
|| er
== ERROR_ALREADY_EXISTS
)
302 /* the temporary path is not guaranteed to exist */
303 else if (path_is_dot
== 0)
305 path_size
= GetCurrentDirectory (sizeof temp_path
, temp_path
);
311 error_string
= map_windows32_error_to_string (er
);
317 const unsigned final_size
= path_size
+ size
+ 1;
318 char *const path
= xmalloc (final_size
);
319 memcpy (path
, temp_path
, final_size
);
320 *fd
= _open_osfhandle ((intptr_t)h
, 0);
325 for (p
= path
; (ch
= *p
) != 0; ++p
)
329 return path
; /* good return */
334 if (error_string
== NULL
)
335 error_string
= _("Cannot create a temporary file\n");
336 fatal (NILF
, error_string
);
341 #endif /* WINDOWS32 */
344 /* returns whether path is assumed to be a unix like shell. */
346 _is_unixy_shell (const char *path
)
348 /* list of non unix shells */
349 const char *known_os2shells
[] = {
361 /* find the rightmost '/' or '\\' */
362 const char *name
= strrchr (path
, '/');
363 const char *p
= strrchr (path
, '\\');
366 if (name
&& p
) /* take the max */
367 name
= (name
> p
) ? name
: p
;
368 else if (p
) /* name must be 0 */
370 else if (!name
) /* name and p must be 0 */
373 if (*name
== '/' || *name
== '\\') name
++;
376 while (known_os2shells
[i
] != NULL
) {
377 if (strcasecmp (name
, known_os2shells
[i
]) == 0)
378 return 0; /* not a unix shell */
382 /* in doubt assume a unix like shell */
387 /* determines whether path looks to be a Bourne-like shell. */
389 is_bourne_compatible_shell (const char *path
)
391 /* list of known unix (Bourne-like) shells */
392 const char *unix_shells
[] = {
404 /* find the rightmost '/' or '\\' */
405 const char *name
= strrchr (path
, '/');
406 char *p
= strrchr (path
, '\\');
408 if (name
&& p
) /* take the max */
409 name
= (name
> p
) ? name
: p
;
410 else if (p
) /* name must be 0 */
412 else if (!name
) /* name and p must be 0 */
415 if (*name
== '/' || *name
== '\\') name
++;
417 /* this should be able to deal with extensions on Windows-like systems */
418 for (i
= 0; unix_shells
[i
] != NULL
; i
++) {
419 len
= strlen(unix_shells
[i
]);
420 #if defined(WINDOWS32) || defined(__MSDOS__)
421 if ((strncasecmp (name
, unix_shells
[i
], len
) == 0) &&
422 (strlen(name
) >= len
&& (name
[len
] == '\0' || name
[len
] == '.')))
424 if ((strncmp (name
, unix_shells
[i
], len
) == 0) &&
425 (strlen(name
) >= len
&& name
[len
] == '\0'))
427 return 1; /* a known unix-style shell */
430 /* if not on the list, assume it's not a Bourne-like shell */
435 /* Write an error message describing the exit status given in
436 EXIT_CODE, EXIT_SIG, and COREDUMP, for the target TARGET_NAME.
437 Append "(ignored)" if IGNORED is nonzero. */
440 child_error (const struct file
*file
,
441 int exit_code
, int exit_sig
, int coredump
, int ignored
)
444 const char *pre
= "*** ";
445 const char *post
= "";
446 const char *dump
= "";
447 struct floc
*flocp
= &file
->cmds
->fileinfo
;
449 if (ignored
&& silent_flag
)
452 if (exit_sig
&& coredump
)
453 dump
= _(" (core dumped)");
458 post
= _(" (ignored)");
465 char *a
= alloca (strlen (flocp
->filenm
) + 1 + 11 + 1);
466 sprintf (a
, "%s:%lu", flocp
->filenm
, flocp
->lineno
);
469 message (0, _("%s: recipe for target `%s' failed"), nm
, file
->name
);
472 if (!(exit_code
& 1))
473 error (NILF
, _("%s[%s] Error 0x%x%s"), pre
, file
->name
, exit_code
, post
);
476 error (NILF
, _("%s[%s] Error %d%s"), pre
, file
->name
, exit_code
, post
);
478 error (NILF
, _("%s[%s] %s%s%s"),
479 pre
, file
->name
, strsignal (exit_sig
), dump
, post
);
484 /* Handle a dead child. This handler may or may not ever be installed.
486 If we're using the jobserver feature, we need it. First, installing it
487 ensures the read will interrupt on SIGCHLD. Second, we close the dup'd
488 read FD to ensure we don't enter another blocking read without reaping all
489 the dead children. In this case we don't need the dead_children count.
491 If we don't have either waitpid or wait3, then make is unreliable, but we
492 use the dead_children count to reap children as best we can. */
494 static unsigned int dead_children
= 0;
497 child_handler (int sig UNUSED
)
508 /* The signal handler must called only once! */
509 signal (SIGCHLD
, SIG_DFL
);
512 /* This causes problems if the SIGCHLD interrupts a printf().
513 DB (DB_JOBS, (_("Got a SIGCHLD; %u unreaped children.\n"), dead_children));
517 extern int shell_function_pid
, shell_function_completed
;
519 /* Reap all dead children, storing the returned status and the new command
520 state (`cs_finished') in the `file' member of the `struct child' for the
521 dead child, and removing the child from the chain. In addition, if BLOCK
522 nonzero, we block in this function until we've reaped at least one
523 complete child, waiting for it to die if necessary. If ERR is nonzero,
524 print an error message first. */
527 reap_children (int block
, int err
)
531 /* Initially, assume we have some. */
536 # define REAP_MORE reap_more
538 # define REAP_MORE dead_children
543 We have at least one child outstanding OR a shell function in progress,
545 We're blocking for a complete child OR there are more children to reap
547 we'll keep reaping children. */
549 while ((children
!= 0 || shell_function_pid
!= 0)
550 && (block
|| REAP_MORE
))
554 int exit_code
, exit_sig
, coredump
;
555 struct child
*lastc
, *c
;
557 int any_remote
, any_local
;
562 static int printed
= 0;
564 /* We might block for a while, so let the user know why.
565 Only print this message once no matter how many jobs are left. */
568 error (NILF
, _("*** Waiting for unfinished jobs...."));
572 /* We have one less dead child to reap. As noted in
573 child_handler() above, this count is completely unimportant for
574 all modern, POSIX-y systems that support wait3() or waitpid().
575 The rest of this comment below applies only to early, broken
576 pre-POSIX systems. We keep the count only because... it's there...
578 The test and decrement are not atomic; if it is compiled into:
579 register = dead_children - 1;
580 dead_children = register;
581 a SIGCHLD could come between the two instructions.
582 child_handler increments dead_children.
583 The second instruction here would lose that increment. But the
584 only effect of dead_children being wrong is that we might wait
585 longer than necessary to reap a child, and lose some parallelism;
586 and we might print the "Waiting for unfinished jobs" message above
587 when not necessary. */
589 if (dead_children
> 0)
593 any_local
= shell_function_pid
!= 0;
594 for (c
= children
; c
!= 0; c
= c
->next
)
596 any_remote
|= c
->remote
;
597 any_local
|= ! c
->remote
;
598 DB (DB_JOBS
, (_("Live child %p (%s) PID %s %s\n"),
599 c
, c
->file
->name
, pid2str (c
->pid
),
600 c
->remote
? _(" (remote)") : ""));
606 /* First, check for remote children. */
608 pid
= remote_status (&exit_code
, &exit_sig
, &coredump
, 0);
613 /* We got a remote child. */
617 /* A remote status command failed miserably. Punt. */
619 pfatal_with_name ("remote_status");
623 /* No remote children. Check for local children. */
624 #if !defined(__MSDOS__) && !defined(_AMIGA) && !defined(WINDOWS32)
628 vmsWaitForChildren (&status
);
633 pid
= WAIT_NOHANG (&status
);
636 EINTRLOOP(pid
, wait (&status
));
644 /* The wait*() failed miserably. Punt. */
645 pfatal_with_name ("wait");
649 /* We got a child exit; chop the status word up. */
650 exit_code
= WEXITSTATUS (status
);
651 exit_sig
= WIFSIGNALED (status
) ? WTERMSIG (status
) : 0;
652 coredump
= WCOREDUMP (status
);
654 /* If we have started jobs in this second, remove one. */
660 /* No local children are dead. */
663 if (!block
|| !any_remote
)
666 /* Now try a blocking wait for a remote child. */
667 pid
= remote_status (&exit_code
, &exit_sig
, &coredump
, 1);
669 goto remote_status_lose
;
671 /* No remote children either. Finally give up. */
674 /* We got a remote child. */
677 #endif /* !__MSDOS__, !Amiga, !WINDOWS32. */
680 /* Life is very different on MSDOS. */
683 exit_code
= WEXITSTATUS (status
);
684 if (exit_code
== 0xff)
686 exit_sig
= WIFSIGNALED (status
) ? WTERMSIG (status
) : 0;
688 #endif /* __MSDOS__ */
692 status
= amiga_status
;
693 exit_code
= amiga_status
;
706 /* Record the thread ID of the main process, so that we
707 could suspend it in the signal handler. */
710 hcTID
= GetCurrentThread ();
711 hcPID
= GetCurrentProcess ();
712 if (!DuplicateHandle (hcPID
, hcTID
, hcPID
, &main_thread
, 0,
713 FALSE
, DUPLICATE_SAME_ACCESS
))
715 DWORD e
= GetLastError ();
717 "Determine main thread ID (Error %ld: %s)\n",
718 e
, map_windows32_error_to_string(e
));
721 DB (DB_VERBOSE
, ("Main thread handle = %p\n", main_thread
));
724 /* wait for anything to finish */
725 hPID
= process_wait_for_any();
729 /* was an error found on this process? */
730 werr
= process_last_err(hPID
);
733 exit_code
= process_exit_code(hPID
);
736 fprintf(stderr
, "make (e=%d): %s",
737 exit_code
, map_windows32_error_to_string(exit_code
));
740 exit_sig
= process_signal(hPID
);
742 /* cleanup process */
743 process_cleanup(hPID
);
749 #endif /* WINDOWS32 */
752 /* Check if this is the child of the `shell' function. */
753 if (!remote
&& pid
== shell_function_pid
)
755 /* It is. Leave an indicator for the `shell' function. */
756 if (exit_sig
== 0 && exit_code
== 127)
757 shell_function_completed
= -1;
759 shell_function_completed
= 1;
763 child_failed
= exit_sig
!= 0 || exit_code
!= 0;
765 /* Search for a child matching the deceased one. */
767 for (c
= children
; c
!= 0; lastc
= c
, c
= c
->next
)
768 if (c
->remote
== remote
&& c
->pid
== pid
)
772 /* An unknown child died.
773 Ignore it; it was inherited from our invoker. */
776 DB (DB_JOBS
, (child_failed
777 ? _("Reaping losing child %p PID %s %s\n")
778 : _("Reaping winning child %p PID %s %s\n"),
779 c
, pid2str (c
->pid
), c
->remote
? _(" (remote)") : ""));
781 if (c
->sh_batch_file
) {
782 DB (DB_JOBS
, (_("Cleaning up temp batch file %s\n"),
785 /* just try and remove, don't care if this fails */
786 remove (c
->sh_batch_file
);
788 /* all done with memory */
789 free (c
->sh_batch_file
);
790 c
->sh_batch_file
= NULL
;
793 /* If this child had the good stdin, say it is now free. */
797 dontcare
= c
->dontcare
;
799 if (child_failed
&& !c
->noerror
&& !ignore_errors_flag
)
801 /* The commands failed. Write an error message,
802 delete non-precious targets, and abort. */
803 static int delete_on_error
= -1;
806 child_error (c
->file
, exit_code
, exit_sig
, coredump
, 0);
808 c
->file
->update_status
= 2;
809 if (delete_on_error
== -1)
811 struct file
*f
= lookup_file (".DELETE_ON_ERROR");
812 delete_on_error
= f
!= 0 && f
->is_target
;
814 if (exit_sig
!= 0 || delete_on_error
)
815 delete_child_targets (c
);
821 /* The commands failed, but we don't care. */
822 child_error (c
->file
, exit_code
, exit_sig
, coredump
, 1);
826 /* If there are more commands to run, try to start them. */
827 if (job_next_command (c
))
829 if (handling_fatal_signal
)
831 /* Never start new commands while we are dying.
832 Since there are more commands that wanted to be run,
833 the target was not completely remade. So we treat
834 this as if a command had failed. */
835 c
->file
->update_status
= 2;
839 /* Check again whether to start remotely.
840 Whether or not we want to changes over time.
841 Also, start_remote_job may need state set up
842 by start_remote_job_p. */
843 c
->remote
= start_remote_job_p (0);
844 start_job_command (c
);
845 /* Fatal signals are left blocked in case we were
846 about to put that child on the chain. But it is
847 already there, so it is safe for a fatal signal to
848 arrive now; it will clean up this child's targets. */
850 if (c
->file
->command_state
== cs_running
)
851 /* We successfully started the new command.
852 Loop to reap more children. */
856 if (c
->file
->update_status
!= 0)
857 /* We failed to start the commands. */
858 delete_child_targets (c
);
861 /* There are no more commands. We got through them all
862 without an unignored error. Now the target has been
863 successfully updated. */
864 c
->file
->update_status
= 0;
867 /* When we get here, all the commands for C->file are finished
868 (or aborted) and C->file->update_status contains 0 or 2. But
869 C->file->command_state is still cs_running if all the commands
870 ran; notice_finish_file looks for cs_running to tell it that
871 it's interesting to check the file's modtime again now. */
873 if (! handling_fatal_signal
)
874 /* Notice if the target of the commands has been changed.
875 This also propagates its values for command_state and
876 update_status to its also_make files. */
877 notice_finished_file (c
->file
);
879 DB (DB_JOBS
, (_("Removing child %p PID %s%s from chain.\n"),
880 c
, pid2str (c
->pid
), c
->remote
? _(" (remote)") : ""));
882 /* Block fatal signals while frobnicating the list, so that
883 children and job_slots_used are always consistent. Otherwise
884 a fatal signal arriving after the child is off the chain and
885 before job_slots_used is decremented would believe a child was
886 live and call reap_children again. */
889 /* There is now another slot open. */
890 if (job_slots_used
> 0)
893 /* Remove the child from the chain and free it. */
897 lastc
->next
= c
->next
;
903 /* If the job failed, and the -k flag was not given, die,
904 unless we are already in the process of dying. */
905 if (!err
&& child_failed
&& !dontcare
&& !keep_going_flag
&&
906 /* fatal_error_signal will die with the right signal. */
907 !handling_fatal_signal
)
910 /* Only block for one child. */
917 /* Free the storage allocated for CHILD. */
920 free_child (struct child
*child
)
922 if (!jobserver_tokens
)
923 fatal (NILF
, "INTERNAL: Freeing child %p (%s) but no tokens left!\n",
924 child
, child
->file
->name
);
926 /* If we're using the jobserver and this child is not the only outstanding
927 job, put a token back into the pipe for it. */
929 if (job_fds
[1] >= 0 && jobserver_tokens
> 1)
934 /* Write a job token back to the pipe. */
936 EINTRLOOP (r
, write (job_fds
[1], &token
, 1));
938 pfatal_with_name (_("write jobserver"));
940 DB (DB_JOBS
, (_("Released token for child %p (%s).\n"),
941 child
, child
->file
->name
));
946 if (handling_fatal_signal
) /* Don't bother free'ing if about to die. */
949 if (child
->command_lines
!= 0)
951 register unsigned int i
;
952 for (i
= 0; i
< child
->file
->cmds
->ncommand_lines
; ++i
)
953 free (child
->command_lines
[i
]);
954 free (child
->command_lines
);
957 if (child
->environment
!= 0)
959 register char **ep
= child
->environment
;
962 free (child
->environment
);
969 extern sigset_t fatal_signal_set
;
976 (void) sigprocmask (SIG_BLOCK
, &fatal_signal_set
, (sigset_t
*) 0);
978 # ifdef HAVE_SIGSETMASK
979 (void) sigblock (fatal_signal_mask
);
989 sigemptyset (&empty
);
990 sigprocmask (SIG_SETMASK
, &empty
, (sigset_t
*) 0);
994 #ifdef MAKE_JOBSERVER
996 job_noop (int sig UNUSED
)
999 /* Set the child handler action flags to FLAGS. */
1001 set_child_handler_action_flags (int set_handler
, int set_alarm
)
1003 struct sigaction sa
;
1006 /* The child handler must be turned off here. */
1007 signal (SIGCHLD
, SIG_DFL
);
1010 memset (&sa
, '\0', sizeof sa
);
1011 sa
.sa_handler
= child_handler
;
1012 sa
.sa_flags
= set_handler
? 0 : SA_RESTART
;
1014 sigaction (SIGCHLD
, &sa
, NULL
);
1016 #if defined SIGCLD && SIGCLD != SIGCHLD
1017 sigaction (SIGCLD
, &sa
, NULL
);
1022 /* If we're about to enter the read(), set an alarm to wake up in a
1023 second so we can check if the load has dropped and we can start more
1024 work. On the way out, turn off the alarm and set SIG_DFL. */
1025 alarm (set_handler
? 1 : 0);
1026 sa
.sa_handler
= set_handler
? job_noop
: SIG_DFL
;
1028 sigaction (SIGALRM
, &sa
, NULL
);
1035 /* Start a job to run the commands specified in CHILD.
1036 CHILD is updated to reflect the commands and ID of the child process.
1038 NOTE: On return fatal signals are blocked! The caller is responsible
1039 for calling `unblock_sigs', once the new child is safely on the chain so
1040 it can be cleaned up in the event of a fatal signal. */
1043 start_job_command (struct child
*child
)
1045 #if !defined(_AMIGA) && !defined(WINDOWS32)
1046 static int bad_stdin
= -1;
1049 /* Must be volatile to silence bogus GCC warning about longjmp/vfork. */
1057 /* If we have a completely empty commandset, stop now. */
1058 if (!child
->command_ptr
)
1061 /* Combine the flags parsed for the line itself with
1062 the flags specified globally for this target. */
1063 flags
= (child
->file
->command_flags
1064 | child
->file
->cmds
->lines_flags
[child
->command_line
- 1]);
1066 p
= child
->command_ptr
;
1067 child
->noerror
= ((flags
& COMMANDS_NOERROR
) != 0);
1072 flags
|= COMMANDS_SILENT
;
1074 flags
|= COMMANDS_RECURSE
;
1077 else if (!isblank ((unsigned char)*p
))
1082 /* Update the file's command flags with any new ones we found. We only
1083 keep the COMMANDS_RECURSE setting. Even this isn't 100% correct; we are
1084 now marking more commands recursive than should be in the case of
1085 multiline define/endef scripts where only one line is marked "+". In
1086 order to really fix this, we'll have to keep a lines_flags for every
1087 actual line, after expansion. */
1088 child
->file
->cmds
->lines_flags
[child
->command_line
- 1]
1089 |= flags
& COMMANDS_RECURSE
;
1091 /* Figure out an argument list from this command line. */
1098 argv
= construct_command_argv (p
, &end
, child
->file
,
1099 child
->file
->cmds
->lines_flags
[child
->command_line
- 1],
1100 &child
->sh_batch_file
);
1103 child
->command_ptr
= NULL
;
1107 child
->command_ptr
= end
;
1111 /* If -q was given, say that updating `failed' if there was any text on the
1112 command line, or `succeeded' otherwise. The exit status of 1 tells the
1113 user that -q is saying `something to do'; the exit status for a random
1115 if (argv
!= 0 && question_flag
&& !(flags
& COMMANDS_RECURSE
))
1121 child
->file
->update_status
= 1;
1122 notice_finished_file (child
->file
);
1126 if (touch_flag
&& !(flags
& COMMANDS_RECURSE
))
1128 /* Go on to the next command. It might be the recursive one.
1129 We construct ARGV only to find the end of the command line. */
1144 execute_by_shell
= 0; /* in case construct_command_argv sets it */
1146 /* This line has no commands. Go to the next. */
1147 if (job_next_command (child
))
1148 start_job_command (child
);
1151 /* No more commands. Make sure we're "running"; we might not be if
1152 (e.g.) all commands were skipped due to -n. */
1153 set_command_state (child
->file
, cs_running
);
1154 child
->file
->update_status
= 0;
1155 notice_finished_file (child
->file
);
1160 /* Print out the command. If silent, we call `message' with null so it
1161 can log the working directory before the command's own error messages
1164 message (0, (just_print_flag
|| trace_flag
1165 || (!(flags
& COMMANDS_SILENT
) && !silent_flag
))
1166 ? "%s" : (char *) 0, p
);
1168 /* Tell update_goal_chain that a command has been started on behalf of
1169 this target. It is important that this happens here and not in
1170 reap_children (where we used to do it), because reap_children might be
1171 reaping children from a different target. We want this increment to
1172 guaranteedly indicate that a command was started for the dependency
1173 chain (i.e., update_file recursion chain) we are processing. */
1177 /* Optimize an empty command. People use this for timestamp rules,
1178 so avoid forking a useless shell. Do this after we increment
1179 commands_started so make still treats this special case as if it
1180 performed some action (makes a difference as to what messages are
1183 #if !defined(VMS) && !defined(_AMIGA)
1185 #if defined __MSDOS__ || defined (__EMX__)
1186 unixy_shell
/* the test is complicated and we already did it */
1188 (argv
[0] && is_bourne_compatible_shell(argv
[0]))
1190 && (argv
[1] && argv
[1][0] == '-'
1192 ((argv
[1][1] == 'c' && argv
[1][2] == '\0')
1194 (argv
[1][1] == 'e' && argv
[1][2] == 'c' && argv
[1][3] == '\0')))
1195 && (argv
[2] && argv
[2][0] == ':' && argv
[2][1] == '\0')
1202 #endif /* !VMS && !_AMIGA */
1204 /* If -n was given, recurse to get the next line in the sequence. */
1206 if (just_print_flag
&& !(flags
& COMMANDS_RECURSE
))
1215 /* Flush the output streams so they won't have things written twice. */
1221 #if !defined(WINDOWS32) && !defined(_AMIGA) && !defined(__MSDOS__)
1223 /* Set up a bad standard input that reads from a broken pipe. */
1225 if (bad_stdin
== -1)
1227 /* Make a file descriptor that is the read end of a broken pipe.
1228 This will be used for some children's standard inputs. */
1232 /* Close the write side. */
1233 (void) close (pd
[1]);
1234 /* Save the read side. */
1237 /* Set the descriptor to close on exec, so it does not litter any
1238 child's descriptor table. When it is dup2'd onto descriptor 0,
1239 that descriptor will not close on exec. */
1240 CLOSE_ON_EXEC (bad_stdin
);
1244 #endif /* !WINDOWS32 && !_AMIGA && !__MSDOS__ */
1246 /* Decide whether to give this child the `good' standard input
1247 (one that points to the terminal or whatever), or the `bad' one
1248 that points to the read side of a broken pipe. */
1250 child
->good_stdin
= !good_stdin_used
;
1251 if (child
->good_stdin
)
1252 good_stdin_used
= 1;
1259 /* Set up the environment for the child. */
1260 if (child
->environment
== 0)
1261 child
->environment
= target_environment (child
->file
);
1264 #if !defined(__MSDOS__) && !defined(_AMIGA) && !defined(WINDOWS32)
1267 /* start_waiting_job has set CHILD->remote if we can start a remote job. */
1270 int is_remote
, id
, used_stdin
;
1271 if (start_remote_job (argv
, child
->environment
,
1272 child
->good_stdin
? 0 : bad_stdin
,
1273 &is_remote
, &id
, &used_stdin
))
1274 /* Don't give up; remote execution may fail for various reasons. If
1275 so, simply run the job locally. */
1279 if (child
->good_stdin
&& !used_stdin
)
1281 child
->good_stdin
= 0;
1282 good_stdin_used
= 0;
1284 child
->remote
= is_remote
;
1291 /* Fork the child process. */
1293 char **parent_environ
;
1301 if (!child_execute_job (argv
, child
)) {
1303 perror_with_name ("vfork", "");
1309 parent_environ
= environ
;
1312 /* If we aren't running a recursive command and we have a jobserver
1313 pipe, close it before exec'ing. */
1314 if (!(flags
& COMMANDS_RECURSE
) && job_fds
[0] >= 0)
1316 CLOSE_ON_EXEC (job_fds
[0]);
1317 CLOSE_ON_EXEC (job_fds
[1]);
1320 CLOSE_ON_EXEC (job_rfd
);
1322 /* Never use fork()/exec() here! Use spawn() instead in exec_command() */
1323 child
->pid
= child_execute_job (child
->good_stdin
? 0 : bad_stdin
, 1,
1324 argv
, child
->environment
);
1329 perror_with_name ("spawn", "");
1333 /* undo CLOSE_ON_EXEC() after the child process has been started */
1334 if (!(flags
& COMMANDS_RECURSE
) && job_fds
[0] >= 0)
1336 fcntl (job_fds
[0], F_SETFD
, 0);
1337 fcntl (job_fds
[1], F_SETFD
, 0);
1340 fcntl (job_rfd
, F_SETFD
, 0);
1342 #else /* !__EMX__ */
1344 child
->pid
= vfork ();
1345 environ
= parent_environ
; /* Restore value child may have clobbered. */
1346 if (child
->pid
== 0)
1348 /* We are the child side. */
1351 /* If we aren't running a recursive command and we have a jobserver
1352 pipe, close it before exec'ing. */
1353 if (!(flags
& COMMANDS_RECURSE
) && job_fds
[0] >= 0)
1361 #ifdef SET_STACK_SIZE
1362 /* Reset limits, if necessary. */
1363 if (stack_limit
.rlim_cur
)
1364 setrlimit (RLIMIT_STACK
, &stack_limit
);
1367 child_execute_job (child
->good_stdin
? 0 : bad_stdin
, 1,
1368 argv
, child
->environment
);
1370 else if (child
->pid
< 0)
1374 perror_with_name ("vfork", "");
1377 # endif /* !__EMX__ */
1381 #else /* __MSDOS__ or Amiga or WINDOWS32 */
1389 /* We call `system' to do the job of the SHELL, since stock DOS
1390 shell is too dumb. Our `system' knows how to handle long
1391 command lines even if pipes/redirection is needed; it will only
1392 call COMMAND.COM when its internal commands are used. */
1393 if (execute_by_shell
)
1395 char *cmdline
= argv
[0];
1396 /* We don't have a way to pass environment to `system',
1397 so we need to save and restore ours, sigh... */
1398 char **parent_environ
= environ
;
1400 environ
= child
->environment
;
1402 /* If we have a *real* shell, tell `system' to call
1403 it to do everything for us. */
1406 /* A *real* shell on MSDOS may not support long
1407 command lines the DJGPP way, so we must use `system'. */
1408 cmdline
= argv
[2]; /* get past "shell -c" */
1411 dos_command_running
= 1;
1412 proc_return
= system (cmdline
);
1413 environ
= parent_environ
;
1414 execute_by_shell
= 0; /* for the next time */
1418 dos_command_running
= 1;
1419 proc_return
= spawnvpe (P_WAIT
, argv
[0], argv
, child
->environment
);
1422 /* Need to unblock signals before turning off
1423 dos_command_running, so that child's signals
1424 will be treated as such (see fatal_error_signal). */
1426 dos_command_running
= 0;
1428 /* If the child got a signal, dos_status has its
1429 high 8 bits set, so be careful not to alter them. */
1430 if (proc_return
== -1)
1433 dos_status
|= (proc_return
& 0xff);
1435 child
->pid
= dos_pid
++;
1437 #endif /* __MSDOS__ */
1439 amiga_status
= MyExecute (argv
);
1442 child
->pid
= amiga_pid
++;
1443 if (amiga_batch_file
)
1445 amiga_batch_file
= 0;
1446 DeleteFile (amiga_bname
); /* Ignore errors. */
1454 /* make UNC paths safe for CreateProcess -- backslash format */
1456 if (arg0
&& arg0
[0] == '/' && arg0
[1] == '/')
1457 for ( ; arg0
&& *arg0
; arg0
++)
1461 /* make sure CreateProcess() has Path it needs */
1462 sync_Path_environment();
1464 hPID
= process_easy(argv
, child
->environment
);
1466 if (hPID
!= INVALID_HANDLE_VALUE
)
1467 child
->pid
= (pid_t
) hPID
;
1472 _("process_easy() failed to launch process (e=%ld)\n"),
1473 process_last_err(hPID
));
1474 for (i
= 0; argv
[i
]; i
++)
1475 fprintf(stderr
, "%s ", argv
[i
]);
1476 fprintf(stderr
, _("\nCounted %d args in failed launch\n"), i
);
1480 #endif /* WINDOWS32 */
1481 #endif /* __MSDOS__ or Amiga or WINDOWS32 */
1483 /* Bump the number of jobs started in this second. */
1486 /* We are the parent side. Set the state to
1487 say the commands are running and return. */
1489 set_command_state (child
->file
, cs_running
);
1491 /* Free the storage used by the child's argument list. */
1500 child
->file
->update_status
= 2;
1501 notice_finished_file (child
->file
);
1505 /* Try to start a child running.
1506 Returns nonzero if the child was started (and maybe finished), or zero if
1507 the load was too high and the child was put on the `waiting_jobs' chain. */
1510 start_waiting_job (struct child
*c
)
1512 struct file
*f
= c
->file
;
1514 /* If we can start a job remotely, we always want to, and don't care about
1515 the local load average. We record that the job should be started
1516 remotely in C->remote for start_job_command to test. */
1518 c
->remote
= start_remote_job_p (1);
1520 /* If we are running at least one job already and the load average
1521 is too high, make this one wait. */
1523 && ((job_slots_used
> 0 && load_too_high ())
1525 || (process_used_slots () >= MAXIMUM_WAIT_OBJECTS
)
1529 /* Put this child on the chain of children waiting for the load average
1531 set_command_state (f
, cs_running
);
1532 c
->next
= waiting_jobs
;
1537 /* Start the first command; reap_children will run later command lines. */
1538 start_job_command (c
);
1540 switch (f
->command_state
)
1544 DB (DB_JOBS
, (_("Putting child %p (%s) PID %s%s on the chain.\n"),
1545 c
, c
->file
->name
, pid2str (c
->pid
),
1546 c
->remote
? _(" (remote)") : ""));
1548 /* One more job slot is in use. */
1553 case cs_not_started
:
1554 /* All the command lines turned out to be empty. */
1555 f
->update_status
= 0;
1559 notice_finished_file (f
);
1564 assert (f
->command_state
== cs_finished
);
1571 /* Create a `struct child' for FILE and start its commands running. */
1574 new_job (struct file
*file
)
1576 struct commands
*cmds
= file
->cmds
;
1581 /* Let any previously decided-upon jobs that are waiting
1582 for the load to go down start before this new one. */
1583 start_waiting_jobs ();
1585 /* Reap any children that might have finished recently. */
1586 reap_children (0, 0);
1588 /* Chop the commands up into lines if they aren't already. */
1589 chop_commands (cmds
);
1591 /* Expand the command lines and store the results in LINES. */
1592 lines
= xmalloc (cmds
->ncommand_lines
* sizeof (char *));
1593 for (i
= 0; i
< cmds
->ncommand_lines
; ++i
)
1595 /* Collapse backslash-newline combinations that are inside variable
1596 or function references. These are left alone by the parser so
1597 that they will appear in the echoing of commands (where they look
1598 nice); and collapsed by construct_command_argv when it tokenizes.
1599 But letting them survive inside function invocations loses because
1600 we don't want the functions to see them as part of the text. */
1602 char *in
, *out
, *ref
;
1604 /* IN points to where in the line we are scanning.
1605 OUT points to where in the line we are writing.
1606 When we collapse a backslash-newline combination,
1607 IN gets ahead of OUT. */
1609 in
= out
= cmds
->command_lines
[i
];
1610 while ((ref
= strchr (in
, '$')) != 0)
1612 ++ref
; /* Move past the $. */
1615 /* Copy the text between the end of the last chunk
1616 we processed (where IN points) and the new chunk
1617 we are about to process (where REF points). */
1618 memmove (out
, in
, ref
- in
);
1620 /* Move both pointers past the boring stuff. */
1624 if (*ref
== '(' || *ref
== '{')
1626 char openparen
= *ref
;
1627 char closeparen
= openparen
== '(' ? ')' : '}';
1631 *out
++ = *in
++; /* Copy OPENPAREN. */
1632 /* IN now points past the opening paren or brace.
1633 Count parens or braces until it is matched. */
1637 if (*in
== closeparen
&& --count
< 0)
1639 else if (*in
== '\\' && in
[1] == '\n')
1641 /* We have found a backslash-newline inside a
1642 variable or function reference. Eat it and
1643 any following whitespace. */
1646 for (p
= in
- 1; p
> ref
&& *p
== '\\'; --p
)
1650 /* There were two or more backslashes, so this is
1651 not really a continuation line. We don't collapse
1652 the quoting backslashes here as is done in
1653 collapse_continuations, because the line will
1654 be collapsed again after expansion. */
1658 /* Skip the backslash, newline and
1659 any following whitespace. */
1660 in
= next_token (in
+ 2);
1662 /* Discard any preceding whitespace that has
1663 already been written to the output. */
1665 && isblank ((unsigned char)out
[-1]))
1668 /* Replace it all with a single space. */
1674 if (*in
== openparen
)
1683 /* There are no more references in this line to worry about.
1684 Copy the remaining uninteresting text to the output. */
1686 memmove (out
, in
, strlen (in
) + 1);
1688 /* Finally, expand the line. */
1689 lines
[i
] = allocated_variable_expand_for_file (cmds
->command_lines
[i
],
1693 /* Start the command sequence, record it in a new
1694 `struct child', and add that to the chain. */
1696 c
= xcalloc (sizeof (struct child
));
1698 c
->command_lines
= lines
;
1699 c
->sh_batch_file
= NULL
;
1701 /* Cache dontcare flag because file->dontcare can be changed once we
1702 return. Check dontcare inheritance mechanism for details. */
1703 c
->dontcare
= file
->dontcare
;
1705 /* Fetch the first command line to be run. */
1706 job_next_command (c
);
1708 /* Wait for a job slot to be freed up. If we allow an infinite number
1709 don't bother; also job_slots will == 0 if we're using the jobserver. */
1712 while (job_slots_used
== job_slots
)
1713 reap_children (1, 0);
1715 #ifdef MAKE_JOBSERVER
1716 /* If we are controlling multiple jobs make sure we have a token before
1717 starting the child. */
1719 /* This can be inefficient. There's a decent chance that this job won't
1720 actually have to run any subprocesses: the command script may be empty
1721 or otherwise optimized away. It would be nice if we could defer
1722 obtaining a token until just before we need it, in start_job_command.
1723 To do that we'd need to keep track of whether we'd already obtained a
1724 token (since start_job_command is called for each line of the job, not
1725 just once). Also more thought needs to go into the entire algorithm;
1726 this is where the old parallel job code waits, so... */
1728 else if (job_fds
[0] >= 0)
1735 DB (DB_JOBS
, ("Need a job token; we %shave children\n",
1736 children
? "" : "don't "));
1738 /* If we don't already have a job started, use our "free" token. */
1739 if (!jobserver_tokens
)
1742 /* Read a token. As long as there's no token available we'll block.
1743 We enable interruptible system calls before the read(2) so that if
1744 we get a SIGCHLD while we're waiting, we'll return with EINTR and
1745 we can process the death(s) and return tokens to the free pool.
1747 Once we return from the read, we immediately reinstate restartable
1748 system calls. This allows us to not worry about checking for
1749 EINTR on all the other system calls in the program.
1751 There is one other twist: there is a span between the time
1752 reap_children() does its last check for dead children and the time
1753 the read(2) call is entered, below, where if a child dies we won't
1754 notice. This is extremely serious as it could cause us to
1755 deadlock, given the right set of events.
1757 To avoid this, we do the following: before we reap_children(), we
1758 dup(2) the read FD on the jobserver pipe. The read(2) call below
1759 uses that new FD. In the signal handler, we close that FD. That
1760 way, if a child dies during the section mentioned above, the
1761 read(2) will be invoked with an invalid FD and will return
1762 immediately with EBADF. */
1764 /* Make sure we have a dup'd FD. */
1767 DB (DB_JOBS
, ("Duplicate the job FD\n"));
1768 job_rfd
= dup (job_fds
[0]);
1771 /* Reap anything that's currently waiting. */
1772 reap_children (0, 0);
1774 /* Kick off any jobs we have waiting for an opportunity that
1775 can run now (ie waiting for load). */
1776 start_waiting_jobs ();
1778 /* If our "free" slot has become available, use it; we don't need an
1780 if (!jobserver_tokens
)
1783 /* There must be at least one child already, or we have no business
1784 waiting for a token. */
1786 fatal (NILF
, "INTERNAL: no children as we go to sleep on read\n");
1788 /* Set interruptible system calls, and read() for a job token. */
1789 set_child_handler_action_flags (1, waiting_jobs
!= NULL
);
1790 got_token
= read (job_rfd
, &token
, 1);
1791 saved_errno
= errno
;
1792 set_child_handler_action_flags (0, waiting_jobs
!= NULL
);
1794 /* If we got one, we're done here. */
1797 DB (DB_JOBS
, (_("Obtained token for child %p (%s).\n"),
1802 /* If the error _wasn't_ expected (EINTR or EBADF), punt. Otherwise,
1803 go back and reap_children(), and try again. */
1804 errno
= saved_errno
;
1805 if (errno
!= EINTR
&& errno
!= EBADF
)
1806 pfatal_with_name (_("read jobs pipe"));
1808 DB (DB_JOBS
, ("Read returned EBADF.\n"));
1815 Use message here so that changes to working directories are logged. */
1818 char *newer
= allocated_variable_expand_for_file ("$?", c
->file
);
1821 if (! cmds
->fileinfo
.filenm
)
1822 nm
= _("<builtin>");
1825 nm
= alloca (strlen (cmds
->fileinfo
.filenm
) + 1 + 11 + 1);
1826 sprintf (nm
, "%s:%lu", cmds
->fileinfo
.filenm
, cmds
->fileinfo
.lineno
);
1829 if (newer
[0] == '\0')
1830 message (0, _("%s: target `%s' does not exist"), nm
, c
->file
->name
);
1832 message (0, _("%s: update target `%s' due to: %s"), nm
,
1833 c
->file
->name
, newer
);
1839 /* The job is now primed. Start it running.
1840 (This will notice if there is in fact no recipe.) */
1841 start_waiting_job (c
);
1843 if (job_slots
== 1 || not_parallel
)
1844 /* Since there is only one job slot, make things run linearly.
1845 Wait for the child to die, setting the state to `cs_finished'. */
1846 while (file
->command_state
== cs_running
)
1847 reap_children (1, 0);
1852 /* Move CHILD's pointers to the next command for it to execute.
1853 Returns nonzero if there is another command. */
1856 job_next_command (struct child
*child
)
1858 while (child
->command_ptr
== 0 || *child
->command_ptr
== '\0')
1860 /* There are no more lines in the expansion of this line. */
1861 if (child
->command_line
== child
->file
->cmds
->ncommand_lines
)
1863 /* There are no more lines to be expanded. */
1864 child
->command_ptr
= 0;
1868 /* Get the next line to run. */
1869 child
->command_ptr
= child
->command_lines
[child
->command_line
++];
1874 /* Determine if the load average on the system is too high to start a new job.
1875 The real system load average is only recomputed once a second. However, a
1876 very parallel make can easily start tens or even hundreds of jobs in a
1877 second, which brings the system to its knees for a while until that first
1878 batch of jobs clears out.
1880 To avoid this we use a weighted algorithm to try to account for jobs which
1881 have been started since the last second, and guess what the load average
1882 would be now if it were computed.
1884 This algorithm was provided by Thomas Riedl <thomas.riedl@siemens.com>,
1887 ! calculate something load-oid and add to the observed sys.load,
1888 ! so that latter can catch up:
1889 ! - every job started increases jobctr;
1890 ! - every dying job decreases a positive jobctr;
1891 ! - the jobctr value gets zeroed every change of seconds,
1892 ! after its value*weight_b is stored into the 'backlog' value last_sec
1893 ! - weight_a times the sum of jobctr and last_sec gets
1894 ! added to the observed sys.load.
1896 ! The two weights have been tried out on 24 and 48 proc. Sun Solaris-9
1897 ! machines, using a several-thousand-jobs-mix of cpp, cc, cxx and smallish
1898 ! sub-shelled commands (rm, echo, sed...) for tests.
1899 ! lowering the 'direct influence' factor weight_a (e.g. to 0.1)
1900 ! resulted in significant excession of the load limit, raising it
1901 ! (e.g. to 0.5) took bad to small, fast-executing jobs and didn't
1902 ! reach the limit in most test cases.
1904 ! lowering the 'history influence' weight_b (e.g. to 0.1) resulted in
1905 ! exceeding the limit for longer-running stuff (compile jobs in
1906 ! the .5 to 1.5 sec. range),raising it (e.g. to 0.5) overrepresented
1907 ! small jobs' effects.
1911 #define LOAD_WEIGHT_A 0.25
1912 #define LOAD_WEIGHT_B 0.25
1915 load_too_high (void)
1917 #if defined(__MSDOS__) || defined(VMS) || defined(_AMIGA) || defined(__riscos__)
1920 static double last_sec
;
1921 static time_t last_now
;
1926 /* sub_proc.c cannot wait for more than MAXIMUM_WAIT_OBJECTS children */
1927 if (process_used_slots () >= MAXIMUM_WAIT_OBJECTS
)
1931 if (max_load_average
< 0)
1934 /* Find the real system load average. */
1936 if (getloadavg (&load
, 1) != 1)
1938 static int lossage
= -1;
1939 /* Complain only once for the same error. */
1940 if (lossage
== -1 || errno
!= lossage
)
1943 /* An errno value of zero means getloadavg is just unsupported. */
1945 _("cannot enforce load limits on this operating system"));
1947 perror_with_name (_("cannot enforce load limit: "), "getloadavg");
1954 /* If we're in a new second zero the counter and correct the backlog
1955 value. Only keep the backlog for one extra second; after that it's 0. */
1959 if (last_now
== now
- 1)
1960 last_sec
= LOAD_WEIGHT_B
* job_counter
;
1968 /* Try to guess what the load would be right now. */
1969 guess
= load
+ (LOAD_WEIGHT_A
* (job_counter
+ last_sec
));
1971 DB (DB_JOBS
, ("Estimated system load = %f (actual = %f) (max requested = %f)\n",
1972 guess
, load
, max_load_average
));
1974 return guess
>= max_load_average
;
1978 /* Start jobs that are waiting for the load to be lower. */
1981 start_waiting_jobs (void)
1985 if (waiting_jobs
== 0)
1990 /* Check for recently deceased descendants. */
1991 reap_children (0, 0);
1993 /* Take a job off the waiting list. */
1995 waiting_jobs
= job
->next
;
1997 /* Try to start that job. We break out of the loop as soon
1998 as start_waiting_job puts one back on the waiting list. */
2000 while (start_waiting_job (job
) && waiting_jobs
!= 0);
2007 /* EMX: Start a child process. This function returns the new pid. */
2008 # if defined __EMX__
2010 child_execute_job (int stdin_fd
, int stdout_fd
, char **argv
, char **envp
)
2013 /* stdin_fd == 0 means: nothing to do for stdin;
2014 stdout_fd == 1 means: nothing to do for stdout */
2015 int save_stdin
= (stdin_fd
!= 0) ? dup (0) : 0;
2016 int save_stdout
= (stdout_fd
!= 1) ? dup (1): 1;
2018 /* < 0 only if dup() failed */
2020 fatal (NILF
, _("no more file handles: could not duplicate stdin\n"));
2021 if (save_stdout
< 0)
2022 fatal (NILF
, _("no more file handles: could not duplicate stdout\n"));
2024 /* Close unnecessary file handles for the child. */
2025 if (save_stdin
!= 0)
2026 CLOSE_ON_EXEC (save_stdin
);
2027 if (save_stdout
!= 1)
2028 CLOSE_ON_EXEC (save_stdout
);
2030 /* Connect the pipes to the child process. */
2032 (void) dup2 (stdin_fd
, 0);
2034 (void) dup2 (stdout_fd
, 1);
2036 /* stdin_fd and stdout_fd must be closed on exit because we are
2037 still in the parent process */
2039 CLOSE_ON_EXEC (stdin_fd
);
2041 CLOSE_ON_EXEC (stdout_fd
);
2043 /* Run the command. */
2044 pid
= exec_command (argv
, envp
);
2046 /* Restore stdout/stdin of the parent and close temporary FDs. */
2049 if (dup2 (save_stdin
, 0) != 0)
2050 fatal (NILF
, _("Could not restore stdin\n"));
2057 if (dup2 (save_stdout
, 1) != 1)
2058 fatal (NILF
, _("Could not restore stdout\n"));
2060 close (save_stdout
);
2066 #elif !defined (_AMIGA) && !defined (__MSDOS__) && !defined (VMS)
2069 Replace the current process with one executing the command in ARGV.
2070 STDIN_FD and STDOUT_FD are used as the process's stdin and stdout; ENVP is
2071 the environment of the new program. This function does not return. */
2073 child_execute_job (int stdin_fd
, int stdout_fd
, char **argv
, char **envp
)
2076 (void) dup2 (stdin_fd
, 0);
2078 (void) dup2 (stdout_fd
, 1);
2080 (void) close (stdin_fd
);
2082 (void) close (stdout_fd
);
2084 /* Run the command. */
2085 exec_command (argv
, envp
);
2087 #endif /* !AMIGA && !__MSDOS__ && !VMS */
2088 #endif /* !WINDOWS32 */
2091 /* Replace the current process with one running the command in ARGV,
2092 with environment ENVP. This function does not return. */
2094 /* EMX: This function returns the pid of the child process. */
2100 exec_command (char **argv
, char **envp
)
2103 /* to work around a problem with signals and execve: ignore them */
2105 signal (SIGCHLD
,SIG_IGN
);
2107 /* Run the program. */
2108 execve (argv
[0], argv
, envp
);
2109 perror_with_name ("execve: ", argv
[0]);
2110 _exit (EXIT_FAILURE
);
2116 int exit_code
= EXIT_FAILURE
;
2118 /* make sure CreateProcess() has Path it needs */
2119 sync_Path_environment();
2121 /* launch command */
2122 hPID
= process_easy(argv
, envp
);
2124 /* make sure launch ok */
2125 if (hPID
== INVALID_HANDLE_VALUE
)
2129 _("process_easy() failed to launch process (e=%ld)\n"),
2130 process_last_err(hPID
));
2131 for (i
= 0; argv
[i
]; i
++)
2132 fprintf(stderr
, "%s ", argv
[i
]);
2133 fprintf(stderr
, _("\nCounted %d args in failed launch\n"), i
);
2137 /* wait and reap last child */
2138 hWaitPID
= process_wait_for_any();
2141 /* was an error found on this process? */
2142 err
= process_last_err(hWaitPID
);
2145 exit_code
= process_exit_code(hWaitPID
);
2148 fprintf(stderr
, "make (e=%d, rc=%d): %s",
2149 err
, exit_code
, map_windows32_error_to_string(err
));
2151 /* cleanup process */
2152 process_cleanup(hWaitPID
);
2154 /* expect to find only last pid, warn about other pids reaped */
2155 if (hWaitPID
== hPID
)
2159 char *pidstr
= xstrdup (pid2str ((pid_t
)hWaitPID
));
2162 _("make reaped child pid %s, still waiting for pid %s\n"),
2163 pidstr
, pid2str ((pid_t
)hPID
));
2168 /* return child's exit code as our exit code */
2171 #else /* !WINDOWS32 */
2177 /* Be the user, permanently. */
2182 /* Run the program. */
2183 pid
= spawnvpe (P_NOWAIT
, argv
[0], argv
, envp
);
2188 /* the file might have a strange shell extension */
2189 if (errno
== ENOENT
)
2194 /* Run the program. */
2196 execvp (argv
[0], argv
);
2198 # endif /* !__EMX__ */
2203 error (NILF
, _("%s: Command not found"), argv
[0]);
2207 /* The file is not executable. Try it as a shell script. */
2208 extern char *getenv ();
2215 /* Do not use $SHELL from the environment */
2216 struct variable
*p
= lookup_variable ("SHELL", 5);
2222 shell
= getenv ("SHELL");
2225 shell
= default_shell
;
2228 while (argv
[argc
] != 0)
2236 new_argv
= alloca ((1 + argc
+ 1) * sizeof (char *));
2237 new_argv
[0] = shell
;
2248 new_argv
[i
] = argv
[0];
2251 new_argv
[i
+ argc
] = argv
[argc
];
2256 pid
= spawnvpe (P_NOWAIT
, shell
, new_argv
, envp
);
2260 execvp (shell
, new_argv
);
2262 if (errno
== ENOENT
)
2263 error (NILF
, _("%s: Shell program not found"), shell
);
2265 perror_with_name ("execvp: ", shell
);
2271 /* this nasty error was driving me nuts :-( */
2272 error (NILF
, _("spawnvpe: environment space might be exhausted"));
2277 perror_with_name ("execvp: ", argv
[0]);
2286 #endif /* !WINDOWS32 */
2289 #else /* On Amiga */
2290 void exec_command (char **argv
)
2295 void clean_tmp (void)
2297 DeleteFile (amiga_bname
);
2300 #endif /* On Amiga */
2303 /* Figure out the argument list necessary to run LINE as a command. Try to
2304 avoid using a shell. This routine handles only ' quoting, and " quoting
2305 when no backslash, $ or ` characters are seen in the quotes. Starting
2306 quotes may be escaped with a backslash. If any of the characters in
2307 sh_chars[] is seen, or any of the builtin commands listed in sh_cmds[]
2308 is the first word of a line, the shell is used.
2310 If RESTP is not NULL, *RESTP is set to point to the first newline in LINE.
2311 If *RESTP is NULL, newlines will be ignored.
2313 SHELL is the shell to use, or nil to use the default shell.
2314 IFS is the value of $IFS, or nil (meaning the default).
2316 FLAGS is the value of lines_flags for this command line. It is
2317 used in the WINDOWS32 port to check whether + or $(MAKE) were found
2318 in this command line, in which case the effect of just_print_flag
2322 construct_command_argv_internal (char *line
, char **restp
, char *shell
,
2323 char *shellflags
, char *ifs
, int flags
,
2324 char **batch_filename_ptr
)
2327 /* MSDOS supports both the stock DOS shell and ports of Unixy shells.
2328 We call `system' for anything that requires ``slow'' processing,
2329 because DOS shells are too dumb. When $SHELL points to a real
2330 (unix-style) shell, `system' just calls it to do everything. When
2331 $SHELL points to a DOS shell, `system' does most of the work
2332 internally, calling the shell only for its internal commands.
2333 However, it looks on the $PATH first, so you can e.g. have an
2334 external command named `mkdir'.
2336 Since we call `system', certain characters and commands below are
2337 actually not specific to COMMAND.COM, but to the DJGPP implementation
2338 of `system'. In particular:
2340 The shell wildcard characters are in DOS_CHARS because they will
2341 not be expanded if we call the child via `spawnXX'.
2343 The `;' is in DOS_CHARS, because our `system' knows how to run
2344 multiple commands on a single line.
2346 DOS_CHARS also include characters special to 4DOS/NDOS, so we
2347 won't have to tell one from another and have one more set of
2348 commands and special characters. */
2349 static char sh_chars_dos
[] = "*?[];|<>%^&()";
2350 static char *sh_cmds_dos
[] = { "break", "call", "cd", "chcp", "chdir", "cls",
2351 "copy", "ctty", "date", "del", "dir", "echo",
2352 "erase", "exit", "for", "goto", "if", "md",
2353 "mkdir", "path", "pause", "prompt", "rd",
2354 "rmdir", "rem", "ren", "rename", "set",
2355 "shift", "time", "type", "ver", "verify",
2358 static char sh_chars_sh
[] = "#;\"*?[]&|<>(){}$`^";
2359 static char *sh_cmds_sh
[] = { "cd", "echo", "eval", "exec", "exit", "login",
2360 "logout", "set", "umask", "wait", "while",
2361 "for", "case", "if", ":", ".", "break",
2362 "continue", "export", "read", "readonly",
2363 "shift", "times", "trap", "switch", "unset",
2368 #elif defined (__EMX__)
2369 static char sh_chars_dos
[] = "*?[];|<>%^&()";
2370 static char *sh_cmds_dos
[] = { "break", "call", "cd", "chcp", "chdir", "cls",
2371 "copy", "ctty", "date", "del", "dir", "echo",
2372 "erase", "exit", "for", "goto", "if", "md",
2373 "mkdir", "path", "pause", "prompt", "rd",
2374 "rmdir", "rem", "ren", "rename", "set",
2375 "shift", "time", "type", "ver", "verify",
2378 static char sh_chars_os2
[] = "*?[];|<>%^()\"'&";
2379 static char *sh_cmds_os2
[] = { "call", "cd", "chcp", "chdir", "cls", "copy",
2380 "date", "del", "detach", "dir", "echo",
2381 "endlocal", "erase", "exit", "for", "goto", "if",
2382 "keys", "md", "mkdir", "move", "path", "pause",
2383 "prompt", "rd", "rem", "ren", "rename", "rmdir",
2384 "set", "setlocal", "shift", "start", "time",
2385 "type", "ver", "verify", "vol", ":", 0 };
2387 static char sh_chars_sh
[] = "#;\"*?[]&|<>(){}$`^~'";
2388 static char *sh_cmds_sh
[] = { "echo", "cd", "eval", "exec", "exit", "login",
2389 "logout", "set", "umask", "wait", "while",
2390 "for", "case", "if", ":", ".", "break",
2391 "continue", "export", "read", "readonly",
2392 "shift", "times", "trap", "switch", "unset",
2397 #elif defined (_AMIGA)
2398 static char sh_chars
[] = "#;\"|<>()?*$`";
2399 static char *sh_cmds
[] = { "cd", "eval", "if", "delete", "echo", "copy",
2400 "rename", "set", "setenv", "date", "makedir",
2401 "skip", "else", "endif", "path", "prompt",
2402 "unset", "unsetenv", "version",
2404 #elif defined (WINDOWS32)
2405 static char sh_chars_dos
[] = "\"|&<>";
2406 static char *sh_cmds_dos
[] = { "assoc", "break", "call", "cd", "chcp",
2407 "chdir", "cls", "color", "copy", "ctty",
2408 "date", "del", "dir", "echo", "echo.",
2409 "endlocal", "erase", "exit", "for", "ftype",
2410 "goto", "if", "if", "md", "mkdir", "path",
2411 "pause", "prompt", "rd", "rem", "ren",
2412 "rename", "rmdir", "set", "setlocal",
2413 "shift", "time", "title", "type", "ver",
2414 "verify", "vol", ":", 0 };
2415 static char sh_chars_sh
[] = "#;\"*?[]&|<>(){}$`^";
2416 static char *sh_cmds_sh
[] = { "cd", "eval", "exec", "exit", "login",
2417 "logout", "set", "umask", "wait", "while", "for",
2418 "case", "if", ":", ".", "break", "continue",
2419 "export", "read", "readonly", "shift", "times",
2420 "trap", "switch", "test",
2421 #ifdef BATCH_MODE_ONLY_SHELL
2427 #elif defined(__riscos__)
2428 static char sh_chars
[] = "";
2429 static char *sh_cmds
[] = { 0 };
2430 #else /* must be UNIX-ish */
2431 static char sh_chars
[] = "#;\"*?[]&|<>(){}$`^~!";
2432 static char *sh_cmds
[] = { ".", ":", "break", "case", "cd", "continue",
2433 "eval", "exec", "exit", "export", "for", "if",
2434 "login", "logout", "read", "readonly", "set",
2435 "shift", "switch", "test", "times", "trap",
2436 "ulimit", "umask", "unset", "wait", "while", 0 };
2437 # ifdef HAVE_DOS_PATHS
2438 /* This is required if the MSYS/Cygwin ports (which do not define
2439 WINDOWS32) are compiled with HAVE_DOS_PATHS defined, which uses
2440 sh_chars_sh[] directly (see below). */
2441 static char *sh_chars_sh
= sh_chars
;
2442 # endif /* HAVE_DOS_PATHS */
2448 int instring
, word_has_equals
, seen_nonequals
, last_argument_was_empty
;
2449 char **new_argv
= 0;
2455 sh_cmds
= sh_cmds_dos
;
2456 sh_chars
= sh_chars_dos
;
2458 sh_cmds
= sh_cmds_sh
;
2459 sh_chars
= sh_chars_sh
;
2461 #endif /* WINDOWS32 */
2466 /* Make sure not to bother processing an empty line. */
2467 while (isblank ((unsigned char)*line
))
2472 if (shellflags
== 0)
2473 shellflags
= posix_pedantic
? "-ec" : "-c";
2475 /* See if it is safe to parse commands internally. */
2477 shell
= default_shell
;
2479 else if (strcmp (shell
, default_shell
))
2481 char *s1
= _fullpath (NULL
, shell
, 0);
2482 char *s2
= _fullpath (NULL
, default_shell
, 0);
2484 slow_flag
= strcmp ((s1
? s1
: ""), (s2
? s2
: ""));
2493 #else /* not WINDOWS32 */
2494 #if defined (__MSDOS__) || defined (__EMX__)
2495 else if (strcasecmp (shell
, default_shell
))
2497 extern int _is_unixy_shell (const char *_path
);
2499 DB (DB_BASIC
, (_("$SHELL changed (was `%s', now `%s')\n"),
2500 default_shell
, shell
));
2501 unixy_shell
= _is_unixy_shell (shell
);
2502 /* we must allocate a copy of shell: construct_command_argv() will free
2503 * shell after this function returns. */
2504 default_shell
= xstrdup (shell
);
2508 sh_chars
= sh_chars_sh
;
2509 sh_cmds
= sh_cmds_sh
;
2513 sh_chars
= sh_chars_dos
;
2514 sh_cmds
= sh_cmds_dos
;
2516 if (_osmode
== OS2_MODE
)
2518 sh_chars
= sh_chars_os2
;
2519 sh_cmds
= sh_cmds_os2
;
2523 #else /* !__MSDOS__ */
2524 else if (strcmp (shell
, default_shell
))
2526 #endif /* !__MSDOS__ && !__EMX__ */
2527 #endif /* not WINDOWS32 */
2530 for (ap
= ifs
; *ap
!= '\0'; ++ap
)
2531 if (*ap
!= ' ' && *ap
!= '\t' && *ap
!= '\n')
2534 if (shellflags
!= 0)
2535 if (shellflags
[0] != '-'
2536 || ((shellflags
[1] != 'c' || shellflags
[2] != '\0')
2537 && (shellflags
[1] != 'e' || shellflags
[2] != 'c' || shellflags
[3] != '\0')))
2540 i
= strlen (line
) + 1;
2542 /* More than 1 arg per character is impossible. */
2543 new_argv
= xmalloc (i
* sizeof (char *));
2545 /* All the args can fit in a buffer as big as LINE is. */
2546 ap
= new_argv
[0] = argstr
= xmalloc (i
);
2549 /* I is how many complete arguments have been found. */
2551 instring
= word_has_equals
= seen_nonequals
= last_argument_was_empty
= 0;
2552 for (p
= line
; *p
!= '\0'; ++p
)
2558 /* Inside a string, just copy any char except a closing quote
2559 or a backslash-newline combination. */
2563 if (ap
== new_argv
[0] || *(ap
-1) == '\0')
2564 last_argument_was_empty
= 1;
2566 else if (*p
== '\\' && p
[1] == '\n')
2568 /* Backslash-newline is handled differently depending on what
2569 kind of string we're in: inside single-quoted strings you
2570 keep them; in double-quoted strings they disappear.
2571 For DOS/Windows/OS2, if we don't have a POSIX shell,
2572 we keep the pre-POSIX behavior of removing the
2573 backslash-newline. */
2575 #if defined (__MSDOS__) || defined (__EMX__) || defined (WINDOWS32)
2586 else if (*p
== '\n' && restp
!= NULL
)
2588 /* End of the command line. */
2592 /* Backslash, $, and ` are special inside double quotes.
2593 If we see any of those, punt.
2594 But on MSDOS, if we use COMMAND.COM, double and single
2595 quotes have the same effect. */
2596 else if (instring
== '"' && strchr ("\\$`", *p
) != 0 && unixy_shell
)
2601 else if (strchr (sh_chars
, *p
) != 0)
2602 /* Not inside a string, but it's a special char. */
2604 else if (one_shell
&& *p
== '\n')
2605 /* In .ONESHELL mode \n is a separator like ; or && */
2608 else if (*p
== '.' && p
[1] == '.' && p
[2] == '.' && p
[3] != '.')
2609 /* `...' is a wildcard in DJGPP. */
2613 /* Not a special char. */
2617 /* Equals is a special character in leading words before the
2618 first word with no equals sign in it. This is not the case
2619 with sh -k, but we never get here when using nonstandard
2621 if (! seen_nonequals
&& unixy_shell
)
2623 word_has_equals
= 1;
2628 /* Backslash-newline has special case handling, ref POSIX.
2629 We're in the fastpath, so emulate what the shell would do. */
2632 /* Throw out the backslash and newline. */
2635 /* If there's nothing in this argument yet, skip any
2636 whitespace before the start of the next word. */
2637 if (ap
== new_argv
[i
])
2638 p
= next_token (p
+ 1) - 1;
2640 else if (p
[1] != '\0')
2642 #ifdef HAVE_DOS_PATHS
2643 /* Only remove backslashes before characters special to Unixy
2644 shells. All other backslashes are copied verbatim, since
2645 they are probably DOS-style directory separators. This
2646 still leaves a small window for problems, but at least it
2647 should work for the vast majority of naive users. */
2650 /* A dot is only special as part of the "..."
2652 if (strneq (p
+ 1, ".\\.\\.", 5))
2660 if (p
[1] != '\\' && p
[1] != '\''
2661 && !isspace ((unsigned char)p
[1])
2662 && strchr (sh_chars_sh
, p
[1]) == 0)
2663 /* back up one notch, to copy the backslash */
2665 #endif /* HAVE_DOS_PATHS */
2667 /* Copy and skip the following char. */
2680 /* End of the command line. */
2685 /* Newlines are not special. */
2691 /* We have the end of an argument.
2692 Terminate the text of the argument. */
2695 last_argument_was_empty
= 0;
2697 /* Update SEEN_NONEQUALS, which tells us if every word
2698 heretofore has contained an `='. */
2699 seen_nonequals
|= ! word_has_equals
;
2700 if (word_has_equals
&& ! seen_nonequals
)
2701 /* An `=' in a word before the first
2702 word without one is magical. */
2704 word_has_equals
= 0; /* Prepare for the next word. */
2706 /* If this argument is the command name,
2707 see if it is a built-in shell command.
2708 If so, have the shell handle it. */
2712 for (j
= 0; sh_cmds
[j
] != 0; ++j
)
2714 if (streq (sh_cmds
[j
], new_argv
[0]))
2717 /* Non-Unix shells are case insensitive. */
2719 && strcasecmp (sh_cmds
[j
], new_argv
[0]) == 0)
2725 /* Ignore multiple whitespace chars. */
2726 p
= next_token (p
) - 1;
2737 /* Let the shell deal with an unterminated quote. */
2740 /* Terminate the last argument and the argument list. */
2743 if (new_argv
[i
][0] != '\0' || last_argument_was_empty
)
2750 for (j
= 0; sh_cmds
[j
] != 0; ++j
)
2751 if (streq (sh_cmds
[j
], new_argv
[0]))
2755 if (new_argv
[0] == 0)
2757 /* Line was empty. */
2766 /* We must use the shell. */
2770 /* Free the old argument list we were working on. */
2776 execute_by_shell
= 1; /* actually, call `system' if shell isn't unixy */
2785 buffer
= xmalloc (strlen (line
)+1);
2788 for (dptr
=buffer
; *ptr
; )
2790 if (*ptr
== '\\' && ptr
[1] == '\n')
2792 else if (*ptr
== '@') /* Kludge: multiline commands */
2802 new_argv
= xmalloc (2 * sizeof (char *));
2803 new_argv
[0] = buffer
;
2806 #else /* Not Amiga */
2809 * Not eating this whitespace caused things like
2813 * which gave the shell fits. I think we have to eat
2814 * whitespace here, but this code should be considered
2815 * suspicious if things start failing....
2818 /* Make sure not to bother processing an empty line. */
2819 while (isspace ((unsigned char)*line
))
2823 #endif /* WINDOWS32 */
2826 /* SHELL may be a multi-word command. Construct a command line
2827 "$(SHELL) $(.SHELLFLAGS) LINE", with all special chars in LINE escaped.
2828 Then recurse, expanding this command line to get the final
2831 unsigned int shell_len
= strlen (shell
);
2832 unsigned int line_len
= strlen (line
);
2833 unsigned int sflags_len
= strlen (shellflags
);
2834 char *command_ptr
= NULL
; /* used for batch_mode_shell mode */
2837 # ifdef __EMX__ /* is this necessary? */
2839 shellflags
[0] = '/'; /* "/c" */
2842 /* In .ONESHELL mode we are allowed to throw the entire current
2843 recipe string at a single shell and trust that the user
2844 has configured the shell and shell flags, and formatted
2845 the string, appropriately. */
2848 /* If the shell is Bourne compatible, we must remove and ignore
2849 interior special chars [@+-] because they're meaningless to
2850 the shell itself. If, however, we're in .ONESHELL mode and
2851 have changed SHELL to something non-standard, we should
2852 leave those alone because they could be part of the
2853 script. In this case we must also leave in place
2854 any leading [@+-] for the same reason. */
2856 /* Remove and ignore interior prefix chars [@+-] because they're
2857 meaningless given a single shell. */
2858 #if defined __MSDOS__ || defined (__EMX__)
2859 if (unixy_shell
) /* the test is complicated and we already did it */
2861 if (is_bourne_compatible_shell(shell
))
2864 const char *f
= line
;
2867 /* Copy the recipe, removing and ignoring interior prefix chars
2868 [@+-]: they're meaningless in .ONESHELL mode. */
2869 while (f
[0] != '\0')
2873 /* This is the start of a new recipe line.
2874 Skip whitespace and prefix characters. */
2875 while (isblank (*f
) || *f
== '-' || *f
== '@' || *f
== '+')
2878 /* Copy until we get to the next logical recipe line. */
2886 /* On unescaped newline, we're done with this line. */
2887 if (f
[-1] == '\n' && ! esc
)
2890 /* Something else: reset the escape sequence. */
2898 new_argv
= xmalloc (4 * sizeof (char *));
2899 new_argv
[0] = xstrdup(shell
);
2900 new_argv
[1] = xstrdup(shellflags
);
2906 new_line
= alloca (shell_len
+ 1 + sflags_len
+ 1
2907 + (line_len
*2) + 1);
2909 memcpy (ap
, shell
, shell_len
);
2912 memcpy (ap
, shellflags
, sflags_len
);
2916 for (p
= line
; *p
!= '\0'; ++p
)
2918 if (restp
!= NULL
&& *p
== '\n')
2923 else if (*p
== '\\' && p
[1] == '\n')
2925 /* POSIX says we keep the backslash-newline. If we don't have a
2926 POSIX shell on DOS/Windows/OS2, mimic the pre-POSIX behavior
2927 and remove the backslash/newline. */
2928 #if defined (__MSDOS__) || defined (__EMX__) || defined (WINDOWS32)
2929 # define PRESERVE_BSNL unixy_shell
2931 # define PRESERVE_BSNL 1
2936 /* Only non-batch execution needs another backslash,
2937 because it will be passed through a recursive
2938 invocation of this function. */
2939 if (!batch_mode_shell
)
2947 /* DOS shells don't know about backslash-escaping. */
2948 if (unixy_shell
&& !batch_mode_shell
&&
2949 (*p
== '\\' || *p
== '\'' || *p
== '"'
2950 || isspace ((unsigned char)*p
)
2951 || strchr (sh_chars
, *p
) != 0))
2954 else if (unixy_shell
&& strneq (p
, "...", 3))
2956 /* The case of `...' wildcard again. */
2957 strcpy (ap
, "\\.\\.\\");
2964 if (ap
== new_line
+ shell_len
+ sflags_len
+ 2)
2965 /* Line was empty. */
2970 /* Some shells do not work well when invoked as 'sh -c xxx' to run a
2971 command line (e.g. Cygnus GNUWIN32 sh.exe on WIN32 systems). In these
2972 cases, run commands via a script file. */
2973 if (just_print_flag
&& !(flags
& COMMANDS_RECURSE
)) {
2974 /* Need to allocate new_argv, although it's unused, because
2975 start_job_command will want to free it and its 0'th element. */
2976 new_argv
= xmalloc(2 * sizeof (char *));
2977 new_argv
[0] = xstrdup ("");
2979 } else if ((no_default_sh_exe
|| batch_mode_shell
) && batch_filename_ptr
) {
2982 int id
= GetCurrentProcessId();
2985 /* create a file name */
2986 sprintf(fbuf
, "make%d", id
);
2987 *batch_filename_ptr
= create_batch_file (fbuf
, unixy_shell
, &temp_fd
);
2989 DB (DB_JOBS
, (_("Creating temporary batch file %s\n"),
2990 *batch_filename_ptr
));
2992 /* Create a FILE object for the batch file, and write to it the
2993 commands to be executed. Put the batch file in TEXT mode. */
2994 _setmode (temp_fd
, _O_TEXT
);
2995 batch
= _fdopen (temp_fd
, "wt");
2997 fputs ("@echo off\n", batch
);
2998 fputs (command_ptr
, batch
);
2999 fputc ('\n', batch
);
3001 DB (DB_JOBS
, (_("Batch file contents:%s\n\t%s\n"),
3002 !unixy_shell
? "\n\t@echo off" : "", command_ptr
));
3005 new_argv
= xmalloc(3 * sizeof (char *));
3007 new_argv
[0] = xstrdup (shell
);
3008 new_argv
[1] = *batch_filename_ptr
; /* only argv[0] gets freed later */
3010 new_argv
[0] = xstrdup (*batch_filename_ptr
);
3015 #endif /* WINDOWS32 */
3018 new_argv
= construct_command_argv_internal (new_line
, 0, 0, 0, 0,
3022 else if (!unixy_shell
)
3024 /* new_line is local, must not be freed therefore
3025 We use line here instead of new_line because we run the shell
3027 size_t line_len
= strlen (line
);
3030 memcpy (new_line
, line
, line_len
+ 1);
3031 /* Replace all backslash-newline combination and also following tabs.
3032 Important: stop at the first '\n' because that's what the loop above
3033 did. The next line starting at restp[0] will be executed during the
3034 next call of this function. */
3035 while (*q
!= '\0' && *q
!= '\n')
3037 if (q
[0] == '\\' && q
[1] == '\n')
3038 q
+= 2; /* remove '\\' and '\n' */
3044 # ifndef NO_CMD_DEFAULT
3045 if (strnicmp (new_line
, "echo", 4) == 0
3046 && (new_line
[4] == ' ' || new_line
[4] == '\t'))
3048 /* the builtin echo command: handle it separately */
3049 size_t echo_len
= line_len
- 5;
3050 char *echo_line
= new_line
+ 5;
3052 /* special case: echo 'x="y"'
3053 cmd works this way: a string is printed as is, i.e., no quotes
3054 are removed. But autoconf uses a command like echo 'x="y"' to
3055 determine whether make works. autoconf expects the output x="y"
3056 so we will do exactly that.
3057 Note: if we do not allow cmd to be the default shell
3058 we do not need this kind of voodoo */
3059 if (echo_line
[0] == '\''
3060 && echo_line
[echo_len
- 1] == '\''
3061 && strncmp (echo_line
+ 1, "ac_maketemp=",
3062 strlen ("ac_maketemp=")) == 0)
3064 /* remove the enclosing quotes */
3065 memmove (echo_line
, echo_line
+ 1, echo_len
- 2);
3066 echo_line
[echo_len
- 2] = '\0';
3072 /* Let the shell decide what to do. Put the command line into the
3073 2nd command line argument and hope for the best ;-) */
3074 size_t sh_len
= strlen (shell
);
3076 /* exactly 3 arguments + NULL */
3077 new_argv
= xmalloc (4 * sizeof (char *));
3078 /* Exactly strlen(shell) + strlen("/c") + strlen(line) + 3 times
3079 the trailing '\0' */
3080 new_argv
[0] = xmalloc (sh_len
+ line_len
+ 5);
3081 memcpy (new_argv
[0], shell
, sh_len
+ 1);
3082 new_argv
[1] = new_argv
[0] + sh_len
+ 1;
3083 memcpy (new_argv
[1], "/c", 3);
3084 new_argv
[2] = new_argv
[1] + 3;
3085 memcpy (new_argv
[2], new_line
, line_len
+ 1);
3089 #elif defined(__MSDOS__)
3092 /* With MSDOS shells, we must construct the command line here
3093 instead of recursively calling ourselves, because we
3094 cannot backslash-escape the special characters (see above). */
3095 new_argv
= xmalloc (sizeof (char *));
3096 line_len
= strlen (new_line
) - shell_len
- sflags_len
- 2;
3097 new_argv
[0] = xmalloc (line_len
+ 1);
3098 strncpy (new_argv
[0],
3099 new_line
+ shell_len
+ sflags_len
+ 2, line_len
);
3100 new_argv
[0][line_len
] = '\0';
3104 fatal (NILF
, _("%s (line %d) Bad shell context (!unixy && !batch_mode_shell)\n"),
3105 __FILE__
, __LINE__
);
3108 #endif /* ! AMIGA */
3114 /* Figure out the argument list necessary to run LINE as a command. Try to
3115 avoid using a shell. This routine handles only ' quoting, and " quoting
3116 when no backslash, $ or ` characters are seen in the quotes. Starting
3117 quotes may be escaped with a backslash. If any of the characters in
3118 sh_chars[] is seen, or any of the builtin commands listed in sh_cmds[]
3119 is the first word of a line, the shell is used.
3121 If RESTP is not NULL, *RESTP is set to point to the first newline in LINE.
3122 If *RESTP is NULL, newlines will be ignored.
3124 FILE is the target whose commands these are. It is used for
3125 variable expansion for $(SHELL) and $(IFS). */
3128 construct_command_argv (char *line
, char **restp
, struct file
*file
,
3129 int cmd_flags
, char **batch_filename_ptr
)
3131 char *shell
, *ifs
, *shellflags
;
3143 && (isspace ((unsigned char)*cptr
)))
3148 && (!isspace((unsigned char)*cptr
)))
3153 argv
= xmalloc (argc
* sizeof (char *));
3162 && (isspace ((unsigned char)*cptr
)))
3166 DB (DB_JOBS
, ("argv[%d] = [%s]\n", argc
, cptr
));
3167 argv
[argc
++] = cptr
;
3169 && (!isspace((unsigned char)*cptr
)))
3176 /* Turn off --warn-undefined-variables while we expand SHELL and IFS. */
3177 int save
= warn_undefined_variables_flag
;
3178 warn_undefined_variables_flag
= 0;
3180 shell
= allocated_variable_expand_for_file ("$(SHELL)", file
);
3183 * Convert to forward slashes so that construct_command_argv_internal()
3187 char *p
= w32ify (shell
, 0);
3193 static const char *unixroot
= NULL
;
3194 static const char *last_shell
= "";
3195 static int init
= 0;
3198 unixroot
= getenv ("UNIXROOT");
3199 /* unixroot must be NULL or not empty */
3200 if (unixroot
&& unixroot
[0] == '\0') unixroot
= NULL
;
3204 /* if we have an unixroot drive and if shell is not default_shell
3205 (which means it's either cmd.exe or the test has already been
3206 performed) and if shell is an absolute path without drive letter,
3207 try whether it exists e.g.: if "/bin/sh" does not exist use
3208 "$UNIXROOT/bin/sh" instead. */
3209 if (unixroot
&& shell
&& strcmp (shell
, last_shell
) != 0
3210 && (shell
[0] == '/' || shell
[0] == '\\'))
3212 /* trying a new shell, check whether it exists */
3213 size_t size
= strlen (shell
);
3214 char *buf
= xmalloc (size
+ 7);
3215 memcpy (buf
, shell
, size
);
3216 memcpy (buf
+ size
, ".exe", 5); /* including the trailing '\0' */
3217 if (access (shell
, F_OK
) != 0 && access (buf
, F_OK
) != 0)
3219 /* try the same for the unixroot drive */
3220 memmove (buf
+ 2, buf
, size
+ 5);
3221 buf
[0] = unixroot
[0];
3222 buf
[1] = unixroot
[1];
3223 if (access (buf
, F_OK
) == 0)
3224 /* we have found a shell! */
3234 #endif /* __EMX__ */
3236 shellflags
= allocated_variable_expand_for_file ("$(.SHELLFLAGS)", file
);
3237 ifs
= allocated_variable_expand_for_file ("$(IFS)", file
);
3239 warn_undefined_variables_flag
= save
;
3242 argv
= construct_command_argv_internal (line
, restp
, shell
, shellflags
, ifs
,
3243 cmd_flags
, batch_filename_ptr
);
3252 #if !defined(HAVE_DUP2) && !defined(_AMIGA)
3254 dup2 (int old
, int new)
3269 #endif /* !HAVE_DUP2 && !_AMIGA */
3271 /* On VMS systems, include special VMS functions. */
3274 #include "vmsjobs.c"