incpath.c 13.8 KB
Newer Older
1 2
/* Set up combined include path chain for the preprocessor.
   Copyright (C) 1986, 1987, 1989, 1992, 1993, 1994, 1995, 1996, 1997, 1998,
3
   1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008
4
   Free Software Foundation, Inc.
5 6 7

   Broken out of cppinit.c and cppfiles.c and rewritten Mar 2003.

8 9 10 11
   This program is free software; you can redistribute it and/or modify it
   under the terms of the GNU General Public License as published by the
   Free Software Foundation; either version 3, or (at your option) any
   later version.
12

13 14 15 16
   This program is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY; without even the implied warranty of
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   GNU General Public License for more details.
17

18 19 20
   You should have received a copy of the GNU General Public License
   along with this program; see the file COPYING3.  If not see
   <http://www.gnu.org/licenses/>.  */
21 22 23 24

#include "config.h"
#include "system.h"
#include "coretypes.h"
25 26
#include "machmode.h"
#include "target.h"
27 28 29 30
#include "tm.h"
#include "cpplib.h"
#include "prefix.h"
#include "intl.h"
31
#include "incpath.h"
32 33
#include "cppdefault.h"

34
/* Microsoft Windows does not natively support inodes.
35 36 37 38
   VMS has non-numeric inodes.  */
#ifdef VMS
# define INO_T_EQ(A, B) (!memcmp (&(A), &(B), sizeof (A)))
# define INO_T_COPY(DEST, SRC) memcpy(&(DEST), &(SRC), sizeof (SRC))
39
#elif !defined (HOST_LACKS_INODE_NUMBERS)
40
# define INO_T_EQ(A, B) ((A) == (B))
41 42 43
# define INO_T_COPY(DEST, SRC) (DEST) = (SRC)
#endif

44 45 46 47
#if defined INO_T_EQ
#define DIRS_EQ(A, B) ((A)->dev == (B)->dev \
	&& INO_T_EQ((A)->ino, (B)->ino))
#else
48
#define DIRS_EQ(A, B) (!strcmp ((A)->canonical_name, (B)->canonical_name))
49 50
#endif

51 52
static const char dir_separator_str[] = { DIR_SEPARATOR, 0 };

53
static void add_env_var_paths (const char *, int);
54
static void add_standard_paths (const char *, const char *, const char *, int);
55
static void free_path (struct cpp_dir *, int);
56 57
static void merge_include_chains (const char *, cpp_reader *, int);
static void add_sysroot_to_chain (const char *, int);
58 59 60
static struct cpp_dir *remove_duplicates (cpp_reader *, struct cpp_dir *,
					   struct cpp_dir *,
					   struct cpp_dir *, int);
61 62

/* Include chains heads and tails.  */
63 64
static struct cpp_dir *heads[4];
static struct cpp_dir *tails[4];
65 66 67 68 69
static bool quote_ignores_source_dir;
enum { REASON_QUIET = 0, REASON_NOENT, REASON_DUP, REASON_DUP_SYS };

/* Free an element of the include chain, possibly giving a reason.  */
static void
70
free_path (struct cpp_dir *path, int reason)
71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91
{
  switch (reason)
    {
    case REASON_DUP:
    case REASON_DUP_SYS:
      fprintf (stderr, _("ignoring duplicate directory \"%s\"\n"), path->name);
      if (reason == REASON_DUP_SYS)
	fprintf (stderr,
 _("  as it is a non-system directory that duplicates a system directory\n"));
      break;

    case REASON_NOENT:
      fprintf (stderr, _("ignoring nonexistent directory \"%s\"\n"),
	       path->name);
      break;

    case REASON_QUIET:
    default:
      break;
    }

92
  free (path->name);
93 94 95 96 97 98
  free (path);
}

/* Read ENV_VAR for a PATH_SEPARATOR-separated list of file names; and
   append all the names to the search path CHAIN.  */
static void
99
add_env_var_paths (const char *env_var, int chain)
100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117
{
  char *p, *q, *path;

  GET_ENVIRONMENT (q, env_var);

  if (!q)
    return;

  for (p = q; *q; p = q + 1)
    {
      q = p;
      while (*q != 0 && *q != PATH_SEPARATOR)
	q++;

      if (p == q)
	path = xstrdup (".");
      else
	{
118
	  path = XNEWVEC (char, q - p + 1);
119 120 121 122
	  memcpy (path, p, q - p);
	  path[q - p] = '\0';
	}

123
      add_path (path, chain, chain == SYSTEM, false);
124 125 126 127 128
    }
}

/* Append the standard include chain defined in cppdefault.c.  */
static void
129 130
add_standard_paths (const char *sysroot, const char *iprefix,
		    const char *imultilib, int cxx_stdinc)
