]> CyberLeo.Net >> Repos - FreeBSD/releng/8.1.git/blob - usr.bin/make/main.c
Copy stable/8 to releng/8.1 in preparation for 8.1-RC1.
[FreeBSD/releng/8.1.git] / usr.bin / make / main.c
1 /*-
2  * Copyright (c) 1988, 1989, 1990, 1993
3  *      The Regents of the University of California.  All rights reserved.
4  * Copyright (c) 1989 by Berkeley Softworks
5  * 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. All advertising materials mentioning features or use of this software
19  *    must display the following acknowledgement:
20  *      This product includes software developed by the University of
21  *      California, Berkeley and its contributors.
22  * 4. Neither the name of the University nor the names of its contributors
23  *    may be used to endorse or promote products derived from this software
24  *    without specific prior written permission.
25  *
26  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
27  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
28  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
29  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
30  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
31  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
32  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
33  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
34  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
35  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
36  * SUCH DAMAGE.
37  *
38  * @(#)main.c      8.3 (Berkeley) 3/19/94
39  */
40
41 #ifndef lint
42 #if 0
43 static char copyright[] =
44 "@(#) Copyright (c) 1988, 1989, 1990, 1993\n\
45         The Regents of the University of California.  All rights reserved.\n";
46 #endif
47 #endif /* not lint */
48 #include <sys/cdefs.h>
49 __FBSDID("$FreeBSD$");
50
51 /*
52  * main.c
53  *      The main file for this entire program. Exit routines etc
54  *      reside here.
55  *
56  * Utility functions defined in this file:
57  *      Main_ParseArgLine
58  *                      Takes a line of arguments, breaks them and
59  *                      treats them as if they were given when first
60  *                      invoked. Used by the parse module to implement
61  *                      the .MFLAGS target.
62  */
63
64 #include <sys/param.h>
65 #include <sys/stat.h>
66 #include <sys/sysctl.h>
67 #include <sys/time.h>
68 #include <sys/queue.h>
69 #include <sys/resource.h>
70 #include <sys/utsname.h>
71 #include <sys/wait.h>
72 #include <err.h>
73 #include <errno.h>
74 #include <stdlib.h>
75 #include <string.h>
76 #include <unistd.h>
77
78 #include "arch.h"
79 #include "buf.h"
80 #include "config.h"
81 #include "dir.h"
82 #include "globals.h"
83 #include "GNode.h"
84 #include "job.h"
85 #include "make.h"
86 #include "parse.h"
87 #include "pathnames.h"
88 #include "shell.h"
89 #include "str.h"
90 #include "suff.h"
91 #include "targ.h"
92 #include "util.h"
93 #include "var.h"
94
95 extern char **environ;  /* XXX what header declares this variable? */
96
97 #define WANT_ENV_MKLVL  1
98 #define MKLVL_MAXVAL    500
99 #define MKLVL_ENVVAR    "__MKLVL__"
100
101 /* ordered list of makefiles to read */
102 static Lst makefiles = Lst_Initializer(makefiles);
103
104 /* ordered list of source makefiles */
105 static Lst source_makefiles = Lst_Initializer(source_makefiles);
106
107 /* list of variables to print */
108 static Lst variables = Lst_Initializer(variables);
109
110 static Boolean  expandVars;     /* fully expand printed variables */
111 static Boolean  noBuiltins;     /* -r flag */
112 static Boolean  forceJobs;      /* -j argument given */
113 static char     *curdir;        /* startup directory */
114 static char     *objdir;        /* where we chdir'ed to */
115 static char     **save_argv;    /* saved argv */
116 static char     *save_makeflags;/* saved MAKEFLAGS */
117
118 /* (-E) vars to override from env */
119 Lst envFirstVars = Lst_Initializer(envFirstVars);
120
121 /* Targets to be made */
122 Lst create = Lst_Initializer(create);
123
124 Boolean         allPrecious;    /* .PRECIOUS given on line by itself */
125 Boolean         is_posix;       /* .POSIX target seen */
126 Boolean         mfAutoDeps;     /* .MAKEFILEDEPS target seen */
127 Boolean         remakingMakefiles; /* True if remaking makefiles is in progress */
128 Boolean         beSilent;       /* -s flag */
129 Boolean         beVerbose;      /* -v flag */
130 Boolean         beQuiet;        /* -Q flag */
131 Boolean         compatMake;     /* -B argument */
132 int             debug;          /* -d flag */
133 Boolean         ignoreErrors;   /* -i flag */
134 int             jobLimit;       /* -j argument */
135 int             makeErrors;     /* Number of targets not remade due to errors */
136 Boolean         jobsRunning;    /* TRUE if the jobs might be running */
137 Boolean         keepgoing;      /* -k flag */
138 Boolean         noExecute;      /* -n flag */
139 Boolean         printGraphOnly; /* -p flag */
140 Boolean         queryFlag;      /* -q flag */
141 Boolean         touchFlag;      /* -t flag */
142 Boolean         usePipes;       /* !-P flag */
143 uint32_t        warn_cmd;       /* command line warning flags */
144 uint32_t        warn_flags;     /* actual warning flags */
145 uint32_t        warn_nocmd;     /* command line no-warning flags */
146
147 time_t          now;            /* Time at start of make */
148 struct GNode    *DEFAULT;       /* .DEFAULT node */
149
150 /**
151  * Exit with usage message.
152  */
153 static void
154 usage(void)
155 {
156         fprintf(stderr,
157             "usage: make [-BPSXeiknpqrstv] [-C directory] [-D variable]\n"
158             "\t[-d flags] [-E variable] [-f makefile] [-I directory]\n"
159             "\t[-j max_jobs] [-m directory] [-V variable]\n"
160             "\t[variable=value] [target ...]\n");
161         exit(2);
162 }
163
164 /**
165  * MFLAGS_append
166  *      Append a flag with an optional argument to MAKEFLAGS and MFLAGS
167  */
168 static void
169 MFLAGS_append(const char *flag, char *arg)
170 {
171         char *str;
172
173         Var_Append(".MAKEFLAGS", flag, VAR_GLOBAL);
174         if (arg != NULL) {
175                 str = MAKEFLAGS_quote(arg);
176                 Var_Append(".MAKEFLAGS", str, VAR_GLOBAL);
177                 free(str);
178         }
179
180         Var_Append("MFLAGS", flag, VAR_GLOBAL);
181         if (arg != NULL) {
182                 str = MAKEFLAGS_quote(arg);
183                 Var_Append("MFLAGS", str, VAR_GLOBAL);
184                 free(str);
185         }
186 }
187
188 /**
189  * Main_ParseWarn
190  *
191  *      Handle argument to warning option.
192  */
193 int
194 Main_ParseWarn(const char *arg, int iscmd)
195 {
196         int i, neg;
197
198         static const struct {
199                 const char      *option;
200                 uint32_t        flag;
201         } options[] = {
202                 { "dirsyntax",  WARN_DIRSYNTAX },
203                 { NULL,         0 }
204         };
205
206         neg = 0;
207         if (arg[0] == 'n' && arg[1] == 'o') {
208                 neg = 1;
209                 arg += 2;
210         }
211
212         for (i = 0; options[i].option != NULL; i++)
213                 if (strcmp(arg, options[i].option) == 0)
214                         break;
215
216         if (options[i].option == NULL)
217                 /* unknown option */
218                 return (-1);
219
220         if (iscmd) {
221                 if (!neg) {
222                         warn_cmd |= options[i].flag;
223                         warn_nocmd &= ~options[i].flag;
224                         warn_flags |= options[i].flag;
225                 } else {
226                         warn_nocmd |= options[i].flag;
227                         warn_cmd &= ~options[i].flag;
228                         warn_flags &= ~options[i].flag;
229                 }
230         } else {
231                 if (!neg) {
232                         warn_flags |= (options[i].flag & ~warn_nocmd);
233                 } else {
234                         warn_flags &= ~(options[i].flag | warn_cmd);
235                 }
236         }
237         return (0);
238 }
239
240 /**
241  * Open and parse the given makefile.
242  *
243  * Results:
244  *      TRUE if ok. FALSE if couldn't open file.
245  */
246 static Boolean
247 ReadMakefile(const char p[])
248 {
249         char *fname, *fnamesave;        /* makefile to read */
250         FILE *stream;
251         char *name, path[MAXPATHLEN];
252         char *MAKEFILE;
253         int setMAKEFILE;
254
255         /* XXX - remove this once constification is done */
256         fnamesave = fname = estrdup(p);
257
258         if (!strcmp(fname, "-")) {
259                 Parse_File("(stdin)", stdin);
260                 Var_SetGlobal("MAKEFILE", "");
261         } else {
262                 setMAKEFILE = strcmp(fname, ".depend");
263
264                 /* if we've chdir'd, rebuild the path name */
265                 if (curdir != objdir && *fname != '/') {
266                         snprintf(path, MAXPATHLEN, "%s/%s", curdir, fname);
267                         /*
268                          * XXX The realpath stuff breaks relative includes
269                          * XXX in some cases.   The problem likely is in
270                          * XXX parse.c where it does special things in
271                          * XXX ParseDoInclude if the file is relateive
272                          * XXX or absolute and not a system file.  There
273                          * XXX it assumes that if the current file that's
274                          * XXX being included is absolute, that any files
275                          * XXX that it includes shouldn't do the -I path
276                          * XXX stuff, which is inconsistant with historical
277                          * XXX behavior.  However, I can't pentrate the mists
278                          * XXX further, so I'm putting this workaround in
279                          * XXX here until such time as the underlying bug
280                          * XXX can be fixed.
281                          */
282 #if THIS_BREAKS_THINGS
283                         if (realpath(path, path) != NULL &&
284                             (stream = fopen(path, "r")) != NULL) {
285                                 MAKEFILE = fname;
286                                 fname = path;
287                                 goto found;
288                         }
289                 } else if (realpath(fname, path) != NULL) {
290                         MAKEFILE = fname;
291                         fname = path;
292                         if ((stream = fopen(fname, "r")) != NULL)
293                                 goto found;
294                 }
295 #else
296                         if ((stream = fopen(path, "r")) != NULL) {
297                                 MAKEFILE = fname;
298                                 fname = path;
299                                 goto found;
300                         }
301                 } else {
302                         MAKEFILE = fname;
303                         if ((stream = fopen(fname, "r")) != NULL)
304                                 goto found;
305                 }
306 #endif
307                 /* look in -I and system include directories. */
308                 name = Path_FindFile(fname, &parseIncPath);
309                 if (!name)
310                         name = Path_FindFile(fname, &sysIncPath);
311                 if (!name || !(stream = fopen(name, "r"))) {
312                         free(fnamesave);
313                         return (FALSE);
314                 }
315                 MAKEFILE = fname = name;
316                 /*
317                  * set the MAKEFILE variable desired by System V fans -- the
318                  * placement of the setting here means it gets set to the last
319                  * makefile specified, as it is set by SysV make.
320                  */
321 found:
322                 if (setMAKEFILE)
323                         Var_SetGlobal("MAKEFILE", MAKEFILE);
324                 Parse_File(fname, stream);
325         }
326         free(fnamesave);
327         return (TRUE);
328 }
329
330 /**
331  * Open and parse the given makefile.
332  * If open is successful add it to the list of makefiles.
333  *
334  * Results:
335  *      TRUE if ok. FALSE if couldn't open file.
336  */
337 static Boolean
338 TryReadMakefile(const char p[])
339 {
340         char *data;
341         LstNode *last = Lst_Last(&source_makefiles);
342
343         if (!ReadMakefile(p))
344                 return (FALSE);
345
346         data = estrdup(p);
347         if (last == NULL) {
348                 LstNode *first = Lst_First(&source_makefiles);
349                 Lst_Insert(&source_makefiles, first, data);
350         } else
351                 Lst_Append(&source_makefiles, last, estrdup(p));
352         return (TRUE);
353 }
354
355 /**
356  * MainParseArgs
357  *      Parse a given argument vector. Called from main() and from
358  *      Main_ParseArgLine() when the .MAKEFLAGS target is used.
359  *
360  *      XXX: Deal with command line overriding .MAKEFLAGS in makefile
361  *
362  * Side Effects:
363  *      Various global and local flags will be set depending on the flags
364  *      given
365  */
366 static void
367 MainParseArgs(int argc, char **argv)
368 {
369         int c;
370         Boolean found_dd = FALSE;
371
372 rearg:
373         optind = 1;     /* since we're called more than once */
374         optreset = 1;
375 #define OPTFLAGS "ABC:D:d:E:ef:I:ij:km:nPpQqrSstV:vXx:"
376         for (;;) {
377                 if ((optind < argc) && strcmp(argv[optind], "--") == 0) {
378                         found_dd = TRUE;
379                 }
380                 if ((c = getopt(argc, argv, OPTFLAGS)) == -1) {
381                         break;
382                 }
383                 switch(c) {
384
385                 case 'A':
386                         arch_fatal = FALSE;
387                         MFLAGS_append("-A", NULL);
388                         break;
389                 case 'B':
390                         compatMake = TRUE;
391                         MFLAGS_append("-B", NULL);
392                         unsetenv("MAKE_JOBS_FIFO");
393                         break;
394                 case 'C':
395                         if (chdir(optarg) == -1)
396                                 err(1, "chdir %s", optarg);
397                         break;
398                 case 'D':
399                         Var_SetGlobal(optarg, "1");
400                         MFLAGS_append("-D", optarg);
401                         break;
402                 case 'd': {
403                         char *modules = optarg;
404
405                         for (; *modules; ++modules)
406                                 switch (*modules) {
407                                 case 'A':
408                                         debug = ~0;
409                                         break;
410                                 case 'a':
411                                         debug |= DEBUG_ARCH;
412                                         break;
413                                 case 'c':
414                                         debug |= DEBUG_COND;
415                                         break;
416                                 case 'd':
417                                         debug |= DEBUG_DIR;
418                                         break;
419                                 case 'f':
420                                         debug |= DEBUG_FOR;
421                                         break;
422                                 case 'g':
423                                         if (modules[1] == '1') {
424                                                 debug |= DEBUG_GRAPH1;
425                                                 ++modules;
426                                         }
427                                         else if (modules[1] == '2') {
428                                                 debug |= DEBUG_GRAPH2;
429                                                 ++modules;
430                                         }
431                                         break;
432                                 case 'j':
433                                         debug |= DEBUG_JOB;
434                                         break;
435                                 case 'l':
436                                         debug |= DEBUG_LOUD;
437                                         break;
438                                 case 'm':
439                                         debug |= DEBUG_MAKE;
440                                         break;
441                                 case 's':
442                                         debug |= DEBUG_SUFF;
443                                         break;
444                                 case 't':
445                                         debug |= DEBUG_TARG;
446                                         break;
447                                 case 'v':
448                                         debug |= DEBUG_VAR;
449                                         break;
450                                 default:
451                                         warnx("illegal argument to d option "
452                                             "-- %c", *modules);
453                                         usage();
454                                 }
455                         MFLAGS_append("-d", optarg);
456                         break;
457                 }
458                 case 'E':
459                         Lst_AtEnd(&envFirstVars, estrdup(optarg));
460                         MFLAGS_append("-E", optarg);
461                         break;
462                 case 'e':
463                         checkEnvFirst = TRUE;
464                         MFLAGS_append("-e", NULL);
465                         break;
466                 case 'f':
467                         Lst_AtEnd(&makefiles, estrdup(optarg));
468                         break;
469                 case 'I':
470                         Parse_AddIncludeDir(optarg);
471                         MFLAGS_append("-I", optarg);
472                         break;
473                 case 'i':
474                         ignoreErrors = TRUE;
475                         MFLAGS_append("-i", NULL);
476                         break;
477                 case 'j': {
478                         char *endptr;
479
480                         forceJobs = TRUE;
481                         jobLimit = strtol(optarg, &endptr, 10);
482                         if (jobLimit <= 0 || *endptr != '\0') {
483                                 warnx("illegal number, -j argument -- %s",
484                                     optarg);
485                                 usage();
486                         }
487                         MFLAGS_append("-j", optarg);
488                         break;
489                 }
490                 case 'k':
491                         keepgoing = TRUE;
492                         MFLAGS_append("-k", NULL);
493                         break;
494                 case 'm':
495                         Path_AddDir(&sysIncPath, optarg);
496                         MFLAGS_append("-m", optarg);
497                         break;
498                 case 'n':
499                         noExecute = TRUE;
500                         MFLAGS_append("-n", NULL);
501                         break;
502                 case 'P':
503                         usePipes = FALSE;
504                         MFLAGS_append("-P", NULL);
505                         break;
506                 case 'p':
507                         printGraphOnly = TRUE;
508                         debug |= DEBUG_GRAPH1;
509                         break;
510                 case 'Q':
511                         beQuiet = TRUE;
512                         beVerbose = FALSE;
513                         MFLAGS_append("-Q", NULL);
514                         break;
515                 case 'q':
516                         queryFlag = TRUE;
517                         /* Kind of nonsensical, wot? */
518                         MFLAGS_append("-q", NULL);
519                         break;
520                 case 'r':
521                         noBuiltins = TRUE;
522                         MFLAGS_append("-r", NULL);
523                         break;
524                 case 'S':
525                         keepgoing = FALSE;
526                         MFLAGS_append("-S", NULL);
527                         break;
528                 case 's':
529                         beSilent = TRUE;
530                         MFLAGS_append("-s", NULL);
531                         break;
532                 case 't':
533                         touchFlag = TRUE;
534                         MFLAGS_append("-t", NULL);
535                         break;
536                 case 'V':
537                         Lst_AtEnd(&variables, estrdup(optarg));
538                         MFLAGS_append("-V", optarg);
539                         break;
540                 case 'v':
541                         beVerbose = TRUE;
542                         beQuiet = FALSE;
543                         MFLAGS_append("-v", NULL);
544                         break;
545                 case 'X':
546                         expandVars = FALSE;
547                         break;
548                 case 'x':
549                         if (Main_ParseWarn(optarg, 1) != -1)
550                                 MFLAGS_append("-x", optarg);
551                         break;
552
553                 default:
554                 case '?':
555                         usage();
556                 }
557         }
558         argv += optind;
559         argc -= optind;
560
561         oldVars = TRUE;
562
563         /*
564          * Parse the rest of the arguments.
565          *      o Check for variable assignments and perform them if so.
566          *      o Check for more flags and restart getopt if so.
567          *      o Anything else is taken to be a target and added
568          *        to the end of the "create" list.
569          */
570         for (; *argv != NULL; ++argv, --argc) {
571                 if (Parse_IsVar(*argv)) {
572                         char *ptr = MAKEFLAGS_quote(*argv);
573                         char *v = estrdup(*argv);
574
575                         Var_Append(".MAKEFLAGS", ptr, VAR_GLOBAL);
576                         Parse_DoVar(v, VAR_CMD);
577                         free(ptr);
578                         free(v);
579
580                 } else if ((*argv)[0] == '-') {
581                         if ((*argv)[1] == '\0') {
582                                 /*
583                                  * (*argv) is a single dash, so we
584                                  * just ignore it.
585                                  */
586                         } else if (found_dd) {
587                                 /*
588                                  * Double dash has been found, ignore
589                                  * any more options.  But what do we do
590                                  * with it?  For now treat it like a target.
591                                  */
592                                 Lst_AtEnd(&create, estrdup(*argv));
593                         } else {
594                                 /*
595                                  * (*argv) is a -flag, so backup argv and
596                                  * argc.  getopt() expects options to start
597                                  * in the 2nd position.
598                                  */
599                                 argc++;
600                                 argv--;
601                                 goto rearg;
602                         }
603
604                 } else if ((*argv)[0] == '\0') {
605                         Punt("illegal (null) argument.");
606
607                 } else {
608                         Lst_AtEnd(&create, estrdup(*argv));
609                 }
610         }
611 }
612
613 /**
614  * Main_ParseArgLine
615  *      Used by the parse module when a .MFLAGS or .MAKEFLAGS target
616  *      is encountered and by main() when reading the .MAKEFLAGS envariable.
617  *      Takes a line of arguments and breaks it into its
618  *      component words and passes those words and the number of them to the
619  *      MainParseArgs function.
620  *      The line should have all its leading whitespace removed.
621  *
622  * Side Effects:
623  *      Only those that come from the various arguments.
624  */
625 void
626 Main_ParseArgLine(char *line, int mflags)
627 {
628         ArgArray        aa;
629
630         if (line == NULL)
631                 return;
632         for (; *line == ' '; ++line)
633                 continue;
634         if (!*line)
635                 return;
636
637         if (mflags)
638                 MAKEFLAGS_break(&aa, line);
639         else
640                 brk_string(&aa, line, TRUE);
641
642         MainParseArgs(aa.argc, aa.argv);
643         ArgArray_Done(&aa);
644 }
645
646 static char *
647 chdir_verify_path(const char *path, char *obpath)
648 {
649         struct stat sb;
650
651         if (stat(path, &sb) == 0 && S_ISDIR(sb.st_mode)) {
652                 if (chdir(path) == -1 || getcwd(obpath, MAXPATHLEN) == NULL) {
653                         warn("warning: %s", path);
654                         return (NULL);
655                 }
656                 return (obpath);
657         }
658
659         return (NULL);
660 }
661
662 /**
663  * In lieu of a good way to prevent every possible looping in make(1), stop
664  * there from being more than MKLVL_MAXVAL processes forked by make(1), to
665  * prevent a forkbomb from happening, in a dumb and mechanical way.
666  *
667  * Side Effects:
668  *      Creates or modifies enviornment variable MKLVL_ENVVAR via setenv().
669  */
670 static void
671 check_make_level(void)
672 {
673 #ifdef WANT_ENV_MKLVL
674         char    *value = getenv(MKLVL_ENVVAR);
675         int     level = (value == NULL) ? 0 : atoi(value);
676
677         if (level < 0) {
678                 errc(2, EAGAIN, "Invalid value for recursion level (%d).",
679                     level);
680         } else if (level > MKLVL_MAXVAL) {
681                 errc(2, EAGAIN, "Max recursion level (%d) exceeded.",
682                     MKLVL_MAXVAL);
683         } else {
684                 char new_value[32];
685                 sprintf(new_value, "%d", level + 1);
686                 setenv(MKLVL_ENVVAR, new_value, 1);
687         }
688 #endif /* WANT_ENV_MKLVL */
689 }
690
691 /**
692  * Main_AddSourceMakefile
693  *      Add a file to the list of source makefiles
694  */
695 void
696 Main_AddSourceMakefile(const char *name)
697 {
698
699         Lst_AtEnd(&source_makefiles, estrdup(name));
700 }
701
702 /**
703  * Remake_Makefiles
704  *      Remake all the makefiles
705  */
706 static void
707 Remake_Makefiles(void)
708 {
709         LstNode *ln;
710         int error_cnt = 0;
711         int remade_cnt = 0;
712
713         Compat_InstallSignalHandlers();
714         if (curdir != objdir) {
715                 if (chdir(curdir) < 0)
716                         Fatal("Failed to change directory to %s.", curdir);
717         }
718
719         LST_FOREACH(ln, &source_makefiles) {
720                 LstNode *ln2;
721                 struct GNode *gn;
722                 const char *name = Lst_Datum(ln);
723                 Boolean saveTouchFlag = touchFlag;
724                 Boolean saveQueryFlag = queryFlag;
725                 Boolean saveNoExecute = noExecute;
726                 int mtime;
727
728                 /*
729                  * Create node
730                  */
731                 gn = Targ_FindNode(name, TARG_CREATE);
732                 DEBUGF(MAKE, ("Checking %s...", gn->name));
733                 Suff_FindDeps(gn);
734
735                 /*
736                  * -t, -q and -n has no effect unless the makefile is
737                  * specified as one of the targets explicitly in the
738                  * command line
739                  */
740                 LST_FOREACH(ln2, &create) {
741                         if (!strcmp(gn->name, Lst_Datum(ln2))) {
742                                 /* found as a target */
743                                 break;
744                         }
745                 }
746                 if (ln2 == NULL) {
747                         touchFlag = FALSE;
748                         queryFlag = FALSE;
749                         noExecute = FALSE;
750                 }
751
752                 /*
753                  * Check and remake the makefile
754                  */
755                 mtime = Dir_MTime(gn);
756                 remakingMakefiles = TRUE;
757                 Compat_Make(gn, gn);
758                 remakingMakefiles = FALSE;
759
760                 /*
761                  * Restore -t, -q and -n behaviour
762                  */
763                 touchFlag = saveTouchFlag;
764                 queryFlag = saveQueryFlag;
765                 noExecute = saveNoExecute;
766
767                 /*
768                  * Compat_Make will leave the 'made' field of gn
769                  * in one of the following states:
770                  *      UPTODATE  gn was already up-to-date
771                  *      MADE      gn was recreated successfully
772                  *      ERROR     An error occurred while gn was being created
773                  *      ABORTED   gn was not remade because one of its inferiors
774                  *                could not be made due to errors.
775                  */
776                 if (gn->made == MADE) {
777                         if (mtime != Dir_MTime(gn)) {
778                                 DEBUGF(MAKE,
779                                     ("%s updated (%d -> %d).\n",
780                                      gn->name, mtime, gn->mtime));
781                                 remade_cnt++;
782                         } else {
783                                 DEBUGF(MAKE,
784                                     ("%s not updated: skipping restart.\n",
785                                      gn->name));
786                         }
787                 } else if (gn->made == ERROR)
788                         error_cnt++;
789                 else if (gn->made == ABORTED) {
790                         printf("`%s' not remade because of errors.\n",
791                             gn->name);
792                         error_cnt++;
793                 } else if (gn->made == UPTODATE) {
794                         Lst examine;
795
796                         Lst_Init(&examine);
797                         Lst_EnQueue(&examine, gn);
798                         while (!Lst_IsEmpty(&examine)) {
799                                 LstNode *eln;
800                                 GNode *egn = Lst_DeQueue(&examine);
801
802                                 egn->make = FALSE;
803                                 LST_FOREACH(eln, &egn->children) {
804                                         GNode *cgn = Lst_Datum(eln);
805
806                                         Lst_EnQueue(&examine, cgn);
807                                 }
808                         }
809                 }
810         }
811
812         if (error_cnt > 0)
813                 Fatal("Failed to remake Makefiles.");
814         if (remade_cnt > 0) {
815                 DEBUGF(MAKE, ("Restarting `%s'.\n", save_argv[0]));
816
817                 /*
818                  * Some of makefiles were remade -- restart from clean state
819                  */
820                 if (save_makeflags != NULL)
821                         setenv("MAKEFLAGS", save_makeflags, 1);
822                 else
823                         unsetenv("MAKEFLAGS");
824                 if (execvp(save_argv[0], save_argv) < 0) {
825                         Fatal("Can't restart `%s': %s.",
826                             save_argv[0], strerror(errno));
827                 }
828         }
829
830         if (curdir != objdir) {
831                 if (chdir(objdir) < 0)
832                         Fatal("Failed to change directory to %s.", objdir);
833         }
834 }
835
836 /**
837  * main
838  *      The main function, for obvious reasons. Initializes variables
839  *      and a few modules, then parses the arguments give it in the
840  *      environment and on the command line. Reads the system makefile
841  *      followed by either Makefile, makefile or the file given by the
842  *      -f argument. Sets the .MAKEFLAGS PMake variable based on all the
843  *      flags it has received by then uses either the Make or the Compat
844  *      module to create the initial list of targets.
845  *
846  * Results:
847  *      If -q was given, exits -1 if anything was out-of-date. Else it exits
848  *      0.
849  *
850  * Side Effects:
851  *      The program exits when done. Targets are created. etc. etc. etc.
852  */
853 int
854 main(int argc, char **argv)
855 {
856         const char *machine;
857         const char *machine_arch;
858         const char *machine_cpu;
859         Boolean outOfDate = TRUE;       /* FALSE if all targets up to date */
860         const char *p;
861         const char *pathp;
862         const char *path;
863         char mdpath[MAXPATHLEN];
864         char obpath[MAXPATHLEN];
865         char cdpath[MAXPATHLEN];
866         char *cp = NULL, *start;
867
868         save_argv = argv;
869         save_makeflags = getenv("MAKEFLAGS");
870         if (save_makeflags != NULL)
871                 save_makeflags = estrdup(save_makeflags);
872
873         /*
874          * Initialize file global variables.
875          */
876         expandVars = TRUE;
877         noBuiltins = FALSE;             /* Read the built-in rules */
878         forceJobs = FALSE;              /* No -j flag */
879         curdir = cdpath;
880
881         /*
882          * Initialize program global variables.
883          */
884         beSilent = FALSE;               /* Print commands as executed */
885         ignoreErrors = FALSE;           /* Pay attention to non-zero returns */
886         noExecute = FALSE;              /* Execute all commands */
887         printGraphOnly = FALSE;         /* Don't stop after printing graph */
888         keepgoing = FALSE;              /* Stop on error */
889         allPrecious = FALSE;            /* Remove targets when interrupted */
890         queryFlag = FALSE;              /* This is not just a check-run */
891         touchFlag = FALSE;              /* Actually update targets */
892         usePipes = TRUE;                /* Catch child output in pipes */
893         debug = 0;                      /* No debug verbosity, please. */
894         jobsRunning = FALSE;
895
896         jobLimit = DEFMAXJOBS;
897         compatMake = FALSE;             /* No compat mode */
898
899         check_make_level();
900
901 #ifdef RLIMIT_NOFILE
902         /*
903          * get rid of resource limit on file descriptors
904          */
905         {
906                 struct rlimit rl;
907                 if (getrlimit(RLIMIT_NOFILE, &rl) == -1) {
908                         err(2, "getrlimit");
909                 }
910                 rl.rlim_cur = rl.rlim_max;
911                 if (setrlimit(RLIMIT_NOFILE, &rl) == -1) {
912                         err(2, "setrlimit");
913                 }
914         }
915 #endif
916
917         /*
918          * Prior to 7.0, FreeBSD/pc98 kernel used to set the
919          * utsname.machine to "i386", and MACHINE was defined as
920          * "i386", so it could not be distinguished from FreeBSD/i386.
921          * Therefore, we had to check machine.ispc98 and adjust the
922          * MACHINE variable.  NOTE: The code is still here to be able
923          * to compile new make binary on old FreeBSD/pc98 systems, and
924          * have the MACHINE variable set properly.
925          */
926         if ((machine = getenv("MACHINE")) == NULL) {
927                 int     ispc98;
928                 size_t  len;
929
930                 len = sizeof(ispc98);
931                 if (!sysctlbyname("machdep.ispc98", &ispc98, &len, NULL, 0)) {
932                         if (ispc98)
933                                 machine = "pc98";
934                 }
935         }
936
937         /*
938          * Get the name of this type of MACHINE from utsname
939          * so we can share an executable for similar machines.
940          * (i.e. m68k: amiga hp300, mac68k, sun3, ...)
941          *
942          * Note that both MACHINE and MACHINE_ARCH are decided at
943          * run-time.
944          */
945         if (machine == NULL) {
946                 static struct utsname utsname;
947
948                 if (uname(&utsname) == -1)
949                         err(2, "uname");
950                 machine = utsname.machine;
951         }
952
953         if ((machine_arch = getenv("MACHINE_ARCH")) == NULL) {
954 #ifdef MACHINE_ARCH
955                 machine_arch = MACHINE_ARCH;
956 #else
957                 machine_arch = "unknown";
958 #endif
959         }
960
961         /*
962          * Set machine_cpu to the minumum supported CPU revision based
963          * on the target architecture, if not already set.
964          */
965         if ((machine_cpu = getenv("MACHINE_CPU")) == NULL) {
966                 if (!strcmp(machine_arch, "i386"))
967                         machine_cpu = "i386";
968                 else if (!strcmp(machine_arch, "alpha"))
969                         machine_cpu = "ev4";
970                 else
971                         machine_cpu = "unknown";
972         }
973
974         /*
975          * Initialize the parsing, directory and variable modules to prepare
976          * for the reading of inclusion paths and variable settings on the
977          * command line
978          */
979         Proc_Init();
980
981         Dir_Init();             /* Initialize directory structures so -I flags
982                                  * can be processed correctly */
983         Var_Init(environ);      /* As well as the lists of variables for
984                                  * parsing arguments */
985
986         /*
987          * Initialize the Shell so that we have a shell for != assignments
988          * on the command line.
989          */
990         Shell_Init();
991
992         /*
993          * Initialize various variables.
994          *      MAKE also gets this name, for compatibility
995          *      .MAKEFLAGS gets set to the empty string just in case.
996          *      MFLAGS also gets initialized empty, for compatibility.
997          */
998         Var_SetGlobal("MAKE", argv[0]);
999         Var_SetGlobal(".MAKEFLAGS", "");
1000         Var_SetGlobal("MFLAGS", "");
1001         Var_SetGlobal("MACHINE", machine);
1002         Var_SetGlobal("MACHINE_ARCH", machine_arch);
1003         Var_SetGlobal("MACHINE_CPU", machine_cpu);
1004 #ifdef MAKE_VERSION
1005         Var_SetGlobal("MAKE_VERSION", MAKE_VERSION);
1006 #endif
1007         Var_SetGlobal(".newline", "\n");        /* handy for :@ loops */
1008         {
1009                 char tmp[64];
1010
1011                 snprintf(tmp, sizeof(tmp), "%u", getpid());
1012                 Var_SetGlobal(".MAKE.PID", tmp);
1013                 snprintf(tmp, sizeof(tmp), "%u", getppid());
1014                 Var_SetGlobal(".MAKE.PPID", tmp);
1015         }
1016         Job_SetPrefix();
1017
1018         /*
1019          * First snag things out of the MAKEFLAGS environment
1020          * variable.  Then parse the command line arguments.
1021          */
1022         Main_ParseArgLine(getenv("MAKEFLAGS"), 1);
1023
1024         MainParseArgs(argc, argv);
1025
1026         /*
1027          * Find where we are...
1028          */
1029         if (getcwd(curdir, MAXPATHLEN) == NULL)
1030                 err(2, NULL);
1031
1032         {
1033         struct stat sa;
1034
1035         if (stat(curdir, &sa) == -1)
1036             err(2, "%s", curdir);
1037         }
1038
1039         /*
1040          * The object directory location is determined using the
1041          * following order of preference:
1042          *
1043          *      1. MAKEOBJDIRPREFIX`cwd`
1044          *      2. MAKEOBJDIR
1045          *      3. PATH_OBJDIR.${MACHINE}
1046          *      4. PATH_OBJDIR
1047          *      5. PATH_OBJDIRPREFIX`cwd`
1048          *
1049          * If one of the first two fails, use the current directory.
1050          * If the remaining three all fail, use the current directory.
1051          *
1052          * Once things are initted,
1053          * have to add the original directory to the search path,
1054          * and modify the paths for the Makefiles apropriately.  The
1055          * current directory is also placed as a variable for make scripts.
1056          */
1057         if (!(pathp = getenv("MAKEOBJDIRPREFIX"))) {
1058                 if (!(path = getenv("MAKEOBJDIR"))) {
1059                         path = PATH_OBJDIR;
1060                         pathp = PATH_OBJDIRPREFIX;
1061                         snprintf(mdpath, MAXPATHLEN, "%s.%s", path, machine);
1062                         if (!(objdir = chdir_verify_path(mdpath, obpath)))
1063                                 if (!(objdir=chdir_verify_path(path, obpath))) {
1064                                         snprintf(mdpath, MAXPATHLEN,
1065                                                         "%s%s", pathp, curdir);
1066                                         if (!(objdir=chdir_verify_path(mdpath,
1067                                                                        obpath)))
1068                                                 objdir = curdir;
1069                                 }
1070                 }
1071                 else if (!(objdir = chdir_verify_path(path, obpath)))
1072                         objdir = curdir;
1073         }
1074         else {
1075                 snprintf(mdpath, MAXPATHLEN, "%s%s", pathp, curdir);
1076                 if (!(objdir = chdir_verify_path(mdpath, obpath)))
1077                         objdir = curdir;
1078         }
1079         Dir_InitDot();          /* Initialize the "." directory */
1080         if (objdir != curdir)
1081                 Path_AddDir(&dirSearchPath, curdir);
1082         Var_SetGlobal(".ST_EXPORTVAR", "YES");
1083         Var_SetGlobal(".CURDIR", curdir);
1084         Var_SetGlobal(".OBJDIR", objdir);
1085
1086         if (getenv("MAKE_JOBS_FIFO") != NULL)
1087                 forceJobs = TRUE;
1088         /*
1089          * Be compatible if user did not specify -j and did not explicitly
1090          * turned compatibility on
1091          */
1092         if (!compatMake && !forceJobs)
1093                 compatMake = TRUE;
1094
1095         /*
1096          * Initialize target and suffix modules in preparation for
1097          * parsing the makefile(s)
1098          */
1099         Targ_Init();
1100         Suff_Init();
1101
1102         DEFAULT = NULL;
1103         time(&now);
1104
1105         /*
1106          * Set up the .TARGETS variable to contain the list of targets to be
1107          * created. If none specified, make the variable empty -- the parser
1108          * will fill the thing in with the default or .MAIN target.
1109          */
1110         if (Lst_IsEmpty(&create)) {
1111                 Var_SetGlobal(".TARGETS", "");
1112         } else {
1113                 LstNode *ln;
1114
1115                 for (ln = Lst_First(&create); ln != NULL; ln = Lst_Succ(ln)) {
1116                         char *name = Lst_Datum(ln);
1117
1118                         Var_Append(".TARGETS", name, VAR_GLOBAL);
1119                 }
1120         }
1121
1122
1123         /*
1124          * If no user-supplied system path was given (through the -m option)
1125          * add the directories from the DEFSYSPATH (more than one may be given
1126          * as dir1:...:dirn) to the system include path.
1127          */
1128         if (TAILQ_EMPTY(&sysIncPath)) {
1129                 char syspath[] = PATH_DEFSYSPATH;
1130
1131                 for (start = syspath; *start != '\0'; start = cp) {
1132                         for (cp = start; *cp != '\0' && *cp != ':'; cp++)
1133                                 continue;
1134                         if (*cp == '\0') {
1135                                 Path_AddDir(&sysIncPath, start);
1136                         } else {
1137                                 *cp++ = '\0';
1138                                 Path_AddDir(&sysIncPath, start);
1139                         }
1140                 }
1141         }
1142
1143         /*
1144          * Read in the built-in rules first, followed by the specified
1145          * makefile, if it was (makefile != (char *) NULL), or the default
1146          * Makefile and makefile, in that order, if it wasn't.
1147          */
1148         if (!noBuiltins) {
1149                 /* Path of sys.mk */
1150                 Lst sysMkPath = Lst_Initializer(sysMkPath);
1151                 LstNode *ln;
1152                 char    defsysmk[] = PATH_DEFSYSMK;
1153
1154                 Path_Expand(defsysmk, &sysIncPath, &sysMkPath);
1155                 if (Lst_IsEmpty(&sysMkPath))
1156                         Fatal("make: no system rules (%s).", PATH_DEFSYSMK);
1157                 LST_FOREACH(ln, &sysMkPath) {
1158                         if (!ReadMakefile(Lst_Datum(ln)))
1159                                 break;
1160                 }
1161                 if (ln != NULL)
1162                         Fatal("make: cannot open %s.", (char *)Lst_Datum(ln));
1163                 Lst_Destroy(&sysMkPath, free);
1164         }
1165
1166         if (!Lst_IsEmpty(&makefiles)) {
1167                 LstNode *ln;
1168
1169                 LST_FOREACH(ln, &makefiles) {
1170                         if (!TryReadMakefile(Lst_Datum(ln)))
1171                                 break;
1172                 }
1173                 if (ln != NULL)
1174                         Fatal("make: cannot open %s.", (char *)Lst_Datum(ln));
1175         } else if (!TryReadMakefile("BSDmakefile"))
1176             if (!TryReadMakefile("makefile"))
1177                 TryReadMakefile("Makefile");
1178
1179         ReadMakefile(".depend");
1180
1181         /* Install all the flags into the MAKEFLAGS envariable. */
1182         if (((p = Var_Value(".MAKEFLAGS", VAR_GLOBAL)) != NULL) && *p)
1183                 setenv("MAKEFLAGS", p, 1);
1184         else
1185                 setenv("MAKEFLAGS", "", 1);
1186
1187         /*
1188          * For compatibility, look at the directories in the VPATH variable
1189          * and add them to the search path, if the variable is defined. The
1190          * variable's value is in the same format as the PATH envariable, i.e.
1191          * <directory>:<directory>:<directory>...
1192          */
1193         if (Var_Exists("VPATH", VAR_CMD)) {
1194                 /*
1195                  * GCC stores string constants in read-only memory, but
1196                  * Var_Subst will want to write this thing, so store it
1197                  * in an array
1198                  */
1199                 static char VPATH[] = "${VPATH}";
1200                 Buffer  *buf;
1201                 char    *vpath;
1202                 char    *ptr;
1203                 char    savec;
1204
1205                 buf = Var_Subst(VPATH, VAR_CMD, FALSE);
1206
1207                 vpath = Buf_Data(buf);
1208                 do {
1209                         /* skip to end of directory */
1210                         for (ptr = vpath; *ptr != ':' && *ptr != '\0'; ptr++)
1211                                 ;
1212
1213                         /* Save terminator character so know when to stop */
1214                         savec = *ptr;
1215                         *ptr = '\0';
1216
1217                         /* Add directory to search path */
1218                         Path_AddDir(&dirSearchPath, vpath);
1219
1220                         vpath = ptr + 1;
1221                 } while (savec != '\0');
1222
1223                 Buf_Destroy(buf, TRUE);
1224         }
1225
1226         /*
1227          * Now that all search paths have been read for suffixes et al, it's
1228          * time to add the default search path to their lists...
1229          */
1230         Suff_DoPaths();
1231
1232         /* print the initial graph, if the user requested it */
1233         if (DEBUG(GRAPH1))
1234                 Targ_PrintGraph(1);
1235
1236         /* print the values of any variables requested by the user */
1237         if (Lst_IsEmpty(&variables) && !printGraphOnly) {
1238                 /*
1239                  * Since the user has not requested that any variables
1240                  * be printed, we can build targets.
1241                  *
1242                  * Have read the entire graph and need to make a list of targets
1243                  * to create. If none was given on the command line, we consult
1244                  * the parsing module to find the main target(s) to create.
1245                  */
1246                 Lst targs = Lst_Initializer(targs);
1247
1248                 if (!is_posix && mfAutoDeps) {
1249                         /*
1250                          * Check if any of the makefiles are out-of-date.
1251                          */
1252                         Remake_Makefiles();
1253                 }
1254
1255                 if (Lst_IsEmpty(&create))
1256                         Parse_MainName(&targs);
1257                 else
1258                         Targ_FindList(&targs, &create, TARG_CREATE);
1259
1260                 if (compatMake) {
1261                         /*
1262                          * Compat_Init will take care of creating
1263                          * all the targets as well as initializing
1264                          * the module.
1265                          */
1266                         Compat_Run(&targs);
1267                         outOfDate = 0;
1268                 } else {
1269                         /*
1270                          * Initialize job module before traversing
1271                          * the graph, now that any .BEGIN and .END
1272                          * targets have been read.  This is done
1273                          * only if the -q flag wasn't given (to
1274                          * prevent the .BEGIN from being executed
1275                          * should it exist).
1276                          */
1277                         if (!queryFlag) {
1278                                 Job_Init(jobLimit);
1279                                 jobsRunning = TRUE;
1280                         }
1281
1282                         /* Traverse the graph, checking on all the targets */
1283                         outOfDate = Make_Run(&targs);
1284                 }
1285                 Lst_Destroy(&targs, NOFREE);
1286
1287         } else {
1288                 Var_Print(&variables, expandVars);
1289         }
1290
1291         Lst_Destroy(&variables, free);
1292         Lst_Destroy(&makefiles, free);
1293         Lst_Destroy(&source_makefiles, free);
1294         Lst_Destroy(&create, free);
1295
1296         /* print the graph now it's been processed if the user requested it */
1297         if (DEBUG(GRAPH2))
1298                 Targ_PrintGraph(2);
1299
1300         if (queryFlag)
1301                 return (outOfDate);
1302
1303         if (makeErrors != 0)
1304                 Finish(makeErrors);
1305
1306         return (0);
1307 }