prefix.c 8.76 KB
Newer Older
Jeff Law committed
1
/* Utility to update paths from internal to external forms.
2
   Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005
3
   Free Software Foundation, Inc.
Jeff Law committed
4

5
This file is part of GCC.
Jeff Law committed
6

7 8 9 10
GCC is free software; you can redistribute it and/or modify it under
the terms of the GNU Library General Public License as published by
the Free Software Foundation; either version 2 of the License, or (at
your option) any later version.
Jeff Law committed
11 12 13 14 15 16 17 18

GCC 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
Library General Public License for more details.

You should have received a copy of the GNU Library General Public
License along with GCC; see the file COPYING.  If not, write to the Free
Kelley Cook committed
19 20
Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
Boston, MA 02110-1301, USA.  */
Jeff Law committed
21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45

/* This file contains routines to update a path, both to canonicalize
   the directory format and to handle any prefix translation.

   This file must be compiled with -DPREFIX= to specify the "prefix"
   value used by configure.  If a filename does not begin with this
   prefix, it will not be affected other than by directory canonicalization.

   Each caller of 'update_path' may specify both a filename and
   a translation prefix and consist of the name of the package that contains
   the file ("@GCC", "@BINUTIL", "@GNU", etc).

   If the prefix is not specified, the filename will only undergo
   directory canonicalization.

   If it is specified, the string given by PREFIX will be replaced
   by the specified prefix (with a '@' in front unless the prefix begins
   with a '$') and further translation will be done as follows
   until none of the two conditions below are met:

   1) If the filename begins with '@', the string between the '@' and
   the end of the name or the first '/' or directory separator will
   be considered a "key" and looked up as follows:

   -- If this is a Win32 OS, then the Registry will be examined for
Kazu Hirata committed
46
      an entry of "key" in
Jeff Law committed
47

48
      HKEY_LOCAL_MACHINE\SOFTWARE\Free Software Foundation\<KEY>
Jeff Law committed
49

50 51
      if found, that value will be used. <KEY> defaults to GCC version
      string, but can be overridden at configuration time.
Jeff Law committed
52 53 54 55 56 57 58 59 60 61

   -- If not found (or not a Win32 OS), the environment variable
      key_ROOT (the value of "key" concatenated with the constant "_ROOT")
      is tried.  If that fails, then PREFIX (see above) is used.

   2) If the filename begins with a '$', the rest of the string up
   to the end or the first '/' or directory separator will be used
   as an environment variable, whose value will be returned.

   Once all this is done, any '/' will be converted to DIR_SEPARATOR,
Kazu Hirata committed
62
   if they are different.
Jeff Law committed
63 64 65 66 67 68

   NOTE:  using resolve_keyed_path under Win32 requires linking with
   advapi32.dll.  */


#include "config.h"
69
#include "system.h"
70 71
#include "coretypes.h"
#include "tm.h"
72
#if defined(_WIN32) && defined(ENABLE_WIN32_REGISTRY)
Jeff Law committed
73 74
#include <windows.h>
#endif
75
#include "prefix.h"
Jeff Law committed
76

77
static const char *std_prefix = PREFIX;
78

79 80 81 82
static const char *get_key_value (char *);
static char *translate_name (char *);
static char *save_string (const char *, int);
static void tr (char *, int, int);
Jeff Law committed
83

84
#if defined(_WIN32) && defined(ENABLE_WIN32_REGISTRY)
85
static char *lookup_key (char *);
Jeff Law committed
86 87 88 89 90
static HKEY reg_key = (HKEY) INVALID_HANDLE_VALUE;
#endif

/* Given KEY, as above, return its value.  */

91
static const char *
92
get_key_value (char *key)
Jeff Law committed
93
{
94
  const char *prefix = 0;
95
  char *temp = 0;
Jeff Law committed
96

97
#if defined(_WIN32) && defined(ENABLE_WIN32_REGISTRY)
Jeff Law committed
98 99 100 101
  prefix = lookup_key (key);
#endif

  if (prefix == 0)
102
    prefix = getenv (temp = concat (key, "_ROOT", NULL));
Jeff Law committed
103 104

  if (prefix == 0)
105 106 107 108
    prefix = std_prefix;

  if (temp)
    free (temp);
Jeff Law committed
109 110 111 112 113 114 115

  return prefix;
}

