]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/prefix.c
* doc/install.texi (Specific, alpha): Remove note to use
[thirdparty/gcc.git] / gcc / prefix.c
CommitLineData
03b352a9 1/* Utility to update paths from internal to external forms.
fbd26352 2 Copyright (C) 1997-2019 Free Software Foundation, Inc.
03b352a9 3
f12b58b3 4This file is part of GCC.
03b352a9 5
f12b58b3 6GCC is free software; you can redistribute it and/or modify it under
7the terms of the GNU Library General Public License as published by
8c4c00c1 8the Free Software Foundation; either version 3 of the License, or (at
f12b58b3 9your option) any later version.
03b352a9 10
11GCC is distributed in the hope that it will be useful,
12but WITHOUT ANY WARRANTY; without even the implied warranty of
13MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14Library General Public License for more details.
15
16You should have received a copy of the GNU Library General Public
8c4c00c1 17License along with GCC; see the file COPYING3. If not see
18<http://www.gnu.org/licenses/>. */
03b352a9 19
20/* This file contains routines to update a path, both to canonicalize
21 the directory format and to handle any prefix translation.
22
23 This file must be compiled with -DPREFIX= to specify the "prefix"
24 value used by configure. If a filename does not begin with this
25 prefix, it will not be affected other than by directory canonicalization.
26
27 Each caller of 'update_path' may specify both a filename and
28 a translation prefix and consist of the name of the package that contains
29 the file ("@GCC", "@BINUTIL", "@GNU", etc).
30
31 If the prefix is not specified, the filename will only undergo
32 directory canonicalization.
33
34 If it is specified, the string given by PREFIX will be replaced
35 by the specified prefix (with a '@' in front unless the prefix begins
36 with a '$') and further translation will be done as follows
37 until none of the two conditions below are met:
38
39 1) If the filename begins with '@', the string between the '@' and
40 the end of the name or the first '/' or directory separator will
41 be considered a "key" and looked up as follows:
42
43 -- If this is a Win32 OS, then the Registry will be examined for
195731ad 44 an entry of "key" in
03b352a9 45
778a2833 46 HKEY_LOCAL_MACHINE\SOFTWARE\Free Software Foundation\<KEY>
03b352a9 47
778a2833 48 if found, that value will be used. <KEY> defaults to GCC version
49 string, but can be overridden at configuration time.
03b352a9 50
51 -- If not found (or not a Win32 OS), the environment variable
52 key_ROOT (the value of "key" concatenated with the constant "_ROOT")
53 is tried. If that fails, then PREFIX (see above) is used.
54
55 2) If the filename begins with a '$', the rest of the string up
56 to the end or the first '/' or directory separator will be used
57 as an environment variable, whose value will be returned.
58
59 Once all this is done, any '/' will be converted to DIR_SEPARATOR,
195731ad 60 if they are different.
03b352a9 61
62 NOTE: using resolve_keyed_path under Win32 requires linking with
63 advapi32.dll. */
64
65
66#include "config.h"
405711de 67#include "system.h"
805e22b2 68#include "coretypes.h"
778a2833 69#if defined(_WIN32) && defined(ENABLE_WIN32_REGISTRY)
03b352a9 70#include <windows.h>
71#endif
7bcdc3c7 72#include "prefix.h"
3e87b980 73#include "common/common-target.h"
03b352a9 74
7bcdc3c7 75static const char *std_prefix = PREFIX;
055237ef 76
3ad4992f 77static const char *get_key_value (char *);
78static char *translate_name (char *);
79static char *save_string (const char *, int);
80static void tr (char *, int, int);
03b352a9 81
778a2833 82#if defined(_WIN32) && defined(ENABLE_WIN32_REGISTRY)
3ad4992f 83static char *lookup_key (char *);
03b352a9 84static HKEY reg_key = (HKEY) INVALID_HANDLE_VALUE;
85#endif
86
03b352a9 87/* Given KEY, as above, return its value. */
88
7bcdc3c7 89static const char *
3ad4992f 90get_key_value (char *key)
03b352a9 91{
7bcdc3c7 92 const char *prefix = 0;
055237ef 93 char *temp = 0;
03b352a9 94
778a2833 95#if defined(_WIN32) && defined(ENABLE_WIN32_REGISTRY)
03b352a9 96 prefix = lookup_key (key);
97#endif
98
99 if (prefix == 0)
4e2023c8 100 prefix = getenv (temp = concat (key, "_ROOT", NULL));
03b352a9 101
102 if (prefix == 0)
055237ef 103 prefix = std_prefix;
104
dd045aee 105 free (temp);
03b352a9 106
107 return prefix;
108}
109
03b352a9 110/* Return a copy of a string that has been placed in the heap. */
111
112static char *
3ad4992f 113save_string (const char *s, int len)
03b352a9 114{
a9c6c0e3 115 char *result = XNEWVEC (char, len + 1);
03b352a9 116
b1b63592 117 memcpy (result, s, len);
03b352a9 118 result[len] = 0;
119 return result;
120}
121
778a2833 122#if defined(_WIN32) && defined(ENABLE_WIN32_REGISTRY)
03b352a9 123
1af67e62 124#ifndef WIN32_REGISTRY_KEY
125# define WIN32_REGISTRY_KEY BASEVER
126#endif
127
03b352a9 128/* Look up "key" in the registry, as above. */
129
130static char *
3ad4992f 131lookup_key (char *key)
03b352a9 132{
133 char *dst;
134 DWORD size;
135 DWORD type;
136 LONG res;
137
138 if (reg_key == (HKEY) INVALID_HANDLE_VALUE)
139 {
140 res = RegOpenKeyExA (HKEY_LOCAL_MACHINE, "SOFTWARE", 0,
141 KEY_READ, &reg_key);
142
143 if (res == ERROR_SUCCESS)
144 res = RegOpenKeyExA (reg_key, "Free Software Foundation", 0,
145 KEY_READ, &reg_key);
146
778a2833 147 if (res == ERROR_SUCCESS)
148 res = RegOpenKeyExA (reg_key, WIN32_REGISTRY_KEY, 0,
149 KEY_READ, &reg_key);
150
03b352a9 151 if (res != ERROR_SUCCESS)
195731ad 152 {
153 reg_key = (HKEY) INVALID_HANDLE_VALUE;
154 return 0;
155 }
03b352a9 156 }
157
158 size = 32;
cdf06721 159 dst = XNEWVEC (char, size);
03b352a9 160
dfab2869 161 res = RegQueryValueExA (reg_key, key, 0, &type, (LPBYTE) dst, &size);
03b352a9 162 if (res == ERROR_MORE_DATA && type == REG_SZ)
163 {
cdf06721 164 dst = XRESIZEVEC (char, dst, size);
dfab2869 165 res = RegQueryValueExA (reg_key, key, 0, &type, (LPBYTE) dst, &size);
03b352a9 166 }
167
168 if (type != REG_SZ || res != ERROR_SUCCESS)
169 {
170 free (dst);
171 dst = 0;
172 }
173
174 return dst;
175}
176#endif
177
17b80c08 178/* If NAME, a malloc-ed string, starts with a '@' or '$', apply the
179 translation rules above and return a newly malloc-ed name.
180 Otherwise, return the given name. */
03b352a9 181
17b80c08 182static char *
3ad4992f 183translate_name (char *name)
03b352a9 184{
17b80c08 185 char code;
186 char *key, *old_name;
187 const char *prefix;
03b352a9 188 int keylen;
189
17b80c08 190 for (;;)
191 {
192 code = name[0];
193 if (code != '@' && code != '$')
194 break;
195
196 for (keylen = 0;
197 (name[keylen + 1] != 0 && !IS_DIR_SEPARATOR (name[keylen + 1]));
198 keylen++)
199 ;
200
a9c6c0e3 201 key = (char *) alloca (keylen + 1);
c8c1b51f 202 memcpy (key, &name[1], keylen);
17b80c08 203 key[keylen] = 0;
204
205 if (code == '@')
206 {
207 prefix = get_key_value (key);
208 if (prefix == 0)
209 prefix = std_prefix;
210 }
211 else
212 prefix = getenv (key);
03b352a9 213
17b80c08 214 if (prefix == 0)
215 prefix = PREFIX;
03b352a9 216
17b80c08 217 /* We used to strip trailing DIR_SEPARATORs here, but that can
218 sometimes yield a result with no separator when one was coded
219 and intended by the user, causing two path components to run
220 together. */
03b352a9 221
17b80c08 222 old_name = name;
223 name = concat (prefix, &name[keylen + 1], NULL);
224 free (old_name);
03b352a9 225 }
997d68fe 226
17b80c08 227 return name;
228}
03b352a9 229
17b80c08 230/* In a NUL-terminated STRING, replace character C1 with C2 in-place. */
231static void
3ad4992f 232tr (char *string, int c1, int c2)
17b80c08 233{
234 do
235 {
236 if (*string == c1)
237 *string = c2;
238 }
239 while (*string++);
03b352a9 240}
241
3d098602 242/* Update PATH using KEY if PATH starts with PREFIX as a directory.
243 The returned string is always malloc-ed, and the caller is
244 responsible for freeing it. */
03b352a9 245
17b80c08 246char *
3ad4992f 247update_path (const char *path, const char *key)
03b352a9 248{
38475ee3 249 char *result, *p;
3d098602 250 const int len = strlen (std_prefix);
17b80c08 251
82715bcd 252 if (! filename_ncmp (path, std_prefix, len)
9af5ce0c 253 && (IS_DIR_SEPARATOR (path[len])
3d098602 254 || path[len] == '\0')
255 && key != 0)
03b352a9 256 {
17b80c08 257 bool free_key = false;
03b352a9 258
17b80c08 259 if (key[0] != '$')
260 {
261 key = concat ("@", key, NULL);
262 free_key = true;
263 }
264
3d098602 265 result = concat (key, &path[len], NULL);
17b80c08 266 if (free_key)
e47a6f81 267 free (CONST_CAST (char *, key));
17b80c08 268 result = translate_name (result);
03b352a9 269 }
17b80c08 270 else
271 result = xstrdup (path);
79b23a1e 272
38475ee3 273 p = result;
274 while (1)
275 {
276 char *src, *dest;
277
278 p = strchr (p, '.');
279 if (p == NULL)
280 break;
38475ee3 281 /* Look for `/../' */
fa93416c 282 if (p[1] == '.'
283 && IS_DIR_SEPARATOR (p[2])
284 && (p != result && IS_DIR_SEPARATOR (p[-1])))
38475ee3 285 {
286 *p = 0;
3e87b980 287 if (!targetm_common.always_strip_dotdot
288 && access (result, X_OK) == 0)
38475ee3 289 {
290 *p = '.';
fa93416c 291 break;
38475ee3 292 }
293 else
294 {
295 /* We can't access the dir, so we won't be able to
fa93416c 296 access dir/.. either. Strip out `dir/../'. If `dir'
297 turns out to be `.', strip one more path component. */
298 dest = p;
299 do
300 {
301 --dest;
302 while (dest != result && IS_DIR_SEPARATOR (*dest))
303 --dest;
304 while (dest != result && !IS_DIR_SEPARATOR (dest[-1]))
305 --dest;
306 }
307 while (dest != result && *dest == '.');
308 /* If we have something like `./..' or `/..', don't
309 strip anything more. */
310 if (*dest == '.' || IS_DIR_SEPARATOR (*dest))
311 {
312 *p = '.';
313 break;
314 }
38475ee3 315 src = p + 3;
316 while (IS_DIR_SEPARATOR (*src))
317 ++src;
318 p = dest;
319 while ((*dest++ = *src++) != 0)
320 ;
321 }
322 }
323 else
324 ++p;
325 }
326
4e79af62 327#ifdef UPDATE_PATH_HOST_CANONICALIZE
17b80c08 328 /* Perform host dependent canonicalization when needed. */
38475ee3 329 UPDATE_PATH_HOST_CANONICALIZE (result);
4e79af62 330#endif
331
79b23a1e 332#ifdef DIR_SEPARATOR_2
aa40f561 333 /* Convert DIR_SEPARATOR_2 to DIR_SEPARATOR. */
17b80c08 334 if (DIR_SEPARATOR_2 != DIR_SEPARATOR)
335 tr (result, DIR_SEPARATOR_2, DIR_SEPARATOR);
79b23a1e 336#endif
17b80c08 337
79b23a1e 338#if defined (DIR_SEPARATOR) && !defined (DIR_SEPARATOR_2)
03b352a9 339 if (DIR_SEPARATOR != '/')
17b80c08 340 tr (result, '/', DIR_SEPARATOR);
03b352a9 341#endif
342
17b80c08 343 return result;
03b352a9 344}
055237ef 345
2358393e 346/* Reset the standard prefix. */
055237ef 347void
3ad4992f 348set_std_prefix (const char *prefix, int len)
055237ef 349{
350 std_prefix = save_string (prefix, len);
351}