131 132
{
  const struct default_include *p;
133
  int relocated = cpp_relocated();
134
  size_t len;
135

136 137 138
  if (iprefix && (len = cpp_GCC_INCLUDE_DIR_len) != 0)
    {
      /* Look for directories that start with the standard prefix.
139
	 "Translate" them, i.e. replace /usr/local/lib/gcc... with
140 141 142 143 144 145 146 147 148 149 150 151 152
	 IPREFIX and search them first.  */
      for (p = cpp_include_defaults; p->fname; p++)
	{
	  if (!p->cplusplus || cxx_stdinc)
	    {
	      /* Should we be translating sysrooted dirs too?  Assume
		 that iprefix and sysroot are mutually exclusive, for
		 now.  */
	      if (sysroot && p->add_sysroot)
		continue;
	      if (!strncmp (p->fname, cpp_GCC_INCLUDE_DIR, len))
		{
		  char *str = concat (iprefix, p->fname + len, NULL);
153 154
		  if (p->multilib && imultilib)
		    str = concat (str, dir_separator_str, imultilib, NULL);
155
		  add_path (str, SYSTEM, p->cxx_aware, false);
156 157 158 159
		}
	    }
	}
    }
160 161 162 163 164 165 166 167 168 169

  for (p = cpp_include_defaults; p->fname; p++)
    {
      if (!p->cplusplus || cxx_stdinc)
	{
	  char *str;

	  /* Should this directory start with the sysroot?  */
	  if (sysroot && p->add_sysroot)
	    str = concat (sysroot, p->fname, NULL);
170 171
	  else if (!p->add_sysroot && relocated
		   && strncmp (p->fname, cpp_PREFIX, cpp_PREFIX_len) == 0)
172
	    {
173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192
 	      static const char *relocated_prefix;
	      /* If this path starts with the configure-time prefix, 
		 but the compiler has been relocated, replace it 
		 with the run-time prefix.  The run-time exec prefix
		 is GCC_EXEC_PREFIX.  Compute the path from there back
		 to the toplevel prefix.  */
	      if (!relocated_prefix)
		{
		  char *dummy;
		  /* Make relative prefix expects the first argument
		     to be a program, not a directory.  */
		  dummy = concat (gcc_exec_prefix, "dummy", NULL);
		  relocated_prefix 
		    = make_relative_prefix (dummy,
					    cpp_EXEC_PREFIX,
					    cpp_PREFIX);
		}
	      str = concat (relocated_prefix,
			    p->fname + cpp_PREFIX_len, 
			    NULL);
193 194
	      str = update_path (str, p->component);
	    }
195 196 197
	  else
	    str = update_path (p->fname, p->component);

198 199 200
	  if (p->multilib && imultilib)
	    str = concat (str, dir_separator_str, imultilib, NULL);

201
	  add_path (str, SYSTEM, p->cxx_aware, false);
202 203 204 205 206 207 208 209 210 211
	}
    }
}

/* For each duplicate path in chain HEAD, keep just the first one.
   Remove each path in chain HEAD that also exists in chain SYSTEM.
   Set the NEXT pointer of the last path in the resulting chain to
   JOIN, unless it duplicates JOIN in which case the last path is
   removed.  Return the head of the resulting chain.  Any of HEAD,
   JOIN and SYSTEM can be NULL.  */
212

213 214 215
static struct cpp_dir *
remove_duplicates (cpp_reader *pfile, struct cpp_dir *head,
		   struct cpp_dir *system, struct cpp_dir *join,
216
		   int verbose)
