Put dnls before random whitespace.
[make.git] / misc.c
blobb9e76b9b068a676015deb2d794929434bdea0be5
1 /* Miscellaneous generic support functions for GNU Make.
2 Copyright (C) 1988, 89, 90, 91, 92, 93, 94 Free Software Foundation, Inc.
3 This file is part of GNU Make.
5 GNU Make is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation; either version 2, or (at your option)
8 any later version.
10 GNU Make is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details.
15 You should have received a copy of the GNU General Public License
16 along with GNU Make; see the file COPYING. If not, write to
17 the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
19 #include "make.h"
20 #include "dep.h"
23 /* Compare strings *S1 and *S2.
24 Return negative if the first is less, positive if it is greater,
25 zero if they are equal. */
27 int
28 alpha_compare (s1, s2)
29 char **s1, **s2;
31 if (**s1 != **s2)
32 return **s1 - **s2;
33 return strcmp (*s1, *s2);
36 /* Discard each backslash-newline combination from LINE.
37 Backslash-backslash-newline combinations become backslash-newlines.
38 This is done by copying the text at LINE into itself. */
40 void
41 collapse_continuations (line)
42 char *line;
44 register char *in, *out, *p;
45 register int backslash;
46 register unsigned int bs_write;
48 in = index (line, '\n');
49 if (in == 0)
50 return;
52 out = in;
53 if (out > line)
54 while (out[-1] == '\\')
55 --out;
57 while (*in != '\0')
59 /* BS_WRITE gets the number of quoted backslashes at
60 the end just before IN, and BACKSLASH gets nonzero
61 if the next character is quoted. */
62 backslash = 0;
63 bs_write = 0;
64 for (p = in - 1; p >= line && *p == '\\'; --p)
66 if (backslash)
67 ++bs_write;
68 backslash = !backslash;
70 /* It should be impossible to go back this far without exiting,
71 but if we do, we can't get the right answer. */
72 if (in == out - 1)
73 abort ();
76 /* Output the appropriate number of backslashes. */
77 while (bs_write-- > 0)
78 *out++ = '\\';
80 /* Skip the newline. */
81 ++in;
83 /* If the newline is quoted, discard following whitespace
84 and any preceding whitespace; leave just one space. */
85 if (backslash)
87 in = next_token (in);
88 while (out > line && isblank (out[-1]))
89 --out;
90 *out++ = ' ';
92 else
93 /* If the newline isn't quoted, put it in the output. */
94 *out++ = '\n';
96 /* Now copy the following line to the output.
97 Stop when we find backslashes followed by a newline. */
98 while (*in != '\0')
99 if (*in == '\\')
101 p = in + 1;
102 while (*p == '\\')
103 ++p;
104 if (*p == '\n')
106 in = p;
107 break;
109 while (in < p)
110 *out++ = *in++;
112 else
113 *out++ = *in++;
116 *out = '\0';
120 /* Remove comments from LINE.
121 This is done by copying the text at LINE onto itself. */
123 void
124 remove_comments (line)
125 char *line;
127 char *comment;
129 comment = find_char_unquote (line, '#', 0);
131 if (comment != 0)
132 /* Cut off the line at the #. */
133 *comment = '\0';
136 /* Print N spaces (used by DEBUGPR for target-depth). */
138 void
139 print_spaces (n)
140 register unsigned int n;
142 while (n-- > 0)
143 putchar (' ');
147 /* Return a newly-allocated string whose contents
148 concatenate those of s1, s2, s3. */
150 char *
151 concat (s1, s2, s3)
152 register char *s1, *s2, *s3;
154 register unsigned int len1, len2, len3;
155 register char *result;
157 len1 = *s1 != '\0' ? strlen (s1) : 0;
158 len2 = *s2 != '\0' ? strlen (s2) : 0;
159 len3 = *s3 != '\0' ? strlen (s3) : 0;
161 result = (char *) xmalloc (len1 + len2 + len3 + 1);
163 if (*s1 != '\0')
164 bcopy (s1, result, len1);
165 if (*s2 != '\0')
166 bcopy (s2, result + len1, len2);
167 if (*s3 != '\0')
168 bcopy (s3, result + len1 + len2, len3);
169 *(result + len1 + len2 + len3) = '\0';
171 return result;
174 /* Print a message on stdout. */
176 void
177 message (s1, s2, s3, s4, s5, s6)
178 char *s1, *s2, *s3, *s4, *s5, *s6;
180 if (makelevel == 0)
181 printf ("%s: ", program);
182 else
183 printf ("%s[%u]: ", program, makelevel);
184 printf (s1, s2, s3, s4, s5, s6);
185 putchar ('\n');
186 fflush (stdout);
189 /* Print an error message and exit. */
191 /* VARARGS1 */
192 void
193 fatal (s1, s2, s3, s4, s5, s6)
194 char *s1, *s2, *s3, *s4, *s5, *s6;
196 if (makelevel == 0)
197 fprintf (stderr, "%s: *** ", program);
198 else
199 fprintf (stderr, "%s[%u]: *** ", program, makelevel);
200 fprintf (stderr, s1, s2, s3, s4, s5, s6);
201 fputs (". Stop.\n", stderr);
203 die (2);
206 /* Print error message. `s1' is printf control string, `s2' is arg for it. */
208 /* VARARGS1 */
210 void
211 error (s1, s2, s3, s4, s5, s6)
212 char *s1, *s2, *s3, *s4, *s5, *s6;
214 if (makelevel == 0)
215 fprintf (stderr, "%s: ", program);
216 else
217 fprintf (stderr, "%s[%u]: ", program, makelevel);
218 fprintf (stderr, s1, s2, s3, s4, s5, s6);
219 putc ('\n', stderr);
220 fflush (stderr);
223 void
224 makefile_error (file, lineno, s1, s2, s3, s4, s5, s6)
225 char *file;
226 unsigned int lineno;
227 char *s1, *s2, *s3, *s4, *s5, *s6;
229 fprintf (stderr, "%s:%u: ", file, lineno);
230 fprintf (stderr, s1, s2, s3, s4, s5, s6);
231 putc ('\n', stderr);
232 fflush (stderr);
235 void
236 makefile_fatal (file, lineno, s1, s2, s3, s4, s5, s6)
237 char *file;
238 unsigned int lineno;
239 char *s1, *s2, *s3, *s4, *s5, *s6;
241 fprintf (stderr, "%s:%u: *** ", file, lineno);
242 fprintf (stderr, s1, s2, s3, s4, s5, s6);
243 fputs (". Stop.\n", stderr);
245 die (2);
248 #ifndef HAVE_STRERROR
250 #undef strerror
252 char *
253 strerror (errnum)
254 int errnum;
256 extern int errno, sys_nerr;
257 extern char *sys_errlist[];
258 static char buf[] = "Unknown error 12345678901234567890";
260 if (errno < sys_nerr)
261 return sys_errlist[errnum];
263 sprintf ("Unknown error %d", buf, errnum);
264 return buf;
266 #endif
268 /* Print an error message from errno. */
270 void
271 perror_with_name (str, name)
272 char *str, *name;
274 error ("%s%s: %s", str, name, strerror (errno));
277 /* Print an error message from errno and exit. */
279 void
280 pfatal_with_name (name)
281 char *name;
283 fatal ("%s: %s", name, strerror (errno));
285 /* NOTREACHED */
288 /* Like malloc but get fatal error if memory is exhausted. */
290 #undef xmalloc
291 #undef xrealloc
293 char *
294 xmalloc (size)
295 unsigned int size;
297 char *result = (char *) malloc (size);
298 if (result == 0)
299 fatal ("virtual memory exhausted");
300 return result;
304 char *
305 xrealloc (ptr, size)
306 char *ptr;
307 unsigned int size;
309 char *result = (char *) realloc (ptr, size);
310 if (result == 0)
311 fatal ("virtual memory exhausted");
312 return result;
315 char *
316 savestring (str, length)
317 char *str;
318 unsigned int length;
320 register char *out = (char *) xmalloc (length + 1);
321 if (length > 0)
322 bcopy (str, out, length);
323 out[length] = '\0';
324 return out;
327 /* Search string BIG (length BLEN) for an occurrence of
328 string SMALL (length SLEN). Return a pointer to the
329 beginning of the first occurrence, or return nil if none found. */
331 char *
332 sindex (big, blen, small, slen)
333 char *big;
334 unsigned int blen;
335 char *small;
336 unsigned int slen;
338 register unsigned int b;
340 if (blen < 1)
341 blen = strlen (big);
342 if (slen < 1)
343 slen = strlen (small);
345 for (b = 0; b < blen; ++b)
346 if (big[b] == *small && !strncmp (&big[b + 1], small + 1, slen - 1))
347 return (&big[b]);
349 return 0;
352 /* Limited INDEX:
353 Search through the string STRING, which ends at LIMIT, for the character C.
354 Returns a pointer to the first occurrence, or nil if none is found.
355 Like INDEX except that the string searched ends where specified
356 instead of at the first null. */
358 char *
359 lindex (s, limit, c)
360 register char *s, *limit;
361 int c;
363 while (s < limit)
364 if (*s++ == c)
365 return s - 1;
367 return 0;
370 /* Return the address of the first whitespace or null in the string S. */
372 char *
373 end_of_token (s)
374 char *s;
376 while (*s != '\0' && !isblank (*s))
377 ++s;
378 return s;
381 /* Return the address of the first nonwhitespace or null in the string S. */
383 char *
384 next_token (s)
385 char *s;
387 register char *p = s;
389 while (isblank (*p))
390 ++p;
391 return p;
394 /* Find the next token in PTR; return the address of it, and store the
395 length of the token into *LENGTHPTR if LENGTHPTR is not nil. */
397 char *
398 find_next_token (ptr, lengthptr)
399 char **ptr;
400 unsigned int *lengthptr;
402 char *p = next_token (*ptr);
403 char *end;
405 if (*p == '\0')
406 return 0;
408 *ptr = end = end_of_token (p);
409 if (lengthptr != 0)
410 *lengthptr = end - p;
411 return p;
414 /* Copy a chain of `struct dep', making a new chain
415 with the same contents as the old one. */
417 struct dep *
418 copy_dep_chain (d)
419 register struct dep *d;
421 register struct dep *c;
422 struct dep *firstnew = 0;
423 struct dep *lastnew;
425 while (d != 0)
427 c = (struct dep *) xmalloc (sizeof (struct dep));
428 bcopy ((char *) d, (char *) c, sizeof (struct dep));
429 if (c->name != 0)
430 c->name = savestring (c->name, strlen (c->name));
431 c->next = 0;
432 if (firstnew == 0)
433 firstnew = lastnew = c;
434 else
435 lastnew = lastnew->next = c;
437 d = d->next;
440 return firstnew;
443 #ifdef iAPX286
444 /* The losing compiler on this machine can't handle this macro. */
446 char *
447 dep_name (dep)
448 struct dep *dep;
450 return dep->name == 0 ? dep->file->name : dep->name;
452 #endif
454 #ifdef GETLOADAVG_PRIVILEGED
456 #ifdef POSIX
458 /* Hopefully if a system says it's POSIX.1 and has the setuid and setgid
459 functions, they work as POSIX.1 says. Some systems (Alpha OSF/1 1.2,
460 for example) which claim to be POSIX.1 also have the BSD setreuid and
461 setregid functions, but they don't work as in BSD and only the POSIX.1
462 way works. */
464 #undef HAVE_SETREUID
465 #undef HAVE_SETREGID
467 #else /* Not POSIX. */
469 /* Some POSIX.1 systems have the seteuid and setegid functions. In a
470 POSIX-like system, they are the best thing to use. However, some
471 non-POSIX systems have them too but they do not work in the POSIX style
472 and we must use setreuid and setregid instead. */
474 #undef HAVE_SETEUID
475 #undef HAVE_SETEGID
477 #endif /* POSIX. */
479 #ifndef HAVE_UNISTD_H
480 extern int getuid (), getgid (), geteuid (), getegid ();
481 extern int setuid (), setgid ();
482 #ifdef HAVE_SETEUID
483 extern int seteuid ();
484 #else
485 #ifdef HAVE_SETREUID
486 extern int setreuid ();
487 #endif /* Have setreuid. */
488 #endif /* Have seteuid. */
489 #ifdef HAVE_SETEGID
490 extern int setegid ();
491 #else
492 #ifdef HAVE_SETREGID
493 extern int setregid ();
494 #endif /* Have setregid. */
495 #endif /* Have setegid. */
496 #endif /* No <unistd.h>. */
498 /* Keep track of the user and group IDs for user- and make- access. */
499 static int user_uid = -1, user_gid = -1, make_uid = -1, make_gid = -1;
500 #define access_inited (user_uid != -1)
501 static enum { make, user } current_access;
504 /* Under -d, write a message describing the current IDs. */
506 static void
507 log_access (flavor)
508 char *flavor;
510 if (! debug_flag)
511 return;
513 /* All the other debugging messages go to stdout,
514 but we write this one to stderr because it might be
515 run in a child fork whose stdout is piped. */
517 fprintf (stderr, "%s access: user %d (real %d), group %d (real %d)\n",
518 flavor, geteuid (), getuid (), getegid (), getgid ());
519 fflush (stderr);
523 static void
524 init_access ()
526 user_uid = getuid ();
527 user_gid = getgid ();
529 make_uid = geteuid ();
530 make_gid = getegid ();
532 /* Do these ever fail? */
533 if (user_uid == -1 || user_gid == -1 || make_uid == -1 || make_gid == -1)
534 pfatal_with_name ("get{e}[gu]id");
536 log_access ("Initialized");
538 current_access = make;
541 #endif /* GETLOADAVG_PRIVILEGED */
543 /* Give the process appropriate permissions for access to
544 user data (i.e., to stat files, or to spawn a child process). */
545 void
546 user_access ()
548 #ifdef GETLOADAVG_PRIVILEGED
550 if (!access_inited)
551 init_access ();
553 if (current_access == user)
554 return;
556 /* We are in "make access" mode. This means that the effective user and
557 group IDs are those of make (if it was installed setuid or setgid).
558 We now want to set the effective user and group IDs to the real IDs,
559 which are the IDs of the process that exec'd make. */
561 #ifdef HAVE_SETEUID
563 /* Modern systems have the seteuid/setegid calls which set only the
564 effective IDs, which is ideal. */
566 if (seteuid (user_uid) < 0)
567 pfatal_with_name ("user_access: seteuid");
569 #else /* Not HAVE_SETEUID. */
571 #ifndef HAVE_SETREUID
573 /* System V has only the setuid/setgid calls to set user/group IDs.
574 There is an effective ID, which can be set by setuid/setgid.
575 It can be set (unless you are root) only to either what it already is
576 (returned by geteuid/getegid, now in make_uid/make_gid),
577 the real ID (return by getuid/getgid, now in user_uid/user_gid),
578 or the saved set ID (what the effective ID was before this set-ID
579 executable (make) was exec'd). */
581 if (setuid (user_uid) < 0)
582 pfatal_with_name ("user_access: setuid");
584 #else /* HAVE_SETREUID. */
586 /* In 4BSD, the setreuid/setregid calls set both the real and effective IDs.
587 They may be set to themselves or each other. So you have two alternatives
588 at any one time. If you use setuid/setgid, the effective will be set to
589 the real, leaving only one alternative. Using setreuid/setregid, however,
590 you can toggle between your two alternatives by swapping the values in a
591 single setreuid or setregid call. */
593 if (setreuid (make_uid, user_uid) < 0)
594 pfatal_with_name ("user_access: setreuid");
596 #endif /* Not HAVE_SETREUID. */
597 #endif /* HAVE_SETEUID. */
599 #ifdef HAVE_SETEGID
600 if (setegid (user_gid) < 0)
601 pfatal_with_name ("user_access: setegid");
602 #else
603 #ifndef HAVE_SETREGID
604 if (setgid (user_gid) < 0)
605 pfatal_with_name ("user_access: setgid");
606 #else
607 if (setregid (make_gid, user_gid) < 0)
608 pfatal_with_name ("user_access: setregid");
609 #endif
610 #endif
612 current_access = user;
614 log_access ("User");
616 #endif /* GETLOADAVG_PRIVILEGED */
619 /* Give the process appropriate permissions for access to
620 make data (i.e., the load average). */
621 void
622 make_access ()
624 #ifdef GETLOADAVG_PRIVILEGED
626 if (!access_inited)
627 init_access ();
629 if (current_access == make)
630 return;
632 /* See comments in user_access, above. */
634 #ifdef HAVE_SETEUID
635 if (seteuid (make_uid) < 0)
636 pfatal_with_name ("make_access: seteuid");
637 #else
638 #ifndef HAVE_SETREUID
639 if (setuid (make_uid) < 0)
640 pfatal_with_name ("make_access: setuid");
641 #else
642 if (setreuid (user_uid, make_uid) < 0)
643 pfatal_with_name ("make_access: setreuid");
644 #endif
645 #endif
647 #ifdef HAVE_SETEGID
648 if (setegid (make_gid) < 0)
649 pfatal_with_name ("make_access: setegid");
650 #else
651 #ifndef HAVE_SETREGID
652 if (setgid (make_gid) < 0)
653 pfatal_with_name ("make_access: setgid");
654 #else
655 if (setregid (user_gid, make_gid) < 0)
656 pfatal_with_name ("make_access: setregid");
657 #endif
658 #endif
660 current_access = make;
662 log_access ("Make");
664 #endif /* GETLOADAVG_PRIVILEGED */
667 /* Give the process appropriate permissions for a child process.
668 This is like user_access, but you can't get back to make_access. */
669 void
670 child_access ()
672 #ifdef GETLOADAVG_PRIVILEGED
674 if (!access_inited)
675 abort ();
677 /* Set both the real and effective UID and GID to the user's.
678 They cannot be changed back to make's. */
680 #ifndef HAVE_SETREUID
681 if (setuid (user_uid) < 0)
682 pfatal_with_name ("child_access: setuid");
683 #else
684 if (setreuid (user_uid, user_uid) < 0)
685 pfatal_with_name ("child_access: setreuid");
686 #endif
688 #ifndef HAVE_SETREGID
689 if (setgid (user_gid) < 0)
690 pfatal_with_name ("child_access: setgid");
691 #else
692 if (setregid (user_gid, user_gid) < 0)
693 pfatal_with_name ("child_access: setregid");
694 #endif
696 log_access ("Child");
698 #endif /* GETLOADAVG_PRIVILEGED */
701 #ifdef NEED_GET_PATH_MAX
702 unsigned int
703 get_path_max ()
705 static unsigned int value;
707 if (value == 0)
709 long int x = pathconf ("/", _PC_PATH_MAX);
710 if (x > 0)
711 value = x;
712 else
713 return MAXPATHLEN;
716 return value;
718 #endif
720 /* On some systems, stat can return EINTR. */
723 safe_stat (name, buf)
724 char *name;
725 struct stat *buf;
727 int ret;
729 #ifdef EINTR
731 #endif
732 ret = stat (name, buf);
733 #ifdef EINTR
734 while (ret < 0 && errno == EINTR);
735 #endif
737 return ret;