1 /* Utility to update paths from internal to external forms.
2 Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005,
3 2007 Free Software Foundation, Inc.
5 This file is part of GCC.
7 GCC is free software; you can redistribute it and/or modify it under
8 the terms of the GNU Library General Public License as published by
9 the Free Software Foundation; either version 3 of the License, or (at
10 your option) any later version.
12 GCC is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 Library General Public License for more details.
17 You should have received a copy of the GNU Library General Public
18 License along with GCC; see the file COPYING3. If not see
19 <http://www.gnu.org/licenses/>. */
21 /* This file contains routines to update a path, both to canonicalize
22 the directory format and to handle any prefix translation.
24 This file must be compiled with -DPREFIX= to specify the "prefix"
25 value used by configure. If a filename does not begin with this
26 prefix, it will not be affected other than by directory canonicalization.
28 Each caller of 'update_path' may specify both a filename and
29 a translation prefix and consist of the name of the package that contains
30 the file ("@GCC", "@BINUTIL", "@GNU", etc).
32 If the prefix is not specified, the filename will only undergo
33 directory canonicalization.
35 If it is specified, the string given by PREFIX will be replaced
36 by the specified prefix (with a '@' in front unless the prefix begins
37 with a '$') and further translation will be done as follows
38 until none of the two conditions below are met:
40 1) If the filename begins with '@', the string between the '@' and
41 the end of the name or the first '/' or directory separator will
42 be considered a "key" and looked up as follows:
44 -- If this is a Win32 OS, then the Registry will be examined for
47 HKEY_LOCAL_MACHINE\SOFTWARE\Free Software Foundation\<KEY>
49 if found, that value will be used. <KEY> defaults to GCC version
50 string, but can be overridden at configuration time.
52 -- If not found (or not a Win32 OS), the environment variable
53 key_ROOT (the value of "key" concatenated with the constant "_ROOT")
54 is tried. If that fails, then PREFIX (see above) is used.
56 2) If the filename begins with a '$', the rest of the string up
57 to the end or the first '/' or directory separator will be used
58 as an environment variable, whose value will be returned.
60 Once all this is done, any '/' will be converted to DIR_SEPARATOR,
61 if they are different.
63 NOTE: using resolve_keyed_path under Win32 requires linking with
69 #include "coretypes.h"
71 #if defined(_WIN32) && defined(ENABLE_WIN32_REGISTRY)
76 static const char *std_prefix
= PREFIX
;
78 static const char *get_key_value (char *);
79 static char *translate_name (char *);
80 static char *save_string (const char *, int);
81 static void tr (char *, int, int);
83 #if defined(_WIN32) && defined(ENABLE_WIN32_REGISTRY)
84 static char *lookup_key (char *);
85 static HKEY reg_key
= (HKEY
) INVALID_HANDLE_VALUE
;
88 /* Given KEY, as above, return its value. */
91 get_key_value (char *key
)
93 const char *prefix
= 0;
96 #if defined(_WIN32) && defined(ENABLE_WIN32_REGISTRY)
97 prefix
= lookup_key (key
);
101 prefix
= getenv (temp
= concat (key
, "_ROOT", NULL
));
112 /* Return a copy of a string that has been placed in the heap. */
115 save_string (const char *s
, int len
)
117 char *result
= XNEWVEC (char, len
+ 1);
119 memcpy (result
, s
, len
);
124 #if defined(_WIN32) && defined(ENABLE_WIN32_REGISTRY)
126 #ifndef WIN32_REGISTRY_KEY
127 # define WIN32_REGISTRY_KEY BASEVER
130 /* Look up "key" in the registry, as above. */
133 lookup_key (char *key
)
140 if (reg_key
== (HKEY
) INVALID_HANDLE_VALUE
)
142 res
= RegOpenKeyExA (HKEY_LOCAL_MACHINE
, "SOFTWARE", 0,
145 if (res
== ERROR_SUCCESS
)
146 res
= RegOpenKeyExA (reg_key
, "Free Software Foundation", 0,
149 if (res
== ERROR_SUCCESS
)
150 res
= RegOpenKeyExA (reg_key
, WIN32_REGISTRY_KEY
, 0,
153 if (res
!= ERROR_SUCCESS
)
155 reg_key
= (HKEY
) INVALID_HANDLE_VALUE
;
161 dst
= xmalloc (size
);
163 res
= RegQueryValueExA (reg_key
, key
, 0, &type
, (LPBYTE
) dst
, &size
);
164 if (res
== ERROR_MORE_DATA
&& type
== REG_SZ
)
166 dst
= xrealloc (dst
, size
);
167 res
= RegQueryValueExA (reg_key
, key
, 0, &type
, (LPBYTE
) dst
, &size
);
170 if (type
!= REG_SZ
|| res
!= ERROR_SUCCESS
)
180 /* If NAME, a malloc-ed string, starts with a '@' or '$', apply the
181 translation rules above and return a newly malloc-ed name.
182 Otherwise, return the given name. */
185 translate_name (char *name
)
188 char *key
, *old_name
;
195 if (code
!= '@' && code
!= '$')
199 (name
[keylen
+ 1] != 0 && !IS_DIR_SEPARATOR (name
[keylen
+ 1]));
203 key
= (char *) alloca (keylen
+ 1);
204 strncpy (key
, &name
[1], keylen
);
209 prefix
= get_key_value (key
);
214 prefix
= getenv (key
);
219 /* We used to strip trailing DIR_SEPARATORs here, but that can
220 sometimes yield a result with no separator when one was coded
221 and intended by the user, causing two path components to run
225 name
= concat (prefix
, &name
[keylen
+ 1], NULL
);
232 /* In a NUL-terminated STRING, replace character C1 with C2 in-place. */
234 tr (char *string
, int c1
, int c2
)
244 /* Update PATH using KEY if PATH starts with PREFIX as a directory.
245 The returned string is always malloc-ed, and the caller is
246 responsible for freeing it. */
249 update_path (const char *path
, const char *key
)
252 const int len
= strlen (std_prefix
);
254 if (! strncmp (path
, std_prefix
, len
)
255 && (IS_DIR_SEPARATOR(path
[len
])
256 || path
[len
] == '\0')
259 bool free_key
= false;
263 key
= concat ("@", key
, NULL
);
267 result
= concat (key
, &path
[len
], NULL
);
269 free (CONST_CAST (char *, key
));
270 result
= translate_name (result
);
273 result
= xstrdup (path
);
275 #ifndef ALWAYS_STRIP_DOTDOT
276 #define ALWAYS_STRIP_DOTDOT 0
287 /* Look for `/../' */
289 && IS_DIR_SEPARATOR (p
[2])
290 && (p
!= result
&& IS_DIR_SEPARATOR (p
[-1])))
293 if (!ALWAYS_STRIP_DOTDOT
&& access (result
, X_OK
) == 0)
300 /* We can't access the dir, so we won't be able to
301 access dir/.. either. Strip out `dir/../'. If `dir'
302 turns out to be `.', strip one more path component. */
307 while (dest
!= result
&& IS_DIR_SEPARATOR (*dest
))
309 while (dest
!= result
&& !IS_DIR_SEPARATOR (dest
[-1]))
312 while (dest
!= result
&& *dest
== '.');
313 /* If we have something like `./..' or `/..', don't
314 strip anything more. */
315 if (*dest
== '.' || IS_DIR_SEPARATOR (*dest
))
321 while (IS_DIR_SEPARATOR (*src
))
324 while ((*dest
++ = *src
++) != 0)
332 #ifdef UPDATE_PATH_HOST_CANONICALIZE
333 /* Perform host dependent canonicalization when needed. */
334 UPDATE_PATH_HOST_CANONICALIZE (result
);
337 #ifdef DIR_SEPARATOR_2
338 /* Convert DIR_SEPARATOR_2 to DIR_SEPARATOR. */
339 if (DIR_SEPARATOR_2
!= DIR_SEPARATOR
)
340 tr (result
, DIR_SEPARATOR_2
, DIR_SEPARATOR
);
343 #if defined (DIR_SEPARATOR) && !defined (DIR_SEPARATOR_2)
344 if (DIR_SEPARATOR
!= '/')
345 tr (result
, '/', DIR_SEPARATOR
);
351 /* Reset the standard prefix. */
353 set_std_prefix (const char *prefix
, int len
)
355 std_prefix
= save_string (prefix
, len
);