217
{
218
  struct cpp_dir **pcur, *tmp, *cur;
219 220 221 222 223 224 225 226 227 228 229 230
  struct stat st;

  for (pcur = &head; *pcur; )
    {
      int reason = REASON_QUIET;

      cur = *pcur;

      if (stat (cur->name, &st))
	{
	  /* Dirs that don't exist are silently ignored, unless verbose.  */
	  if (errno != ENOENT)
231
	    cpp_errno (pfile, CPP_DL_ERROR, cur->name);
232
	  else
233
	    {
234
	      /* If -Wmissing-include-dirs is given, warn.  */
235 236 237 238 239
	      cpp_options *opts = cpp_get_options (pfile);
	      if (opts->warn_missing_include_dirs && cur->user_supplied_p)
		cpp_errno (pfile, CPP_DL_WARNING, cur->name);
	      reason = REASON_NOENT;
	    }
240 241
	}
      else if (!S_ISDIR (st.st_mode))
242
	cpp_error_with_line (pfile, CPP_DL_ERROR, 0, 0,
243 244 245
			     "%s: not a directory", cur->name);
      else
	{
246
#if defined (INO_T_COPY)
247 248
	  INO_T_COPY (cur->ino, st.st_ino);
	  cur->dev  = st.st_dev;
249
#endif
250 251 252 253

	  /* Remove this one if it is in the system chain.  */
	  reason = REASON_DUP_SYS;
	  for (tmp = system; tmp; tmp = tmp->next)
254
	   if (DIRS_EQ (tmp, cur) && cur->construct == tmp->construct)
255 256 257 258
	      break;

	  if (!tmp)
	    {
259
	      /* Duplicate of something earlier in the same chain?  */
260 261
	      reason = REASON_DUP;
	      for (tmp = head; tmp != cur; tmp = tmp->next)
262
	       if (DIRS_EQ (cur, tmp) && cur->construct == tmp->construct)
263 264 265 266 267
		  break;

	      if (tmp == cur
		  /* Last in the chain and duplicate of JOIN?  */
		  && !(cur->next == NULL && join
268 269
		       && DIRS_EQ (cur, join)
		       && cur->construct == join->construct))
270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286
		{
		  /* Unique, so keep this directory.  */
		  pcur = &cur->next;
		  continue;
		}
	    }
	}

      /* Remove this entry from the chain.  */
      *pcur = cur->next;
      free_path (cur, verbose ? reason: REASON_QUIET);
    }

  *pcur = join;
  return head;
}

287 288 289 290 291 292 293 294 295 296 297 298 299
/* Add SYSROOT to any user-supplied paths in CHAIN starting with
   "=".  */

static void
add_sysroot_to_chain (const char *sysroot, int chain)
{
  struct cpp_dir *p;

  for (p = heads[chain]; p != NULL; p = p->next)
    if (p->name[0] == '=' && p->user_supplied_p)
      p->name = concat (sysroot, p->name + 1, NULL);
}

300
/* Merge the four include chains together in the order quote, bracket,
301 302
   system, after.  Remove duplicate dirs (determined in
   system-specific manner).
303 304 305

   We can't just merge the lists and then uniquify them because then
   we may lose directories from the <> search path that should be
306 307 308 309
   there; consider -iquote foo -iquote bar -Ifoo -Iquux.  It is
   however safe to treat -iquote bar -iquote foo -Ifoo -Iquux as if
   written -iquote bar -Ifoo -Iquux.  */

310
static void
311
merge_include_chains (const char *sysroot, cpp_reader *pfile, int verbose)
312
{
313 314 315 316 317 318 319 320 321
  /* Add the sysroot to user-supplied paths starting with "=".  */
  if (sysroot)
    {
      add_sysroot_to_chain (sysroot, QUOTE);
      add_sysroot_to_chain (sysroot, BRACKET);
      add_sysroot_to_chain (sysroot, SYSTEM);
      add_sysroot_to_chain (sysroot, AFTER);
    }

322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342
  /* Join the SYSTEM and AFTER chains.  Remove duplicates in the
     resulting SYSTEM chain.  */
  if (heads[SYSTEM])
    tails[SYSTEM]->next = heads[AFTER];
  else
    heads[SYSTEM] = heads[AFTER];
  heads[SYSTEM] = remove_duplicates (pfile, heads[SYSTEM], 0, 0, verbose);

  /* Remove duplicates from BRACKET that are in itself or SYSTEM, and
     join it to SYSTEM.  */
  heads[BRACKET] = remove_duplicates (pfile, heads[BRACKET], heads[SYSTEM],
				      heads[SYSTEM], verbose);

  /* Remove duplicates from QUOTE that are in itself or SYSTEM, and
     join it to BRACKET.  */
  heads[QUOTE] = remove_duplicates (pfile, heads[QUOTE], heads[SYSTEM],
				    heads[BRACKET], verbose);

  /* If verbose, print the list of dirs to search.  */
  if (verbose)
    {
343
      struct cpp_dir *p;
344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362

      fprintf (stderr, _("#include \"...\" search starts here:\n"));
      for (p = heads[QUOTE];; p = p->next)
	{
	  if (p == heads[BRACKET])
	    fprintf (stderr, _("#include <...> search starts here:\n"));
	  if (!p)
	    break;
	  fprintf (stderr, " %s\n", p->name);
	}
      fprintf (stderr, _("End of search list.\n"));
    }
}

/* Use given -I paths for #include "..." but not #include <...>, and
   don't search the directory of the present file for #include "...".
   (Note that -I. -I- is not the same as the default setup; -I. uses
   the compiler's working dir.)  */
