2003-03-13 Aldy Hernandez <aldyh@redhat.com>
[official-gcc.git] / gcc / cppfiles.c
blob9bcdb9edb5d799a5298ffcebf56e216084b5e18a
1 /* Part of CPP library. (include file handling)
2 Copyright (C) 1986, 1987, 1989, 1992, 1993, 1994, 1995, 1998,
3 1999, 2000, 2001, 2002, 2003 Free Software Foundation, Inc.
4 Written by Per Bothner, 1994.
5 Based on CCCP program by Paul Rubin, June 1986
6 Adapted to ANSI C, Richard Stallman, Jan 1987
7 Split out of cpplib.c, Zack Weinberg, Oct 1998
9 This program is free software; you can redistribute it and/or modify it
10 under the terms of the GNU General Public License as published by the
11 Free Software Foundation; either version 2, or (at your option) any
12 later version.
14 This program is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
19 You should have received a copy of the GNU General Public License
20 along with this program; if not, write to the Free Software
21 Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
23 #include "config.h"
24 #include "system.h"
25 #include <dirent.h>
26 #include "coretypes.h"
27 #include "tm.h"
28 #include "cpplib.h"
29 #include "cpphash.h"
30 #include "intl.h"
31 #include "mkdeps.h"
32 #include "splay-tree.h"
33 #ifdef ENABLE_VALGRIND_CHECKING
34 # ifdef HAVE_MEMCHECK_H
35 # include <memcheck.h>
36 # else
37 # include <valgrind.h>
38 # endif
39 #else
40 /* Avoid #ifdef:s when we can help it. */
41 #define VALGRIND_DISCARD(x)
42 #endif
44 #ifdef HAVE_MMAP_FILE
45 # include <sys/mman.h>
46 # ifndef MMAP_THRESHOLD
47 # define MMAP_THRESHOLD 3 /* Minimum page count to mmap the file. */
48 # endif
49 # if MMAP_THRESHOLD
50 # define TEST_THRESHOLD(size, pagesize) \
51 (size / pagesize >= MMAP_THRESHOLD && (size % pagesize) != 0)
52 /* Use mmap if the file is big enough to be worth it (controlled
53 by MMAP_THRESHOLD) and if we can safely count on there being
54 at least one readable NUL byte after the end of the file's
55 contents. This is true for all tested operating systems when
56 the file size is not an exact multiple of the page size. */
57 # ifndef __CYGWIN__
58 # define SHOULD_MMAP(size, pagesize) TEST_THRESHOLD (size, pagesize)
59 # else
60 # define WIN32_LEAN_AND_MEAN
61 # include <windows.h>
62 /* Cygwin can't correctly emulate mmap under Windows 9x style systems so
63 disallow use of mmap on those systems. Windows 9x does not zero fill
64 memory at EOF and beyond, as required. */
65 # define SHOULD_MMAP(size, pagesize) ((GetVersion() & 0x80000000) \
66 ? 0 : TEST_THRESHOLD (size, pagesize))
67 # endif
68 # endif
70 #else /* No MMAP_FILE */
71 # undef MMAP_THRESHOLD
72 # define MMAP_THRESHOLD 0
73 #endif
75 #ifndef O_BINARY
76 # define O_BINARY 0
77 #endif
79 /* If errno is inspected immediately after a system call fails, it will be
80 nonzero, and no error number will ever be zero. */
81 #ifndef ENOENT
82 # define ENOENT 0
83 #endif
84 #ifndef ENOTDIR
85 # define ENOTDIR 0
86 #endif
88 /* Suppress warning about function macros used w/o arguments in traditional
89 C. It is unlikely that glibc's strcmp macro helps this file at all. */
90 #undef strcmp
92 /* This structure is used for the table of all includes. */
93 struct include_file {
94 const char *name; /* actual path name of file */
95 const char *header_name; /* the original header found */
96 const cpp_hashnode *cmacro; /* macro, if any, preventing reinclusion. */
97 const struct cpp_path *foundhere;
98 /* location in search path where file was
99 found, for #include_next and sysp. */
100 const unsigned char *buffer; /* pointer to cached file contents */
101 struct stat st; /* copy of stat(2) data for file */
102 int fd; /* fd open on file (short term storage only) */
103 int err_no; /* errno obtained if opening a file failed */
104 unsigned short include_count; /* number of times file has been read */
105 unsigned short refcnt; /* number of stacked buffers using this file */
106 unsigned char mapped; /* file buffer is mmapped */
107 unsigned char pch; /* 0: file not known to be a PCH.
108 1: file is a PCH
109 (on return from find_include_file).
110 2: file is not and never will be a valid
111 precompiled header.
112 3: file is always a valid precompiled
113 header. */
116 /* Variable length record files on VMS will have a stat size that includes
117 record control characters that won't be included in the read size. */
118 #ifdef VMS
119 # define FAB_C_VAR 2 /* variable length records (see Starlet fabdef.h) */
120 # define STAT_SIZE_TOO_BIG(ST) ((ST).st_fab_rfm == FAB_C_VAR)
121 #else
122 # define STAT_SIZE_TOO_BIG(ST) 0
123 #endif
125 /* The cmacro works like this: If it's NULL, the file is to be
126 included again. If it's NEVER_REREAD, the file is never to be
127 included again. Otherwise it is a macro hashnode, and the file is
128 to be included again if the macro is defined. */
129 #define NEVER_REREAD ((const cpp_hashnode *) -1)
130 #define DO_NOT_REREAD(inc) \
131 ((inc)->cmacro && ((inc)->cmacro == NEVER_REREAD \
132 || (inc)->cmacro->type == NT_MACRO))
133 #define NO_INCLUDE_PATH ((struct include_file *) -1)
134 #define INCLUDE_PCH_P(F) (((F)->pch & 1) != 0)
136 static struct file_name_map *read_name_map
137 PARAMS ((cpp_reader *, const char *));
138 static char *read_filename_string PARAMS ((int, FILE *));
139 static char *remap_filename PARAMS ((cpp_reader *, char *,
140 struct cpp_path *));
141 static struct cpp_path *search_from PARAMS ((cpp_reader *,
142 enum include_type));
143 static struct include_file *
144 find_include_file PARAMS ((cpp_reader *, const cpp_token *,
145 enum include_type));
146 static struct include_file *open_file PARAMS ((cpp_reader *, const char *));
147 static struct include_file *validate_pch PARAMS ((cpp_reader *,
148 const char *,
149 const char *));
150 static struct include_file *open_file_pch PARAMS ((cpp_reader *,
151 const char *));
152 static int read_include_file PARAMS ((cpp_reader *, struct include_file *));
153 static bool stack_include_file PARAMS ((cpp_reader *, struct include_file *));
154 static void purge_cache PARAMS ((struct include_file *));
155 static void destroy_node PARAMS ((splay_tree_value));
156 static int report_missing_guard PARAMS ((splay_tree_node, void *));
157 static splay_tree_node find_or_create_entry PARAMS ((cpp_reader *,
158 const char *));
159 static void handle_missing_header PARAMS ((cpp_reader *, const char *, int));
160 static int remove_component_p PARAMS ((const char *));
162 /* Set up the splay tree we use to store information about all the
163 file names seen in this compilation. We also have entries for each
164 file we tried to open but failed; this saves system calls since we
165 don't try to open it again in future.
167 The key of each node is the file name, after processing by
168 cpp_simplify_path. The path name may or may not be absolute.
169 The path string has been malloced, as is automatically freed by
170 registering free () as the splay tree key deletion function.
172 A node's value is a pointer to a struct include_file, and is never
173 NULL. */
174 void
175 _cpp_init_includes (pfile)
176 cpp_reader *pfile;
178 pfile->all_include_files
179 = splay_tree_new ((splay_tree_compare_fn) strcmp,
180 (splay_tree_delete_key_fn) free,
181 destroy_node);
184 /* Tear down the splay tree. */
185 void
186 _cpp_cleanup_includes (pfile)
187 cpp_reader *pfile;
189 splay_tree_delete (pfile->all_include_files);
192 /* Free a node. The path string is automatically freed. */
193 static void
194 destroy_node (v)
195 splay_tree_value v;
197 struct include_file *f = (struct include_file *) v;
199 if (f)
201 purge_cache (f);
202 free (f);
206 /* Mark a file to not be reread (e.g. #import, read failure). */
207 void
208 _cpp_never_reread (file)
209 struct include_file *file;
211 file->cmacro = NEVER_REREAD;
214 /* Lookup a filename, which is simplified after making a copy, and
215 create an entry if none exists. */
216 static splay_tree_node
217 find_or_create_entry (pfile, fname)
218 cpp_reader *pfile;
219 const char *fname;
221 splay_tree_node node;
222 struct include_file *file;
223 char *name = xstrdup (fname);
225 cpp_simplify_path (name);
226 node = splay_tree_lookup (pfile->all_include_files, (splay_tree_key) name);
227 if (node)
228 free (name);
229 else
231 file = xcnew (struct include_file);
232 file->name = name;
233 file->header_name = name;
234 file->err_no = errno;
235 node = splay_tree_insert (pfile->all_include_files,
236 (splay_tree_key) file->name,
237 (splay_tree_value) file);
240 return node;
243 /* Enter a file name in the splay tree, for the sake of cpp_included. */
244 void
245 _cpp_fake_include (pfile, fname)
246 cpp_reader *pfile;
247 const char *fname;
249 find_or_create_entry (pfile, fname);
252 /* Given a file name, look it up in the cache; if there is no entry,
253 create one with a non-NULL value (regardless of success in opening
254 the file). If the file doesn't exist or is inaccessible, this
255 entry is flagged so we don't attempt to open it again in the
256 future. If the file isn't open, open it. The empty string is
257 interpreted as stdin.
259 Returns an include_file structure with an open file descriptor on
260 success, or NULL on failure. */
261 static struct include_file *
262 open_file (pfile, filename)
263 cpp_reader *pfile;
264 const char *filename;
266 splay_tree_node nd = find_or_create_entry (pfile, filename);
267 struct include_file *file = (struct include_file *) nd->value;
269 if (file->err_no)
271 /* Ugh. handle_missing_header () needs errno to be set. */
272 errno = file->err_no;
273 return 0;
276 /* Don't reopen an idempotent file. */
277 if (DO_NOT_REREAD (file))
278 return file;
280 /* Don't reopen one which is already loaded. */
281 if (file->buffer != NULL)
282 return file;
284 /* We used to open files in nonblocking mode, but that caused more
285 problems than it solved. Do take care not to acquire a
286 controlling terminal by mistake (this can't happen on sane
287 systems, but paranoia is a virtue).
289 Use the three-argument form of open even though we aren't
290 specifying O_CREAT, to defend against broken system headers.
292 O_BINARY tells some runtime libraries (notably DJGPP) not to do
293 newline translation; we can handle DOS line breaks just fine
294 ourselves.
296 Special case: the empty string is translated to stdin. */
298 if (filename[0] == '\0')
300 file->fd = 0;
301 #ifdef __DJGPP__
302 /* For DJGPP redirected input is opened in text mode. Change it
303 to binary mode. */
304 if (! isatty (file->fd))
305 setmode (file->fd, O_BINARY);
306 #endif
308 else
309 file->fd = open (file->name, O_RDONLY | O_NOCTTY | O_BINARY, 0666);
311 if (file->fd != -1 && fstat (file->fd, &file->st) == 0)
313 if (!S_ISDIR (file->st.st_mode))
314 return file;
316 /* If it's a directory, we return null and continue the search
317 as the file we're looking for may appear elsewhere in the
318 search path. */
319 errno = ENOENT;
320 close (file->fd);
321 file->fd = -1;
324 file->err_no = errno;
325 return 0;
328 static struct include_file *
329 validate_pch (pfile, filename, pchname)
330 cpp_reader *pfile;
331 const char *filename;
332 const char *pchname;
334 struct include_file * file;
336 file = open_file (pfile, pchname);
337 if (file == NULL)
338 return NULL;
339 if ((file->pch & 2) == 0)
340 file->pch = pfile->cb.valid_pch (pfile, pchname, file->fd);
341 if (INCLUDE_PCH_P (file))
343 char *f = xstrdup (filename);
344 cpp_simplify_path (f);
345 file->header_name = f;
346 return file;
348 close (file->fd);
349 file->fd = -1;
350 return NULL;
354 /* Like open_file, but also look for a precompiled header if (a) one exists
355 and (b) it is valid. */
356 static struct include_file *
357 open_file_pch (pfile, filename)
358 cpp_reader *pfile;
359 const char *filename;
361 if (filename[0] != '\0'
362 && pfile->cb.valid_pch != NULL)
364 size_t namelen = strlen (filename);
365 char *pchname = alloca (namelen + 5);
366 struct include_file * file;
367 splay_tree_node nd;
369 memcpy (pchname, filename, namelen);
370 memcpy (pchname + namelen, ".gch", 5);
372 nd = find_or_create_entry (pfile, pchname);
373 file = (struct include_file *) nd->value;
375 if (file != NULL)
377 if (stat (file->name, &file->st) == 0 && S_ISDIR (file->st.st_mode))
379 DIR * thedir;
380 struct dirent *d;
381 size_t subname_len = namelen + 64;
382 char *subname = xmalloc (subname_len);
384 thedir = opendir (pchname);
385 if (thedir == NULL)
386 return NULL;
387 memcpy (subname, pchname, namelen + 4);
388 subname[namelen+4] = '/';
389 while ((d = readdir (thedir)) != NULL)
391 if (strlen (d->d_name) + namelen + 7 > subname_len)
393 subname_len = strlen (d->d_name) + namelen + 64;
394 subname = xrealloc (subname, subname_len);
396 strcpy (subname + namelen + 5, d->d_name);
397 file = validate_pch (pfile, filename, subname);
398 if (file)
399 break;
401 closedir (thedir);
402 free (subname);
404 else
405 file = validate_pch (pfile, filename, pchname);
406 if (file)
407 return file;
410 return open_file (pfile, filename);
413 /* Place the file referenced by INC into a new buffer on the buffer
414 stack, unless there are errors, or the file is not re-included
415 because of e.g. multiple-include guards. Returns true if a buffer
416 is stacked. */
417 static bool
418 stack_include_file (pfile, inc)
419 cpp_reader *pfile;
420 struct include_file *inc;
422 cpp_buffer *fp;
423 int sysp;
424 const char *filename;
426 if (DO_NOT_REREAD (inc))
427 return false;
429 sysp = MAX ((pfile->map ? pfile->map->sysp : 0),
430 (inc->foundhere ? inc->foundhere->sysp : 0));
432 /* Add the file to the dependencies on its first inclusion. */
433 if (CPP_OPTION (pfile, deps.style) > !!sysp && !inc->include_count)
435 if (pfile->buffer || CPP_OPTION (pfile, deps.ignore_main_file) == 0)
436 deps_add_dep (pfile->deps, inc->name);
439 /* PCH files get dealt with immediately. */
440 if (INCLUDE_PCH_P (inc))
442 pfile->cb.read_pch (pfile, inc->name, inc->fd, inc->header_name);
443 close (inc->fd);
444 inc->fd = -1;
445 return false;
448 /* Not in cache? */
449 if (! inc->buffer)
451 if (read_include_file (pfile, inc))
453 /* If an error occurs, do not try to read this file again. */
454 _cpp_never_reread (inc);
455 return false;
457 /* Mark a regular, zero-length file never-reread. We read it,
458 NUL-terminate it, and stack it once, so preprocessing a main
459 file of zero length does not raise an error. */
460 if (S_ISREG (inc->st.st_mode) && inc->st.st_size == 0)
461 _cpp_never_reread (inc);
462 close (inc->fd);
463 inc->fd = -1;
466 if (pfile->buffer)
467 /* We don't want MI guard advice for the main file. */
468 inc->include_count++;
470 /* Push a buffer. */
471 fp = cpp_push_buffer (pfile, inc->buffer, inc->st.st_size,
472 /* from_stage3 */ CPP_OPTION (pfile, preprocessed), 0);
473 fp->inc = inc;
474 fp->inc->refcnt++;
476 /* Initialize controlling macro state. */
477 pfile->mi_valid = true;
478 pfile->mi_cmacro = 0;
480 /* Generate the call back. */
481 filename = inc->name;
482 if (*filename == '\0')
483 filename = "<stdin>";
484 _cpp_do_file_change (pfile, LC_ENTER, filename, 1, sysp);
486 return true;
489 /* Read the file referenced by INC into the file cache.
491 If fd points to a plain file, we might be able to mmap it; we can
492 definitely allocate the buffer all at once. If fd is a pipe or
493 terminal, we can't do either. If fd is something weird, like a
494 block device, we don't want to read it at all.
496 Unfortunately, different systems use different st.st_mode values
497 for pipes: some have S_ISFIFO, some S_ISSOCK, some are buggy and
498 zero the entire struct stat except a couple fields. Hence we don't
499 even try to figure out what something is, except for plain files
500 and block devices.
502 FIXME: Flush file cache and try again if we run out of memory. */
503 static int
504 read_include_file (pfile, inc)
505 cpp_reader *pfile;
506 struct include_file *inc;
508 ssize_t size, offset, count;
509 uchar *buf;
510 #if MMAP_THRESHOLD
511 static int pagesize = -1;
512 #endif
514 if (S_ISREG (inc->st.st_mode))
516 /* off_t might have a wider range than ssize_t - in other words,
517 the max size of a file might be bigger than the address
518 space. We can't handle a file that large. (Anyone with
519 a single source file bigger than 2GB needs to rethink
520 their coding style.) Some systems (e.g. AIX 4.1) define
521 SSIZE_MAX to be much smaller than the actual range of the
522 type. Use INTTYPE_MAXIMUM unconditionally to ensure this
523 does not bite us. */
524 if (inc->st.st_size > INTTYPE_MAXIMUM (ssize_t))
526 cpp_error (pfile, DL_ERROR, "%s is too large", inc->name);
527 goto fail;
529 size = inc->st.st_size;
531 inc->mapped = 0;
532 #if MMAP_THRESHOLD
533 if (pagesize == -1)
534 pagesize = getpagesize ();
536 if (SHOULD_MMAP (size, pagesize))
538 buf = (uchar *) mmap (0, size, PROT_READ, MAP_PRIVATE, inc->fd, 0);
539 if (buf == (uchar *) -1)
540 goto perror_fail;
542 /* We must tell Valgrind that the byte at buf[size] is actually
543 readable. Discard the handle to avoid handle leak. */
544 VALGRIND_DISCARD (VALGRIND_MAKE_READABLE (buf + size, 1));
546 inc->mapped = 1;
548 else
549 #endif
551 buf = (uchar *) xmalloc (size + 1);
552 offset = 0;
553 while (offset < size)
555 count = read (inc->fd, buf + offset, size - offset);
556 if (count < 0)
557 goto perror_fail;
558 if (count == 0)
560 if (!STAT_SIZE_TOO_BIG (inc->st))
561 cpp_error (pfile, DL_WARNING,
562 "%s is shorter than expected", inc->name);
563 size = offset;
564 buf = xrealloc (buf, size + 1);
565 inc->st.st_size = size;
566 break;
568 offset += count;
570 /* The lexer requires that the buffer be NUL-terminated. */
571 buf[size] = '\0';
574 else if (S_ISBLK (inc->st.st_mode))
576 cpp_error (pfile, DL_ERROR, "%s is a block device", inc->name);
577 goto fail;
579 else
581 /* 8 kilobytes is a sensible starting size. It ought to be
582 bigger than the kernel pipe buffer, and it's definitely
583 bigger than the majority of C source files. */
584 size = 8 * 1024;
586 buf = (uchar *) xmalloc (size + 1);
587 offset = 0;
588 while ((count = read (inc->fd, buf + offset, size - offset)) > 0)
590 offset += count;
591 if (offset == size)
593 size *= 2;
594 buf = xrealloc (buf, size + 1);
597 if (count < 0)
598 goto perror_fail;
600 if (offset + 1 < size)
601 buf = xrealloc (buf, offset + 1);
603 /* The lexer requires that the buffer be NUL-terminated. */
604 buf[offset] = '\0';
605 inc->st.st_size = offset;
608 inc->buffer = buf;
609 return 0;
611 perror_fail:
612 cpp_errno (pfile, DL_ERROR, inc->name);
613 fail:
614 return 1;
617 /* Drop INC's buffer from memory, if we are unlikely to need it again. */
618 static void
619 purge_cache (inc)
620 struct include_file *inc;
622 if (inc->buffer)
624 #if MMAP_THRESHOLD
625 if (inc->mapped)
627 /* Undo the previous annotation for the
628 known-zero-byte-after-mmap. Discard the handle to avoid
629 handle leak. */
630 VALGRIND_DISCARD (VALGRIND_MAKE_NOACCESS (inc->buffer
631 + inc->st.st_size, 1));
632 munmap ((PTR) inc->buffer, inc->st.st_size);
634 else
635 #endif
636 free ((PTR) inc->buffer);
637 inc->buffer = NULL;
641 /* Return 1 if the file named by FNAME has been included before in
642 any context, 0 otherwise. */
644 cpp_included (pfile, fname)
645 cpp_reader *pfile;
646 const char *fname;
648 struct cpp_path *path;
649 char *name, *n;
650 splay_tree_node nd;
652 if (IS_ABSOLUTE_PATHNAME (fname))
654 /* Just look it up. */
655 nd = splay_tree_lookup (pfile->all_include_files, (splay_tree_key) fname);
656 return (nd && nd->value);
659 /* Search directory path for the file. */
660 name = (char *) alloca (strlen (fname) + pfile->max_include_len + 2);
661 for (path = pfile->quote_include; path; path = path->next)
663 memcpy (name, path->name, path->len);
664 name[path->len] = '/';
665 strcpy (&name[path->len + 1], fname);
666 if (CPP_OPTION (pfile, remap))
667 n = remap_filename (pfile, name, path);
668 else
669 n = name;
671 nd = splay_tree_lookup (pfile->all_include_files, (splay_tree_key) n);
672 if (nd && nd->value)
673 return 1;
675 return 0;
678 /* Search for HEADER. Return 0 if there is no such file (or it's
679 un-openable), in which case an error code will be in errno. If
680 there is no include path to use it returns NO_INCLUDE_PATH,
681 otherwise an include_file structure. If this request originates
682 from a directive of TYPE #include_next, set INCLUDE_NEXT to true. */
683 static struct include_file *
684 find_include_file (pfile, header, type)
685 cpp_reader *pfile;
686 const cpp_token *header;
687 enum include_type type;
689 const char *fname = (const char *) header->val.str.text;
690 struct cpp_path *path;
691 struct include_file *file;
692 char *name, *n;
694 if (IS_ABSOLUTE_PATHNAME (fname))
695 return open_file_pch (pfile, fname);
697 /* For #include_next, skip in the search path past the dir in which
698 the current file was found, but if it was found via an absolute
699 path use the normal search logic. */
700 if (type == IT_INCLUDE_NEXT && pfile->buffer->inc->foundhere)
701 path = pfile->buffer->inc->foundhere->next;
702 else if (header->type == CPP_HEADER_NAME)
703 path = pfile->bracket_include;
704 else
705 path = search_from (pfile, type);
707 if (path == NULL)
709 cpp_error (pfile, DL_ERROR, "no include path in which to find %s",
710 fname);
711 return NO_INCLUDE_PATH;
714 /* Search directory path for the file. */
715 name = (char *) alloca (strlen (fname) + pfile->max_include_len + 2);
716 for (; path; path = path->next)
718 int len = path->len;
719 memcpy (name, path->name, len);
720 /* Don't turn / into // or // into ///; // may be a namespace
721 escape. */
722 if (name[len-1] == '/')
723 len--;
724 name[len] = '/';
725 strcpy (&name[len + 1], fname);
726 if (CPP_OPTION (pfile, remap))
727 n = remap_filename (pfile, name, path);
728 else
729 n = name;
731 file = open_file_pch (pfile, n);
732 if (file)
734 file->foundhere = path;
735 return file;
739 return 0;
742 /* Not everyone who wants to set system-header-ness on a buffer can
743 see the details of a buffer. This is an exported interface because
744 fix-header needs it. */
745 void
746 cpp_make_system_header (pfile, syshdr, externc)
747 cpp_reader *pfile;
748 int syshdr, externc;
750 int flags = 0;
752 /* 1 = system header, 2 = system header to be treated as C. */
753 if (syshdr)
754 flags = 1 + (externc != 0);
755 _cpp_do_file_change (pfile, LC_RENAME, pfile->map->to_file,
756 SOURCE_LINE (pfile->map, pfile->line), flags);
759 /* Allow the client to rename the current file. Used by the front end
760 to achieve pseudo-file names like <built-in>. */
761 void
762 cpp_rename_file (pfile, new_name)
763 cpp_reader *pfile;
764 const char *new_name;
766 _cpp_do_file_change (pfile, LC_RENAME, new_name, 1, 0);
769 /* Report on all files that might benefit from a multiple include guard.
770 Triggered by -H. */
771 void
772 _cpp_report_missing_guards (pfile)
773 cpp_reader *pfile;
775 int banner = 0;
776 splay_tree_foreach (pfile->all_include_files, report_missing_guard,
777 (PTR) &banner);
780 /* Callback function for splay_tree_foreach(). */
781 static int
782 report_missing_guard (n, b)
783 splay_tree_node n;
784 void *b;
786 struct include_file *f = (struct include_file *) n->value;
787 int *bannerp = (int *) b;
789 if (f && f->cmacro == 0 && f->include_count == 1)
791 if (*bannerp == 0)
793 fputs (_("Multiple include guards may be useful for:\n"), stderr);
794 *bannerp = 1;
796 fputs (f->name, stderr);
797 putc ('\n', stderr);
799 return 0;
802 /* Create a dependency for file FNAME, or issue an error message as
803 appropriate. ANGLE_BRACKETS is nonzero if the file was bracketed
804 like <..>. */
805 static void
806 handle_missing_header (pfile, fname, angle_brackets)
807 cpp_reader *pfile;
808 const char *fname;
809 int angle_brackets;
811 bool print_dep
812 = CPP_OPTION (pfile, deps.style) > (angle_brackets || pfile->map->sysp);
814 if (CPP_OPTION (pfile, deps.missing_files) && print_dep)
815 deps_add_dep (pfile->deps, fname);
816 /* If -M was specified, then don't count this as an error, because
817 we can still produce correct output. Otherwise, we can't produce
818 correct output, because there may be dependencies we need inside
819 the missing file, and we don't know what directory this missing
820 file exists in. */
821 else
822 cpp_errno (pfile, CPP_OPTION (pfile, deps.style) && ! print_dep
823 ? DL_WARNING: DL_ERROR, fname);
826 /* Handles #include-family directives (distinguished by TYPE),
827 including HEADER, and the command line -imacros and -include.
828 Returns true if a buffer was stacked. */
829 bool
830 _cpp_execute_include (pfile, header, type)
831 cpp_reader *pfile;
832 const cpp_token *header;
833 enum include_type type;
835 bool stacked = false;
836 struct include_file *inc = find_include_file (pfile, header, type);
838 if (inc == 0)
839 handle_missing_header (pfile, (const char *) header->val.str.text,
840 header->type == CPP_HEADER_NAME);
841 else if (inc != NO_INCLUDE_PATH)
843 stacked = stack_include_file (pfile, inc);
845 if (type == IT_IMPORT)
846 _cpp_never_reread (inc);
849 return stacked;
852 /* Locate HEADER, and determine whether it is newer than the current
853 file. If it cannot be located or dated, return -1, if it is newer
854 newer, return 1, otherwise 0. */
856 _cpp_compare_file_date (pfile, header)
857 cpp_reader *pfile;
858 const cpp_token *header;
860 struct include_file *inc = find_include_file (pfile, header, 0);
862 if (inc == NULL || inc == NO_INCLUDE_PATH)
863 return -1;
865 if (inc->fd > 0)
867 close (inc->fd);
868 inc->fd = -1;
871 return inc->st.st_mtime > pfile->buffer->inc->st.st_mtime;
875 /* Push an input buffer and load it up with the contents of FNAME. If
876 FNAME is "", read standard input. Return true if a buffer was
877 stacked. */
878 bool
879 _cpp_read_file (pfile, fname)
880 cpp_reader *pfile;
881 const char *fname;
883 /* This uses open_file, because we don't allow a PCH to be used as
884 the toplevel compilation (that would prevent re-compiling an
885 existing PCH without deleting it first). */
886 struct include_file *f = open_file (pfile, fname);
888 if (f == NULL)
890 cpp_errno (pfile, DL_ERROR, fname);
891 return false;
894 return stack_include_file (pfile, f);
897 /* Pushes the given file onto the buffer stack. Returns nonzero if
898 successful. */
899 bool
900 cpp_push_include (pfile, filename)
901 cpp_reader *pfile;
902 const char *filename;
904 cpp_token header;
906 header.type = CPP_STRING;
907 header.val.str.text = (const unsigned char *) filename;
908 header.val.str.len = strlen (filename);
909 /* Make the command line directive take up a line. */
910 pfile->line++;
912 return _cpp_execute_include (pfile, &header, IT_CMDLINE);
915 /* Do appropriate cleanup when a file INC's buffer is popped off the
916 input stack. */
917 void
918 _cpp_pop_file_buffer (pfile, inc)
919 cpp_reader *pfile;
920 struct include_file *inc;
922 /* Record the inclusion-preventing macro, which could be NULL
923 meaning no controlling macro. */
924 if (pfile->mi_valid && inc->cmacro == NULL)
925 inc->cmacro = pfile->mi_cmacro;
927 /* Invalidate control macros in the #including file. */
928 pfile->mi_valid = false;
930 inc->refcnt--;
931 if (inc->refcnt == 0 && DO_NOT_REREAD (inc))
932 purge_cache (inc);
935 /* Returns the first place in the include chain to start searching for
936 "" includes. This involves stripping away the basename of the
937 current file, unless -I- was specified.
939 If we're handling -include or -imacros, use the "" chain, but with
940 the preprocessor's cwd prepended. */
941 static struct cpp_path *
942 search_from (pfile, type)
943 cpp_reader *pfile;
944 enum include_type type;
946 cpp_buffer *buffer = pfile->buffer;
947 unsigned int dlen;
949 /* Command line uses the cwd, and does not cache the result. */
950 if (type == IT_CMDLINE)
951 goto use_cwd;
953 /* Ignore the current file's directory? */
954 if (pfile->quote_ignores_source_dir)
955 return pfile->quote_include;
957 if (! buffer->search_cached)
959 buffer->search_cached = 1;
961 dlen = lbasename (buffer->inc->name) - buffer->inc->name;
963 if (dlen)
965 /* We don't guarantee NAME is null-terminated. This saves
966 allocating and freeing memory. Drop a trailing '/'. */
967 buffer->dir.name = (char *) buffer->inc->name;
968 if (dlen > 1)
969 dlen--;
971 else
973 use_cwd:
974 buffer->dir.name = (char *) ".";
975 dlen = 1;
978 if (dlen > pfile->max_include_len)
979 pfile->max_include_len = dlen;
981 buffer->dir.len = dlen;
982 buffer->dir.next = pfile->quote_include;
983 buffer->dir.sysp = pfile->map->sysp;
986 return &buffer->dir;
989 /* The file_name_map structure holds a mapping of file names for a
990 particular directory. This mapping is read from the file named
991 FILE_NAME_MAP_FILE in that directory. Such a file can be used to
992 map filenames on a file system with severe filename restrictions,
993 such as DOS. The format of the file name map file is just a series
994 of lines with two tokens on each line. The first token is the name
995 to map, and the second token is the actual name to use. */
996 struct file_name_map {
997 struct file_name_map *map_next;
998 char *map_from;
999 char *map_to;
1002 #define FILE_NAME_MAP_FILE "header.gcc"
1004 /* Read a space delimited string of unlimited length from a stdio
1005 file F. */
1006 static char *
1007 read_filename_string (ch, f)
1008 int ch;
1009 FILE *f;
1011 char *alloc, *set;
1012 int len;
1014 len = 20;
1015 set = alloc = xmalloc (len + 1);
1016 if (! is_space (ch))
1018 *set++ = ch;
1019 while ((ch = getc (f)) != EOF && ! is_space (ch))
1021 if (set - alloc == len)
1023 len *= 2;
1024 alloc = xrealloc (alloc, len + 1);
1025 set = alloc + len / 2;
1027 *set++ = ch;
1030 *set = '\0';
1031 ungetc (ch, f);
1032 return alloc;
1035 /* This structure holds a linked list of file name maps, one per directory. */
1036 struct file_name_map_list {
1037 struct file_name_map_list *map_list_next;
1038 char *map_list_name;
1039 struct file_name_map *map_list_map;
1042 /* Read the file name map file for DIRNAME. */
1043 static struct file_name_map *
1044 read_name_map (pfile, dirname)
1045 cpp_reader *pfile;
1046 const char *dirname;
1048 struct file_name_map_list *map_list_ptr;
1049 char *name;
1050 FILE *f;
1052 /* Check the cache of directories, and mappings in their remap file. */
1053 for (map_list_ptr = CPP_OPTION (pfile, map_list); map_list_ptr;
1054 map_list_ptr = map_list_ptr->map_list_next)
1055 if (! strcmp (map_list_ptr->map_list_name, dirname))
1056 return map_list_ptr->map_list_map;
1058 map_list_ptr = ((struct file_name_map_list *)
1059 xmalloc (sizeof (struct file_name_map_list)));
1060 map_list_ptr->map_list_name = xstrdup (dirname);
1062 /* The end of the list ends in NULL. */
1063 map_list_ptr->map_list_map = NULL;
1065 name = (char *) alloca (strlen (dirname) + strlen (FILE_NAME_MAP_FILE) + 2);
1066 strcpy (name, dirname);
1067 if (*dirname)
1068 strcat (name, "/");
1069 strcat (name, FILE_NAME_MAP_FILE);
1070 f = fopen (name, "r");
1072 /* Silently return NULL if we cannot open. */
1073 if (f)
1075 int ch;
1077 while ((ch = getc (f)) != EOF)
1079 char *from, *to;
1080 struct file_name_map *ptr;
1082 if (is_space (ch))
1083 continue;
1084 from = read_filename_string (ch, f);
1085 while ((ch = getc (f)) != EOF && is_hspace (ch))
1087 to = read_filename_string (ch, f);
1089 ptr = ((struct file_name_map *)
1090 xmalloc (sizeof (struct file_name_map)));
1091 ptr->map_from = from;
1093 /* Make the real filename absolute. */
1094 if (IS_ABSOLUTE_PATHNAME (to))
1095 ptr->map_to = to;
1096 else
1098 ptr->map_to = concat (dirname, "/", to, NULL);
1099 free (to);
1102 ptr->map_next = map_list_ptr->map_list_map;
1103 map_list_ptr->map_list_map = ptr;
1105 while ((ch = getc (f)) != '\n')
1106 if (ch == EOF)
1107 break;
1109 fclose (f);
1112 /* Add this information to the cache. */
1113 map_list_ptr->map_list_next = CPP_OPTION (pfile, map_list);
1114 CPP_OPTION (pfile, map_list) = map_list_ptr;
1116 return map_list_ptr->map_list_map;
1119 /* Remap an unsimplified path NAME based on the file_name_map (if any)
1120 for LOC. */
1121 static char *
1122 remap_filename (pfile, name, loc)
1123 cpp_reader *pfile;
1124 char *name;
1125 struct cpp_path *loc;
1127 struct file_name_map *map;
1128 const char *from, *p;
1129 char *dir;
1131 if (! loc->name_map)
1133 /* Get a null-terminated path. */
1134 char *dname = alloca (loc->len + 1);
1135 memcpy (dname, loc->name, loc->len);
1136 dname[loc->len] = '\0';
1138 loc->name_map = read_name_map (pfile, dname);
1139 if (! loc->name_map)
1140 return name;
1143 /* This works since NAME has not been simplified yet. */
1144 from = name + loc->len + 1;
1146 for (map = loc->name_map; map; map = map->map_next)
1147 if (!strcmp (map->map_from, from))
1148 return map->map_to;
1150 /* Try to find a mapping file for the particular directory we are
1151 looking in. Thus #include <sys/types.h> will look up sys/types.h
1152 in /usr/include/header.gcc and look up types.h in
1153 /usr/include/sys/header.gcc. */
1154 p = strrchr (name, '/');
1155 if (!p)
1156 return name;
1158 /* We know p != name as absolute paths don't call remap_filename. */
1159 if (p == name)
1160 cpp_error (pfile, DL_ICE, "absolute file name in remap_filename");
1162 dir = (char *) alloca (p - name + 1);
1163 memcpy (dir, name, p - name);
1164 dir[p - name] = '\0';
1165 from = p + 1;
1167 for (map = read_name_map (pfile, dir); map; map = map->map_next)
1168 if (! strcmp (map->map_from, from))
1169 return map->map_to;
1171 return name;
1174 /* Set the include chain for "" to QUOTE, for <> to BRACKET. If
1175 QUOTE_IGNORES_SOURCE_DIR, then "" includes do not look in the
1176 directory of the including file.
1178 If BRACKET does not lie in the QUOTE chain, it is set to QUOTE. */
1179 void
1180 cpp_set_include_chains (pfile, quote, bracket, quote_ignores_source_dir)
1181 cpp_reader *pfile;
1182 cpp_path *quote, *bracket;
1183 int quote_ignores_source_dir;
1185 pfile->quote_include = quote;
1186 pfile->bracket_include = quote;
1187 pfile->quote_ignores_source_dir = quote_ignores_source_dir;
1188 pfile->max_include_len = 0;
1190 for (; quote; quote = quote->next)
1192 quote->name_map = NULL;
1193 quote->len = strlen (quote->name);
1194 if (quote->len > pfile->max_include_len)
1195 pfile->max_include_len = quote->len;
1196 if (quote == bracket)
1197 pfile->bracket_include = bracket;
1201 /* Returns true if it is safe to remove the final component of path,
1202 when it is followed by a ".." component. We use lstat to avoid
1203 symlinks if we have it. If not, we can still catch errors with
1204 stat (). */
1205 static int
1206 remove_component_p (path)
1207 const char *path;
1209 struct stat s;
1210 int result;
1212 #ifdef HAVE_LSTAT
1213 result = lstat (path, &s);
1214 #else
1215 result = stat (path, &s);
1216 #endif
1218 /* There's no guarantee that errno will be unchanged, even on
1219 success. Cygwin's lstat(), for example, will often set errno to
1220 ENOSYS. In case of success, reset errno to zero. */
1221 if (result == 0)
1222 errno = 0;
1224 return result == 0 && S_ISDIR (s.st_mode);
1227 /* Simplify a path name in place, deleting redundant components. This
1228 reduces OS overhead and guarantees that equivalent paths compare
1229 the same (modulo symlinks).
1231 Transforms made:
1232 foo/bar/../quux foo/quux
1233 foo/./bar foo/bar
1234 foo//bar foo/bar
1235 /../quux /quux
1236 //quux //quux (POSIX allows leading // as a namespace escape)
1238 Guarantees no trailing slashes. All transforms reduce the length
1239 of the string. Returns PATH. errno is 0 if no error occurred;
1240 nonzero if an error occurred when using stat () or lstat (). */
1241 void
1242 cpp_simplify_path (path)
1243 char *path ATTRIBUTE_UNUSED;
1245 #ifndef VMS
1246 char *from, *to;
1247 char *base, *orig_base;
1248 int absolute = 0;
1250 errno = 0;
1251 /* Don't overflow the empty path by putting a '.' in it below. */
1252 if (*path == '\0')
1253 return;
1255 #if defined (HAVE_DOS_BASED_FILE_SYSTEM)
1256 /* Convert all backslashes to slashes. */
1257 for (from = path; *from; from++)
1258 if (*from == '\\') *from = '/';
1260 /* Skip over leading drive letter if present. */
1261 if (ISALPHA (path[0]) && path[1] == ':')
1262 from = to = &path[2];
1263 else
1264 from = to = path;
1265 #else
1266 from = to = path;
1267 #endif
1269 /* Remove redundant leading /s. */
1270 if (*from == '/')
1272 absolute = 1;
1273 to++;
1274 from++;
1275 if (*from == '/')
1277 if (*++from == '/')
1278 /* 3 or more initial /s are equivalent to 1 /. */
1279 while (*++from == '/');
1280 else
1281 /* On some hosts // differs from /; Posix allows this. */
1282 to++;
1286 base = orig_base = to;
1287 for (;;)
1289 int move_base = 0;
1291 while (*from == '/')
1292 from++;
1294 if (*from == '\0')
1295 break;
1297 if (*from == '.')
1299 if (from[1] == '\0')
1300 break;
1301 if (from[1] == '/')
1303 from += 2;
1304 continue;
1306 else if (from[1] == '.' && (from[2] == '/' || from[2] == '\0'))
1308 /* Don't simplify if there was no previous component. */
1309 if (absolute && orig_base == to)
1311 from += 2;
1312 continue;
1314 /* Don't simplify if the previous component was "../",
1315 or if an error has already occurred with (l)stat. */
1316 if (base != to && errno == 0)
1318 /* We don't back up if it's a symlink. */
1319 *to = '\0';
1320 if (remove_component_p (path))
1322 while (to > base && *to != '/')
1323 to--;
1324 from += 2;
1325 continue;
1328 move_base = 1;
1332 /* Add the component separator. */
1333 if (to > orig_base)
1334 *to++ = '/';
1336 /* Copy this component until the trailing null or '/'. */
1337 while (*from != '\0' && *from != '/')
1338 *to++ = *from++;
1340 if (move_base)
1341 base = to;
1344 /* Change the empty string to "." so that it is not treated as stdin.
1345 Null terminate. */
1346 if (to == path)
1347 *to++ = '.';
1348 *to = '\0';
1349 #else /* VMS */
1350 errno = 0;
1351 #endif /* !VMS */