main.c revision 1.125 1 /* $NetBSD: main.c,v 1.125 2006/04/22 18:48:46 christos Exp $ */
2
3 /*
4 * Copyright (c) 1988, 1989, 1990, 1993
5 * The Regents of the University of California. All rights reserved.
6 *
7 * This code is derived from software contributed to Berkeley by
8 * Adam de Boor.
9 *
10 * Redistribution and use in source and binary forms, with or without
11 * modification, are permitted provided that the following conditions
12 * are met:
13 * 1. Redistributions of source code must retain the above copyright
14 * notice, this list of conditions and the following disclaimer.
15 * 2. Redistributions in binary form must reproduce the above copyright
16 * notice, this list of conditions and the following disclaimer in the
17 * documentation and/or other materials provided with the distribution.
18 * 3. Neither the name of the University nor the names of its contributors
19 * may be used to endorse or promote products derived from this software
20 * without specific prior written permission.
21 *
22 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
23 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
24 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
25 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
26 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
27 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
28 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
29 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
30 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
31 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
32 * SUCH DAMAGE.
33 */
34
35 /*
36 * Copyright (c) 1989 by Berkeley Softworks
37 * All rights reserved.
38 *
39 * This code is derived from software contributed to Berkeley by
40 * Adam de Boor.
41 *
42 * Redistribution and use in source and binary forms, with or without
43 * modification, are permitted provided that the following conditions
44 * are met:
45 * 1. Redistributions of source code must retain the above copyright
46 * notice, this list of conditions and the following disclaimer.
47 * 2. Redistributions in binary form must reproduce the above copyright
48 * notice, this list of conditions and the following disclaimer in the
49 * documentation and/or other materials provided with the distribution.
50 * 3. All advertising materials mentioning features or use of this software
51 * must display the following acknowledgement:
52 * This product includes software developed by the University of
53 * California, Berkeley and its contributors.
54 * 4. Neither the name of the University nor the names of its contributors
55 * may be used to endorse or promote products derived from this software
56 * without specific prior written permission.
57 *
58 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
59 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
60 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
61 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
62 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
63 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
64 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
65 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
66 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
67 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
68 * SUCH DAMAGE.
69 */
70
71 #ifndef MAKE_NATIVE
72 static char rcsid[] = "$NetBSD: main.c,v 1.125 2006/04/22 18:48:46 christos Exp $";
73 #else
74 #include <sys/cdefs.h>
75 #ifndef lint
76 __COPYRIGHT("@(#) Copyright (c) 1988, 1989, 1990, 1993\n\
77 The Regents of the University of California. All rights reserved.\n");
78 #endif /* not lint */
79
80 #ifndef lint
81 #if 0
82 static char sccsid[] = "@(#)main.c 8.3 (Berkeley) 3/19/94";
83 #else
84 __RCSID("$NetBSD: main.c,v 1.125 2006/04/22 18:48:46 christos Exp $");
85 #endif
86 #endif /* not lint */
87 #endif
88
89 /*-
90 * main.c --
91 * The main file for this entire program. Exit routines etc
92 * reside here.
93 *
94 * Utility functions defined in this file:
95 * Main_ParseArgLine Takes a line of arguments, breaks them and
96 * treats them as if they were given when first
97 * invoked. Used by the parse module to implement
98 * the .MFLAGS target.
99 *
100 * Error Print a tagged error message. The global
101 * MAKE variable must have been defined. This
102 * takes a format string and two optional
103 * arguments for it.
104 *
105 * Fatal Print an error message and exit. Also takes
106 * a format string and two arguments.
107 *
108 * Punt Aborts all jobs and exits with a message. Also
109 * takes a format string and two arguments.
110 *
111 * Finish Finish things up by printing the number of
112 * errors which occurred, as passed to it, and
113 * exiting.
114 */
115
116 #include <sys/types.h>
117 #include <sys/time.h>
118 #include <sys/param.h>
119 #include <sys/resource.h>
120 #include <sys/signal.h>
121 #include <sys/stat.h>
122 #ifdef MAKE_NATIVE
123 #include <sys/utsname.h>
124 #endif
125 #include <sys/wait.h>
126
127 #include <errno.h>
128 #include <fcntl.h>
129 #include <stdarg.h>
130 #include <stdio.h>
131 #include <stdlib.h>
132 #include <time.h>
133
134 #include "make.h"
135 #include "hash.h"
136 #include "dir.h"
137 #include "job.h"
138 #include "pathnames.h"
139 #include "trace.h"
140
141 #ifdef USE_IOVEC
142 #include <sys/uio.h>
143 #endif
144
145 #ifndef DEFMAXLOCAL
146 #define DEFMAXLOCAL DEFMAXJOBS
147 #endif /* DEFMAXLOCAL */
148
149 Lst create; /* Targets to be made */
150 time_t now; /* Time at start of make */
151 GNode *DEFAULT; /* .DEFAULT node */
152 Boolean allPrecious; /* .PRECIOUS given on line by itself */
153
154 static Boolean noBuiltins; /* -r flag */
155 static Lst makefiles; /* ordered list of makefiles to read */
156 static Boolean printVars; /* print value of one or more vars */
157 static Lst variables; /* list of variables to print */
158 int maxJobs; /* -j argument */
159 int maxJobTokens; /* -j argument */
160 Boolean compatMake; /* -B argument */
161 int debug; /* -d argument */
162 Boolean noExecute; /* -n flag */
163 Boolean noRecursiveExecute; /* -N flag */
164 Boolean keepgoing; /* -k flag */
165 Boolean queryFlag; /* -q flag */
166 Boolean touchFlag; /* -t flag */
167 Boolean usePipes; /* !-P flag */
168 Boolean ignoreErrors; /* -i flag */
169 Boolean beSilent; /* -s flag */
170 Boolean oldVars; /* variable substitution style */
171 Boolean checkEnvFirst; /* -e flag */
172 Boolean parseWarnFatal; /* -W flag */
173 Boolean jobServer; /* -J flag */
174 Boolean varNoExportEnv; /* -X flag */
175 static Boolean jobsRunning; /* TRUE if the jobs might be running */
176 static const char * tracefile;
177 static char * Check_Cwd_av(int, char **, int);
178 static void MainParseArgs(int, char **);
179 static int ReadMakefile(ClientData, ClientData);
180 static void usage(void);
181
182 static char curdir[MAXPATHLEN + 1]; /* startup directory */
183 static char objdir[MAXPATHLEN + 1]; /* where we chdir'ed to */
184 char *progname; /* the program name */
185
186 Boolean forceJobs = FALSE;
187
188 extern Lst parseIncPath;
189
190 /*-
191 * MainParseArgs --
192 * Parse a given argument vector. Called from main() and from
193 * Main_ParseArgLine() when the .MAKEFLAGS target is used.
194 *
195 * XXX: Deal with command line overriding .MAKEFLAGS in makefile
196 *
197 * Results:
198 * None
199 *
200 * Side Effects:
201 * Various global and local flags will be set depending on the flags
202 * given
203 */
204 static void
205 MainParseArgs(int argc, char **argv)
206 {
207 char *p;
208 int c = '?';
209 int arginc;
210 char *argvalue, *modules;
211 const char *getopt_def;
212 char *optscan;
213 Boolean inOption, dashDash = FALSE;
214 char found_path[MAXPATHLEN + 1]; /* for searching for sys.mk */
215
216 #define OPTFLAGS "BD:I:J:NPST:V:WXd:ef:ij:km:nqrst"
217 /* Can't actually use getopt(3) because rescanning is not portable */
218
219 getopt_def = OPTFLAGS;
220 rearg:
221 inOption = FALSE;
222 optscan = NULL;
223 while(argc > 1) {
224 char *getopt_spec;
225 if(!inOption)
226 optscan = argv[1];
227 c = *optscan++;
228 arginc = 0;
229 if(inOption) {
230 if(c == '\0') {
231 ++argv;
232 --argc;
233 inOption = FALSE;
234 continue;
235 }
236 } else {
237 if (c != '-' || dashDash)
238 break;
239 inOption = TRUE;
240 c = *optscan++;
241 }
242 /* '-' found at some earlier point */
243 getopt_spec = strchr(getopt_def, c);
244 if(c != '\0' && getopt_spec != NULL && getopt_spec[1] == ':') {
245 /* -<something> found, and <something> should have an arg */
246 inOption = FALSE;
247 arginc = 1;
248 argvalue = optscan;
249 if(*argvalue == '\0') {
250 if (argc < 3)
251 goto noarg;
252 argvalue = argv[2];
253 arginc = 2;
254 }
255 } else {
256 argvalue = NULL;
257 }
258 switch(c) {
259 case '\0':
260 arginc = 1;
261 inOption = FALSE;
262 break;
263 case 'B':
264 compatMake = TRUE;
265 Var_Append(MAKEFLAGS, "-B", VAR_GLOBAL);
266 break;
267 case 'D':
268 if (argvalue == NULL) goto noarg;
269 Var_Set(argvalue, "1", VAR_GLOBAL, 0);
270 Var_Append(MAKEFLAGS, "-D", VAR_GLOBAL);
271 Var_Append(MAKEFLAGS, argvalue, VAR_GLOBAL);
272 break;
273 case 'I':
274 if (argvalue == NULL) goto noarg;
275 Parse_AddIncludeDir(argvalue);
276 Var_Append(MAKEFLAGS, "-I", VAR_GLOBAL);
277 Var_Append(MAKEFLAGS, argvalue, VAR_GLOBAL);
278 break;
279 case 'J':
280 if (argvalue == NULL) goto noarg;
281 if (sscanf(argvalue, "%d,%d", &job_pipe[0], &job_pipe[1]) != 2) {
282 /* backslash to avoid trigraph ??) */
283 (void)fprintf(stderr,
284 "%s: internal error -- J option malformed (%s?\?)\n",
285 progname, argvalue);
286 usage();
287 }
288 if ((fcntl(job_pipe[0], F_GETFD, 0) < 0) ||
289 (fcntl(job_pipe[1], F_GETFD, 0) < 0)) {
290 #if 0
291 (void)fprintf(stderr,
292 "%s: ###### warning -- J descriptors were closed!\n",
293 progname);
294 exit(2);
295 #endif
296 job_pipe[0] = -1;
297 job_pipe[1] = -1;
298 compatMake = TRUE;
299 } else {
300 Var_Append(MAKEFLAGS, "-J", VAR_GLOBAL);
301 Var_Append(MAKEFLAGS, argvalue, VAR_GLOBAL);
302 jobServer = TRUE;
303 }
304 break;
305 case 'N':
306 noExecute = TRUE;
307 noRecursiveExecute = TRUE;
308 Var_Append(MAKEFLAGS, "-N", VAR_GLOBAL);
309 break;
310 case 'P':
311 usePipes = FALSE;
312 Var_Append(MAKEFLAGS, "-P", VAR_GLOBAL);
313 break;
314 case 'S':
315 keepgoing = FALSE;
316 Var_Append(MAKEFLAGS, "-S", VAR_GLOBAL);
317 break;
318 case 'T':
319 if (argvalue == NULL) goto noarg;
320 tracefile = estrdup(argvalue);
321 Var_Append(MAKEFLAGS, "-T", VAR_GLOBAL);
322 Var_Append(MAKEFLAGS, argvalue, VAR_GLOBAL);
323 break;
324 case 'V':
325 if (argvalue == NULL) goto noarg;
326 printVars = TRUE;
327 (void)Lst_AtEnd(variables, (ClientData)argvalue);
328 Var_Append(MAKEFLAGS, "-V", VAR_GLOBAL);
329 Var_Append(MAKEFLAGS, argvalue, VAR_GLOBAL);
330 break;
331 case 'W':
332 parseWarnFatal = TRUE;
333 break;
334 case 'X':
335 varNoExportEnv = TRUE;
336 Var_Append(MAKEFLAGS, "-X", VAR_GLOBAL);
337 break;
338 case 'd': {
339 if (argvalue == NULL) goto noarg;
340 for (modules = argvalue; *modules; ++modules)
341 switch (*modules) {
342 case 'A':
343 debug = ~0;
344 break;
345 case 'a':
346 debug |= DEBUG_ARCH;
347 break;
348 case 'c':
349 debug |= DEBUG_COND;
350 break;
351 case 'd':
352 debug |= DEBUG_DIR;
353 break;
354 case 'e':
355 debug |= DEBUG_ERROR;
356 break;
357 case 'f':
358 debug |= DEBUG_FOR;
359 break;
360 case 'g':
361 if (modules[1] == '1') {
362 debug |= DEBUG_GRAPH1;
363 ++modules;
364 }
365 else if (modules[1] == '2') {
366 debug |= DEBUG_GRAPH2;
367 ++modules;
368 }
369 else if (modules[1] == '3') {
370 debug |= DEBUG_GRAPH3;
371 ++modules;
372 }
373 break;
374 case 'j':
375 debug |= DEBUG_JOB;
376 break;
377 case 'm':
378 debug |= DEBUG_MAKE;
379 break;
380 case 'n':
381 debug |= DEBUG_SCRIPT;
382 break;
383 case 'p':
384 debug |= DEBUG_PARSE;
385 break;
386 case 's':
387 debug |= DEBUG_SUFF;
388 break;
389 case 't':
390 debug |= DEBUG_TARG;
391 break;
392 case 'v':
393 debug |= DEBUG_VAR;
394 break;
395 case 'x':
396 debug |= DEBUG_SHELL;
397 break;
398 default:
399 (void)fprintf(stderr,
400 "%s: illegal argument to d option -- %c\n",
401 progname, *modules);
402 usage();
403 }
404 Var_Append(MAKEFLAGS, "-d", VAR_GLOBAL);
405 Var_Append(MAKEFLAGS, argvalue, VAR_GLOBAL);
406 break;
407 }
408 case 'e':
409 checkEnvFirst = TRUE;
410 Var_Append(MAKEFLAGS, "-e", VAR_GLOBAL);
411 break;
412 case 'f':
413 if (argvalue == NULL) goto noarg;
414 (void)Lst_AtEnd(makefiles, (ClientData)argvalue);
415 break;
416 case 'i':
417 ignoreErrors = TRUE;
418 Var_Append(MAKEFLAGS, "-i", VAR_GLOBAL);
419 break;
420 case 'j':
421 if (argvalue == NULL) goto noarg;
422 forceJobs = TRUE;
423 maxJobs = strtol(argvalue, &p, 0);
424 if (*p != '\0' || maxJobs < 1) {
425 (void)fprintf(stderr, "%s: illegal argument to -j -- must be positive integer!\n",
426 progname);
427 exit(1);
428 }
429 Var_Append(MAKEFLAGS, "-j", VAR_GLOBAL);
430 Var_Append(MAKEFLAGS, argvalue, VAR_GLOBAL);
431 maxJobTokens = maxJobs;
432 break;
433 case 'k':
434 keepgoing = TRUE;
435 Var_Append(MAKEFLAGS, "-k", VAR_GLOBAL);
436 break;
437 case 'm':
438 if (argvalue == NULL) goto noarg;
439 /* look for magic parent directory search string */
440 if (strncmp(".../", argvalue, 4) == 0) {
441 if (!Dir_FindHereOrAbove(curdir, argvalue+4,
442 found_path, sizeof(found_path)))
443 break; /* nothing doing */
444 (void)Dir_AddDir(sysIncPath, found_path);
445
446 } else {
447 (void)Dir_AddDir(sysIncPath, argvalue);
448 }
449 Var_Append(MAKEFLAGS, "-m", VAR_GLOBAL);
450 Var_Append(MAKEFLAGS, argvalue, VAR_GLOBAL);
451 break;
452 case 'n':
453 noExecute = TRUE;
454 Var_Append(MAKEFLAGS, "-n", VAR_GLOBAL);
455 break;
456 case 'q':
457 queryFlag = TRUE;
458 /* Kind of nonsensical, wot? */
459 Var_Append(MAKEFLAGS, "-q", VAR_GLOBAL);
460 break;
461 case 'r':
462 noBuiltins = TRUE;
463 Var_Append(MAKEFLAGS, "-r", VAR_GLOBAL);
464 break;
465 case 's':
466 beSilent = TRUE;
467 Var_Append(MAKEFLAGS, "-s", VAR_GLOBAL);
468 break;
469 case 't':
470 touchFlag = TRUE;
471 Var_Append(MAKEFLAGS, "-t", VAR_GLOBAL);
472 break;
473 case '-':
474 dashDash = TRUE;
475 break;
476 default:
477 case '?':
478 usage();
479 }
480 argv += arginc;
481 argc -= arginc;
482 }
483
484 oldVars = TRUE;
485
486 /*
487 * See if the rest of the arguments are variable assignments and
488 * perform them if so. Else take them to be targets and stuff them
489 * on the end of the "create" list.
490 */
491 for (; argc > 1; ++argv, --argc)
492 if (Parse_IsVar(argv[1])) {
493 Parse_DoVar(argv[1], VAR_CMD);
494 } else {
495 if (!*argv[1])
496 Punt("illegal (null) argument.");
497 if (*argv[1] == '-' && !dashDash)
498 goto rearg;
499 (void)Lst_AtEnd(create, (ClientData)estrdup(argv[1]));
500 }
501
502 return;
503 noarg:
504 (void)fprintf(stderr, "%s: option requires an argument -- %c\n",
505 progname, c);
506 usage();
507 }
508
509 /*-
510 * Main_ParseArgLine --
511 * Used by the parse module when a .MFLAGS or .MAKEFLAGS target
512 * is encountered and by main() when reading the .MAKEFLAGS envariable.
513 * Takes a line of arguments and breaks it into its
514 * component words and passes those words and the number of them to the
515 * MainParseArgs function.
516 * The line should have all its leading whitespace removed.
517 *
518 * Input:
519 * line Line to fracture
520 *
521 * Results:
522 * None
523 *
524 * Side Effects:
525 * Only those that come from the various arguments.
526 */
527 void
528 Main_ParseArgLine(char *line)
529 {
530 char **argv; /* Manufactured argument vector */
531 int argc; /* Number of arguments in argv */
532 char *args; /* Space used by the args */
533 char *buf, *p1;
534 char *argv0 = Var_Value(".MAKE", VAR_GLOBAL, &p1);
535 size_t len;
536
537 if (line == NULL)
538 return;
539 for (; *line == ' '; ++line)
540 continue;
541 if (!*line)
542 return;
543
544 buf = emalloc(len = strlen(line) + strlen(argv0) + 2);
545 (void)snprintf(buf, len, "%s %s", argv0, line);
546 if (p1)
547 free(p1);
548
549 argv = brk_string(buf, &argc, TRUE, &args);
550 free(buf);
551 MainParseArgs(argc, argv);
552
553 free(args);
554 free(argv);
555 }
556
557 Boolean
558 Main_SetObjdir(const char *path)
559 {
560 struct stat sb;
561 char *p = NULL;
562 char buf[MAXPATHLEN + 1];
563 Boolean rc = FALSE;
564
565 /* expand variable substitutions */
566 if (strchr(path, '$') != 0) {
567 snprintf(buf, MAXPATHLEN, "%s", path);
568 path = p = Var_Subst(NULL, buf, VAR_GLOBAL, 0);
569 }
570
571 if (path[0] != '/') {
572 snprintf(buf, MAXPATHLEN, "%s/%s", curdir, path);
573 path = buf;
574 }
575
576 /* look for the directory and try to chdir there */
577 if (stat(path, &sb) == 0 && S_ISDIR(sb.st_mode)) {
578 if (chdir(path)) {
579 (void)fprintf(stderr, "make warning: %s: %s.\n",
580 path, strerror(errno));
581 } else {
582 strncpy(objdir, path, MAXPATHLEN);
583 Var_Set(".OBJDIR", objdir, VAR_GLOBAL, 0);
584 setenv("PWD", objdir, 1);
585 Dir_InitDot();
586 rc = TRUE;
587 }
588 }
589
590 if (p)
591 free(p);
592 return rc;
593 }
594
595 /*-
596 * ReadAllMakefiles --
597 * wrapper around ReadMakefile() to read all.
598 *
599 * Results:
600 * TRUE if ok, FALSE on error
601 */
602 static int
603 ReadAllMakefiles(ClientData p, ClientData q)
604 {
605 return (ReadMakefile(p, q) == 0);
606 }
607
608 /*-
609 * main --
610 * The main function, for obvious reasons. Initializes variables
611 * and a few modules, then parses the arguments give it in the
612 * environment and on the command line. Reads the system makefile
613 * followed by either Makefile, makefile or the file given by the
614 * -f argument. Sets the .MAKEFLAGS PMake variable based on all the
615 * flags it has received by then uses either the Make or the Compat
616 * module to create the initial list of targets.
617 *
618 * Results:
619 * If -q was given, exits -1 if anything was out-of-date. Else it exits
620 * 0.
621 *
622 * Side Effects:
623 * The program exits when done. Targets are created. etc. etc. etc.
624 */
625 int
626 main(int argc, char **argv)
627 {
628 Lst targs; /* target nodes to create -- passed to Make_Init */
629 Boolean outOfDate = TRUE; /* FALSE if all targets up to date */
630 struct stat sb, sa;
631 char *p1, *path, *pwd;
632 char mdpath[MAXPATHLEN];
633 char *machine = getenv("MACHINE");
634 const char *machine_arch = getenv("MACHINE_ARCH");
635 char *syspath = getenv("MAKESYSPATH");
636 Lst sysMkPath; /* Path of sys.mk */
637 char *cp = NULL, *start;
638 /* avoid faults on read-only strings */
639 static char defsyspath[] = _PATH_DEFSYSPATH;
640 char found_path[MAXPATHLEN + 1]; /* for searching for sys.mk */
641 struct timeval rightnow; /* to initialize random seed */
642 #ifdef MAKE_NATIVE
643 struct utsname utsname;
644 #endif
645
646 /*
647 * Set the seed to produce a different random sequences
648 * on each program execution.
649 */
650 gettimeofday(&rightnow, NULL);
651 srandom(rightnow.tv_sec + rightnow.tv_usec);
652
653 if ((progname = strrchr(argv[0], '/')) != NULL)
654 progname++;
655 else
656 progname = argv[0];
657 #ifdef RLIMIT_NOFILE
658 /*
659 * get rid of resource limit on file descriptors
660 */
661 {
662 struct rlimit rl;
663 if (getrlimit(RLIMIT_NOFILE, &rl) != -1 &&
664 rl.rlim_cur != rl.rlim_max) {
665 rl.rlim_cur = rl.rlim_max;
666 (void)setrlimit(RLIMIT_NOFILE, &rl);
667 }
668 }
669 #endif
670 /*
671 * Find where we are and take care of PWD for the automounter...
672 * All this code is so that we know where we are when we start up
673 * on a different machine with pmake.
674 */
675 if (getcwd(curdir, MAXPATHLEN) == NULL) {
676 (void)fprintf(stderr, "%s: %s.\n", progname, strerror(errno));
677 exit(2);
678 }
679
680 if (stat(curdir, &sa) == -1) {
681 (void)fprintf(stderr, "%s: %s: %s.\n",
682 progname, curdir, strerror(errno));
683 exit(2);
684 }
685
686 /*
687 * Overriding getcwd() with $PWD totally breaks MAKEOBJDIRPREFIX
688 * since the value of curdir can very depending on how we got
689 * here. Ie sitting at a shell prompt (shell that provides $PWD)
690 * or via subdir.mk in which case its likely a shell which does
691 * not provide it.
692 * So, to stop it breaking this case only, we ignore PWD if
693 * MAKEOBJDIRPREFIX is set or MAKEOBJDIR contains a transform.
694 */
695 if ((pwd = getenv("PWD")) != NULL && getenv("MAKEOBJDIRPREFIX") == NULL) {
696 const char *makeobjdir = getenv("MAKEOBJDIR");
697
698 if (makeobjdir == NULL || !strchr(makeobjdir, '$')) {
699 if (stat(pwd, &sb) == 0 && sa.st_ino == sb.st_ino &&
700 sa.st_dev == sb.st_dev)
701 (void)strncpy(curdir, pwd, MAXPATHLEN);
702 }
703 }
704
705 /*
706 * Get the name of this type of MACHINE from utsname
707 * so we can share an executable for similar machines.
708 * (i.e. m68k: amiga hp300, mac68k, sun3, ...)
709 *
710 * Note that both MACHINE and MACHINE_ARCH are decided at
711 * run-time.
712 */
713 if (!machine) {
714 #ifdef MAKE_NATIVE
715 if (uname(&utsname) == -1) {
716 (void)fprintf(stderr, "%s: uname failed (%s).\n", progname,
717 strerror(errno));
718 exit(2);
719 }
720 machine = utsname.machine;
721 #else
722 #ifdef MAKE_MACHINE
723 machine = MAKE_MACHINE;
724 #else
725 machine = "unknown";
726 #endif
727 #endif
728 }
729
730 if (!machine_arch) {
731 #ifndef MACHINE_ARCH
732 #ifdef MAKE_MACHINE_ARCH
733 machine_arch = MAKE_MACHINE_ARCH;
734 #else
735 machine_arch = "unknown";
736 #endif
737 #else
738 machine_arch = MACHINE_ARCH;
739 #endif
740 }
741
742 /*
743 * Just in case MAKEOBJDIR wants us to do something tricky.
744 */
745 Var_Init(); /* Initialize the lists of variables for
746 * parsing arguments */
747 Var_Set(".CURDIR", curdir, VAR_GLOBAL, 0);
748 Var_Set("MACHINE", machine, VAR_GLOBAL, 0);
749 Var_Set("MACHINE_ARCH", machine_arch, VAR_GLOBAL, 0);
750 #ifdef MAKE_VERSION
751 Var_Set("MAKE_VERSION", MAKE_VERSION, VAR_GLOBAL, 0);
752 #endif
753 Var_Set(".newline", "\n", VAR_GLOBAL, 0); /* handy for :@ loops */
754
755 /*
756 * Find the .OBJDIR. If MAKEOBJDIRPREFIX, or failing that,
757 * MAKEOBJDIR is set in the environment, try only that value
758 * and fall back to .CURDIR if it does not exist.
759 *
760 * Otherwise, try _PATH_OBJDIR.MACHINE, _PATH_OBJDIR, and
761 * finally _PATH_OBJDIRPREFIX`pwd`, in that order. If none
762 * of these paths exist, just use .CURDIR.
763 */
764 Dir_Init(curdir);
765 (void)Main_SetObjdir(curdir);
766
767 if ((path = getenv("MAKEOBJDIRPREFIX")) != NULL) {
768 (void)snprintf(mdpath, MAXPATHLEN, "%s%s", path, curdir);
769 (void)Main_SetObjdir(mdpath);
770 } else if ((path = getenv("MAKEOBJDIR")) != NULL) {
771 (void)Main_SetObjdir(path);
772 } else {
773 (void)snprintf(mdpath, MAXPATHLEN, "%s.%s", _PATH_OBJDIR, machine);
774 if (!Main_SetObjdir(mdpath) && !Main_SetObjdir(_PATH_OBJDIR)) {
775 (void)snprintf(mdpath, MAXPATHLEN, "%s%s",
776 _PATH_OBJDIRPREFIX, curdir);
777 (void)Main_SetObjdir(mdpath);
778 }
779 }
780
781 create = Lst_Init(FALSE);
782 makefiles = Lst_Init(FALSE);
783 printVars = FALSE;
784 variables = Lst_Init(FALSE);
785 beSilent = FALSE; /* Print commands as executed */
786 ignoreErrors = FALSE; /* Pay attention to non-zero returns */
787 noExecute = FALSE; /* Execute all commands */
788 noRecursiveExecute = FALSE; /* Execute all .MAKE targets */
789 keepgoing = FALSE; /* Stop on error */
790 allPrecious = FALSE; /* Remove targets when interrupted */
791 queryFlag = FALSE; /* This is not just a check-run */
792 noBuiltins = FALSE; /* Read the built-in rules */
793 touchFlag = FALSE; /* Actually update targets */
794 usePipes = TRUE; /* Catch child output in pipes */
795 debug = 0; /* No debug verbosity, please. */
796 jobsRunning = FALSE;
797
798 maxJobs = DEFMAXLOCAL; /* Set default local max concurrency */
799 maxJobTokens = maxJobs;
800 compatMake = FALSE; /* No compat mode */
801
802
803 /*
804 * Initialize the parsing, directory and variable modules to prepare
805 * for the reading of inclusion paths and variable settings on the
806 * command line
807 */
808
809 /*
810 * Initialize various variables.
811 * MAKE also gets this name, for compatibility
812 * .MAKEFLAGS gets set to the empty string just in case.
813 * MFLAGS also gets initialized empty, for compatibility.
814 */
815 Parse_Init();
816 Var_Set("MAKE", argv[0], VAR_GLOBAL, 0);
817 Var_Set(".MAKE", argv[0], VAR_GLOBAL, 0);
818 Var_Set(MAKEFLAGS, "", VAR_GLOBAL, 0);
819 Var_Set(MAKEOVERRIDES, "", VAR_GLOBAL, 0);
820 Var_Set("MFLAGS", "", VAR_GLOBAL, 0);
821 Var_Set(".ALLTARGETS", "", VAR_GLOBAL, 0);
822
823 /*
824 * First snag any flags out of the MAKE environment variable.
825 * (Note this is *not* MAKEFLAGS since /bin/make uses that and it's
826 * in a different format).
827 */
828 #ifdef POSIX
829 Main_ParseArgLine(getenv("MAKEFLAGS"));
830 #else
831 Main_ParseArgLine(getenv("MAKE"));
832 #endif
833
834 MainParseArgs(argc, argv);
835
836 /*
837 * Be compatible if user did not specify -j and did not explicitly
838 * turned compatibility on
839 */
840 if (!compatMake && !forceJobs) {
841 compatMake = TRUE;
842 }
843
844 /*
845 * Initialize archive, target and suffix modules in preparation for
846 * parsing the makefile(s)
847 */
848 Arch_Init();
849 Targ_Init();
850 Suff_Init();
851 Trace_Init(tracefile);
852
853 DEFAULT = NILGNODE;
854 (void)time(&now);
855
856 Trace_Log(MAKESTART, NULL);
857
858 /*
859 * Set up the .TARGETS variable to contain the list of targets to be
860 * created. If none specified, make the variable empty -- the parser
861 * will fill the thing in with the default or .MAIN target.
862 */
863 if (!Lst_IsEmpty(create)) {
864 LstNode ln;
865
866 for (ln = Lst_First(create); ln != NILLNODE;
867 ln = Lst_Succ(ln)) {
868 char *name = (char *)Lst_Datum(ln);
869
870 Var_Append(".TARGETS", name, VAR_GLOBAL);
871 }
872 } else
873 Var_Set(".TARGETS", "", VAR_GLOBAL, 0);
874
875
876 /*
877 * If no user-supplied system path was given (through the -m option)
878 * add the directories from the DEFSYSPATH (more than one may be given
879 * as dir1:...:dirn) to the system include path.
880 */
881 if (syspath == NULL || *syspath == '\0')
882 syspath = defsyspath;
883 else
884 syspath = strdup(syspath);
885
886 for (start = syspath; *start != '\0'; start = cp) {
887 for (cp = start; *cp != '\0' && *cp != ':'; cp++)
888 continue;
889 if (*cp == ':') {
890 *cp++ = '\0';
891 }
892 /* look for magic parent directory search string */
893 if (strncmp(".../", start, 4) != 0) {
894 (void)Dir_AddDir(defIncPath, start);
895 } else {
896 if (Dir_FindHereOrAbove(curdir, start+4,
897 found_path, sizeof(found_path))) {
898 (void)Dir_AddDir(defIncPath, found_path);
899 }
900 }
901 }
902 if (syspath != defsyspath)
903 free(syspath);
904
905 /*
906 * Read in the built-in rules first, followed by the specified
907 * makefile, if it was (makefile != NULL), or the default
908 * makefile and Makefile, in that order, if it wasn't.
909 */
910 if (!noBuiltins) {
911 LstNode ln;
912
913 sysMkPath = Lst_Init(FALSE);
914 Dir_Expand(_PATH_DEFSYSMK,
915 Lst_IsEmpty(sysIncPath) ? defIncPath : sysIncPath,
916 sysMkPath);
917 if (Lst_IsEmpty(sysMkPath))
918 Fatal("%s: no system rules (%s).", progname,
919 _PATH_DEFSYSMK);
920 ln = Lst_Find(sysMkPath, (ClientData)NULL, ReadMakefile);
921 if (ln == NILLNODE)
922 Fatal("%s: cannot open %s.", progname,
923 (char *)Lst_Datum(ln));
924 }
925
926 if (!Lst_IsEmpty(makefiles)) {
927 LstNode ln;
928
929 ln = Lst_Find(makefiles, (ClientData)NULL, ReadAllMakefiles);
930 if (ln != NILLNODE)
931 Fatal("%s: cannot open %s.", progname,
932 (char *)Lst_Datum(ln));
933 } else if (ReadMakefile(UNCONST("makefile"), NULL) != 0)
934 (void)ReadMakefile(UNCONST("Makefile"), NULL);
935
936 (void)ReadMakefile(UNCONST(".depend"), NULL);
937
938 Var_Append("MFLAGS", Var_Value(MAKEFLAGS, VAR_GLOBAL, &p1), VAR_GLOBAL);
939 if (p1)
940 free(p1);
941
942 if (!jobServer && !compatMake)
943 Job_ServerStart();
944 if (DEBUG(JOB))
945 printf("job_pipe %d %d, maxjobs %d, tokens %d, compat %d\n",
946 job_pipe[0], job_pipe[1], maxJobs, maxJobTokens, compatMake);
947
948 Main_ExportMAKEFLAGS(TRUE); /* initial export */
949
950 Check_Cwd_av(0, NULL, 0); /* initialize it */
951
952
953 /*
954 * For compatibility, look at the directories in the VPATH variable
955 * and add them to the search path, if the variable is defined. The
956 * variable's value is in the same format as the PATH envariable, i.e.
957 * <directory>:<directory>:<directory>...
958 */
959 if (Var_Exists("VPATH", VAR_CMD)) {
960 char *vpath, savec;
961 /*
962 * GCC stores string constants in read-only memory, but
963 * Var_Subst will want to write this thing, so store it
964 * in an array
965 */
966 static char VPATH[] = "${VPATH}";
967
968 vpath = Var_Subst(NULL, VPATH, VAR_CMD, FALSE);
969 path = vpath;
970 do {
971 /* skip to end of directory */
972 for (cp = path; *cp != ':' && *cp != '\0'; cp++)
973 continue;
974 /* Save terminator character so know when to stop */
975 savec = *cp;
976 *cp = '\0';
977 /* Add directory to search path */
978 (void)Dir_AddDir(dirSearchPath, path);
979 *cp = savec;
980 path = cp + 1;
981 } while (savec == ':');
982 free(vpath);
983 }
984
985 /*
986 * Now that all search paths have been read for suffixes et al, it's
987 * time to add the default search path to their lists...
988 */
989 Suff_DoPaths();
990
991 /*
992 * Propagate attributes through :: dependency lists.
993 *
994 * Also propagate recursive dependencies for .WAIT.
995 */
996 Targ_Propagate();
997
998 /* print the initial graph, if the user requested it */
999 if (DEBUG(GRAPH1))
1000 Targ_PrintGraph(1);
1001
1002 /* print the values of any variables requested by the user */
1003 if (printVars) {
1004 LstNode ln;
1005
1006 for (ln = Lst_First(variables); ln != NILLNODE;
1007 ln = Lst_Succ(ln)) {
1008 char *var = (char *)Lst_Datum(ln);
1009 char *value;
1010
1011 if (strchr(var, '$')) {
1012 value = p1 = Var_Subst(NULL, var, VAR_GLOBAL, 0);
1013 } else {
1014 value = Var_Value(var, VAR_GLOBAL, &p1);
1015 }
1016 printf("%s\n", value ? value : "");
1017 if (p1)
1018 free(p1);
1019 }
1020 }
1021
1022 /*
1023 * Have now read the entire graph and need to make a list of targets
1024 * to create. If none was given on the command line, we consult the
1025 * parsing module to find the main target(s) to create.
1026 */
1027 if (Lst_IsEmpty(create))
1028 targs = Parse_MainName();
1029 else
1030 targs = Targ_FindList(create, TARG_CREATE);
1031
1032 if (!compatMake && !printVars) {
1033 /*
1034 * Initialize job module before traversing the graph, now that
1035 * any .BEGIN and .END targets have been read. This is done
1036 * only if the -q flag wasn't given (to prevent the .BEGIN from
1037 * being executed should it exist).
1038 */
1039 if (!queryFlag) {
1040 Job_Init();
1041 jobsRunning = TRUE;
1042 }
1043
1044 /* Traverse the graph, checking on all the targets */
1045 outOfDate = Make_Run(targs);
1046 } else if (!printVars) {
1047 /*
1048 * Compat_Init will take care of creating all the targets as
1049 * well as initializing the module.
1050 */
1051 Compat_Run(targs);
1052 }
1053
1054 #ifdef CLEANUP
1055 Lst_Destroy(targs, NOFREE);
1056 Lst_Destroy(variables, NOFREE);
1057 Lst_Destroy(makefiles, NOFREE);
1058 Lst_Destroy(create, (FreeProc *)free);
1059 #endif
1060
1061 /* print the graph now it's been processed if the user requested it */
1062 if (DEBUG(GRAPH2))
1063 Targ_PrintGraph(2);
1064
1065 Trace_Log(MAKEEND, 0);
1066
1067 Suff_End();
1068 Targ_End();
1069 Arch_End();
1070 Var_End();
1071 Parse_End();
1072 Dir_End();
1073 Job_End();
1074 Trace_End();
1075
1076 if (queryFlag && outOfDate)
1077 return(1);
1078 else
1079 return(0);
1080 }
1081
1082 /*-
1083 * ReadMakefile --
1084 * Open and parse the given makefile.
1085 *
1086 * Results:
1087 * 0 if ok. -1 if couldn't open file.
1088 *
1089 * Side Effects:
1090 * lots
1091 */
1092 static int
1093 ReadMakefile(ClientData p, ClientData q __unused)
1094 {
1095 char *fname = p; /* makefile to read */
1096 FILE *stream;
1097 size_t len = MAXPATHLEN;
1098 char *name, *path = emalloc(len);
1099 int setMAKEFILE;
1100
1101 if (!strcmp(fname, "-")) {
1102 Parse_File("(stdin)", stdin);
1103 Var_Set("MAKEFILE", "", VAR_GLOBAL, 0);
1104 } else {
1105 setMAKEFILE = strcmp(fname, ".depend");
1106
1107 /* if we've chdir'd, rebuild the path name */
1108 if (strcmp(curdir, objdir) && *fname != '/') {
1109 size_t plen = strlen(curdir) + strlen(fname) + 2;
1110 if (len < plen)
1111 path = erealloc(path, len = 2 * plen);
1112
1113 (void)snprintf(path, len, "%s/%s", curdir, fname);
1114 if ((stream = fopen(path, "r")) != NULL) {
1115 fname = path;
1116 goto found;
1117 }
1118
1119 /* If curdir failed, try objdir (ala .depend) */
1120 plen = strlen(objdir) + strlen(fname) + 2;
1121 if (len < plen)
1122 path = erealloc(path, len = 2 * plen);
1123 (void)snprintf(path, len, "%s/%s", objdir, fname);
1124 if ((stream = fopen(path, "r")) != NULL) {
1125 fname = path;
1126 goto found;
1127 }
1128 } else if ((stream = fopen(fname, "r")) != NULL)
1129 goto found;
1130 /* look in -I and system include directories. */
1131 name = Dir_FindFile(fname, parseIncPath);
1132 if (!name)
1133 name = Dir_FindFile(fname,
1134 Lst_IsEmpty(sysIncPath) ? defIncPath : sysIncPath);
1135 if (!name || !(stream = fopen(name, "r"))) {
1136 free(path);
1137 return(-1);
1138 }
1139 fname = name;
1140 /*
1141 * set the MAKEFILE variable desired by System V fans -- the
1142 * placement of the setting here means it gets set to the last
1143 * makefile specified, as it is set by SysV make.
1144 */
1145 found:
1146 if (setMAKEFILE)
1147 Var_Set("MAKEFILE", fname, VAR_GLOBAL, 0);
1148 Parse_File(fname, stream);
1149 (void)fclose(stream);
1150 }
1151 free(path);
1152 return(0);
1153 }
1154
1155
1156 /*
1157 * If MAKEOBJDIRPREFIX is in use, make ends up not in .CURDIR
1158 * in situations that would not arrise with ./obj (links or not).
1159 * This tends to break things like:
1160 *
1161 * build:
1162 * ${MAKE} includes
1163 *
1164 * This function spots when ${.MAKE:T} or ${.MAKE} is a command (as
1165 * opposed to an argument) in a command line and if so returns
1166 * ${.CURDIR} so caller can chdir() so that the assumptions made by
1167 * the Makefile hold true.
1168 *
1169 * If ${.MAKE} does not contain any '/', then ${.MAKE:T} is skipped.
1170 *
1171 * The chdir() only happens in the child process, and does nothing if
1172 * MAKEOBJDIRPREFIX and MAKEOBJDIR are not in the environment so it
1173 * should not break anything. Also if NOCHECKMAKECHDIR is set we
1174 * do nothing - to ensure historic semantics can be retained.
1175 */
1176 static int Check_Cwd_Off = 0;
1177
1178 static char *
1179 Check_Cwd_av(int ac, char **av, int copy)
1180 {
1181 static char *make[4];
1182 static char *cur_dir = NULL;
1183 char **mp;
1184 char *cp;
1185 int is_cmd, next_cmd;
1186 int i;
1187 int n;
1188
1189 if (Check_Cwd_Off)
1190 return NULL;
1191
1192 if (make[0] == NULL) {
1193 if (Var_Exists("NOCHECKMAKECHDIR", VAR_GLOBAL)) {
1194 Check_Cwd_Off = 1;
1195 return NULL;
1196 }
1197
1198 make[1] = Var_Value(".MAKE", VAR_GLOBAL, &cp);
1199 if ((make[0] = strrchr(make[1], '/')) == NULL) {
1200 make[0] = make[1];
1201 make[1] = NULL;
1202 } else
1203 ++make[0];
1204 make[2] = NULL;
1205 cur_dir = Var_Value(".CURDIR", VAR_GLOBAL, &cp);
1206 }
1207 if (ac == 0 || av == NULL)
1208 return NULL; /* initialization only */
1209
1210 if (getenv("MAKEOBJDIR") == NULL &&
1211 getenv("MAKEOBJDIRPREFIX") == NULL)
1212 return NULL;
1213
1214
1215 next_cmd = 1;
1216 for (i = 0; i < ac; ++i) {
1217 is_cmd = next_cmd;
1218
1219 n = strlen(av[i]);
1220 cp = &(av[i])[n - 1];
1221 if (strspn(av[i], "|&;") == n) {
1222 next_cmd = 1;
1223 continue;
1224 } else if (*cp == ';' || *cp == '&' || *cp == '|' || *cp == ')') {
1225 next_cmd = 1;
1226 if (copy) {
1227 do {
1228 *cp-- = '\0';
1229 } while (*cp == ';' || *cp == '&' || *cp == '|' ||
1230 *cp == ')' || *cp == '}') ;
1231 } else {
1232 /*
1233 * XXX this should not happen.
1234 */
1235 fprintf(stderr, "WARNING: raw arg ends in shell meta '%s'\n",
1236 av[i]);
1237 }
1238 } else
1239 next_cmd = 0;
1240
1241 cp = av[i];
1242 if (*cp == ';' || *cp == '&' || *cp == '|')
1243 is_cmd = 1;
1244
1245 #ifdef check_cwd_debug
1246 fprintf(stderr, "av[%d] == %s '%s'",
1247 i, (is_cmd) ? "cmd" : "arg", av[i]);
1248 #endif
1249 if (is_cmd != 0) {
1250 if (*cp == '(' || *cp == '{' ||
1251 *cp == ';' || *cp == '&' || *cp == '|') {
1252 do {
1253 ++cp;
1254 } while (*cp == '(' || *cp == '{' ||
1255 *cp == ';' || *cp == '&' || *cp == '|');
1256 if (*cp == '\0') {
1257 next_cmd = 1;
1258 continue;
1259 }
1260 }
1261 if (strcmp(cp, "cd") == 0 || strcmp(cp, "chdir") == 0) {
1262 #ifdef check_cwd_debug
1263 fprintf(stderr, " == cd, done.\n");
1264 #endif
1265 return NULL;
1266 }
1267 for (mp = make; *mp != NULL; ++mp) {
1268 n = strlen(*mp);
1269 if (strcmp(cp, *mp) == 0) {
1270 #ifdef check_cwd_debug
1271 fprintf(stderr, " %s == '%s', chdir(%s)\n",
1272 cp, *mp, cur_dir);
1273 #endif
1274 return cur_dir;
1275 }
1276 }
1277 }
1278 #ifdef check_cwd_debug
1279 fprintf(stderr, "\n");
1280 #endif
1281 }
1282 return NULL;
1283 }
1284
1285 char *
1286 Check_Cwd_Cmd(const char *cmd)
1287 {
1288 char *cp, *bp;
1289 char **av;
1290 int ac;
1291
1292 if (Check_Cwd_Off)
1293 return NULL;
1294
1295 if (cmd) {
1296 av = brk_string(cmd, &ac, TRUE, &bp);
1297 #ifdef check_cwd_debug
1298 fprintf(stderr, "splitting: '%s' -> %d words\n",
1299 cmd, ac);
1300 #endif
1301 } else {
1302 ac = 0;
1303 av = NULL;
1304 bp = NULL;
1305 }
1306 cp = Check_Cwd_av(ac, av, 1);
1307 if (bp)
1308 free(bp);
1309 if (av)
1310 free(av);
1311 return cp;
1312 }
1313
1314 void
1315 Check_Cwd(const char **argv)
1316 {
1317 char *cp;
1318 int ac;
1319
1320 if (Check_Cwd_Off)
1321 return;
1322
1323 for (ac = 0; argv[ac] != NULL; ++ac)
1324 /* NOTHING */;
1325 if (ac == 3 && *argv[1] == '-') {
1326 cp = Check_Cwd_Cmd(argv[2]);
1327 } else {
1328 cp = Check_Cwd_av(ac, UNCONST(argv), 0);
1329 }
1330 if (cp) {
1331 chdir(cp);
1332 }
1333 }
1334
1335 /*-
1336 * Cmd_Exec --
1337 * Execute the command in cmd, and return the output of that command
1338 * in a string.
1339 *
1340 * Results:
1341 * A string containing the output of the command, or the empty string
1342 * If err is not NULL, it contains the reason for the command failure
1343 *
1344 * Side Effects:
1345 * The string must be freed by the caller.
1346 */
1347 char *
1348 Cmd_Exec(const char *cmd, const char **err)
1349 {
1350 const char *args[4]; /* Args for invoking the shell */
1351 int fds[2]; /* Pipe streams */
1352 int cpid; /* Child PID */
1353 int pid; /* PID from wait() */
1354 char *res; /* result */
1355 int status; /* command exit status */
1356 Buffer buf; /* buffer to store the result */
1357 char *cp;
1358 int cc;
1359
1360
1361 *err = NULL;
1362
1363 if (!shellName)
1364 Shell_Init();
1365 /*
1366 * Set up arguments for shell
1367 */
1368 args[0] = shellName;
1369 args[1] = "-c";
1370 args[2] = cmd;
1371 args[3] = NULL;
1372
1373 /*
1374 * Open a pipe for fetching its output
1375 */
1376 if (pipe(fds) == -1) {
1377 *err = "Couldn't create pipe for \"%s\"";
1378 goto bad;
1379 }
1380
1381 /*
1382 * Fork
1383 */
1384 switch (cpid = vfork()) {
1385 case 0:
1386 /*
1387 * Close input side of pipe
1388 */
1389 (void)close(fds[0]);
1390
1391 /*
1392 * Duplicate the output stream to the shell's output, then
1393 * shut the extra thing down. Note we don't fetch the error
1394 * stream...why not? Why?
1395 */
1396 (void)dup2(fds[1], 1);
1397 (void)close(fds[1]);
1398
1399 (void)execv(shellPath, UNCONST(args));
1400 _exit(1);
1401 /*NOTREACHED*/
1402
1403 case -1:
1404 *err = "Couldn't exec \"%s\"";
1405 goto bad;
1406
1407 default:
1408 /*
1409 * No need for the writing half
1410 */
1411 (void)close(fds[1]);
1412
1413 buf = Buf_Init(MAKE_BSIZE);
1414
1415 do {
1416 char result[BUFSIZ];
1417 cc = read(fds[0], result, sizeof(result));
1418 if (cc > 0)
1419 Buf_AddBytes(buf, cc, (Byte *)result);
1420 }
1421 while (cc > 0 || (cc == -1 && errno == EINTR));
1422
1423 /*
1424 * Close the input side of the pipe.
1425 */
1426 (void)close(fds[0]);
1427
1428 /*
1429 * Wait for the process to exit.
1430 */
1431 while(((pid = wait(&status)) != cpid) && (pid >= 0))
1432 continue;
1433
1434 res = (char *)Buf_GetAll(buf, &cc);
1435 Buf_Destroy(buf, FALSE);
1436
1437 if (cc == 0)
1438 *err = "Couldn't read shell's output for \"%s\"";
1439
1440 if (status)
1441 *err = "\"%s\" returned non-zero status";
1442
1443 /*
1444 * Null-terminate the result, convert newlines to spaces and
1445 * install it in the variable.
1446 */
1447 res[cc] = '\0';
1448 cp = &res[cc];
1449
1450 if (cc > 0 && *--cp == '\n') {
1451 /*
1452 * A final newline is just stripped
1453 */
1454 *cp-- = '\0';
1455 }
1456 while (cp >= res) {
1457 if (*cp == '\n') {
1458 *cp = ' ';
1459 }
1460 cp--;
1461 }
1462 break;
1463 }
1464 return res;
1465 bad:
1466 res = emalloc(1);
1467 *res = '\0';
1468 return res;
1469 }
1470
1471 /*-
1472 * Error --
1473 * Print an error message given its format.
1474 *
1475 * Results:
1476 * None.
1477 *
1478 * Side Effects:
1479 * The message is printed.
1480 */
1481 /* VARARGS */
1482 void
1483 Error(const char *fmt, ...)
1484 {
1485 va_list ap;
1486
1487 va_start(ap, fmt);
1488 fprintf(stderr, "%s: ", progname);
1489 (void)vfprintf(stderr, fmt, ap);
1490 va_end(ap);
1491 (void)fprintf(stderr, "\n");
1492 (void)fflush(stderr);
1493 }
1494
1495 /*-
1496 * Fatal --
1497 * Produce a Fatal error message. If jobs are running, waits for them
1498 * to finish.
1499 *
1500 * Results:
1501 * None
1502 *
1503 * Side Effects:
1504 * The program exits
1505 */
1506 /* VARARGS */
1507 void
1508 Fatal(const char *fmt, ...)
1509 {
1510 va_list ap;
1511
1512 va_start(ap, fmt);
1513 if (jobsRunning)
1514 Job_Wait();
1515
1516 (void)vfprintf(stderr, fmt, ap);
1517 va_end(ap);
1518 (void)fprintf(stderr, "\n");
1519 (void)fflush(stderr);
1520
1521 PrintOnError(NULL);
1522
1523 if (DEBUG(GRAPH2) || DEBUG(GRAPH3))
1524 Targ_PrintGraph(2);
1525 Trace_Log(MAKEERROR, 0);
1526 exit(2); /* Not 1 so -q can distinguish error */
1527 }
1528
1529 /*
1530 * Punt --
1531 * Major exception once jobs are being created. Kills all jobs, prints
1532 * a message and exits.
1533 *
1534 * Results:
1535 * None
1536 *
1537 * Side Effects:
1538 * All children are killed indiscriminately and the program Lib_Exits
1539 */
1540 /* VARARGS */
1541 void
1542 Punt(const char *fmt, ...)
1543 {
1544 va_list ap;
1545
1546 va_start(ap, fmt);
1547 (void)fprintf(stderr, "%s: ", progname);
1548 (void)vfprintf(stderr, fmt, ap);
1549 va_end(ap);
1550 (void)fprintf(stderr, "\n");
1551 (void)fflush(stderr);
1552
1553 PrintOnError(NULL);
1554
1555 DieHorribly();
1556 }
1557
1558 /*-
1559 * DieHorribly --
1560 * Exit without giving a message.
1561 *
1562 * Results:
1563 * None
1564 *
1565 * Side Effects:
1566 * A big one...
1567 */
1568 void
1569 DieHorribly(void)
1570 {
1571 if (jobsRunning)
1572 Job_AbortAll();
1573 if (DEBUG(GRAPH2))
1574 Targ_PrintGraph(2);
1575 Trace_Log(MAKEERROR, 0);
1576 exit(2); /* Not 1, so -q can distinguish error */
1577 }
1578
1579 /*
1580 * Finish --
1581 * Called when aborting due to errors in child shell to signal
1582 * abnormal exit.
1583 *
1584 * Results:
1585 * None
1586 *
1587 * Side Effects:
1588 * The program exits
1589 */
1590 void
1591 Finish(int errors)
1592 /* number of errors encountered in Make_Make */
1593 {
1594 Fatal("%d error%s", errors, errors == 1 ? "" : "s");
1595 }
1596
1597 /*
1598 * emalloc --
1599 * malloc, but die on error.
1600 */
1601 void *
1602 emalloc(size_t len)
1603 {
1604 void *p;
1605
1606 if ((p = malloc(len)) == NULL)
1607 enomem();
1608 return(p);
1609 }
1610
1611 /*
1612 * estrdup --
1613 * strdup, but die on error.
1614 */
1615 char *
1616 estrdup(const char *str)
1617 {
1618 char *p;
1619
1620 if ((p = strdup(str)) == NULL)
1621 enomem();
1622 return(p);
1623 }
1624
1625 /*
1626 * erealloc --
1627 * realloc, but die on error.
1628 */
1629 void *
1630 erealloc(void *ptr, size_t size)
1631 {
1632 if ((ptr = realloc(ptr, size)) == NULL)
1633 enomem();
1634 return(ptr);
1635 }
1636
1637 /*
1638 * enomem --
1639 * die when out of memory.
1640 */
1641 void
1642 enomem(void)
1643 {
1644 (void)fprintf(stderr, "%s: %s.\n", progname, strerror(errno));
1645 exit(2);
1646 }
1647
1648 /*
1649 * enunlink --
1650 * Remove a file carefully, avoiding directories.
1651 */
1652 int
1653 eunlink(const char *file)
1654 {
1655 struct stat st;
1656
1657 if (lstat(file, &st) == -1)
1658 return -1;
1659
1660 if (S_ISDIR(st.st_mode)) {
1661 errno = EISDIR;
1662 return -1;
1663 }
1664 return unlink(file);
1665 }
1666
1667 /*
1668 * execError --
1669 * Print why exec failed, avoiding stdio.
1670 */
1671 void
1672 execError(const char *af, const char *av)
1673 {
1674 #ifdef USE_IOVEC
1675 int i = 0;
1676 struct iovec iov[8];
1677 #define IOADD(s) \
1678 (void)(iov[i].iov_base = UNCONST(s), \
1679 iov[i].iov_len = strlen(iov[i].iov_base), \
1680 i++)
1681 #else
1682 #define IOADD(void)write(2, s, strlen(s))
1683 #endif
1684
1685 IOADD(progname);
1686 IOADD(": ");
1687 IOADD(af);
1688 IOADD("(");
1689 IOADD(av);
1690 IOADD(") failed (");
1691 IOADD(strerror(errno));
1692 IOADD(")\n");
1693
1694 #ifdef USE_IOVEC
1695 (void)writev(2, iov, 8);
1696 #endif
1697 }
1698
1699 /*
1700 * usage --
1701 * exit with usage message
1702 */
1703 static void
1704 usage(void)
1705 {
1706 (void)fprintf(stderr,
1707 "usage: %s [-BeikNnqrstWX] [-D variable] [-d flags] [-f makefile]\n\
1708 [-I directory] [-J private] [-j max_jobs] [-m directory] [-T file]\n\
1709 [-V variable] [variable=value] [target ...]\n", progname);
1710 exit(2);
1711 }
1712
1713
1714 int
1715 PrintAddr(ClientData a, ClientData b)
1716 {
1717 printf("%lx ", (unsigned long) a);
1718 return b ? 0 : 0;
1719 }
1720
1721
1722
1723 void
1724 PrintOnError(const char *s)
1725 {
1726 char tmp[64];
1727
1728 if (s)
1729 printf("%s", s);
1730
1731 printf("\n%s: stopped in %s\n", progname, curdir);
1732 strncpy(tmp, "${MAKE_PRINT_VAR_ON_ERROR:@v@$v='${$v}'\n@}",
1733 sizeof(tmp) - 1);
1734 s = Var_Subst(NULL, tmp, VAR_GLOBAL, 0);
1735 if (s && *s)
1736 printf("%s", s);
1737 }
1738
1739 void
1740 Main_ExportMAKEFLAGS(Boolean first)
1741 {
1742 static int once = 1;
1743 char tmp[64];
1744 char *s;
1745
1746 if (once != first)
1747 return;
1748 once = 0;
1749
1750 strncpy(tmp, "${.MAKEFLAGS} ${.MAKEOVERRIDES:O:u:@v@$v=${$v:Q}@}",
1751 sizeof(tmp));
1752 s = Var_Subst(NULL, tmp, VAR_CMD, 0);
1753 if (s && *s) {
1754 #ifdef POSIX
1755 setenv("MAKEFLAGS", s, 1);
1756 #else
1757 setenv("MAKE", s, 1);
1758 #endif
1759 }
1760 }
1761