No empty .Rs/.Re
[netbsd-mini2440.git] / gnu / dist / gcc4 / libcpp / files.c
blob91091968404e4a707ad1ffbb9e81a08478d77b0f
1 /* Part of CPP library. File handling.
2 Copyright (C) 1986, 1987, 1989, 1992, 1993, 1994, 1995, 1998,
3 1999, 2000, 2001, 2002, 2003, 2004, 2005 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
8 Reimplemented, Neil Booth, Jul 2003
10 This program is free software; you can redistribute it and/or modify it
11 under the terms of the GNU General Public License as published by the
12 Free Software Foundation; either version 2, or (at your option) any
13 later version.
15 This program is distributed in the hope that it will be useful,
16 but WITHOUT ANY WARRANTY; without even the implied warranty of
17 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 GNU General Public License for more details.
20 You should have received a copy of the GNU General Public License
21 along with this program; if not, write to the Free Software
22 Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */
24 #include "config.h"
25 #include "system.h"
26 #include "cpplib.h"
27 #include "internal.h"
28 #include "mkdeps.h"
29 #include "hashtab.h"
30 #include "md5.h"
31 #include "../gcc/defaults.h"
32 #include <dirent.h>
34 /* Variable length record files on VMS will have a stat size that includes
35 record control characters that won't be included in the read size. */
36 #ifdef VMS
37 # define FAB_C_VAR 2 /* variable length records (see Starlet fabdef.h) */
38 # define STAT_SIZE_RELIABLE(ST) ((ST).st_fab_rfm != FAB_C_VAR)
39 #else
40 # define STAT_SIZE_RELIABLE(ST) true
41 #endif
43 #ifdef __DJGPP__
44 #include <io.h>
45 /* For DJGPP redirected input is opened in text mode. */
46 # define set_stdin_to_binary_mode() \
47 if (! isatty (0)) setmode (0, O_BINARY)
48 #else
49 # define set_stdin_to_binary_mode() /* Nothing */
50 #endif
52 /* This structure represents a file searched for by CPP, whether it
53 exists or not. An instance may be pointed to by more than one
54 file_hash_entry; at present no reference count is kept. */
55 struct _cpp_file
57 /* Filename as given to #include or command line switch. */
58 const char *name;
60 /* The full path used to find the file. */
61 const char *path;
63 /* The full path of the pch file. */
64 const char *pchname;
66 /* The file's path with the basename stripped. NULL if it hasn't
67 been calculated yet. */
68 const char *dir_name;
70 /* Chain through all files. */
71 struct _cpp_file *next_file;
73 /* The contents of NAME after calling read_file(). */
74 const uchar *buffer;
76 /* The macro, if any, preventing re-inclusion. */
77 const cpp_hashnode *cmacro;
79 /* The directory in the search path where FILE was found. Used for
80 #include_next and determining whether a header is a system
81 header. */
82 cpp_dir *dir;
84 /* As filled in by stat(2) for the file. */
85 struct stat st;
87 /* File descriptor. Invalid if -1, otherwise open. */
88 int fd;
90 /* Zero if this file was successfully opened and stat()-ed,
91 otherwise errno obtained from failure. */
92 int err_no;
94 /* Number of times the file has been stacked for preprocessing. */
95 unsigned short stack_count;
97 /* If opened with #import or contains #pragma once. */
98 bool once_only;
100 /* If read() failed before. */
101 bool dont_read;
103 /* If this file is the main file. */
104 bool main_file;
106 /* If BUFFER above contains the true contents of the file. */
107 bool buffer_valid;
109 /* File is a PCH (on return from find_include_file). */
110 bool pch;
113 /* A singly-linked list for all searches for a given file name, with
114 its head pointed to by a slot in FILE_HASH. The file name is what
115 appeared between the quotes in a #include directive; it can be
116 determined implicitly from the hash table location or explicitly
117 from FILE->name.
119 FILE is a structure containing details about the file that was
120 found with that search, or details of how the search failed.
122 START_DIR is the starting location of the search in the include
123 chain. The current directories for "" includes are also hashed in
124 the hash table and therefore unique. Files that are looked up
125 without using a search path, such as absolute filenames and file
126 names from the command line share a special starting directory so
127 they don't cause cache hits with normal include-chain lookups.
129 If START_DIR is NULL then the entry is for a directory, not a file,
130 and the directory is in DIR. Since the starting point in a file
131 lookup chain is never NULL, this means that simple pointer
132 comparisons against START_DIR can be made to determine cache hits
133 in file lookups.
135 If a cache lookup fails because of e.g. an extra "./" in the path,
136 then nothing will break. It is just less efficient as CPP will
137 have to do more work re-preprocessing the file, and/or comparing
138 its contents against earlier once-only files.
140 struct file_hash_entry
142 struct file_hash_entry *next;
143 cpp_dir *start_dir;
144 union
146 _cpp_file *file;
147 cpp_dir *dir;
148 } u;
151 static bool open_file (_cpp_file *file);
152 static bool pch_open_file (cpp_reader *pfile, _cpp_file *file,
153 bool *invalid_pch);
154 static bool find_file_in_dir (cpp_reader *pfile, _cpp_file *file,
155 bool *invalid_pch);
156 static bool read_file_guts (cpp_reader *pfile, _cpp_file *file);
157 static bool read_file (cpp_reader *pfile, _cpp_file *file);
158 static bool should_stack_file (cpp_reader *, _cpp_file *file, bool import);
159 static struct cpp_dir *search_path_head (cpp_reader *, const char *fname,
160 int angle_brackets, enum include_type);
161 static const char *dir_name_of_file (_cpp_file *file);
162 static void open_file_failed (cpp_reader *pfile, _cpp_file *file, int);
163 static struct file_hash_entry *search_cache (struct file_hash_entry *head,
164 const cpp_dir *start_dir);
165 static _cpp_file *make_cpp_file (cpp_reader *, cpp_dir *, const char *fname);
166 static void destroy_cpp_file (_cpp_file *);
167 static cpp_dir *make_cpp_dir (cpp_reader *, const char *dir_name, int sysp);
168 static void allocate_file_hash_entries (cpp_reader *pfile);
169 static struct file_hash_entry *new_file_hash_entry (cpp_reader *pfile);
170 static int report_missing_guard (void **slot, void *b);
171 static hashval_t file_hash_hash (const void *p);
172 static int file_hash_eq (const void *p, const void *q);
173 static char *read_filename_string (int ch, FILE *f);
174 static void read_name_map (cpp_dir *dir);
175 static char *remap_filename (cpp_reader *pfile, _cpp_file *file);
176 static char *append_file_to_dir (const char *fname, cpp_dir *dir);
177 static bool validate_pch (cpp_reader *, _cpp_file *file, const char *pchname);
178 static int pchf_save_compare (const void *e1, const void *e2);
179 static int pchf_compare (const void *d_p, const void *e_p);
180 static bool check_file_against_entries (cpp_reader *, _cpp_file *, bool);
182 /* Given a filename in FILE->PATH, with the empty string interpreted
183 as <stdin>, open it.
185 On success FILE contains an open file descriptor and stat
186 information for the file. On failure the file descriptor is -1 and
187 the appropriate errno is also stored in FILE. Returns TRUE iff
188 successful.
190 We used to open files in nonblocking mode, but that caused more
191 problems than it solved. Do take care not to acquire a controlling
192 terminal by mistake (this can't happen on sane systems, but
193 paranoia is a virtue).
195 We do, however, use nonblocking mode if CPP_RESTRICTED, since any
196 file which can block will be tossed out after fstat().
198 Use the three-argument form of open even though we aren't
199 specifying O_CREAT, to defend against broken system headers.
201 O_BINARY tells some runtime libraries (notably DJGPP) not to do
202 newline translation; we can handle DOS line breaks just fine
203 ourselves. */
204 static bool
205 open_file (_cpp_file *file)
207 const char *cpp_restricted;
209 GET_ENVIRONMENT(cpp_restricted, "CPP_RESTRICTED");
211 if (file->path[0] == '\0')
213 file->fd = 0;
214 set_stdin_to_binary_mode ();
216 else
217 file->fd = open (file->path, O_RDONLY | O_NOCTTY | O_BINARY
218 | (cpp_restricted != NULL) ? O_NONBLOCK : 0, 0666);
220 if (file->fd != -1)
222 if (fstat (file->fd, &file->st) == 0)
224 if (cpp_restricted != NULL
225 ? S_ISREG (file->st.st_mode) : !S_ISDIR (file->st.st_mode))
227 if (cpp_restricted)
228 fcntl(file->fd, F_SETFL,
229 fcntl(file->fd, F_GETFL, 0) & ~O_NONBLOCK);
230 file->err_no = 0;
231 return true;
234 /* Ignore a directory and continue the search. The file we're
235 looking for may be elsewhere in the search path. */
236 errno = ENOENT;
239 close (file->fd);
240 file->fd = -1;
242 else if (errno == ENOTDIR)
243 errno = ENOENT;
245 file->err_no = errno;
247 return false;
250 /* Temporary PCH intercept of opening a file. Try to find a PCH file
251 based on FILE->name and FILE->dir, and test those found for
252 validity using PFILE->cb.valid_pch. Return true iff a valid file is
253 found. Set *INVALID_PCH if a PCH file is found but wasn't valid. */
255 static bool
256 pch_open_file (cpp_reader *pfile, _cpp_file *file, bool *invalid_pch)
258 static const char extension[] = ".gch";
259 const char *path = file->path;
260 size_t len, flen;
261 char *pchname;
262 struct stat st;
263 bool valid = false;
265 /* No PCH on <stdin> or if not requested. */
266 if (file->name[0] == '\0' || !pfile->cb.valid_pch)
267 return false;
269 flen = strlen (path);
270 len = flen + sizeof (extension);
271 pchname = XNEWVEC (char, len);
272 memcpy (pchname, path, flen);
273 memcpy (pchname + flen, extension, sizeof (extension));
275 if (stat (pchname, &st) == 0)
277 DIR *pchdir;
278 struct dirent *d;
279 size_t dlen, plen = len;
281 if (!S_ISDIR (st.st_mode))
282 valid = validate_pch (pfile, file, pchname);
283 else if ((pchdir = opendir (pchname)) != NULL)
285 pchname[plen - 1] = '/';
286 while ((d = readdir (pchdir)) != NULL)
288 dlen = strlen (d->d_name) + 1;
289 if ((strcmp (d->d_name, ".") == 0)
290 || (strcmp (d->d_name, "..") == 0))
291 continue;
292 if (dlen + plen > len)
294 len += dlen + 64;
295 pchname = XRESIZEVEC (char, pchname, len);
297 memcpy (pchname + plen, d->d_name, dlen);
298 valid = validate_pch (pfile, file, pchname);
299 if (valid)
300 break;
302 closedir (pchdir);
304 if (valid)
305 file->pch = true;
306 else
307 *invalid_pch = true;
310 if (valid)
311 file->pchname = pchname;
312 else
313 free (pchname);
315 return valid;
318 /* Try to open the path FILE->name appended to FILE->dir. This is
319 where remap and PCH intercept the file lookup process. Return true
320 if the file was found, whether or not the open was successful.
321 Set *INVALID_PCH to true if a PCH file is found but wasn't valid. */
323 static bool
324 find_file_in_dir (cpp_reader *pfile, _cpp_file *file, bool *invalid_pch)
326 char *path;
328 if (CPP_OPTION (pfile, remap) && (path = remap_filename (pfile, file)))
330 else
331 if (file->dir->construct)
332 path = file->dir->construct (file->name, file->dir);
333 else
334 path = append_file_to_dir (file->name, file->dir);
336 if (path)
338 file->path = path;
339 if (pch_open_file (pfile, file, invalid_pch))
340 return true;
342 if (open_file (file))
343 return true;
345 if (file->err_no != ENOENT)
347 open_file_failed (pfile, file, 0);
348 return true;
351 free (path);
352 file->path = file->name;
354 else
356 file->err_no = ENOENT;
357 file->path = NULL;
360 return false;
363 /* Return tue iff the missing_header callback found the given HEADER. */
364 static bool
365 search_path_exhausted (cpp_reader *pfile, const char *header, _cpp_file *file)
367 missing_header_cb func = pfile->cb.missing_header;
369 /* When the regular search path doesn't work, try context dependent
370 headers search paths. */
371 if (func
372 && file->dir == NULL)
374 if ((file->path = func (pfile, header, &file->dir)) != NULL)
376 if (open_file (file))
377 return true;
378 free ((void *)file->path);
380 file->path = file->name;
383 return false;
386 bool
387 _cpp_find_failed (_cpp_file *file)
389 return file->err_no != 0;
392 /* Given a filename FNAME search for such a file in the include path
393 starting from START_DIR. If FNAME is the empty string it is
394 interpreted as STDIN if START_DIR is PFILE->no_search_path.
396 If the file is not found in the file cache fall back to the O/S and
397 add the result to our cache.
399 If the file was not found in the filesystem, or there was an error
400 opening it, then ERR_NO is nonzero and FD is -1. If the file was
401 found, then ERR_NO is zero and FD could be -1 or an open file
402 descriptor. FD can be -1 if the file was found in the cache and
403 had previously been closed. To open it again pass the return value
404 to open_file().
406 _cpp_file *
407 _cpp_find_file (cpp_reader *pfile, const char *fname, cpp_dir *start_dir, bool fake, int angle_brackets)
409 struct file_hash_entry *entry, **hash_slot;
410 _cpp_file *file;
411 bool invalid_pch = false;
413 /* Ensure we get no confusion between cached files and directories. */
414 if (start_dir == NULL)
415 cpp_error (pfile, CPP_DL_ICE, "NULL directory in find_file");
417 hash_slot = (struct file_hash_entry **)
418 htab_find_slot_with_hash (pfile->file_hash, fname,
419 htab_hash_string (fname),
420 INSERT);
422 /* First check the cache before we resort to memory allocation. */
423 entry = search_cache (*hash_slot, start_dir);
424 if (entry)
425 return entry->u.file;
427 file = make_cpp_file (pfile, start_dir, fname);
429 /* Try each path in the include chain. */
430 for (; !fake ;)
432 if (find_file_in_dir (pfile, file, &invalid_pch))
433 break;
435 file->dir = file->dir->next;
436 if (file->dir == NULL)
438 if (search_path_exhausted (pfile, fname, file))
440 /* Although this file must not go in the cache, because
441 the file found might depend on things (like the current file)
442 that aren't represented in the cache, it still has to go in
443 the list of all files so that #import works. */
444 file->next_file = pfile->all_files;
445 pfile->all_files = file;
446 return file;
449 open_file_failed (pfile, file, angle_brackets);
450 if (invalid_pch)
452 cpp_error (pfile, CPP_DL_ERROR,
453 "one or more PCH files were found, but they were invalid");
454 if (!cpp_get_options (pfile)->warn_invalid_pch)
455 cpp_error (pfile, CPP_DL_ERROR,
456 "use -Winvalid-pch for more information");
458 break;
461 /* Only check the cache for the starting location (done above)
462 and the quote and bracket chain heads because there are no
463 other possible starting points for searches. */
464 if (file->dir != pfile->bracket_include
465 && file->dir != pfile->quote_include)
466 continue;
468 entry = search_cache (*hash_slot, file->dir);
469 if (entry)
470 break;
473 if (entry)
475 /* Cache for START_DIR too, sharing the _cpp_file structure. */
476 free ((char *) file->name);
477 free (file);
478 file = entry->u.file;
480 else
482 /* This is a new file; put it in the list. */
483 file->next_file = pfile->all_files;
484 pfile->all_files = file;
487 /* Store this new result in the hash table. */
488 entry = new_file_hash_entry (pfile);
489 entry->next = *hash_slot;
490 entry->start_dir = start_dir;
491 entry->u.file = file;
492 *hash_slot = entry;
494 return file;
497 /* Read a file into FILE->buffer, returning true on success.
499 If FILE->fd is something weird, like a block device, we don't want
500 to read it at all. Don't even try to figure out what something is,
501 except for plain files and block devices, since there is no
502 reliable portable way of doing this.
504 FIXME: Flush file cache and try again if we run out of memory. */
505 static bool
506 read_file_guts (cpp_reader *pfile, _cpp_file *file)
508 ssize_t size, total, count;
509 uchar *buf;
510 bool regular;
512 if (S_ISBLK (file->st.st_mode))
514 cpp_error (pfile, CPP_DL_ERROR, "%s is a block device", file->path);
515 return false;
518 regular = S_ISREG (file->st.st_mode);
519 if (regular)
521 /* off_t might have a wider range than ssize_t - in other words,
522 the max size of a file might be bigger than the address
523 space. We can't handle a file that large. (Anyone with
524 a single source file bigger than 2GB needs to rethink
525 their coding style.) Some systems (e.g. AIX 4.1) define
526 SSIZE_MAX to be much smaller than the actual range of the
527 type. Use INTTYPE_MAXIMUM unconditionally to ensure this
528 does not bite us. */
529 if (file->st.st_size > INTTYPE_MAXIMUM (ssize_t))
531 cpp_error (pfile, CPP_DL_ERROR, "%s is too large", file->path);
532 return false;
535 size = file->st.st_size;
537 else
538 /* 8 kilobytes is a sensible starting size. It ought to be bigger
539 than the kernel pipe buffer, and it's definitely bigger than
540 the majority of C source files. */
541 size = 8 * 1024;
543 buf = XNEWVEC (uchar, size + 1);
544 total = 0;
545 while ((count = read (file->fd, buf + total, size - total)) > 0)
547 total += count;
549 if (total == size)
551 if (regular)
552 break;
553 size *= 2;
554 buf = XRESIZEVEC (uchar, buf, size + 1);
558 if (count < 0)
560 cpp_errno (pfile, CPP_DL_ERROR, file->path);
561 return false;
564 if (regular && total != size && STAT_SIZE_RELIABLE (file->st))
565 cpp_error (pfile, CPP_DL_WARNING,
566 "%s is shorter than expected", file->path);
568 file->buffer = _cpp_convert_input (pfile, CPP_OPTION (pfile, input_charset),
569 buf, size, total, &file->st.st_size);
570 file->buffer_valid = true;
572 return true;
575 /* Convenience wrapper around read_file_guts that opens the file if
576 necessary and closes the file descriptor after reading. FILE must
577 have been passed through find_file() at some stage. */
578 static bool
579 read_file (cpp_reader *pfile, _cpp_file *file)
581 /* If we already have its contents in memory, succeed immediately. */
582 if (file->buffer_valid)
583 return true;
585 /* If an earlier read failed for some reason don't try again. */
586 if (file->dont_read || file->err_no)
587 return false;
589 if (file->fd == -1 && !open_file (file))
591 open_file_failed (pfile, file, 0);
592 return false;
595 file->dont_read = !read_file_guts (pfile, file);
596 close (file->fd);
597 file->fd = -1;
599 return !file->dont_read;
602 /* Returns TRUE if FILE's contents have been successfully placed in
603 FILE->buffer and the file should be stacked, otherwise false. */
604 static bool
605 should_stack_file (cpp_reader *pfile, _cpp_file *file, bool import)
607 _cpp_file *f;
609 /* Skip once-only files. */
610 if (file->once_only)
611 return false;
613 /* We must mark the file once-only if #import now, before header
614 guard checks. Otherwise, undefining the header guard might
615 cause the file to be re-stacked. */
616 if (import)
618 _cpp_mark_file_once_only (pfile, file);
620 /* Don't stack files that have been stacked before. */
621 if (file->stack_count)
622 return false;
625 /* Skip if the file had a header guard and the macro is defined.
626 PCH relies on this appearing before the PCH handler below. */
627 if (file->cmacro && file->cmacro->type == NT_MACRO)
628 return false;
630 /* Handle PCH files immediately; don't stack them. */
631 if (file->pch)
633 pfile->cb.read_pch (pfile, file->pchname, file->fd, file->path);
634 close (file->fd);
635 file->fd = -1;
636 return false;
639 if (!read_file (pfile, file))
640 return false;
642 /* Check the file against the PCH file. This is done before
643 checking against files we've already seen, since it may save on
644 I/O. */
645 if (check_file_against_entries (pfile, file, import))
647 /* If this isn't a #import, but yet we can't include the file,
648 that means that it was #import-ed in the PCH file,
649 so we can never include it again. */
650 if (! import)
651 _cpp_mark_file_once_only (pfile, file);
652 return false;
655 /* Now we've read the file's contents, we can stack it if there
656 are no once-only files. */
657 if (!pfile->seen_once_only)
658 return true;
660 /* We may have read the file under a different name. Look
661 for likely candidates and compare file contents to be sure. */
662 for (f = pfile->all_files; f; f = f->next_file)
664 if (f == file)
665 continue;
667 if ((import || f->once_only)
668 && f->err_no == 0
669 && f->st.st_mtime == file->st.st_mtime
670 && f->st.st_size == file->st.st_size)
672 _cpp_file *ref_file;
673 bool same_file_p = false;
675 if (f->buffer && !f->buffer_valid)
677 /* We already have a buffer but it is not valid, because
678 the file is still stacked. Make a new one. */
679 ref_file = make_cpp_file (pfile, f->dir, f->name);
680 ref_file->path = f->path;
682 else
683 /* The file is not stacked anymore. We can reuse it. */
684 ref_file = f;
686 same_file_p = read_file (pfile, ref_file)
687 /* Size might have changed in read_file(). */
688 && ref_file->st.st_size == file->st.st_size
689 && !memcmp (ref_file->buffer,
690 file->buffer,
691 file->st.st_size);
693 if (f->buffer && !f->buffer_valid)
695 ref_file->path = 0;
696 destroy_cpp_file (ref_file);
699 if (same_file_p)
700 break;
704 return f == NULL;
707 /* Place the file referenced by FILE into a new buffer on the buffer
708 stack if possible. IMPORT is true if this stacking attempt is
709 because of a #import directive. Returns true if a buffer is
710 stacked. */
711 bool
712 _cpp_stack_file (cpp_reader *pfile, _cpp_file *file, bool import)
714 cpp_buffer *buffer;
715 int sysp;
717 if (!should_stack_file (pfile, file, import))
718 return false;
720 if (pfile->buffer == NULL || file->dir == NULL)
721 sysp = 0;
722 else
723 sysp = MAX (pfile->buffer->sysp, file->dir->sysp);
725 /* Add the file to the dependencies on its first inclusion. */
726 if (CPP_OPTION (pfile, deps.style) > !!sysp && !file->stack_count)
728 if (!file->main_file || !CPP_OPTION (pfile, deps.ignore_main_file))
729 deps_add_dep (pfile->deps, file->path);
732 /* Clear buffer_valid since _cpp_clean_line messes it up. */
733 file->buffer_valid = false;
734 file->stack_count++;
736 /* Stack the buffer. */
737 buffer = cpp_push_buffer (pfile, file->buffer, file->st.st_size,
738 CPP_OPTION (pfile, preprocessed));
739 buffer->file = file;
740 buffer->sysp = sysp;
742 /* Initialize controlling macro state. */
743 pfile->mi_valid = true;
744 pfile->mi_cmacro = 0;
746 /* Generate the call back. */
747 _cpp_do_file_change (pfile, LC_ENTER, file->path, 1, sysp);
749 return true;
752 /* Mark FILE to be included once only. */
753 void
754 _cpp_mark_file_once_only (cpp_reader *pfile, _cpp_file *file)
756 pfile->seen_once_only = true;
757 file->once_only = true;
760 /* Return the directory from which searching for FNAME should start,
761 considering the directive TYPE and ANGLE_BRACKETS. If there is
762 nothing left in the path, returns NULL. */
763 static struct cpp_dir *
764 search_path_head (cpp_reader *pfile, const char *fname, int angle_brackets,
765 enum include_type type)
767 cpp_dir *dir;
768 _cpp_file *file;
770 if (IS_ABSOLUTE_PATH (fname))
771 return &pfile->no_search_path;
773 /* pfile->buffer is NULL when processing an -include command-line flag. */
774 file = pfile->buffer == NULL ? pfile->main_file : pfile->buffer->file;
776 /* For #include_next, skip in the search path past the dir in which
777 the current file was found, but if it was found via an absolute
778 path use the normal search logic. */
779 if (type == IT_INCLUDE_NEXT && file->dir)
780 dir = file->dir->next;
781 else if (angle_brackets)
782 dir = pfile->bracket_include;
783 else if (type == IT_CMDLINE)
784 /* -include and -imacros use the #include "" chain with the
785 preprocessor's cwd prepended. */
786 return make_cpp_dir (pfile, "./", false);
787 else if (pfile->quote_ignores_source_dir)
788 dir = pfile->quote_include;
789 else
790 return make_cpp_dir (pfile, dir_name_of_file (file),
791 pfile->buffer ? pfile->buffer->sysp : 0);
793 if (dir == NULL)
794 cpp_error (pfile, CPP_DL_ERROR,
795 "no include path in which to search for %s", fname);
797 return dir;
800 /* Strip the basename from the file's path. It ends with a slash if
801 of nonzero length. Note that this procedure also works for
802 <stdin>, which is represented by the empty string. */
803 static const char *
804 dir_name_of_file (_cpp_file *file)
806 if (!file->dir_name)
808 size_t len = lbasename (file->path) - file->path;
809 char *dir_name = XNEWVEC (char, len + 1);
811 memcpy (dir_name, file->path, len);
812 dir_name[len] = '\0';
813 file->dir_name = dir_name;
816 return file->dir_name;
819 /* Handles #include-family directives (distinguished by TYPE),
820 including HEADER, and the command line -imacros and -include.
821 Returns true if a buffer was stacked. */
822 bool
823 _cpp_stack_include (cpp_reader *pfile, const char *fname, int angle_brackets,
824 enum include_type type)
826 struct cpp_dir *dir;
827 _cpp_file *file;
829 dir = search_path_head (pfile, fname, angle_brackets, type);
830 if (!dir)
831 return false;
833 file = _cpp_find_file (pfile, fname, dir, false, angle_brackets);
835 /* Compensate for the increment in linemap_add. In the case of a
836 normal #include, we're currently at the start of the line
837 *following* the #include. A separate source_location for this
838 location makes no sense (until we do the LC_LEAVE), and
839 complicates LAST_SOURCE_LINE_LOCATION. This does not apply if we
840 found a PCH file (in which case linemap_add is not called) or we
841 were included from the command-line. */
842 if (! file->pch && file->err_no == 0 && type != IT_CMDLINE)
843 pfile->line_table->highest_location--;
845 return _cpp_stack_file (pfile, file, type == IT_IMPORT);
848 /* Could not open FILE. The complication is dependency output. */
849 static void
850 open_file_failed (cpp_reader *pfile, _cpp_file *file, int angle_brackets)
852 int sysp = pfile->line_table->highest_line > 1 && pfile->buffer ? pfile->buffer->sysp : 0;
853 bool print_dep = CPP_OPTION (pfile, deps.style) > (angle_brackets || !!sysp);
855 errno = file->err_no;
856 if (print_dep && CPP_OPTION (pfile, deps.missing_files) && errno == ENOENT)
857 deps_add_dep (pfile->deps, file->name);
858 else
860 /* If we are outputting dependencies but not for this file then
861 don't error because we can still produce correct output. */
862 if (CPP_OPTION (pfile, deps.style) && ! print_dep)
863 cpp_errno (pfile, CPP_DL_WARNING, file->path);
864 else
865 cpp_errno (pfile, CPP_DL_ERROR, file->path);
869 /* Search in the chain beginning at HEAD for a file whose search path
870 started at START_DIR != NULL. */
871 static struct file_hash_entry *
872 search_cache (struct file_hash_entry *head, const cpp_dir *start_dir)
874 while (head && head->start_dir != start_dir)
875 head = head->next;
877 return head;
880 /* Allocate a new _cpp_file structure. */
881 static _cpp_file *
882 make_cpp_file (cpp_reader *pfile, cpp_dir *dir, const char *fname)
884 _cpp_file *file;
886 file = XCNEW (_cpp_file);
887 file->main_file = !pfile->buffer;
888 file->fd = -1;
889 file->dir = dir;
890 file->name = xstrdup (fname);
892 return file;
895 /* Release a _cpp_file structure. */
896 static void
897 destroy_cpp_file (_cpp_file *file)
899 if (file->buffer)
900 free ((void *) file->buffer);
901 free ((void *) file->name);
902 free (file);
905 /* A hash of directory names. The directory names are the path names
906 of files which contain a #include "", the included file name is
907 appended to this directories.
909 To avoid duplicate entries we follow the convention that all
910 non-empty directory names should end in a '/'. DIR_NAME must be
911 stored in permanently allocated memory. */
912 static cpp_dir *
913 make_cpp_dir (cpp_reader *pfile, const char *dir_name, int sysp)
915 struct file_hash_entry *entry, **hash_slot;
916 cpp_dir *dir;
918 hash_slot = (struct file_hash_entry **)
919 htab_find_slot_with_hash (pfile->dir_hash, dir_name,
920 htab_hash_string (dir_name),
921 INSERT);
923 /* Have we already hashed this directory? */
924 for (entry = *hash_slot; entry; entry = entry->next)
925 if (entry->start_dir == NULL)
926 return entry->u.dir;
928 dir = XCNEW (cpp_dir);
929 dir->next = pfile->quote_include;
930 dir->name = (char *) dir_name;
931 dir->len = strlen (dir_name);
932 dir->sysp = sysp;
933 dir->construct = 0;
935 /* Store this new result in the hash table. */
936 entry = new_file_hash_entry (pfile);
937 entry->next = *hash_slot;
938 entry->start_dir = NULL;
939 entry->u.dir = dir;
940 *hash_slot = entry;
942 return dir;
945 /* Create a new block of memory for file hash entries. */
946 static void
947 allocate_file_hash_entries (cpp_reader *pfile)
949 pfile->file_hash_entries_used = 0;
950 pfile->file_hash_entries_allocated = 127;
951 pfile->file_hash_entries = XNEWVEC (struct file_hash_entry,
952 pfile->file_hash_entries_allocated);
955 /* Return a new file hash entry. */
956 static struct file_hash_entry *
957 new_file_hash_entry (cpp_reader *pfile)
959 if (pfile->file_hash_entries_used == pfile->file_hash_entries_allocated)
960 allocate_file_hash_entries (pfile);
962 return &pfile->file_hash_entries[pfile->file_hash_entries_used++];
965 /* Returns TRUE if a file FNAME has ever been successfully opened.
966 This routine is not intended to correctly handle filenames aliased
967 by links or redundant . or .. traversals etc. */
968 bool
969 cpp_included (cpp_reader *pfile, const char *fname)
971 struct file_hash_entry *entry;
973 entry = (struct file_hash_entry *)
974 htab_find_with_hash (pfile->file_hash, fname, htab_hash_string (fname));
976 while (entry && (entry->start_dir == NULL || entry->u.file->err_no))
977 entry = entry->next;
979 return entry != NULL;
982 /* Calculate the hash value of a file hash entry P. */
984 static hashval_t
985 file_hash_hash (const void *p)
987 struct file_hash_entry *entry = (struct file_hash_entry *) p;
988 const char *hname;
989 if (entry->start_dir)
990 hname = entry->u.file->name;
991 else
992 hname = entry->u.dir->name;
994 return htab_hash_string (hname);
997 /* Compare a string Q against a file hash entry P. */
998 static int
999 file_hash_eq (const void *p, const void *q)
1001 struct file_hash_entry *entry = (struct file_hash_entry *) p;
1002 const char *fname = (const char *) q;
1003 const char *hname;
1005 if (entry->start_dir)
1006 hname = entry->u.file->name;
1007 else
1008 hname = entry->u.dir->name;
1010 return strcmp (hname, fname) == 0;
1013 /* Initialize everything in this source file. */
1014 void
1015 _cpp_init_files (cpp_reader *pfile)
1017 pfile->file_hash = htab_create_alloc (127, file_hash_hash, file_hash_eq,
1018 NULL, xcalloc, free);
1019 pfile->dir_hash = htab_create_alloc (127, file_hash_hash, file_hash_eq,
1020 NULL, xcalloc, free);
1021 allocate_file_hash_entries (pfile);
1024 /* Finalize everything in this source file. */
1025 void
1026 _cpp_cleanup_files (cpp_reader *pfile)
1028 htab_delete (pfile->file_hash);
1029 htab_delete (pfile->dir_hash);
1032 /* Enter a file name in the hash for the sake of cpp_included. */
1033 void
1034 _cpp_fake_include (cpp_reader *pfile, const char *fname)
1036 _cpp_find_file (pfile, fname, pfile->buffer->file->dir, true, 0);
1039 /* Not everyone who wants to set system-header-ness on a buffer can
1040 see the details of a buffer. This is an exported interface because
1041 fix-header needs it. */
1042 void
1043 cpp_make_system_header (cpp_reader *pfile, int syshdr, int externc)
1045 int flags = 0;
1046 const struct line_maps *line_table = pfile->line_table;
1047 const struct line_map *map = &line_table->maps[line_table->used-1];
1049 /* 1 = system header, 2 = system header to be treated as C. */
1050 if (syshdr)
1051 flags = 1 + (externc != 0);
1052 pfile->buffer->sysp = flags;
1053 _cpp_do_file_change (pfile, LC_RENAME, map->to_file,
1054 SOURCE_LINE (map, pfile->line_table->highest_line), flags);
1057 /* Allow the client to change the current file. Used by the front end
1058 to achieve pseudo-file names like <built-in>.
1059 If REASON is LC_LEAVE, then NEW_NAME must be NULL. */
1060 void
1061 cpp_change_file (cpp_reader *pfile, enum lc_reason reason,
1062 const char *new_name)
1064 _cpp_do_file_change (pfile, reason, new_name, 1, 0);
1067 /* Callback function for htab_traverse. */
1068 static int
1069 report_missing_guard (void **slot, void *b)
1071 struct file_hash_entry *entry = (struct file_hash_entry *) *slot;
1072 int *bannerp = (int *) b;
1074 /* Skip directories. */
1075 if (entry->start_dir != NULL)
1077 _cpp_file *file = entry->u.file;
1079 /* We don't want MI guard advice for the main file. */
1080 if (file->cmacro == NULL && file->stack_count == 1 && !file->main_file)
1082 if (*bannerp == 0)
1084 fputs (_("Multiple include guards may be useful for:\n"),
1085 stderr);
1086 *bannerp = 1;
1089 fputs (entry->u.file->path, stderr);
1090 putc ('\n', stderr);
1094 return 0;
1097 /* Report on all files that might benefit from a multiple include guard.
1098 Triggered by -H. */
1099 void
1100 _cpp_report_missing_guards (cpp_reader *pfile)
1102 int banner = 0;
1104 htab_traverse (pfile->file_hash, report_missing_guard, &banner);
1107 /* Locate HEADER, and determine whether it is newer than the current
1108 file. If it cannot be located or dated, return -1, if it is
1109 newer, return 1, otherwise 0. */
1111 _cpp_compare_file_date (cpp_reader *pfile, const char *fname,
1112 int angle_brackets)
1114 _cpp_file *file;
1115 struct cpp_dir *dir;
1117 dir = search_path_head (pfile, fname, angle_brackets, IT_INCLUDE);
1118 if (!dir)
1119 return -1;
1121 file = _cpp_find_file (pfile, fname, dir, false, angle_brackets);
1122 if (file->err_no)
1123 return -1;
1125 if (file->fd != -1)
1127 close (file->fd);
1128 file->fd = -1;
1131 return file->st.st_mtime > pfile->buffer->file->st.st_mtime;
1134 /* Pushes the given file onto the buffer stack. Returns nonzero if
1135 successful. */
1136 bool
1137 cpp_push_include (cpp_reader *pfile, const char *fname)
1139 return _cpp_stack_include (pfile, fname, false, IT_CMDLINE);
1142 /* Do appropriate cleanup when a file INC's buffer is popped off the
1143 input stack. */
1144 void
1145 _cpp_pop_file_buffer (cpp_reader *pfile, _cpp_file *file)
1147 /* Record the inclusion-preventing macro, which could be NULL
1148 meaning no controlling macro. */
1149 if (pfile->mi_valid && file->cmacro == NULL)
1150 file->cmacro = pfile->mi_cmacro;
1152 /* Invalidate control macros in the #including file. */
1153 pfile->mi_valid = false;
1155 if (file->buffer)
1157 free ((void *) file->buffer);
1158 file->buffer = NULL;
1159 file->buffer_valid = false;
1163 /* Set the include chain for "" to QUOTE, for <> to BRACKET. If
1164 QUOTE_IGNORES_SOURCE_DIR, then "" includes do not look in the
1165 directory of the including file.
1167 If BRACKET does not lie in the QUOTE chain, it is set to QUOTE. */
1168 void
1169 cpp_set_include_chains (cpp_reader *pfile, cpp_dir *quote, cpp_dir *bracket,
1170 int quote_ignores_source_dir)
1172 pfile->quote_include = quote;
1173 pfile->bracket_include = quote;
1174 pfile->quote_ignores_source_dir = quote_ignores_source_dir;
1176 for (; quote; quote = quote->next)
1178 quote->name_map = NULL;
1179 quote->len = strlen (quote->name);
1180 if (quote == bracket)
1181 pfile->bracket_include = bracket;
1185 /* Append the file name to the directory to create the path, but don't
1186 turn / into // or // into ///; // may be a namespace escape. */
1187 static char *
1188 append_file_to_dir (const char *fname, cpp_dir *dir)
1190 size_t dlen, flen;
1191 char *path;
1193 dlen = dir->len;
1194 flen = strlen (fname);
1195 path = XNEWVEC (char, dlen + 1 + flen + 1);
1196 memcpy (path, dir->name, dlen);
1197 if (dlen && path[dlen - 1] != '/')
1198 path[dlen++] = '/';
1199 memcpy (&path[dlen], fname, flen + 1);
1201 return path;
1204 /* Read a space delimited string of unlimited length from a stdio
1205 file F. */
1206 static char *
1207 read_filename_string (int ch, FILE *f)
1209 char *alloc, *set;
1210 int len;
1212 len = 20;
1213 set = alloc = XNEWVEC (char, len + 1);
1214 if (! is_space (ch))
1216 *set++ = ch;
1217 while ((ch = getc (f)) != EOF && ! is_space (ch))
1219 if (set - alloc == len)
1221 len *= 2;
1222 alloc = XRESIZEVEC (char, alloc, len + 1);
1223 set = alloc + len / 2;
1225 *set++ = ch;
1228 *set = '\0';
1229 ungetc (ch, f);
1230 return alloc;
1233 /* Read the file name map file for DIR. */
1234 static void
1235 read_name_map (cpp_dir *dir)
1237 static const char FILE_NAME_MAP_FILE[] = "header.gcc";
1238 char *name;
1239 FILE *f;
1240 size_t len, count = 0, room = 9;
1242 len = dir->len;
1243 name = (char *) alloca (len + sizeof (FILE_NAME_MAP_FILE) + 1);
1244 memcpy (name, dir->name, len);
1245 if (len && name[len - 1] != '/')
1246 name[len++] = '/';
1247 strcpy (name + len, FILE_NAME_MAP_FILE);
1248 f = fopen (name, "r");
1250 dir->name_map = XNEWVEC (const char *, room);
1252 /* Silently return NULL if we cannot open. */
1253 if (f)
1255 int ch;
1257 while ((ch = getc (f)) != EOF)
1259 char *to;
1261 if (is_space (ch))
1262 continue;
1264 if (count + 2 > room)
1266 room += 8;
1267 dir->name_map = XRESIZEVEC (const char *, dir->name_map, room);
1270 dir->name_map[count] = read_filename_string (ch, f);
1271 while ((ch = getc (f)) != EOF && is_hspace (ch))
1274 to = read_filename_string (ch, f);
1275 if (IS_ABSOLUTE_PATH (to))
1276 dir->name_map[count + 1] = to;
1277 else
1279 dir->name_map[count + 1] = append_file_to_dir (to, dir);
1280 free (to);
1283 count += 2;
1284 while ((ch = getc (f)) != '\n')
1285 if (ch == EOF)
1286 break;
1289 fclose (f);
1292 /* Terminate the list of maps. */
1293 dir->name_map[count] = NULL;
1296 /* Remap a FILE's name based on the file_name_map, if any, for
1297 FILE->dir. If the file name has any directory separators,
1298 recursively check those directories too. */
1299 static char *
1300 remap_filename (cpp_reader *pfile, _cpp_file *file)
1302 const char *fname, *p;
1303 char *new_dir;
1304 cpp_dir *dir;
1305 size_t index, len;
1307 dir = file->dir;
1308 fname = file->name;
1310 for (;;)
1312 if (!dir->name_map)
1313 read_name_map (dir);
1315 for (index = 0; dir->name_map[index]; index += 2)
1316 if (!strcmp (dir->name_map[index], fname))
1317 return xstrdup (dir->name_map[index + 1]);
1319 p = strchr (fname, '/');
1320 if (!p || p == fname)
1321 return NULL;
1323 len = dir->len + (p - fname + 1);
1324 new_dir = XNEWVEC (char, len + 1);
1325 memcpy (new_dir, dir->name, dir->len);
1326 memcpy (new_dir + dir->len, fname, p - fname + 1);
1327 new_dir[len] = '\0';
1329 dir = make_cpp_dir (pfile, new_dir, dir->sysp);
1330 fname = p + 1;
1334 /* Returns true if PCHNAME is a valid PCH file for FILE. */
1335 static bool
1336 validate_pch (cpp_reader *pfile, _cpp_file *file, const char *pchname)
1338 const char *saved_path = file->path;
1339 bool valid = false;
1341 file->path = pchname;
1342 if (open_file (file))
1344 valid = 1 & pfile->cb.valid_pch (pfile, pchname, file->fd);
1346 if (!valid)
1348 close (file->fd);
1349 file->fd = -1;
1352 if (CPP_OPTION (pfile, print_include_names))
1354 unsigned int i;
1355 for (i = 1; i < pfile->line_table->depth; i++)
1356 putc ('.', stderr);
1357 fprintf (stderr, "%c %s\n",
1358 valid ? '!' : 'x', pchname);
1362 file->path = saved_path;
1363 return valid;
1366 /* Get the path associated with the _cpp_file F. The path includes
1367 the base name from the include directive and the directory it was
1368 found in via the search path. */
1370 const char *
1371 cpp_get_path (struct _cpp_file *f)
1373 return f->path;
1376 /* Get the directory associated with the _cpp_file F. */
1378 cpp_dir *
1379 cpp_get_dir (struct _cpp_file *f)
1381 return f->dir;
1384 /* Get the cpp_buffer currently associated with the cpp_reader
1385 PFILE. */
1387 cpp_buffer *
1388 cpp_get_buffer (cpp_reader *pfile)
1390 return pfile->buffer;
1393 /* Get the _cpp_file associated with the cpp_buffer B. */
1395 _cpp_file *
1396 cpp_get_file (cpp_buffer *b)
1398 return b->file;
1401 /* Get the previous cpp_buffer given a cpp_buffer B. The previous
1402 buffer is the buffer that included the given buffer. */
1404 cpp_buffer *
1405 cpp_get_prev (cpp_buffer *b)
1407 return b->prev;
1410 /* This data structure holds the list of header files that were seen
1411 while the PCH was being built. The 'entries' field is kept sorted
1412 in memcmp() order; yes, this means that on little-endian systems,
1413 it's sorted initially by the least-significant byte of 'size', but
1414 that's OK. The code does rely on having entries with the same size
1415 next to each other. */
1417 struct pchf_entry {
1418 /* The size of this file. This is used to save running a MD5 checksum
1419 if the sizes don't match. */
1420 off_t size;
1421 /* The MD5 checksum of this file. */
1422 unsigned char sum[16];
1423 /* Is this file to be included only once? */
1424 bool once_only;
1427 struct pchf_data {
1428 /* Number of pchf_entry structures. */
1429 size_t count;
1431 /* Are there any values with once_only set?
1432 This is used as an optimisation, it means we don't have to search
1433 the structure if we're processing a regular #include. */
1434 bool have_once_only;
1436 struct pchf_entry entries[1];
1439 static struct pchf_data *pchf;
1441 /* A qsort ordering function for pchf_entry structures. */
1443 static int
1444 pchf_save_compare (const void *e1, const void *e2)
1446 return memcmp (e1, e2, sizeof (struct pchf_entry));
1449 /* Create and write to F a pchf_data structure. */
1451 bool
1452 _cpp_save_file_entries (cpp_reader *pfile, FILE *fp)
1454 size_t count = 0;
1455 struct pchf_data *result;
1456 size_t result_size;
1457 _cpp_file *f;
1459 for (f = pfile->all_files; f; f = f->next_file)
1460 ++count;
1462 result_size = (sizeof (struct pchf_data)
1463 + sizeof (struct pchf_entry) * (count - 1));
1464 result = XCNEWVAR (struct pchf_data, result_size);
1466 result->count = 0;
1467 result->have_once_only = false;
1469 for (f = pfile->all_files; f; f = f->next_file)
1471 size_t count;
1473 /* This should probably never happen, since if a read error occurred
1474 the PCH file shouldn't be written... */
1475 if (f->dont_read || f->err_no)
1476 continue;
1478 if (f->stack_count == 0)
1479 continue;
1481 count = result->count++;
1483 result->entries[count].once_only = f->once_only;
1484 /* |= is avoided in the next line because of an HP C compiler bug */
1485 result->have_once_only = result->have_once_only | f->once_only;
1486 if (f->buffer_valid)
1487 md5_buffer ((const char *)f->buffer,
1488 f->st.st_size, result->entries[count].sum);
1489 else
1491 FILE *ff;
1492 int oldfd = f->fd;
1494 if (!open_file (f))
1496 open_file_failed (pfile, f, 0);
1497 return false;
1499 ff = fdopen (f->fd, "rb");
1500 md5_stream (ff, result->entries[count].sum);
1501 fclose (ff);
1502 f->fd = oldfd;
1504 result->entries[count].size = f->st.st_size;
1507 result_size = (sizeof (struct pchf_data)
1508 + sizeof (struct pchf_entry) * (result->count - 1));
1510 qsort (result->entries, result->count, sizeof (struct pchf_entry),
1511 pchf_save_compare);
1513 return fwrite (result, result_size, 1, fp) == 1;
1516 /* Read the pchf_data structure from F. */
1518 bool
1519 _cpp_read_file_entries (cpp_reader *pfile ATTRIBUTE_UNUSED, FILE *f)
1521 struct pchf_data d;
1523 if (fread (&d, sizeof (struct pchf_data) - sizeof (struct pchf_entry), 1, f)
1524 != 1)
1525 return false;
1527 pchf = XNEWVAR (struct pchf_data, sizeof (struct pchf_data)
1528 + sizeof (struct pchf_entry) * (d.count - 1));
1529 memcpy (pchf, &d, sizeof (struct pchf_data) - sizeof (struct pchf_entry));
1530 if (fread (pchf->entries, sizeof (struct pchf_entry), d.count, f)
1531 != d.count)
1532 return false;
1533 return true;
1536 /* The parameters for pchf_compare. */
1538 struct pchf_compare_data
1540 /* The size of the file we're looking for. */
1541 off_t size;
1543 /* The MD5 checksum of the file, if it's been computed. */
1544 unsigned char sum[16];
1546 /* Is SUM valid? */
1547 bool sum_computed;
1549 /* Do we need to worry about entries that don't have ONCE_ONLY set? */
1550 bool check_included;
1552 /* The file that we're searching for. */
1553 _cpp_file *f;
1556 /* bsearch comparison function; look for D_P in E_P. */
1558 static int
1559 pchf_compare (const void *d_p, const void *e_p)
1561 const struct pchf_entry *e = (const struct pchf_entry *)e_p;
1562 struct pchf_compare_data *d = (struct pchf_compare_data *)d_p;
1563 int result;
1565 result = memcmp (&d->size, &e->size, sizeof (off_t));
1566 if (result != 0)
1567 return result;
1569 if (! d->sum_computed)
1571 _cpp_file *const f = d->f;
1573 md5_buffer ((const char *)f->buffer, f->st.st_size, d->sum);
1574 d->sum_computed = true;
1577 result = memcmp (d->sum, e->sum, 16);
1578 if (result != 0)
1579 return result;
1581 if (d->check_included || e->once_only)
1582 return 0;
1583 else
1584 return 1;
1587 /* Check that F is not in a list read from a PCH file (if any).
1588 Assumes that f->buffer_valid is true. Return TRUE if the file
1589 should not be read. */
1591 static bool
1592 check_file_against_entries (cpp_reader *pfile ATTRIBUTE_UNUSED,
1593 _cpp_file *f,
1594 bool check_included)
1596 struct pchf_compare_data d;
1598 if (pchf == NULL
1599 || (! check_included && ! pchf->have_once_only))
1600 return false;
1602 d.size = f->st.st_size;
1603 d.sum_computed = false;
1604 d.f = f;
1605 d.check_included = check_included;
1606 return bsearch (&d, pchf->entries, pchf->count, sizeof (struct pchf_entry),
1607 pchf_compare) != NULL;