/* Return a copy of a string that has been placed in the heap.  */

static char *
116
save_string (const char *s, int len)
Jeff Law committed
117
{
118
  char *result = xmalloc (len + 1);
Jeff Law committed
119

120
  memcpy (result, s, len);
Jeff Law committed
121 122 123 124
  result[len] = 0;
  return result;
}

125
#if defined(_WIN32) && defined(ENABLE_WIN32_REGISTRY)
Jeff Law committed
126

Zack Weinberg committed
127 128 129 130
#ifndef WIN32_REGISTRY_KEY
# define WIN32_REGISTRY_KEY BASEVER
#endif

Jeff Law committed
131 132 133
/* Look up "key" in the registry, as above.  */

static char *
134
lookup_key (char *key)
Jeff Law committed
135 136 137 138 139 140 141 142 143 144 145 146 147 148 149
{
  char *dst;
  DWORD size;
  DWORD type;
  LONG res;

  if (reg_key == (HKEY) INVALID_HANDLE_VALUE)
    {
      res = RegOpenKeyExA (HKEY_LOCAL_MACHINE, "SOFTWARE", 0,
			   KEY_READ, &reg_key);

      if (res == ERROR_SUCCESS)
	res = RegOpenKeyExA (reg_key, "Free Software Foundation", 0,
			     KEY_READ, &reg_key);

150 151 152 153
      if (res == ERROR_SUCCESS)
	res = RegOpenKeyExA (reg_key, WIN32_REGISTRY_KEY, 0,
			     KEY_READ, &reg_key);

Jeff Law committed
154
      if (res != ERROR_SUCCESS)
Kazu Hirata committed
155 156 157 158
	{
	  reg_key = (HKEY) INVALID_HANDLE_VALUE;
	  return 0;
	}
Jeff Law committed
159 160 161
    }

  size = 32;
162
  dst = xmalloc (size);
Jeff Law committed
163

164
  res = RegQueryValueExA (reg_key, key, 0, &type, (LPBYTE) dst, &size);
Jeff Law committed
165 166
  if (res == ERROR_MORE_DATA && type == REG_SZ)
    {
167
      dst = xrealloc (dst, size);
168
      res = RegQueryValueExA (reg_key, key, 0, &type, (LPBYTE) dst, &size);
Jeff Law committed
169 170 171 172 173 174 175 176 177 178 179 180
    }

  if (type != REG_SZ || res != ERROR_SUCCESS)
    {
      free (dst);
      dst = 0;
    }

  return dst;
}
#endif

181 182 183
/* If NAME, a malloc-ed string, starts with a '@' or '$', apply the
   translation rules above and return a newly malloc-ed name.
   Otherwise, return the given name.  */
Jeff Law committed
184

185
static char *
186
translate_name (char *name)
Jeff Law committed
187
{
188 189 190
  char code;
  char *key, *old_name;
  const char *prefix;
Jeff Law committed
191 192
  int keylen;

193 194 195 196 197 198 199 200 201 202 203
  for (;;)
    {
      code = name[0];
      if (code != '@' && code != '$')
	break;

      for (keylen = 0;
	   (name[keylen + 1] != 0 && !IS_DIR_SEPARATOR (name[keylen + 1]));
	   keylen++)
	;

204
      key = alloca (keylen + 1);
205 206 207 208 209 210 211 212 213 214 215
      strncpy (key, &name[1], keylen);
      key[keylen] = 0;

      if (code == '@')
	{
	  prefix = get_key_value (key);
	  if (prefix == 0)
	    prefix = std_prefix;
	}
      else
	prefix = getenv (key);
Jeff Law committed
216

217 218
      if (prefix == 0)
	prefix = PREFIX;
Jeff Law committed
219

220 221 222 223
      /* We used to strip trailing DIR_SEPARATORs here, but that can
	 sometimes yield a result with no separator when one was coded
	 and intended by the user, causing two path components to run
	 together.  */
Jeff Law committed
224

225 226 227
      old_name = name;
      name = concat (prefix, &name[keylen + 1], NULL);
      free (old_name);
Jeff Law committed
228
    }
229

230 231
  return name;
}
Jeff Law committed
232

