1 /* Job execution and handling for GNU Make.
2 Copyright (C) 1988,89,90,91,92,93,94,95,96,97,99 Free Software Foundation, Inc.
3 This file is part of GNU Make.
5 GNU Make is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation; either version 2, or (at your option)
10 GNU Make is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details.
15 You should have received a copy of the GNU General Public License
16 along with GNU Make; see the file COPYING. If not, write to
17 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18 Boston, MA 02111-1307, USA. */
33 /* Default shell to use. */
35 char *default_shell
= "sh.exe";
36 int no_default_sh_exe
= 1;
37 int batch_mode_shell
= 1;
40 char default_shell
[] = "";
41 extern int MyExecute (char **);
44 /* The default shell is a pointer so we can change it if Makefile
45 says so. It is without an explicit path so we get a chance
46 to search the $PATH for it (since MSDOS doesn't have standard
47 directories we could trust). */
48 char *default_shell
= "command.com";
49 # else /* __MSDOS__ */
52 char default_shell
[] = "";
54 char default_shell
[] = "/bin/sh";
56 # endif /* __MSDOS__ */
57 int batch_mode_shell
= 0;
59 #endif /* WINDOWS32 */
63 static int execute_by_shell
;
64 static int dos_pid
= 123;
66 int dos_command_running
;
67 #endif /* __MSDOS__ */
70 # include <proto/dos.h>
71 static int amiga_pid
= 123;
72 static int amiga_status
;
73 static char amiga_bname
[32];
74 static int amiga_batch_file
;
79 # include <processes.h>
82 # include <lib$routines.h>
89 # include "sub_proc.h"
91 # include "pathstuff.h"
92 #endif /* WINDOWS32 */
97 # include <sys/file.h>
100 #if defined (HAVE_SYS_WAIT_H) || defined (HAVE_UNION_WAIT)
101 # include <sys/wait.h>
105 # define WAIT_NOHANG(status) waitpid (-1, (status), WNOHANG)
106 #else /* Don't have waitpid. */
111 # define WAIT_NOHANG(status) wait3 ((status), WNOHANG, (struct rusage *) 0)
112 # endif /* Have wait3. */
113 #endif /* Have waitpid. */
115 #if !defined (wait) && !defined (POSIX)
119 #ifndef HAVE_UNION_WAIT
124 # define WTERMSIG(x) ((x) & 0x7f)
127 # define WCOREDUMP(x) ((x) & 0x80)
130 # define WEXITSTATUS(x) (((x) >> 8) & 0xff)
133 # define WIFSIGNALED(x) (WTERMSIG (x) != 0)
136 # define WIFEXITED(x) (WTERMSIG (x) == 0)
139 #else /* Have `union wait'. */
141 # define WAIT_T union wait
143 # define WTERMSIG(x) ((x).w_termsig)
146 # define WCOREDUMP(x) ((x).w_coredump)
149 # define WEXITSTATUS(x) ((x).w_retcode)
152 # define WIFSIGNALED(x) (WTERMSIG(x) != 0)
155 # define WIFEXITED(x) (WTERMSIG(x) == 0)
158 #endif /* Don't have `union wait'. */
160 /* How to set close-on-exec for a file descriptor. */
163 # define CLOSE_ON_EXEC(_d)
166 # define FD_CLOEXEC 1
168 # define CLOSE_ON_EXEC(_d) (void) fcntl ((_d), F_SETFD, FD_CLOEXEC)
172 static int vms_jobsefnmask
= 0;
175 #ifndef HAVE_UNISTD_H
177 extern int execve ();
178 extern void _exit ();
180 extern int geteuid ();
181 extern int getegid ();
182 extern int setgid ();
183 extern int getgid ();
187 extern char *allocated_variable_expand_for_file
PARAMS ((char *line
, struct file
*file
));
189 extern int getloadavg
PARAMS ((double loadavg
[], int nelem
));
190 extern int start_remote_job
PARAMS ((char **argv
, char **envp
, int stdin_fd
,
191 int *is_remote
, int *id_ptr
, int *used_stdin
));
192 extern int start_remote_job_p
PARAMS ((int));
193 extern int remote_status
PARAMS ((int *exit_code_ptr
, int *signal_ptr
,
194 int *coredump_ptr
, int block
));
196 RETSIGTYPE child_handler
PARAMS ((int));
197 static void free_child
PARAMS ((struct child
*));
198 static void start_job_command
PARAMS ((struct child
*child
));
199 static int load_too_high
PARAMS ((void));
200 static int job_next_command
PARAMS ((struct child
*));
201 static int start_waiting_job
PARAMS ((struct child
*));
203 static void vmsWaitForChildren
PARAMS ((int *));
206 /* Chain of all live (or recently deceased) children. */
208 struct child
*children
= 0;
210 /* Number of children currently running. */
212 unsigned int job_slots_used
= 0;
214 /* Nonzero if the `good' standard input is in use. */
216 static int good_stdin_used
= 0;
218 /* Chain of children waiting to run until the load average goes down. */
220 static struct child
*waiting_jobs
= 0;
222 /* Non-zero if we use a *real* shell (always so on Unix). */
229 * The macro which references this function is defined in make.h.
231 int w32_kill(int pid
, int sig
)
233 return ((process_kill(pid
, sig
) == TRUE
) ? 0 : -1);
235 #endif /* WINDOWS32 */
237 /* Write an error message describing the exit status given in
238 EXIT_CODE, EXIT_SIG, and COREDUMP, for the target TARGET_NAME.
239 Append "(ignored)" if IGNORED is nonzero. */
242 child_error (target_name
, exit_code
, exit_sig
, coredump
, ignored
)
244 int exit_code
, exit_sig
, coredump
;
247 if (ignored
&& silent_flag
)
251 if (!(exit_code
& 1))
253 (ignored
? _("*** [%s] Error 0x%x (ignored)")
254 : _("*** [%s] Error 0x%x")),
255 target_name
, exit_code
);
258 error (NILF
, ignored
? _("[%s] Error %d (ignored)") :
259 _("*** [%s] Error %d"),
260 target_name
, exit_code
);
262 error (NILF
, "*** [%s] %s%s",
263 target_name
, strsignal (exit_sig
),
264 coredump
? _(" (core dumped)") : "");
269 /* Wait for nchildren children to terminate */
271 vmsWaitForChildren(int *status
)
275 if (!vms_jobsefnmask
)
281 *status
= sys$
wflor (32, vms_jobsefnmask
);
286 /* Set up IO redirection. */
289 vms_redirect (desc
, fname
, ibuf
)
290 struct dsc$descriptor_s
*desc
;
295 extern char *vmsify ();
298 while (isspace ((unsigned char)*ibuf
))
301 while (*ibuf
&& !isspace ((unsigned char)*ibuf
))
304 if (strcmp (fptr
, "/dev/null") != 0)
306 strcpy (fname
, vmsify (fptr
, 0));
307 if (strchr (fname
, '.') == 0)
310 desc
->dsc$w_length
= strlen(fname
);
311 desc
->dsc$a_pointer
= fname
;
312 desc
->dsc$b_dtype
= DSC$K_DTYPE_T
;
313 desc
->dsc$b_class
= DSC$K_CLASS_S
;
316 printf (_("Warning: Empty redirection\n"));
322 found apostrophe at (p-1)
324 inc p until after closing apostrophe. */
327 handle_apos (char *p
)
332 #define SEPCHARS ",/()= "
352 fprintf (stderr
, _("Syntax error, still inside '\"'\n"));
359 if (strchr (SEPCHARS
, *p
))
380 /* Handle a dead child. This handler may or may not ever be installed.
382 If we're using the jobserver feature, we need it. First, installing it
383 ensures the read will interrupt on SIGCHLD. Second, we close the dup'd
384 read FD to ensure we don't enter another blocking read without reaping all
385 the dead children. In this case we don't need the dead_children count.
387 If we don't have either waitpid or wait3, then make is unreliable, but we
388 use the dead_children count to reap children as best we can. */
390 static unsigned int dead_children
= 0;
404 DB (DB_JOBS
, (_("Got a SIGCHLD; %u unreaped children.\n"), dead_children
));
408 extern int shell_function_pid
, shell_function_completed
;
410 /* Reap all dead children, storing the returned status and the new command
411 state (`cs_finished') in the `file' member of the `struct child' for the
412 dead child, and removing the child from the chain. In addition, if BLOCK
413 nonzero, we block in this function until we've reaped at least one
414 complete child, waiting for it to die if necessary. If ERR is nonzero,
415 print an error message first. */
418 reap_children (block
, err
)
422 /* Initially, assume we have some. */
426 # define REAP_MORE reap_more
428 # define REAP_MORE dead_children
433 We have at least one child outstanding OR a shell function in progress,
435 We're blocking for a complete child OR there are more children to reap
437 we'll keep reaping children. */
439 while ((children
!= 0 || shell_function_pid
!= 0) &&
440 (block
|| REAP_MORE
))
444 int exit_code
, exit_sig
, coredump
;
445 register struct child
*lastc
, *c
;
447 int any_remote
, any_local
;
451 /* We might block for a while, so let the user know why. */
453 error (NILF
, _("*** Waiting for unfinished jobs...."));
456 /* We have one less dead child to reap. As noted in
457 child_handler() above, this count is completely unimportant for
458 all modern, POSIX-y systems that support wait3() or waitpid().
459 The rest of this comment below applies only to early, broken
460 pre-POSIX systems. We keep the count only because... it's there...
462 The test and decrement are not atomic; if it is compiled into:
463 register = dead_children - 1;
464 dead_children = register;
465 a SIGCHLD could come between the two instructions.
466 child_handler increments dead_children.
467 The second instruction here would lose that increment. But the
468 only effect of dead_children being wrong is that we might wait
469 longer than necessary to reap a child, and lose some parallelism;
470 and we might print the "Waiting for unfinished jobs" message above
471 when not necessary. */
473 if (dead_children
> 0)
477 any_local
= shell_function_pid
!= 0;
478 for (c
= children
; c
!= 0; c
= c
->next
)
480 any_remote
|= c
->remote
;
481 any_local
|= ! c
->remote
;
482 DB (DB_JOBS
, (_("Live child 0x%08lx (%s) PID %ld %s\n"),
483 (unsigned long int) c
, c
->file
->name
,
484 (long) c
->pid
, c
->remote
? _(" (remote)") : ""));
490 /* First, check for remote children. */
492 pid
= remote_status (&exit_code
, &exit_sig
, &coredump
, 0);
497 /* We got a remote child. */
501 /* A remote status command failed miserably. Punt. */
506 pfatal_with_name ("remote_status");
510 /* No remote children. Check for local children. */
511 #if !defined(__MSDOS__) && !defined(_AMIGA) && !defined(WINDOWS32)
516 vmsWaitForChildren (&status
);
521 pid
= WAIT_NOHANG (&status
);
524 pid
= wait (&status
);
532 /* EINTR? Try again. */
536 /* The wait*() failed miserably. Punt. */
537 pfatal_with_name ("wait");
541 /* We got a child exit; chop the status word up. */
542 exit_code
= WEXITSTATUS (status
);
543 exit_sig
= WIFSIGNALED (status
) ? WTERMSIG (status
) : 0;
544 coredump
= WCOREDUMP (status
);
548 /* No local children are dead. */
551 if (!block
|| !any_remote
)
554 /* Now try a blocking wait for a remote child. */
555 pid
= remote_status (&exit_code
, &exit_sig
, &coredump
, 1);
557 goto remote_status_lose
;
559 /* No remote children either. Finally give up. */
562 /* We got a remote child. */
565 #endif /* !__MSDOS__, !Amiga, !WINDOWS32. */
568 /* Life is very different on MSDOS. */
571 exit_code
= WEXITSTATUS (status
);
572 if (exit_code
== 0xff)
574 exit_sig
= WIFSIGNALED (status
) ? WTERMSIG (status
) : 0;
576 #endif /* __MSDOS__ */
580 status
= amiga_status
;
581 exit_code
= amiga_status
;
590 /* wait for anything to finish */
591 if (hPID
= process_wait_for_any()) {
593 /* was an error found on this process? */
594 err
= process_last_err(hPID
);
597 exit_code
= process_exit_code(hPID
);
600 fprintf(stderr
, "make (e=%d): %s",
601 exit_code
, map_windows32_error_to_string(exit_code
));
604 exit_sig
= process_signal(hPID
);
606 /* cleanup process */
607 process_cleanup(hPID
);
613 #endif /* WINDOWS32 */
616 /* Check if this is the child of the `shell' function. */
617 if (!remote
&& pid
== shell_function_pid
)
619 /* It is. Leave an indicator for the `shell' function. */
620 if (exit_sig
== 0 && exit_code
== 127)
621 shell_function_completed
= -1;
623 shell_function_completed
= 1;
627 child_failed
= exit_sig
!= 0 || exit_code
!= 0;
629 /* Search for a child matching the deceased one. */
631 for (c
= children
; c
!= 0; lastc
= c
, c
= c
->next
)
632 if (c
->remote
== remote
&& c
->pid
== pid
)
636 /* An unknown child died.
637 Ignore it; it was inherited from our invoker. */
640 DB (DB_JOBS
, (child_failed
641 ? _("Reaping losing child 0x%08lx PID %ld %s\n")
642 : _("Reaping winning child 0x%08lx PID %ld %s\n"),
643 (unsigned long int) c
, (long) c
->pid
,
644 c
->remote
? _(" (remote)") : ""));
646 if (c
->sh_batch_file
) {
647 DB (DB_JOBS
, (_("Cleaning up temp batch file %s\n"),
650 /* just try and remove, don't care if this fails */
651 remove (c
->sh_batch_file
);
653 /* all done with memory */
654 free (c
->sh_batch_file
);
655 c
->sh_batch_file
= NULL
;
658 /* If this child had the good stdin, say it is now free. */
662 if (child_failed
&& !c
->noerror
&& !ignore_errors_flag
)
664 /* The commands failed. Write an error message,
665 delete non-precious targets, and abort. */
666 static int delete_on_error
= -1;
667 child_error (c
->file
->name
, exit_code
, exit_sig
, coredump
, 0);
668 c
->file
->update_status
= 2;
669 if (delete_on_error
== -1)
671 struct file
*f
= lookup_file (".DELETE_ON_ERROR");
672 delete_on_error
= f
!= 0 && f
->is_target
;
674 if (exit_sig
!= 0 || delete_on_error
)
675 delete_child_targets (c
);
681 /* The commands failed, but we don't care. */
682 child_error (c
->file
->name
,
683 exit_code
, exit_sig
, coredump
, 1);
687 /* If there are more commands to run, try to start them. */
688 if (job_next_command (c
))
690 if (handling_fatal_signal
)
692 /* Never start new commands while we are dying.
693 Since there are more commands that wanted to be run,
694 the target was not completely remade. So we treat
695 this as if a command had failed. */
696 c
->file
->update_status
= 2;
700 /* Check again whether to start remotely.
701 Whether or not we want to changes over time.
702 Also, start_remote_job may need state set up
703 by start_remote_job_p. */
704 c
->remote
= start_remote_job_p (0);
705 start_job_command (c
);
706 /* Fatal signals are left blocked in case we were
707 about to put that child on the chain. But it is
708 already there, so it is safe for a fatal signal to
709 arrive now; it will clean up this child's targets. */
711 if (c
->file
->command_state
== cs_running
)
712 /* We successfully started the new command.
713 Loop to reap more children. */
717 if (c
->file
->update_status
!= 0)
718 /* We failed to start the commands. */
719 delete_child_targets (c
);
722 /* There are no more commands. We got through them all
723 without an unignored error. Now the target has been
724 successfully updated. */
725 c
->file
->update_status
= 0;
728 /* When we get here, all the commands for C->file are finished
729 (or aborted) and C->file->update_status contains 0 or 2. But
730 C->file->command_state is still cs_running if all the commands
731 ran; notice_finish_file looks for cs_running to tell it that
732 it's interesting to check the file's modtime again now. */
734 if (! handling_fatal_signal
)
735 /* Notice if the target of the commands has been changed.
736 This also propagates its values for command_state and
737 update_status to its also_make files. */
738 notice_finished_file (c
->file
);
740 DB (DB_JOBS
, (_("Removing child 0x%08lx PID %ld %s from chain.\n"),
741 (unsigned long int) c
, (long) c
->pid
,
742 c
->remote
? _(" (remote)") : ""));
744 /* Block fatal signals while frobnicating the list, so that
745 children and job_slots_used are always consistent. Otherwise
746 a fatal signal arriving after the child is off the chain and
747 before job_slots_used is decremented would believe a child was
748 live and call reap_children again. */
751 /* There is now another slot open. */
752 if (job_slots_used
> 0)
755 /* Remove the child from the chain and free it. */
759 lastc
->next
= c
->next
;
765 /* If the job failed, and the -k flag was not given, die,
766 unless we are already in the process of dying. */
767 if (!err
&& child_failed
&& !keep_going_flag
&&
768 /* fatal_error_signal will die with the right signal. */
769 !handling_fatal_signal
)
772 /* Only block for one child. */
779 /* Free the storage allocated for CHILD. */
783 register struct child
*child
;
785 /* If this child is the only one it was our "free" job, so don't put a
786 token back for it. This child has already been removed from the list,
787 so if there any left this wasn't the last one. */
789 if (job_fds
[1] >= 0 && children
)
793 /* Write a job token back to the pipe. */
795 while (write (job_fds
[1], &token
, 1) != 1)
797 pfatal_with_name (_("write jobserver"));
799 DB (DB_JOBS
, (_("Released token for child 0x%08lx (%s).\n"),
800 (unsigned long int) child
, child
->file
->name
));
803 if (handling_fatal_signal
) /* Don't bother free'ing if about to die. */
806 if (child
->command_lines
!= 0)
808 register unsigned int i
;
809 for (i
= 0; i
< child
->file
->cmds
->ncommand_lines
; ++i
)
810 free (child
->command_lines
[i
]);
811 free ((char *) child
->command_lines
);
814 if (child
->environment
!= 0)
816 register char **ep
= child
->environment
;
819 free ((char *) child
->environment
);
822 free ((char *) child
);
826 extern sigset_t fatal_signal_set
;
833 (void) sigprocmask (SIG_BLOCK
, &fatal_signal_set
, (sigset_t
*) 0);
835 # ifdef HAVE_SIGSETMASK
836 (void) sigblock (fatal_signal_mask
);
846 sigemptyset (&empty
);
847 sigprocmask (SIG_SETMASK
, &empty
, (sigset_t
*) 0);
851 /* Start a job to run the commands specified in CHILD.
852 CHILD is updated to reflect the commands and ID of the child process.
854 NOTE: On return fatal signals are blocked! The caller is responsible
855 for calling `unblock_sigs', once the new child is safely on the chain so
856 it can be cleaned up in the event of a fatal signal. */
859 start_job_command (child
)
860 register struct child
*child
;
863 static int bad_stdin
= -1;
873 /* If we have a completely empty commandset, stop now. */
874 if (!child
->command_ptr
)
877 /* Combine the flags parsed for the line itself with
878 the flags specified globally for this target. */
879 flags
= (child
->file
->command_flags
880 | child
->file
->cmds
->lines_flags
[child
->command_line
- 1]);
882 p
= child
->command_ptr
;
883 child
->noerror
= flags
& COMMANDS_NOERROR
;
888 flags
|= COMMANDS_SILENT
;
890 flags
|= COMMANDS_RECURSE
;
893 else if (!isblank ((unsigned char)*p
))
898 /* Update the file's command flags with any new ones we found. */
899 child
->file
->cmds
->lines_flags
[child
->command_line
- 1] |= flags
;
901 /* Figure out an argument list from this command line. */
908 argv
= construct_command_argv (p
, &end
, child
->file
, &child
->sh_batch_file
);
911 child
->command_ptr
= NULL
;
915 child
->command_ptr
= end
;
919 /* If -q was given, say that updating `failed' if there was any text on the
920 command line, or `succeeded' otherwise. The exit status of 1 tells the
921 user that -q is saying `something to do'; the exit status for a random
923 if (argv
!= 0 && question_flag
&& !(flags
& COMMANDS_RECURSE
))
927 free ((char *) argv
);
929 child
->file
->update_status
= 1;
930 notice_finished_file (child
->file
);
934 if (touch_flag
&& !(flags
& COMMANDS_RECURSE
))
936 /* Go on to the next command. It might be the recursive one.
937 We construct ARGV only to find the end of the command line. */
942 free ((char *) argv
);
952 execute_by_shell
= 0; /* in case construct_command_argv sets it */
954 /* This line has no commands. Go to the next. */
955 if (job_next_command (child
))
956 start_job_command (child
);
959 /* No more commands. Make sure we're "running"; we might not be if
960 (e.g.) all commands were skipped due to -n. */
961 set_command_state (child
->file
, cs_running
);
962 child
->file
->update_status
= 0;
963 notice_finished_file (child
->file
);
968 /* Print out the command. If silent, we call `message' with null so it
969 can log the working directory before the command's own error messages
972 message (0, (just_print_flag
|| (!(flags
& COMMANDS_SILENT
) && !silent_flag
))
973 ? "%s" : (char *) 0, p
);
975 /* Tell update_goal_chain that a command has been started on behalf of
976 this target. It is important that this happens here and not in
977 reap_children (where we used to do it), because reap_children might be
978 reaping children from a different target. We want this increment to
979 guaranteedly indicate that a command was started for the dependency
980 chain (i.e., update_file recursion chain) we are processing. */
984 /* Optimize an empty command. People use this for timestamp rules,
985 so avoid forking a useless shell. Do this after we increment
986 commands_started so make still treats this special case as if it
987 performed some action (makes a difference as to what messages are
990 #if !defined(VMS) && !defined(_AMIGA)
993 unixy_shell
/* the test is complicated and we already did it */
995 (argv
[0] && !strcmp (argv
[0], "/bin/sh"))
998 && argv
[1][0] == '-' && argv
[1][1] == 'c' && argv
[1][2] == '\0')
999 && (argv
[2] && argv
[2][0] == ':' && argv
[2][1] == '\0')
1003 free ((char *) argv
);
1006 #endif /* !VMS && !_AMIGA */
1008 /* If -n was given, recurse to get the next line in the sequence. */
1010 if (just_print_flag
&& !(flags
& COMMANDS_RECURSE
))
1014 free ((char *) argv
);
1019 /* Flush the output streams so they won't have things written twice. */
1025 #if !defined(WINDOWS32) && !defined(_AMIGA) && !defined(__MSDOS__)
1027 /* Set up a bad standard input that reads from a broken pipe. */
1029 if (bad_stdin
== -1)
1031 /* Make a file descriptor that is the read end of a broken pipe.
1032 This will be used for some children's standard inputs. */
1036 /* Close the write side. */
1037 (void) close (pd
[1]);
1038 /* Save the read side. */
1041 /* Set the descriptor to close on exec, so it does not litter any
1042 child's descriptor table. When it is dup2'd onto descriptor 0,
1043 that descriptor will not close on exec. */
1044 CLOSE_ON_EXEC (bad_stdin
);
1048 #endif /* !WINDOWS32 && !_AMIGA && !__MSDOS__ */
1050 /* Decide whether to give this child the `good' standard input
1051 (one that points to the terminal or whatever), or the `bad' one
1052 that points to the read side of a broken pipe. */
1054 child
->good_stdin
= !good_stdin_used
;
1055 if (child
->good_stdin
)
1056 good_stdin_used
= 1;
1063 /* Set up the environment for the child. */
1064 if (child
->environment
== 0)
1065 child
->environment
= target_environment (child
->file
);
1068 #if !defined(__MSDOS__) && !defined(_AMIGA) && !defined(WINDOWS32)
1071 /* start_waiting_job has set CHILD->remote if we can start a remote job. */
1074 int is_remote
, id
, used_stdin
;
1075 if (start_remote_job (argv
, child
->environment
,
1076 child
->good_stdin
? 0 : bad_stdin
,
1077 &is_remote
, &id
, &used_stdin
))
1078 /* Don't give up; remote execution may fail for various reasons. If
1079 so, simply run the job locally. */
1083 if (child
->good_stdin
&& !used_stdin
)
1085 child
->good_stdin
= 0;
1086 good_stdin_used
= 0;
1088 child
->remote
= is_remote
;
1095 /* Fork the child process. */
1097 char **parent_environ
;
1106 if (!child_execute_job (argv
, child
)) {
1108 perror_with_name ("vfork", "");
1114 parent_environ
= environ
;
1115 child
->pid
= vfork ();
1116 environ
= parent_environ
; /* Restore value child may have clobbered. */
1117 if (child
->pid
== 0)
1119 /* We are the child side. */
1122 /* If we aren't running a recursive command and we have a jobserver
1123 pipe, close it before exec'ing. */
1124 if (!(flags
& COMMANDS_RECURSE
) && job_fds
[0] >= 0)
1132 child_execute_job (child
->good_stdin
? 0 : bad_stdin
, 1,
1133 argv
, child
->environment
);
1135 else if (child
->pid
< 0)
1139 perror_with_name ("vfork", "");
1145 #else /* __MSDOS__ or Amiga or WINDOWS32 */
1153 /* We call `system' to do the job of the SHELL, since stock DOS
1154 shell is too dumb. Our `system' knows how to handle long
1155 command lines even if pipes/redirection is needed; it will only
1156 call COMMAND.COM when its internal commands are used. */
1157 if (execute_by_shell
)
1159 char *cmdline
= argv
[0];
1160 /* We don't have a way to pass environment to `system',
1161 so we need to save and restore ours, sigh... */
1162 char **parent_environ
= environ
;
1164 environ
= child
->environment
;
1166 /* If we have a *real* shell, tell `system' to call
1167 it to do everything for us. */
1170 /* A *real* shell on MSDOS may not support long
1171 command lines the DJGPP way, so we must use `system'. */
1172 cmdline
= argv
[2]; /* get past "shell -c" */
1175 dos_command_running
= 1;
1176 proc_return
= system (cmdline
);
1177 environ
= parent_environ
;
1178 execute_by_shell
= 0; /* for the next time */
1182 dos_command_running
= 1;
1183 proc_return
= spawnvpe (P_WAIT
, argv
[0], argv
, child
->environment
);
1186 /* Need to unblock signals before turning off
1187 dos_command_running, so that child's signals
1188 will be treated as such (see fatal_error_signal). */
1190 dos_command_running
= 0;
1192 /* If the child got a signal, dos_status has its
1193 high 8 bits set, so be careful not to alter them. */
1194 if (proc_return
== -1)
1197 dos_status
|= (proc_return
& 0xff);
1199 child
->pid
= dos_pid
++;
1201 #endif /* __MSDOS__ */
1203 amiga_status
= MyExecute (argv
);
1206 child
->pid
= amiga_pid
++;
1207 if (amiga_batch_file
)
1209 amiga_batch_file
= 0;
1210 DeleteFile (amiga_bname
); /* Ignore errors. */
1218 /* make UNC paths safe for CreateProcess -- backslash format */
1220 if (arg0
&& arg0
[0] == '/' && arg0
[1] == '/')
1221 for ( ; arg0
&& *arg0
; arg0
++)
1225 /* make sure CreateProcess() has Path it needs */
1226 sync_Path_environment();
1228 hPID
= process_easy(argv
, child
->environment
);
1230 if (hPID
!= INVALID_HANDLE_VALUE
)
1231 child
->pid
= (int) hPID
;
1236 _("process_easy() failed failed to launch process (e=%d)\n"),
1237 process_last_err(hPID
));
1238 for (i
= 0; argv
[i
]; i
++)
1239 fprintf(stderr
, "%s ", argv
[i
]);
1240 fprintf(stderr
, _("\nCounted %d args in failed launch\n"), i
);
1243 #endif /* WINDOWS32 */
1244 #endif /* __MSDOS__ or Amiga or WINDOWS32 */
1246 /* We are the parent side. Set the state to
1247 say the commands are running and return. */
1249 set_command_state (child
->file
, cs_running
);
1251 /* Free the storage used by the child's argument list. */
1254 free ((char *) argv
);
1260 child
->file
->update_status
= 2;
1261 notice_finished_file (child
->file
);
1265 /* Try to start a child running.
1266 Returns nonzero if the child was started (and maybe finished), or zero if
1267 the load was too high and the child was put on the `waiting_jobs' chain. */
1270 start_waiting_job (c
)
1273 struct file
*f
= c
->file
;
1275 /* If we can start a job remotely, we always want to, and don't care about
1276 the local load average. We record that the job should be started
1277 remotely in C->remote for start_job_command to test. */
1279 c
->remote
= start_remote_job_p (1);
1281 /* If we are running at least one job already and the load average
1282 is too high, make this one wait. */
1283 if (!c
->remote
&& job_slots_used
> 0 && load_too_high ())
1285 /* Put this child on the chain of children waiting for the load average
1287 set_command_state (f
, cs_running
);
1288 c
->next
= waiting_jobs
;
1293 /* Start the first command; reap_children will run later command lines. */
1294 start_job_command (c
);
1296 switch (f
->command_state
)
1300 DB (DB_JOBS
, (_("Putting child 0x%08lx (%s) PID %ld%s on the chain.\n"),
1301 (unsigned long int) c
, c
->file
->name
,
1302 (long) c
->pid
, c
->remote
? _(" (remote)") : ""));
1304 /* One more job slot is in use. */
1309 case cs_not_started
:
1310 /* All the command lines turned out to be empty. */
1311 f
->update_status
= 0;
1315 notice_finished_file (f
);
1320 assert (f
->command_state
== cs_finished
);
1327 /* Create a `struct child' for FILE and start its commands running. */
1331 register struct file
*file
;
1333 register struct commands
*cmds
= file
->cmds
;
1334 register struct child
*c
;
1336 register unsigned int i
;
1338 /* Let any previously decided-upon jobs that are waiting
1339 for the load to go down start before this new one. */
1340 start_waiting_jobs ();
1342 /* Reap any children that might have finished recently. */
1343 reap_children (0, 0);
1345 /* Chop the commands up into lines if they aren't already. */
1346 chop_commands (cmds
);
1348 /* Expand the command lines and store the results in LINES. */
1349 lines
= (char **) xmalloc (cmds
->ncommand_lines
* sizeof (char *));
1350 for (i
= 0; i
< cmds
->ncommand_lines
; ++i
)
1352 /* Collapse backslash-newline combinations that are inside variable
1353 or function references. These are left alone by the parser so
1354 that they will appear in the echoing of commands (where they look
1355 nice); and collapsed by construct_command_argv when it tokenizes.
1356 But letting them survive inside function invocations loses because
1357 we don't want the functions to see them as part of the text. */
1359 char *in
, *out
, *ref
;
1361 /* IN points to where in the line we are scanning.
1362 OUT points to where in the line we are writing.
1363 When we collapse a backslash-newline combination,
1364 IN gets ahead of OUT. */
1366 in
= out
= cmds
->command_lines
[i
];
1367 while ((ref
= strchr (in
, '$')) != 0)
1369 ++ref
; /* Move past the $. */
1372 /* Copy the text between the end of the last chunk
1373 we processed (where IN points) and the new chunk
1374 we are about to process (where REF points). */
1375 bcopy (in
, out
, ref
- in
);
1377 /* Move both pointers past the boring stuff. */
1381 if (*ref
== '(' || *ref
== '{')
1383 char openparen
= *ref
;
1384 char closeparen
= openparen
== '(' ? ')' : '}';
1388 *out
++ = *in
++; /* Copy OPENPAREN. */
1389 /* IN now points past the opening paren or brace.
1390 Count parens or braces until it is matched. */
1394 if (*in
== closeparen
&& --count
< 0)
1396 else if (*in
== '\\' && in
[1] == '\n')
1398 /* We have found a backslash-newline inside a
1399 variable or function reference. Eat it and
1400 any following whitespace. */
1403 for (p
= in
- 1; p
> ref
&& *p
== '\\'; --p
)
1407 /* There were two or more backslashes, so this is
1408 not really a continuation line. We don't collapse
1409 the quoting backslashes here as is done in
1410 collapse_continuations, because the line will
1411 be collapsed again after expansion. */
1415 /* Skip the backslash, newline and
1416 any following whitespace. */
1417 in
= next_token (in
+ 2);
1419 /* Discard any preceding whitespace that has
1420 already been written to the output. */
1422 && isblank ((unsigned char)out
[-1]))
1425 /* Replace it all with a single space. */
1431 if (*in
== openparen
)
1440 /* There are no more references in this line to worry about.
1441 Copy the remaining uninteresting text to the output. */
1445 /* Finally, expand the line. */
1446 lines
[i
] = allocated_variable_expand_for_file (cmds
->command_lines
[i
],
1450 /* Start the command sequence, record it in a new
1451 `struct child', and add that to the chain. */
1453 c
= (struct child
*) xmalloc (sizeof (struct child
));
1454 bzero ((char *)c
, sizeof (struct child
));
1456 c
->command_lines
= lines
;
1457 c
->sh_batch_file
= NULL
;
1459 /* Fetch the first command line to be run. */
1460 job_next_command (c
);
1462 /* Wait for a job slot to be freed up. If we allow an infinite number
1463 don't bother; also job_slots will == 0 if we're using the jobserver. */
1466 while (job_slots_used
== job_slots
)
1467 reap_children (1, 0);
1469 #ifdef MAKE_JOBSERVER
1470 /* If we are controlling multiple jobs make sure we have a token before
1471 starting the child. */
1473 /* This can be inefficient. There's a decent chance that this job won't
1474 actually have to run any subprocesses: the command script may be empty
1475 or otherwise optimized away. It would be nice if we could defer
1476 obtaining a token until just before we need it, in start_job_command.
1477 To do that we'd need to keep track of whether we'd already obtained a
1478 token (since start_job_command is called for each line of the job, not
1479 just once). Also more thought needs to go into the entire algorithm;
1480 this is where the old parallel job code waits, so... */
1482 else if (job_fds
[0] >= 0)
1487 /* If we don't already have a job started, use our "free" token. */
1491 /* Read a token. As long as there's no token available we'll block.
1492 If we get a SIGCHLD we'll return with EINTR. If one happened
1493 before we got here we'll return immediately with EBADF because
1494 the signal handler closes the dup'd file descriptor. */
1496 if (read (job_rfd
, &token
, 1) == 1)
1498 DB (DB_JOBS
, (_("Obtained token for child 0x%08lx (%s).\n"),
1499 (unsigned long int) c
, c
->file
->name
));
1503 if (errno
!= EINTR
&& errno
!= EBADF
)
1504 pfatal_with_name (_("read jobs pipe"));
1506 /* Re-dup the read side of the pipe, so the signal handler can
1507 notify us if we miss a child. */
1509 job_rfd
= dup (job_fds
[0]);
1511 /* Something's done. We don't want to block for a whole child,
1512 just reap whatever's there. */
1513 reap_children (0, 0);
1517 /* The job is now primed. Start it running.
1518 (This will notice if there are in fact no commands.) */
1519 (void) start_waiting_job (c
);
1521 if (job_slots
== 1 || not_parallel
)
1522 /* Since there is only one job slot, make things run linearly.
1523 Wait for the child to die, setting the state to `cs_finished'. */
1524 while (file
->command_state
== cs_running
)
1525 reap_children (1, 0);
1530 /* Move CHILD's pointers to the next command for it to execute.
1531 Returns nonzero if there is another command. */
1534 job_next_command (child
)
1535 struct child
*child
;
1537 while (child
->command_ptr
== 0 || *child
->command_ptr
== '\0')
1539 /* There are no more lines in the expansion of this line. */
1540 if (child
->command_line
== child
->file
->cmds
->ncommand_lines
)
1542 /* There are no more lines to be expanded. */
1543 child
->command_ptr
= 0;
1547 /* Get the next line to run. */
1548 child
->command_ptr
= child
->command_lines
[child
->command_line
++];
1556 #if defined(__MSDOS__) || defined(VMS) || defined(_AMIGA)
1561 if (max_load_average
< 0)
1565 if (getloadavg (&load
, 1) != 1)
1567 static int lossage
= -1;
1568 /* Complain only once for the same error. */
1569 if (lossage
== -1 || errno
!= lossage
)
1572 /* An errno value of zero means getloadavg is just unsupported. */
1574 _("cannot enforce load limits on this operating system"));
1576 perror_with_name (_("cannot enforce load limit: "), "getloadavg");
1583 return load
>= max_load_average
;
1587 /* Start jobs that are waiting for the load to be lower. */
1590 start_waiting_jobs ()
1594 if (waiting_jobs
== 0)
1599 /* Check for recently deceased descendants. */
1600 reap_children (0, 0);
1602 /* Take a job off the waiting list. */
1604 waiting_jobs
= job
->next
;
1606 /* Try to start that job. We break out of the loop as soon
1607 as start_waiting_job puts one back on the waiting list. */
1609 while (start_waiting_job (job
) && waiting_jobs
!= 0);
1616 #include <descrip.h>
1619 /* This is called as an AST when a child process dies (it won't get
1620 interrupted by anything except a higher level AST).
1622 int vmsHandleChildTerm(struct child
*child
)
1625 register struct child
*lastc
, *c
;
1628 vms_jobsefnmask
&= ~(1 << (child
->efn
- 32));
1630 lib$
free_ef(&child
->efn
);
1632 (void) sigblock (fatal_signal_mask
);
1634 child_failed
= !(child
->cstatus
& 1 || ((child
->cstatus
& 7) == 0));
1636 /* Search for a child matching the deceased one. */
1638 #if defined(RECURSIVEJOBS) /* I've had problems with recursive stuff and process handling */
1639 for (c
= children
; c
!= 0 && c
!= child
; lastc
= c
, c
= c
->next
);
1644 if (child_failed
&& !c
->noerror
&& !ignore_errors_flag
)
1646 /* The commands failed. Write an error message,
1647 delete non-precious targets, and abort. */
1648 child_error (c
->file
->name
, c
->cstatus
, 0, 0, 0);
1649 c
->file
->update_status
= 1;
1650 delete_child_targets (c
);
1656 /* The commands failed, but we don't care. */
1657 child_error (c
->file
->name
, c
->cstatus
, 0, 0, 1);
1661 #if defined(RECURSIVEJOBS) /* I've had problems with recursive stuff and process handling */
1662 /* If there are more commands to run, try to start them. */
1665 switch (c
->file
->command_state
)
1668 /* Successfully started. */
1672 if (c
->file
->update_status
!= 0) {
1673 /* We failed to start the commands. */
1674 delete_child_targets (c
);
1679 error (NILF
, _("internal error: `%s' command_state"),
1684 #endif /* RECURSIVEJOBS */
1687 /* Set the state flag to say the commands have finished. */
1688 c
->file
->command_state
= cs_finished
;
1689 notice_finished_file (c
->file
);
1691 #if defined(RECURSIVEJOBS) /* I've had problems with recursive stuff and process handling */
1692 /* Remove the child from the chain and free it. */
1696 lastc
->next
= c
->next
;
1698 #endif /* RECURSIVEJOBS */
1700 /* There is now another slot open. */
1701 if (job_slots_used
> 0)
1704 /* If the job failed, and the -k flag was not given, die. */
1705 if (child_failed
&& !keep_going_flag
)
1708 (void) sigsetmask (sigblock (0) & ~(fatal_signal_mask
));
1714 Spawn a process executing the command in ARGV and return its pid. */
1716 #define MAXCMDLEN 200
1718 /* local helpers to make ctrl+c and ctrl+y working, see below */
1720 #include <libclidef.h>
1723 static int ctrlMask
= LIB$M_CLI_CTRLY
;
1724 static int oldCtrlMask
;
1725 static int setupYAstTried
= 0;
1726 static int pidToAbort
= 0;
1729 static void reEnableAst(void) {
1730 lib$
enable_ctrl (&oldCtrlMask
,0);
1733 static astHandler (void) {
1735 sys$
forcex (&pidToAbort
, 0, SS$_ABORT
);
1738 kill (getpid(),SIGQUIT
);
1741 static void tryToSetupYAst(void) {
1742 $
DESCRIPTOR(inputDsc
,"SYS$COMMAND");
1745 short int status
, count
;
1752 status
= sys$
assign(&inputDsc
,&chan
,0,0);
1753 if (!(status
&SS$_NORMAL
)) {
1758 status
= sys$
qiow (0, chan
, IO$_SETMODE
|IO$M_CTRLYAST
,&iosb
,0,0,
1759 astHandler
,0,0,0,0,0);
1760 if (status
==SS$_ILLIOFUNC
) {
1762 #ifdef CTRLY_ENABLED_ANYWAY
1764 _("-warning, CTRL-Y will leave sub-process(es) around.\n"));
1769 if (status
==SS$_NORMAL
)
1770 status
= iosb
.status
;
1771 if (!(status
&SS$_NORMAL
)) {
1776 /* called from AST handler ? */
1777 if (setupYAstTried
>1)
1779 if (atexit(reEnableAst
))
1781 _("-warning, you may have to re-enable CTRL-Y handling from DCL.\n"));
1782 status
= lib$
disable_ctrl (&ctrlMask
, &oldCtrlMask
);
1783 if (!(status
&SS$_NORMAL
)) {
1789 child_execute_job (argv
, child
)
1791 struct child
*child
;
1794 static struct dsc$descriptor_s cmddsc
;
1795 static struct dsc$descriptor_s pnamedsc
;
1796 static struct dsc$descriptor_s ifiledsc
;
1797 static struct dsc$descriptor_s ofiledsc
;
1798 static struct dsc$descriptor_s efiledsc
;
1799 int have_redirection
= 0;
1800 int have_newline
= 0;
1802 int spflags
= CLI$M_NOWAIT
;
1804 char *cmd
= alloca (strlen (argv
) + 512), *p
, *q
;
1805 char ifile
[256], ofile
[256], efile
[256];
1809 /* Parse IO redirection. */
1815 DB (DB_JOBS
, ("child_execute_job (%s)\n", argv
));
1817 while (isspace ((unsigned char)*argv
))
1823 sprintf (procname
, "GMAKE_%05x", getpid () & 0xfffff);
1824 pnamedsc
.dsc$w_length
= strlen(procname
);
1825 pnamedsc
.dsc$a_pointer
= procname
;
1826 pnamedsc
.dsc$b_dtype
= DSC$K_DTYPE_T
;
1827 pnamedsc
.dsc$b_class
= DSC$K_CLASS_S
;
1829 /* Handle comments and redirection. */
1830 for (p
= argv
, q
= cmd
; *p
; p
++, q
++)
1842 if (isspace ((unsigned char)*p
))
1844 do { p
++; } while (isspace ((unsigned char)*p
));
1850 p
= vms_redirect (&ifiledsc
, ifile
, p
);
1852 have_redirection
= 1;
1855 have_redirection
= 1;
1859 if (strncmp (p
, ">&1", 3) == 0)
1862 strcpy (efile
, "sys$output");
1863 efiledsc
.dsc$w_length
= strlen(efile
);
1864 efiledsc
.dsc$a_pointer
= efile
;
1865 efiledsc
.dsc$b_dtype
= DSC$K_DTYPE_T
;
1866 efiledsc
.dsc$b_class
= DSC$K_CLASS_S
;
1870 p
= vms_redirect (&efiledsc
, efile
, p
);
1875 p
= vms_redirect (&ofiledsc
, ofile
, p
);
1888 if (strncmp (cmd
, "builtin_", 8) == 0)
1890 child
->pid
= 270163;
1894 DB (DB_JOBS
, (_("BUILTIN [%s][%s]\n"), cmd
, cmd
+8));
1900 && ((*(p
+2) == ' ') || (*(p
+2) == '\t')))
1903 while ((*p
== ' ') || (*p
== '\t'))
1905 DB (DB_JOBS
, (_("BUILTIN CD %s\n"), p
));
1911 else if ((*(p
) == 'r')
1913 && ((*(p
+2) == ' ') || (*(p
+2) == '\t')))
1919 while ((*p
== ' ') || (*p
== '\t'))
1923 DB (DB_JOBS
, (_("BUILTIN RM %s\n"), p
));
1944 printf(_("Unknown builtin command '%s'\n"), cmd
);
1950 /* Create a *.com file if either the command is too long for
1951 lib$spawn, or the command contains a newline, or if redirection
1952 is desired. Forcing commands with newlines into DCLs allows to
1953 store search lists on user mode logicals. */
1955 if (strlen (cmd
) > MAXCMDLEN
1956 || (have_redirection
!= 0)
1957 || (have_newline
!= 0))
1962 int alevel
= 0; /* apostrophe level */
1964 if (strlen (cmd
) == 0)
1966 printf (_("Error, empty command\n"));
1971 outfile
= open_tmpfile (&comname
, "sys$scratch:CMDXXXXXX.COM");
1973 pfatal_with_name (_("fopen (temporary file)"));
1977 fprintf (outfile
, "$ assign/user %s sys$input\n", ifile
);
1978 DB (DB_JOBS
, (_("Redirected input from %s\n"), ifile
));
1979 ifiledsc
.dsc$w_length
= 0;
1984 fprintf (outfile
, "$ define sys$error %s\n", efile
);
1985 DB (DB_JOBS
, (_("Redirected error to %s\n"), efile
));
1986 efiledsc
.dsc$w_length
= 0;
1991 fprintf (outfile
, "$ define sys$output %s\n", ofile
);
1992 DB (DB_JOBS
, (_("Redirected output to %s\n"), ofile
));
1993 ofiledsc
.dsc$w_length
= 0;
1997 for (c
= '\n'; c
; c
= *q
++)
2002 /* At a newline, skip any whitespace around a leading $
2003 from the command and issue exactly one $ into the DCL. */
2004 while (isspace ((unsigned char)*p
))
2008 while (isspace ((unsigned char)*p
))
2010 fwrite (p
, 1, q
- p
, outfile
);
2011 fputc ('$', outfile
);
2012 fputc (' ', outfile
);
2013 /* Reset variables. */
2017 /* Nice places for line breaks are after strings, after
2018 comma or space and before slash. */
2020 q
= handle_apos (q
+ 1);
2036 /* Enough stuff for a line. */
2037 fwrite (p
, 1, sep
- p
, outfile
);
2041 /* The command continues. */
2042 fputc ('-', outfile
);
2044 fputc ('\n', outfile
);
2048 fwrite (p
, 1, q
- p
, outfile
);
2049 fputc ('\n', outfile
);
2053 sprintf (cmd
, "$ @%s", comname
);
2055 DB (DB_JOBS
, (_("Executing %s instead\n"), cmd
));
2058 cmddsc
.dsc$w_length
= strlen(cmd
);
2059 cmddsc
.dsc$a_pointer
= cmd
;
2060 cmddsc
.dsc$b_dtype
= DSC$K_DTYPE_T
;
2061 cmddsc
.dsc$b_class
= DSC$K_CLASS_S
;
2064 while (child
->efn
< 32 || child
->efn
> 63)
2066 status
= lib$
get_ef ((unsigned long *)&child
->efn
);
2071 sys$
clref (child
->efn
);
2073 vms_jobsefnmask
|= (1 << (child
->efn
- 32));
2076 LIB$SPAWN [command-string]
2081 [,process-id] [,completion-status-address] [,byte-integer-event-flag-num]
2082 [,AST-address] [,varying-AST-argument]
2083 [,prompt-string] [,cli] [,table]
2086 #ifndef DONTWAITFORCHILD
2088 * Code to make ctrl+c and ctrl+y working.
2089 * The problem starts with the synchronous case where after lib$spawn is
2090 * called any input will go to the child. But with input re-directed,
2091 * both control characters won't make it to any of the programs, neither
2092 * the spawning nor to the spawned one. Hence the caller needs to spawn
2093 * with CLI$M_NOWAIT to NOT give up the input focus. A sys$waitfr
2094 * has to follow to simulate the wanted synchronous behaviour.
2095 * The next problem is ctrl+y which isn't caught by the crtl and
2096 * therefore isn't converted to SIGQUIT (for a signal handler which is
2097 * already established). The only way to catch ctrl+y, is an AST
2098 * assigned to the input channel. But ctrl+y handling of DCL needs to be
2099 * disabled, otherwise it will handle it. Not to mention the previous
2100 * ctrl+y handling of DCL needs to be re-established before make exits.
2101 * One more: At the time of LIB$SPAWN signals are blocked. SIGQUIT will
2102 * make it to the signal handler after the child "normally" terminates.
2103 * This isn't enough. It seems reasonable for simple command lines like
2104 * a 'cc foobar.c' spawned in a subprocess but it is unacceptable for
2105 * spawning make. Therefore we need to abort the process in the AST.
2107 * Prior to the spawn it is checked if an AST is already set up for
2108 * ctrl+y, if not one is set up for a channel to SYS$COMMAND. In general
2109 * this will work except if make is run in a batch environment, but there
2110 * nobody can press ctrl+y. During the setup the DCL handling of ctrl+y
2111 * is disabled and an exit handler is established to re-enable it.
2112 * If the user interrupts with ctrl+y, the assigned AST will fire, force
2113 * an abort to the subprocess and signal SIGQUIT, which will be caught by
2114 * the already established handler and will bring us back to common code.
2115 * After the spawn (now /nowait) a sys$waitfr simulates the /wait and
2116 * enables the ctrl+y be delivered to this code. And the ctrl+c too,
2117 * which the crtl converts to SIGINT and which is caught by the common
2118 * signal handler. Because signals were blocked before entering this code
2119 * sys$waitfr will always complete and the SIGQUIT will be processed after
2120 * it (after termination of the current block, somewhere in common code).
2121 * And SIGINT too will be delayed. That is ctrl+c can only abort when the
2122 * current command completes. Anyway it's better than nothing :-)
2125 if (!setupYAstTried
)
2127 status
= lib$
spawn (&cmddsc
, /* cmd-string */
2128 (ifiledsc
.dsc$w_length
== 0)?0:&ifiledsc
, /* input-file */
2129 (ofiledsc
.dsc$w_length
== 0)?0:&ofiledsc
, /* output-file */
2130 &spflags
, /* flags */
2131 &pnamedsc
, /* proc name */
2132 &child
->pid
, &child
->cstatus
, &child
->efn
,
2135 pidToAbort
= child
->pid
;
2136 status
= sys$
waitfr (child
->efn
);
2138 vmsHandleChildTerm(child
);
2140 status
= lib$
spawn (&cmddsc
,
2141 (ifiledsc
.dsc$w_length
== 0)?0:&ifiledsc
,
2142 (ofiledsc
.dsc$w_length
== 0)?0:&ofiledsc
,
2145 &child
->pid
, &child
->cstatus
, &child
->efn
,
2146 vmsHandleChildTerm
, child
,
2152 printf (_("Error spawning, %d\n") ,status
);
2156 if (comname
&& !ISDB (DB_JOBS
))
2159 return (status
& 1);
2164 #if !defined (_AMIGA) && !defined (__MSDOS__)
2166 Replace the current process with one executing the command in ARGV.
2167 STDIN_FD and STDOUT_FD are used as the process's stdin and stdout; ENVP is
2168 the environment of the new program. This function does not return. */
2171 child_execute_job (stdin_fd
, stdout_fd
, argv
, envp
)
2172 int stdin_fd
, stdout_fd
;
2173 char **argv
, **envp
;
2176 (void) dup2 (stdin_fd
, 0);
2178 (void) dup2 (stdout_fd
, 1);
2180 (void) close (stdin_fd
);
2182 (void) close (stdout_fd
);
2184 /* Run the command. */
2185 exec_command (argv
, envp
);
2187 #endif /* !AMIGA && !__MSDOS__ */
2189 #endif /* !WINDOWS32 */
2192 /* Replace the current process with one running the command in ARGV,
2193 with environment ENVP. This function does not return. */
2196 exec_command (argv
, envp
)
2197 char **argv
, **envp
;
2200 /* to work around a problem with signals and execve: ignore them */
2202 signal (SIGCHLD
,SIG_IGN
);
2204 /* Run the program. */
2205 execve (argv
[0], argv
, envp
);
2206 perror_with_name ("execve: ", argv
[0]);
2207 _exit (EXIT_FAILURE
);
2213 int exit_code
= EXIT_FAILURE
;
2215 /* make sure CreateProcess() has Path it needs */
2216 sync_Path_environment();
2218 /* launch command */
2219 hPID
= process_easy(argv
, envp
);
2221 /* make sure launch ok */
2222 if (hPID
== INVALID_HANDLE_VALUE
)
2226 _("process_easy() failed failed to launch process (e=%d)\n"),
2227 process_last_err(hPID
));
2228 for (i
= 0; argv
[i
]; i
++)
2229 fprintf(stderr
, "%s ", argv
[i
]);
2230 fprintf(stderr
, _("\nCounted %d args in failed launch\n"), i
);
2234 /* wait and reap last child */
2235 while (hWaitPID
= process_wait_for_any())
2237 /* was an error found on this process? */
2238 err
= process_last_err(hWaitPID
);
2241 exit_code
= process_exit_code(hWaitPID
);
2244 fprintf(stderr
, "make (e=%d, rc=%d): %s",
2245 err
, exit_code
, map_windows32_error_to_string(err
));
2247 /* cleanup process */
2248 process_cleanup(hWaitPID
);
2250 /* expect to find only last pid, warn about other pids reaped */
2251 if (hWaitPID
== hPID
)
2255 _("make reaped child pid %d, still waiting for pid %d\n"),
2259 /* return child's exit code as our exit code */
2262 #else /* !WINDOWS32 */
2264 /* Be the user, permanently. */
2267 /* Run the program. */
2269 execvp (argv
[0], argv
);
2274 error (NILF
, _("%s: Command not found"), argv
[0]);
2278 /* The file is not executable. Try it as a shell script. */
2279 extern char *getenv ();
2284 shell
= getenv ("SHELL");
2286 shell
= default_shell
;
2289 while (argv
[argc
] != 0)
2292 new_argv
= (char **) alloca ((1 + argc
+ 1) * sizeof (char *));
2293 new_argv
[0] = shell
;
2294 new_argv
[1] = argv
[0];
2297 new_argv
[1 + argc
] = argv
[argc
];
2301 execvp (shell
, new_argv
);
2302 if (errno
== ENOENT
)
2303 error (NILF
, _("%s: Shell program not found"), shell
);
2305 perror_with_name ("execvp: ", shell
);
2310 perror_with_name ("execvp: ", argv
[0]);
2315 #endif /* !WINDOWS32 */
2318 #else /* On Amiga */
2319 void exec_command (argv
)
2325 void clean_tmp (void)
2327 DeleteFile (amiga_bname
);
2330 #endif /* On Amiga */
2333 /* Figure out the argument list necessary to run LINE as a command. Try to
2334 avoid using a shell. This routine handles only ' quoting, and " quoting
2335 when no backslash, $ or ` characters are seen in the quotes. Starting
2336 quotes may be escaped with a backslash. If any of the characters in
2337 sh_chars[] is seen, or any of the builtin commands listed in sh_cmds[]
2338 is the first word of a line, the shell is used.
2340 If RESTP is not NULL, *RESTP is set to point to the first newline in LINE.
2341 If *RESTP is NULL, newlines will be ignored.
2343 SHELL is the shell to use, or nil to use the default shell.
2344 IFS is the value of $IFS, or nil (meaning the default). */
2347 construct_command_argv_internal (line
, restp
, shell
, ifs
, batch_filename_ptr
)
2348 char *line
, **restp
;
2350 char **batch_filename_ptr
;
2353 /* MSDOS supports both the stock DOS shell and ports of Unixy shells.
2354 We call `system' for anything that requires ``slow'' processing,
2355 because DOS shells are too dumb. When $SHELL points to a real
2356 (unix-style) shell, `system' just calls it to do everything. When
2357 $SHELL points to a DOS shell, `system' does most of the work
2358 internally, calling the shell only for its internal commands.
2359 However, it looks on the $PATH first, so you can e.g. have an
2360 external command named `mkdir'.
2362 Since we call `system', certain characters and commands below are
2363 actually not specific to COMMAND.COM, but to the DJGPP implementation
2364 of `system'. In particular:
2366 The shell wildcard characters are in DOS_CHARS because they will
2367 not be expanded if we call the child via `spawnXX'.
2369 The `;' is in DOS_CHARS, because our `system' knows how to run
2370 multiple commands on a single line.
2372 DOS_CHARS also include characters special to 4DOS/NDOS, so we
2373 won't have to tell one from another and have one more set of
2374 commands and special characters. */
2375 static char sh_chars_dos
[] = "*?[];|<>%^&()";
2376 static char *sh_cmds_dos
[] = { "break", "call", "cd", "chcp", "chdir", "cls",
2377 "copy", "ctty", "date", "del", "dir", "echo",
2378 "erase", "exit", "for", "goto", "if", "md",
2379 "mkdir", "path", "pause", "prompt", "rd",
2380 "rmdir", "rem", "ren", "rename", "set",
2381 "shift", "time", "type", "ver", "verify",
2384 static char sh_chars_sh
[] = "#;\"*?[]&|<>(){}$`^";
2385 static char *sh_cmds_sh
[] = { "cd", "echo", "eval", "exec", "exit", "login",
2386 "logout", "set", "umask", "wait", "while",
2387 "for", "case", "if", ":", ".", "break",
2388 "continue", "export", "read", "readonly",
2389 "shift", "times", "trap", "switch", "unset",
2396 static char sh_chars
[] = "#;\"|<>()?*$`";
2397 static char *sh_cmds
[] = { "cd", "eval", "if", "delete", "echo", "copy",
2398 "rename", "set", "setenv", "date", "makedir",
2399 "skip", "else", "endif", "path", "prompt",
2400 "unset", "unsetenv", "version",
2404 static char sh_chars_dos
[] = "\"|&<>";
2405 static char *sh_cmds_dos
[] = { "break", "call", "cd", "chcp", "chdir", "cls",
2406 "copy", "ctty", "date", "del", "dir", "echo",
2407 "erase", "exit", "for", "goto", "if", "if", "md",
2408 "mkdir", "path", "pause", "prompt", "rd", "rem",
2409 "ren", "rename", "rmdir", "set", "shift", "time",
2410 "type", "ver", "verify", "vol", ":", 0 };
2411 static char sh_chars_sh
[] = "#;\"*?[]&|<>(){}$`^";
2412 static char *sh_cmds_sh
[] = { "cd", "eval", "exec", "exit", "login",
2413 "logout", "set", "umask", "wait", "while", "for",
2414 "case", "if", ":", ".", "break", "continue",
2415 "export", "read", "readonly", "shift", "times",
2416 "trap", "switch", "test",
2417 #ifdef BATCH_MODE_ONLY_SHELL
2423 #else /* WINDOWS32 */
2424 static char sh_chars
[] = "#;\"*?[]&|<>(){}$`^~";
2425 static char *sh_cmds
[] = { "cd", "eval", "exec", "exit", "login",
2426 "logout", "set", "umask", "wait", "while", "for",
2427 "case", "if", ":", ".", "break", "continue",
2428 "export", "read", "readonly", "shift", "times",
2429 "trap", "switch", 0 };
2430 #endif /* WINDOWS32 */
2432 #endif /* __MSDOS__ */
2437 int instring
, word_has_equals
, seen_nonequals
, last_argument_was_empty
;
2438 char **new_argv
= 0;
2442 if (no_default_sh_exe
) {
2443 sh_cmds
= sh_cmds_dos
;
2444 sh_chars
= sh_chars_dos
;
2446 sh_cmds
= sh_cmds_sh
;
2447 sh_chars
= sh_chars_sh
;
2449 #endif /* WINDOWS32 */
2454 /* Make sure not to bother processing an empty line. */
2455 while (isblank ((unsigned char)*line
))
2460 /* See if it is safe to parse commands internally. */
2462 shell
= default_shell
;
2464 else if (strcmp (shell
, default_shell
))
2466 char *s1
= _fullpath(NULL
, shell
, 0);
2467 char *s2
= _fullpath(NULL
, default_shell
, 0);
2469 slow_flag
= strcmp((s1
? s1
: ""), (s2
? s2
: ""));
2478 #else /* not WINDOWS32 */
2480 else if (stricmp (shell
, default_shell
))
2482 extern int _is_unixy_shell (const char *_path
);
2484 message (1, _("$SHELL changed (was `%s', now `%s')"), default_shell
, shell
);
2485 unixy_shell
= _is_unixy_shell (shell
);
2486 default_shell
= shell
;
2490 sh_chars
= sh_chars_sh
;
2491 sh_cmds
= sh_cmds_sh
;
2495 sh_chars
= sh_chars_dos
;
2496 sh_cmds
= sh_cmds_dos
;
2498 #else /* not __MSDOS__ */
2499 else if (strcmp (shell
, default_shell
))
2501 #endif /* not __MSDOS__ */
2502 #endif /* not WINDOWS32 */
2505 for (ap
= ifs
; *ap
!= '\0'; ++ap
)
2506 if (*ap
!= ' ' && *ap
!= '\t' && *ap
!= '\n')
2509 i
= strlen (line
) + 1;
2511 /* More than 1 arg per character is impossible. */
2512 new_argv
= (char **) xmalloc (i
* sizeof (char *));
2514 /* All the args can fit in a buffer as big as LINE is. */
2515 ap
= new_argv
[0] = (char *) xmalloc (i
);
2518 /* I is how many complete arguments have been found. */
2520 instring
= word_has_equals
= seen_nonequals
= last_argument_was_empty
= 0;
2521 for (p
= line
; *p
!= '\0'; ++p
)
2529 /* Inside a string, just copy any char except a closing quote
2530 or a backslash-newline combination. */
2534 if (ap
== new_argv
[0] || *(ap
-1) == '\0')
2535 last_argument_was_empty
= 1;
2537 else if (*p
== '\\' && p
[1] == '\n')
2538 goto swallow_escaped_newline
;
2539 else if (*p
== '\n' && restp
!= NULL
)
2541 /* End of the command line. */
2545 /* Backslash, $, and ` are special inside double quotes.
2546 If we see any of those, punt.
2547 But on MSDOS, if we use COMMAND.COM, double and single
2548 quotes have the same effect. */
2549 else if (instring
== '"' && strchr ("\\$`", *p
) != 0 && unixy_shell
)
2554 else if (strchr (sh_chars
, *p
) != 0)
2555 /* Not inside a string, but it's a special char. */
2558 else if (*p
== '.' && p
[1] == '.' && p
[2] == '.' && p
[3] != '.')
2559 /* `...' is a wildcard in DJGPP. */
2563 /* Not a special char. */
2567 /* Equals is a special character in leading words before the
2568 first word with no equals sign in it. This is not the case
2569 with sh -k, but we never get here when using nonstandard
2571 if (! seen_nonequals
&& unixy_shell
)
2573 word_has_equals
= 1;
2578 /* Backslash-newline combinations are eaten. */
2581 swallow_escaped_newline
:
2583 /* Eat the backslash, the newline, and following whitespace,
2584 replacing it all with a single space. */
2587 /* If there is a tab after a backslash-newline,
2588 remove it from the source line which will be echoed,
2589 since it was most likely used to line
2590 up the continued line with the previous one. */
2592 /* Note these overlap and strcpy() is undefined for
2593 overlapping objects in ANSI C. The strlen() _IS_ right,
2594 since we need to copy the nul byte too. */
2595 bcopy (p
+ 1, p
, strlen (p
));
2601 if (ap
!= new_argv
[i
])
2602 /* Treat this as a space, ending the arg.
2603 But if it's at the beginning of the arg, it should
2604 just get eaten, rather than becoming an empty arg. */
2607 p
= next_token (p
) - 1;
2610 else if (p
[1] != '\0')
2612 #if defined(__MSDOS__) || defined(WINDOWS32)
2613 /* Only remove backslashes before characters special
2614 to Unixy shells. All other backslashes are copied
2615 verbatim, since they are probably DOS-style
2616 directory separators. This still leaves a small
2617 window for problems, but at least it should work
2618 for the vast majority of naive users. */
2621 /* A dot is only special as part of the "..."
2623 if (strneq (p
+ 1, ".\\.\\.", 5))
2631 if (p
[1] != '\\' && p
[1] != '\''
2632 && !isspace ((unsigned char)p
[1])
2633 && (strchr (sh_chars_sh
, p
[1]) == 0))
2634 /* back up one notch, to copy the backslash */
2637 #endif /* __MSDOS__ || WINDOWS32 */
2638 /* Copy and skip the following char. */
2651 /* End of the command line. */
2656 /* Newlines are not special. */
2663 /* We have the end of an argument.
2664 Terminate the text of the argument. */
2667 last_argument_was_empty
= 0;
2669 /* Update SEEN_NONEQUALS, which tells us if every word
2670 heretofore has contained an `='. */
2671 seen_nonequals
|= ! word_has_equals
;
2672 if (word_has_equals
&& ! seen_nonequals
)
2673 /* An `=' in a word before the first
2674 word without one is magical. */
2676 word_has_equals
= 0; /* Prepare for the next word. */
2678 /* If this argument is the command name,
2679 see if it is a built-in shell command.
2680 If so, have the shell handle it. */
2684 for (j
= 0; sh_cmds
[j
] != 0; ++j
)
2685 if (streq (sh_cmds
[j
], new_argv
[0]))
2689 /* Ignore multiple whitespace chars. */
2691 /* Next iteration should examine the first nonwhite char. */
2703 /* Let the shell deal with an unterminated quote. */
2706 /* Terminate the last argument and the argument list. */
2709 if (new_argv
[i
][0] != '\0' || last_argument_was_empty
)
2716 for (j
= 0; sh_cmds
[j
] != 0; ++j
)
2717 if (streq (sh_cmds
[j
], new_argv
[0]))
2721 if (new_argv
[0] == 0)
2722 /* Line was empty. */
2728 /* We must use the shell. */
2732 /* Free the old argument list we were working on. */
2734 free ((void *)new_argv
);
2738 execute_by_shell
= 1; /* actually, call `system' if shell isn't unixy */
2747 buffer
= (char *)xmalloc (strlen (line
)+1);
2750 for (dptr
=buffer
; *ptr
; )
2752 if (*ptr
== '\\' && ptr
[1] == '\n')
2754 else if (*ptr
== '@') /* Kludge: multiline commands */
2764 new_argv
= (char **) xmalloc (2 * sizeof (char *));
2765 new_argv
[0] = buffer
;
2768 #else /* Not Amiga */
2771 * Not eating this whitespace caused things like
2775 * which gave the shell fits. I think we have to eat
2776 * whitespace here, but this code should be considered
2777 * suspicious if things start failing....
2780 /* Make sure not to bother processing an empty line. */
2781 while (isspace ((unsigned char)*line
))
2785 #endif /* WINDOWS32 */
2787 /* SHELL may be a multi-word command. Construct a command line
2788 "SHELL -c LINE", with all special chars in LINE escaped.
2789 Then recurse, expanding this command line to get the final
2792 unsigned int shell_len
= strlen (shell
);
2794 static char minus_c
[] = " -c ";
2796 static char minus_c
[] = "";
2798 unsigned int line_len
= strlen (line
);
2800 char *new_line
= (char *) alloca (shell_len
+ (sizeof (minus_c
) - 1)
2801 + (line_len
* 2) + 1);
2802 char *command_ptr
= NULL
; /* used for batch_mode_shell mode */
2805 bcopy (shell
, ap
, shell_len
);
2807 bcopy (minus_c
, ap
, sizeof (minus_c
) - 1);
2808 ap
+= sizeof (minus_c
) - 1;
2810 for (p
= line
; *p
!= '\0'; ++p
)
2812 if (restp
!= NULL
&& *p
== '\n')
2817 else if (*p
== '\\' && p
[1] == '\n')
2819 /* Eat the backslash, the newline, and following whitespace,
2820 replacing it all with a single space (which is escaped
2824 /* If there is a tab after a backslash-newline,
2825 remove it from the source line which will be echoed,
2826 since it was most likely used to line
2827 up the continued line with the previous one. */
2829 bcopy (p
+ 1, p
, strlen (p
));
2833 if (unixy_shell
&& !batch_mode_shell
)
2839 /* DOS shells don't know about backslash-escaping. */
2840 if (unixy_shell
&& !batch_mode_shell
&&
2841 (*p
== '\\' || *p
== '\'' || *p
== '"'
2842 || isspace ((unsigned char)*p
)
2843 || strchr (sh_chars
, *p
) != 0))
2846 else if (unixy_shell
&& strneq (p
, "...", 3))
2848 /* The case of `...' wildcard again. */
2849 strcpy (ap
, "\\.\\.\\");
2856 if (ap
== new_line
+ shell_len
+ sizeof (minus_c
) - 1)
2857 /* Line was empty. */
2862 /* Some shells do not work well when invoked as 'sh -c xxx' to run a
2863 command line (e.g. Cygnus GNUWIN32 sh.exe on WIN32 systems). In these
2864 cases, run commands via a script file. */
2865 if ((no_default_sh_exe
|| batch_mode_shell
) && batch_filename_ptr
) {
2867 int id
= GetCurrentProcessId();
2871 /* create a file name */
2872 sprintf(fbuf
, "make%d", id
);
2873 fname
= tempnam(".", fbuf
);
2875 /* create batch file name */
2876 *batch_filename_ptr
= xmalloc(strlen(fname
) + 5);
2877 strcpy(*batch_filename_ptr
, fname
);
2879 /* make sure path name is in DOS backslash format */
2881 fname
= *batch_filename_ptr
;
2882 for (i
= 0; fname
[i
] != '\0'; ++i
)
2883 if (fname
[i
] == '/')
2885 strcat(*batch_filename_ptr
, ".bat");
2887 strcat(*batch_filename_ptr
, ".sh");
2890 DB (DB_JOBS
, (_("Creating temporary batch file %s\n"),
2891 *batch_filename_ptr
));
2893 /* create batch file to execute command */
2894 batch
= fopen (*batch_filename_ptr
, "w");
2896 fputs ("@echo off\n", batch
);
2897 fputs (command_ptr
, batch
);
2898 fputc ('\n', batch
);
2902 new_argv
= (char **) xmalloc(3 * sizeof (char *));
2904 new_argv
[0] = xstrdup (shell
);
2905 new_argv
[1] = *batch_filename_ptr
; /* only argv[0] gets freed later */
2907 new_argv
[0] = xstrdup (*batch_filename_ptr
);
2912 #endif /* WINDOWS32 */
2914 new_argv
= construct_command_argv_internal (new_line
, (char **) NULL
,
2915 (char *) 0, (char *) 0,
2920 /* With MSDOS shells, we must construct the command line here
2921 instead of recursively calling ourselves, because we
2922 cannot backslash-escape the special characters (see above). */
2923 new_argv
= (char **) xmalloc (sizeof (char *));
2924 line_len
= strlen (new_line
) - shell_len
- sizeof (minus_c
) + 1;
2925 new_argv
[0] = xmalloc (line_len
+ 1);
2926 strncpy (new_argv
[0],
2927 new_line
+ shell_len
+ sizeof (minus_c
) - 1, line_len
);
2928 new_argv
[0][line_len
] = '\0';
2932 fatal (NILF
, _("%s (line %d) Bad shell context (!unixy && !batch_mode_shell)\n"),
2933 __FILE__
, __LINE__
);
2936 #endif /* ! AMIGA */
2942 /* Figure out the argument list necessary to run LINE as a command. Try to
2943 avoid using a shell. This routine handles only ' quoting, and " quoting
2944 when no backslash, $ or ` characters are seen in the quotes. Starting
2945 quotes may be escaped with a backslash. If any of the characters in
2946 sh_chars[] is seen, or any of the builtin commands listed in sh_cmds[]
2947 is the first word of a line, the shell is used.
2949 If RESTP is not NULL, *RESTP is set to point to the first newline in LINE.
2950 If *RESTP is NULL, newlines will be ignored.
2952 FILE is the target whose commands these are. It is used for
2953 variable expansion for $(SHELL) and $(IFS). */
2956 construct_command_argv (line
, restp
, file
, batch_filename_ptr
)
2957 char *line
, **restp
;
2959 char** batch_filename_ptr
;
2973 && (isspace ((unsigned char)*cptr
)))
2978 && (!isspace((unsigned char)*cptr
)))
2983 argv
= (char **)malloc (argc
* sizeof (char *));
2992 && (isspace ((unsigned char)*cptr
)))
2996 DB (DB_JOBS
, ("argv[%d] = [%s]\n", argc
, cptr
));
2997 argv
[argc
++] = cptr
;
2999 && (!isspace((unsigned char)*cptr
)))
3006 /* Turn off --warn-undefined-variables while we expand SHELL and IFS. */
3007 int save
= warn_undefined_variables_flag
;
3008 warn_undefined_variables_flag
= 0;
3010 shell
= allocated_variable_expand_for_file ("$(SHELL)", file
);
3013 * Convert to forward slashes so that construct_command_argv_internal()
3017 char *p
= w32ify(shell
, 0);
3021 ifs
= allocated_variable_expand_for_file ("$(IFS)", file
);
3023 warn_undefined_variables_flag
= save
;
3026 argv
= construct_command_argv_internal (line
, restp
, shell
, ifs
, batch_filename_ptr
);
3034 #if !defined(HAVE_DUP2) && !defined(_AMIGA)
3052 #endif /* !HAPE_DUP2 && !_AMIGA */