void
363
split_quote_chain (void)
364 365 366 367 368 369 370 371 372
{
  heads[QUOTE] = heads[BRACKET];
  tails[QUOTE] = tails[BRACKET];
  heads[BRACKET] = NULL;
  tails[BRACKET] = NULL;
  /* This is NOT redundant.  */
  quote_ignores_source_dir = true;
}

373 374 375 376 377 378 379 380 381 382 383 384
/* Add P to the chain specified by CHAIN.  */

void
add_cpp_dir_path (cpp_dir *p, int chain)
{
  if (tails[chain])
    tails[chain]->next = p;
  else
    heads[chain] = p;
  tails[chain] = p;
}

385 386 387
/* Add PATH to the include chain CHAIN. PATH must be malloc-ed and
   NUL-terminated.  */
void
388
add_path (char *path, int chain, int cxx_aware, bool user_supplied_p)
389
{
390
  cpp_dir *p;
391

392
#if defined (HAVE_DOS_BASED_FILE_SYSTEM)
393 394
  /* Remove unnecessary trailing slashes.  On some versions of MS
     Windows, trailing  _forward_ slashes cause no problems for stat().
395
     On newer versions, stat() does not recognize a directory that ends
396 397 398 399 400 401 402 403 404
     in a '\\' or '/', unless it is a drive root dir, such as "c:/",
     where it is obligatory.  */
  int pathlen = strlen (path);
  char* end = path + pathlen - 1;
  /* Preserve the lead '/' or lead "c:/".  */
  char* start = path + (pathlen > 2 && path[1] == ':' ? 3 : 1);
  
  for (; end > start && IS_DIR_SEPARATOR (*end); end--)
    *end = 0;
405 406
#endif

407
  p = XNEW (cpp_dir);
408 409
  p->next = NULL;
  p->name = path;
410 411 412
#ifndef INO_T_EQ
  p->canonical_name = lrealpath (path);
#endif
413
  if (chain == SYSTEM || chain == AFTER)
414
    p->sysp = 1 + !cxx_aware;
415 416
  else
    p->sysp = 0;
417
  p->construct = 0;
418
  p->user_supplied_p = user_supplied_p;
419

420
  add_cpp_dir_path (p, chain);
421 422 423 424 425
}

/* Exported function to handle include chain merging, duplicate
   removal, and registration with cpplib.  */
void
426
register_include_chains (cpp_reader *pfile, const char *sysroot,
427 428
			 const char *iprefix, const char *imultilib,
			 int stdinc, int cxx_stdinc, int verbose)
429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444
{
  static const char *const lang_env_vars[] =
    { "C_INCLUDE_PATH", "CPLUS_INCLUDE_PATH",
      "OBJC_INCLUDE_PATH", "OBJCPLUS_INCLUDE_PATH" };
  cpp_options *cpp_opts = cpp_get_options (pfile);
  size_t idx = (cpp_opts->objc ? 2: 0);

  if (cpp_opts->cplusplus)
    idx++;
  else
    cxx_stdinc = false;

  /* CPATH and language-dependent environment variables may add to the
     include chain.  */
  add_env_var_paths ("CPATH", BRACKET);
  add_env_var_paths (lang_env_vars[idx], SYSTEM);
Mike Stump committed
445

446
  target_c_incpath.extra_pre_includes (sysroot, iprefix, stdinc);
447 448 449

  /* Finally chain on the standard directories.  */
  if (stdinc)
450
    add_standard_paths (sysroot, iprefix, imultilib, cxx_stdinc);
451

452
  target_c_incpath.extra_includes (sysroot, iprefix, stdinc);
453

454
  merge_include_chains (sysroot, pfile, verbose);
455 456 457 458

  cpp_set_include_chains (pfile, heads[QUOTE], heads[BRACKET],
			  quote_ignores_source_dir);
}
459 460 461 462 463 464 465
#if !(defined TARGET_EXTRA_INCLUDES) || !(defined TARGET_EXTRA_PRE_INCLUDES)
static void hook_void_charptr_charptr_int (const char *sysroot ATTRIBUTE_UNUSED,
					   const char *iprefix ATTRIBUTE_UNUSED,
					   int stdinc ATTRIBUTE_UNUSED)
{
}
#endif
466 467

#ifndef TARGET_EXTRA_INCLUDES
468
#define TARGET_EXTRA_INCLUDES hook_void_charptr_charptr_int
469
#endif
470 471 472 473 474 475
#ifndef TARGET_EXTRA_PRE_INCLUDES
#define TARGET_EXTRA_PRE_INCLUDES hook_void_charptr_charptr_int
#endif

struct target_c_incpath_s target_c_incpath = { TARGET_EXTRA_PRE_INCLUDES, TARGET_EXTRA_INCLUDES };