233 234
/* In a NUL-terminated STRING, replace character C1 with C2 in-place.  */
static void
235
tr (char *string, int c1, int c2)
236 237 238 239 240 241 242
{
  do
    {
      if (*string == c1)
	*string = c2;
    }
  while (*string++);
Jeff Law committed
243 244
}

245 246 247
/* Update PATH using KEY if PATH starts with PREFIX as a directory.
   The returned string is always malloc-ed, and the caller is
   responsible for freeing it.  */
Jeff Law committed
248

249
char *
250
update_path (const char *path, const char *key)
Jeff Law committed
251
{
252
  char *result, *p;
253
  const int len = strlen (std_prefix);
254

255 256 257 258
  if (! strncmp (path, std_prefix, len)
      && (IS_DIR_SEPARATOR(path[len])
          || path[len] == '\0')
      && key != 0)
Jeff Law committed
259
    {
260
      bool free_key = false;
Jeff Law committed
261

262 263 264 265 266 267
      if (key[0] != '$')
	{
	  key = concat ("@", key, NULL);
	  free_key = true;
	}

268
      result = concat (key, &path[len], NULL);
269 270 271
      if (free_key)
	free ((char *) key);
      result = translate_name (result);
Jeff Law committed
272
    }
273 274
  else
    result = xstrdup (path);
275

276 277 278 279 280 281 282 283 284 285 286 287 288
#ifndef ALWAYS_STRIP_DOTDOT
#define ALWAYS_STRIP_DOTDOT 0
#endif

  p = result;
  while (1)
    {
      char *src, *dest;

      p = strchr (p, '.');
      if (p == NULL)
	break;
      /* Look for `/../'  */
289 290 291
      if (p[1] == '.'
	  && IS_DIR_SEPARATOR (p[2])
	  && (p != result && IS_DIR_SEPARATOR (p[-1])))
292 293 294 295 296
	{
	  *p = 0;
	  if (!ALWAYS_STRIP_DOTDOT && access (result, X_OK) == 0)
	    {
	      *p = '.';
297
	      break;
298 299 300 301
	    }
	  else
	    {
	      /* We can't access the dir, so we won't be able to
302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320
		 access dir/.. either.  Strip out `dir/../'.  If `dir'
		 turns out to be `.', strip one more path component.  */
	      dest = p;
	      do
		{
		  --dest;
		  while (dest != result && IS_DIR_SEPARATOR (*dest))
		    --dest;
		  while (dest != result && !IS_DIR_SEPARATOR (dest[-1]))
		    --dest;
		}
	      while (dest != result && *dest == '.');
	      /* If we have something like `./..' or `/..', don't
		 strip anything more.  */
	      if (*dest == '.' || IS_DIR_SEPARATOR (*dest))
		{
		  *p = '.';
		  break;
		}
321 322 323 324 325 326 327 328 329 330 331 332
	      src = p + 3;
	      while (IS_DIR_SEPARATOR (*src))
		++src;
	      p = dest;
	      while ((*dest++ = *src++) != 0)
		;
	    }
	}
      else
	++p;
    }

333
#ifdef UPDATE_PATH_HOST_CANONICALIZE
334
  /* Perform host dependent canonicalization when needed.  */
335
  UPDATE_PATH_HOST_CANONICALIZE (result);
336 337
#endif

338
#ifdef DIR_SEPARATOR_2
339
  /* Convert DIR_SEPARATOR_2 to DIR_SEPARATOR.  */
340 341
  if (DIR_SEPARATOR_2 != DIR_SEPARATOR)
    tr (result, DIR_SEPARATOR_2, DIR_SEPARATOR);
342
#endif
343

344
#if defined (DIR_SEPARATOR) && !defined (DIR_SEPARATOR_2)
Jeff Law committed
345
  if (DIR_SEPARATOR != '/')
346
    tr (result, '/', DIR_SEPARATOR);
Jeff Law committed
347 348
#endif

349
  return result;
Jeff Law committed
350
}
351

352
/* Reset the standard prefix.  */
353
void
354
set_std_prefix (const char *prefix, int len)
355 356 357
{
  std_prefix = save_string (prefix, len);
}