Mercurial > hg > octave-kai > gnulib-hg
annotate lib/progreloc.c @ 9576:8cae100b8cd1
Improve memory cleanup in 'relocatable' module.
author | Bruno Haible <bruno@clisp.org> |
---|---|
date | Tue, 08 Jan 2008 00:28:30 +0100 |
parents | c3d038b0b4d3 |
children | 6d85e95ca18f |
rev | line source |
---|---|
4603 | 1 /* Provide relocatable programs. |
9576
8cae100b8cd1
Improve memory cleanup in 'relocatable' module.
Bruno Haible <bruno@clisp.org>
parents:
9547
diff
changeset
|
2 Copyright (C) 2003-2008 Free Software Foundation, Inc. |
4603 | 3 Written by Bruno Haible <bruno@clisp.org>, 2003. |
4 | |
9309
bbbbbf4cd1c5
Change copyright notice from GPLv2+ to GPLv3+.
Bruno Haible <bruno@clisp.org>
parents:
8272
diff
changeset
|
5 This program is free software: you can redistribute it and/or modify |
5270
b084a75dc8bc
Change copyright notice to GPL. The file is still under LGPL 2.0; this
Bruno Haible <bruno@clisp.org>
parents:
5164
diff
changeset
|
6 it under the terms of the GNU General Public License as published by |
9309
bbbbbf4cd1c5
Change copyright notice from GPLv2+ to GPLv3+.
Bruno Haible <bruno@clisp.org>
parents:
8272
diff
changeset
|
7 the Free Software Foundation; either version 3 of the License, or |
bbbbbf4cd1c5
Change copyright notice from GPLv2+ to GPLv3+.
Bruno Haible <bruno@clisp.org>
parents:
8272
diff
changeset
|
8 (at your option) any later version. |
4603 | 9 |
10 This program is distributed in the hope that it will be useful, | |
11 but WITHOUT ANY WARRANTY; without even the implied warranty of | |
5270
b084a75dc8bc
Change copyright notice to GPL. The file is still under LGPL 2.0; this
Bruno Haible <bruno@clisp.org>
parents:
5164
diff
changeset
|
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
b084a75dc8bc
Change copyright notice to GPL. The file is still under LGPL 2.0; this
Bruno Haible <bruno@clisp.org>
parents:
5164
diff
changeset
|
13 GNU General Public License for more details. |
4603 | 14 |
5270
b084a75dc8bc
Change copyright notice to GPL. The file is still under LGPL 2.0; this
Bruno Haible <bruno@clisp.org>
parents:
5164
diff
changeset
|
15 You should have received a copy of the GNU General Public License |
9309
bbbbbf4cd1c5
Change copyright notice from GPLv2+ to GPLv3+.
Bruno Haible <bruno@clisp.org>
parents:
8272
diff
changeset
|
16 along with this program. If not, see <http://www.gnu.org/licenses/>. */ |
4603 | 17 |
18 | |
7304
1c4ed7637c24
Include <config.h> unconditionally.
Bruno Haible <bruno@clisp.org>
parents:
7023
diff
changeset
|
19 #include <config.h> |
4603 | 20 |
21 /* Specification. */ | |
22 #include "progname.h" | |
23 | |
24 #include <stdbool.h> | |
25 #include <stdio.h> | |
26 #include <stdlib.h> | |
27 #include <string.h> | |
28 #include <fcntl.h> | |
8272
fd48e35f4e5e
New modules relocatable, relocatable-lib, relocatable-script.
Bruno Haible <bruno@clisp.org>
parents:
7863
diff
changeset
|
29 #include <unistd.h> |
4603 | 30 #include <sys/stat.h> |
31 | |
7023
d78abd0c0b70
Update from GNU gettext 0.15.
Bruno Haible <bruno@clisp.org>
parents:
6259
diff
changeset
|
32 /* Get declaration of _NSGetExecutablePath on MacOS X 10.2 or newer. */ |
d78abd0c0b70
Update from GNU gettext 0.15.
Bruno Haible <bruno@clisp.org>
parents:
6259
diff
changeset
|
33 #if HAVE_MACH_O_DYLD_H |
d78abd0c0b70
Update from GNU gettext 0.15.
Bruno Haible <bruno@clisp.org>
parents:
6259
diff
changeset
|
34 # include <mach-o/dyld.h> |
4603 | 35 #endif |
36 | |
7023
d78abd0c0b70
Update from GNU gettext 0.15.
Bruno Haible <bruno@clisp.org>
parents:
6259
diff
changeset
|
37 #if defined _WIN32 || defined __WIN32__ |
d78abd0c0b70
Update from GNU gettext 0.15.
Bruno Haible <bruno@clisp.org>
parents:
6259
diff
changeset
|
38 # define WIN32_NATIVE |
d78abd0c0b70
Update from GNU gettext 0.15.
Bruno Haible <bruno@clisp.org>
parents:
6259
diff
changeset
|
39 #endif |
d78abd0c0b70
Update from GNU gettext 0.15.
Bruno Haible <bruno@clisp.org>
parents:
6259
diff
changeset
|
40 |
d78abd0c0b70
Update from GNU gettext 0.15.
Bruno Haible <bruno@clisp.org>
parents:
6259
diff
changeset
|
41 #if defined WIN32_NATIVE || defined __CYGWIN__ |
4603 | 42 # define WIN32_LEAN_AND_MEAN |
43 # include <windows.h> | |
44 #endif | |
45 | |
46 #include "canonicalize.h" | |
47 #include "relocatable.h" | |
48 | |
49 #ifdef NO_XMALLOC | |
9547
c3d038b0b4d3
Fix link error in relocatability wrappers, due to xalloc_die().
Bruno Haible <bruno@clisp.org>
parents:
9309
diff
changeset
|
50 # include "areadlink.h" |
c3d038b0b4d3
Fix link error in relocatability wrappers, due to xalloc_die().
Bruno Haible <bruno@clisp.org>
parents:
9309
diff
changeset
|
51 # define xreadlink areadlink |
c3d038b0b4d3
Fix link error in relocatability wrappers, due to xalloc_die().
Bruno Haible <bruno@clisp.org>
parents:
9309
diff
changeset
|
52 #else |
c3d038b0b4d3
Fix link error in relocatability wrappers, due to xalloc_die().
Bruno Haible <bruno@clisp.org>
parents:
9309
diff
changeset
|
53 # include "xreadlink.h" |
c3d038b0b4d3
Fix link error in relocatability wrappers, due to xalloc_die().
Bruno Haible <bruno@clisp.org>
parents:
9309
diff
changeset
|
54 #endif |
c3d038b0b4d3
Fix link error in relocatability wrappers, due to xalloc_die().
Bruno Haible <bruno@clisp.org>
parents:
9309
diff
changeset
|
55 |
c3d038b0b4d3
Fix link error in relocatability wrappers, due to xalloc_die().
Bruno Haible <bruno@clisp.org>
parents:
9309
diff
changeset
|
56 #ifdef NO_XMALLOC |
4603 | 57 # define xmalloc malloc |
5583 | 58 # define xstrdup strdup |
4603 | 59 #else |
5583 | 60 # include "xalloc.h" |
4603 | 61 #endif |
62 | |
63 /* Pathname support. | |
64 ISSLASH(C) tests whether C is a directory separator character. | |
65 IS_PATH_WITH_DIR(P) tests whether P contains a directory specification. | |
66 */ | |
5053
eebff8c51a9b
Treat Cygwin like Windows regarding pathname syntax.
Bruno Haible <bruno@clisp.org>
parents:
4691
diff
changeset
|
67 #if defined _WIN32 || defined __WIN32__ || defined __CYGWIN__ || defined __EMX__ || defined __DJGPP__ |
eebff8c51a9b
Treat Cygwin like Windows regarding pathname syntax.
Bruno Haible <bruno@clisp.org>
parents:
4691
diff
changeset
|
68 /* Win32, Cygwin, OS/2, DOS */ |
4603 | 69 # define ISSLASH(C) ((C) == '/' || (C) == '\\') |
70 # define HAS_DEVICE(P) \ | |
71 ((((P)[0] >= 'A' && (P)[0] <= 'Z') || ((P)[0] >= 'a' && (P)[0] <= 'z')) \ | |
72 && (P)[1] == ':') | |
73 # define IS_PATH_WITH_DIR(P) \ | |
74 (strchr (P, '/') != NULL || strchr (P, '\\') != NULL || HAS_DEVICE (P)) | |
5164
773a21466082
Rename FILESYSTEM_PREFIX_LEN.
Bruno Haible <bruno@clisp.org>
parents:
5053
diff
changeset
|
75 # define FILE_SYSTEM_PREFIX_LEN(P) (HAS_DEVICE (P) ? 2 : 0) |
4603 | 76 #else |
77 /* Unix */ | |
78 # define ISSLASH(C) ((C) == '/') | |
79 # define IS_PATH_WITH_DIR(P) (strchr (P, '/') != NULL) | |
5164
773a21466082
Rename FILESYSTEM_PREFIX_LEN.
Bruno Haible <bruno@clisp.org>
parents:
5053
diff
changeset
|
80 # define FILE_SYSTEM_PREFIX_LEN(P) 0 |
4603 | 81 #endif |
82 | |
7863 | 83 /* The results of open() in this file are not used with fchdir, |
84 therefore save some unnecessary work in fchdir.c. */ | |
85 #undef open | |
86 #undef close | |
87 | |
4603 | 88 #undef set_program_name |
89 | |
90 | |
91 #if ENABLE_RELOCATABLE | |
92 | |
93 #ifdef __linux__ | |
94 /* File descriptor of the executable. | |
95 (Only used to verify that we find the correct executable.) */ | |
96 static int executable_fd = -1; | |
97 #endif | |
98 | |
99 /* Tests whether a given pathname may belong to the executable. */ | |
100 static bool | |
101 maybe_executable (const char *filename) | |
102 { | |
7023
d78abd0c0b70
Update from GNU gettext 0.15.
Bruno Haible <bruno@clisp.org>
parents:
6259
diff
changeset
|
103 /* Woe32 lacks the access() function, but Cygwin doesn't. */ |
d78abd0c0b70
Update from GNU gettext 0.15.
Bruno Haible <bruno@clisp.org>
parents:
6259
diff
changeset
|
104 #if !(defined WIN32_NATIVE && !defined __CYGWIN__) |
4603 | 105 if (access (filename, X_OK) < 0) |
106 return false; | |
107 | |
108 #ifdef __linux__ | |
109 if (executable_fd >= 0) | |
110 { | |
111 /* If we already have an executable_fd, check that filename points to | |
112 the same inode. */ | |
113 struct stat statexe; | |
114 struct stat statfile; | |
115 | |
116 if (fstat (executable_fd, &statexe) >= 0) | |
117 { | |
118 if (stat (filename, &statfile) < 0) | |
119 return false; | |
120 if (!(statfile.st_dev | |
121 && statfile.st_dev == statexe.st_dev | |
122 && statfile.st_ino == statexe.st_ino)) | |
123 return false; | |
124 } | |
125 } | |
126 #endif | |
127 #endif | |
128 | |
129 return true; | |
130 } | |
131 | |
132 /* Determine the full pathname of the current executable, freshly allocated. | |
133 Return NULL if unknown. | |
134 Guaranteed to work on Linux and Woe32. Likely to work on the other | |
135 Unixes (maybe except BeOS), under most conditions. */ | |
136 static char * | |
137 find_executable (const char *argv0) | |
138 { | |
7023
d78abd0c0b70
Update from GNU gettext 0.15.
Bruno Haible <bruno@clisp.org>
parents:
6259
diff
changeset
|
139 #if defined WIN32_NATIVE || defined __CYGWIN__ |
d78abd0c0b70
Update from GNU gettext 0.15.
Bruno Haible <bruno@clisp.org>
parents:
6259
diff
changeset
|
140 char location[MAX_PATH]; |
d78abd0c0b70
Update from GNU gettext 0.15.
Bruno Haible <bruno@clisp.org>
parents:
6259
diff
changeset
|
141 int length = GetModuleFileName (NULL, location, sizeof (location)); |
4603 | 142 if (length < 0) |
143 return NULL; | |
7023
d78abd0c0b70
Update from GNU gettext 0.15.
Bruno Haible <bruno@clisp.org>
parents:
6259
diff
changeset
|
144 if (!IS_PATH_WITH_DIR (location)) |
4603 | 145 /* Shouldn't happen. */ |
146 return NULL; | |
7023
d78abd0c0b70
Update from GNU gettext 0.15.
Bruno Haible <bruno@clisp.org>
parents:
6259
diff
changeset
|
147 { |
d78abd0c0b70
Update from GNU gettext 0.15.
Bruno Haible <bruno@clisp.org>
parents:
6259
diff
changeset
|
148 #if defined __CYGWIN__ |
d78abd0c0b70
Update from GNU gettext 0.15.
Bruno Haible <bruno@clisp.org>
parents:
6259
diff
changeset
|
149 /* cygwin-1.5.13 (2005-03-01) or newer would also allow a Linux-like |
d78abd0c0b70
Update from GNU gettext 0.15.
Bruno Haible <bruno@clisp.org>
parents:
6259
diff
changeset
|
150 implementation: readlink of "/proc/self/exe". But using the |
d78abd0c0b70
Update from GNU gettext 0.15.
Bruno Haible <bruno@clisp.org>
parents:
6259
diff
changeset
|
151 result of the Win32 system call is simpler and is consistent with the |
d78abd0c0b70
Update from GNU gettext 0.15.
Bruno Haible <bruno@clisp.org>
parents:
6259
diff
changeset
|
152 code in relocatable.c. */ |
d78abd0c0b70
Update from GNU gettext 0.15.
Bruno Haible <bruno@clisp.org>
parents:
6259
diff
changeset
|
153 /* On Cygwin, we need to convert paths coming from Win32 system calls |
d78abd0c0b70
Update from GNU gettext 0.15.
Bruno Haible <bruno@clisp.org>
parents:
6259
diff
changeset
|
154 to the Unix-like slashified notation. */ |
d78abd0c0b70
Update from GNU gettext 0.15.
Bruno Haible <bruno@clisp.org>
parents:
6259
diff
changeset
|
155 static char location_as_posix_path[2 * MAX_PATH]; |
d78abd0c0b70
Update from GNU gettext 0.15.
Bruno Haible <bruno@clisp.org>
parents:
6259
diff
changeset
|
156 /* There's no error return defined for cygwin_conv_to_posix_path. |
d78abd0c0b70
Update from GNU gettext 0.15.
Bruno Haible <bruno@clisp.org>
parents:
6259
diff
changeset
|
157 See cygwin-api/func-cygwin-conv-to-posix-path.html. |
d78abd0c0b70
Update from GNU gettext 0.15.
Bruno Haible <bruno@clisp.org>
parents:
6259
diff
changeset
|
158 Does it overflow the buffer of expected size MAX_PATH or does it |
d78abd0c0b70
Update from GNU gettext 0.15.
Bruno Haible <bruno@clisp.org>
parents:
6259
diff
changeset
|
159 truncate the path? I don't know. Let's catch both. */ |
d78abd0c0b70
Update from GNU gettext 0.15.
Bruno Haible <bruno@clisp.org>
parents:
6259
diff
changeset
|
160 cygwin_conv_to_posix_path (location, location_as_posix_path); |
d78abd0c0b70
Update from GNU gettext 0.15.
Bruno Haible <bruno@clisp.org>
parents:
6259
diff
changeset
|
161 location_as_posix_path[MAX_PATH - 1] = '\0'; |
d78abd0c0b70
Update from GNU gettext 0.15.
Bruno Haible <bruno@clisp.org>
parents:
6259
diff
changeset
|
162 if (strlen (location_as_posix_path) >= MAX_PATH - 1) |
d78abd0c0b70
Update from GNU gettext 0.15.
Bruno Haible <bruno@clisp.org>
parents:
6259
diff
changeset
|
163 /* A sign of buffer overflow or path truncation. */ |
d78abd0c0b70
Update from GNU gettext 0.15.
Bruno Haible <bruno@clisp.org>
parents:
6259
diff
changeset
|
164 return NULL; |
d78abd0c0b70
Update from GNU gettext 0.15.
Bruno Haible <bruno@clisp.org>
parents:
6259
diff
changeset
|
165 /* Call canonicalize_file_name, because Cygwin supports symbolic links. */ |
d78abd0c0b70
Update from GNU gettext 0.15.
Bruno Haible <bruno@clisp.org>
parents:
6259
diff
changeset
|
166 return canonicalize_file_name (location_as_posix_path); |
d78abd0c0b70
Update from GNU gettext 0.15.
Bruno Haible <bruno@clisp.org>
parents:
6259
diff
changeset
|
167 #else |
d78abd0c0b70
Update from GNU gettext 0.15.
Bruno Haible <bruno@clisp.org>
parents:
6259
diff
changeset
|
168 return xstrdup (location); |
d78abd0c0b70
Update from GNU gettext 0.15.
Bruno Haible <bruno@clisp.org>
parents:
6259
diff
changeset
|
169 #endif |
d78abd0c0b70
Update from GNU gettext 0.15.
Bruno Haible <bruno@clisp.org>
parents:
6259
diff
changeset
|
170 } |
d78abd0c0b70
Update from GNU gettext 0.15.
Bruno Haible <bruno@clisp.org>
parents:
6259
diff
changeset
|
171 #else /* Unix && !Cygwin */ |
4603 | 172 #ifdef __linux__ |
173 /* The executable is accessible as /proc/<pid>/exe. In newer Linux | |
174 versions, also as /proc/self/exe. Linux >= 2.1 provides a symlink | |
175 to the true pathname; older Linux versions give only device and ino, | |
176 enclosed in brackets, which we cannot use here. */ | |
177 { | |
178 char *link; | |
179 | |
180 link = xreadlink ("/proc/self/exe"); | |
181 if (link != NULL && link[0] != '[') | |
182 return link; | |
183 if (executable_fd < 0) | |
184 executable_fd = open ("/proc/self/exe", O_RDONLY, 0); | |
185 | |
186 { | |
187 char buf[6+10+5]; | |
188 sprintf (buf, "/proc/%d/exe", getpid ()); | |
189 link = xreadlink (buf); | |
190 if (link != NULL && link[0] != '[') | |
191 return link; | |
192 if (executable_fd < 0) | |
193 executable_fd = open (buf, O_RDONLY, 0); | |
194 } | |
195 } | |
196 #endif | |
7023
d78abd0c0b70
Update from GNU gettext 0.15.
Bruno Haible <bruno@clisp.org>
parents:
6259
diff
changeset
|
197 #if HAVE_MACH_O_DYLD_H && HAVE__NSGETEXECUTABLEPATH |
d78abd0c0b70
Update from GNU gettext 0.15.
Bruno Haible <bruno@clisp.org>
parents:
6259
diff
changeset
|
198 /* On MacOS X 10.2 or newer, the function |
d78abd0c0b70
Update from GNU gettext 0.15.
Bruno Haible <bruno@clisp.org>
parents:
6259
diff
changeset
|
199 int _NSGetExecutablePath (char *buf, unsigned long *bufsize); |
d78abd0c0b70
Update from GNU gettext 0.15.
Bruno Haible <bruno@clisp.org>
parents:
6259
diff
changeset
|
200 can be used to retrieve the executable's full path. */ |
d78abd0c0b70
Update from GNU gettext 0.15.
Bruno Haible <bruno@clisp.org>
parents:
6259
diff
changeset
|
201 char location[4096]; |
d78abd0c0b70
Update from GNU gettext 0.15.
Bruno Haible <bruno@clisp.org>
parents:
6259
diff
changeset
|
202 unsigned long length = sizeof (location); |
d78abd0c0b70
Update from GNU gettext 0.15.
Bruno Haible <bruno@clisp.org>
parents:
6259
diff
changeset
|
203 if (_NSGetExecutablePath (location, &length) == 0 |
d78abd0c0b70
Update from GNU gettext 0.15.
Bruno Haible <bruno@clisp.org>
parents:
6259
diff
changeset
|
204 && location[0] == '/') |
d78abd0c0b70
Update from GNU gettext 0.15.
Bruno Haible <bruno@clisp.org>
parents:
6259
diff
changeset
|
205 return canonicalize_file_name (location); |
d78abd0c0b70
Update from GNU gettext 0.15.
Bruno Haible <bruno@clisp.org>
parents:
6259
diff
changeset
|
206 #endif |
4603 | 207 /* Guess the executable's full path. We assume the executable has been |
208 called via execlp() or execvp() with properly set up argv[0]. The | |
209 login(1) convention to add a '-' prefix to argv[0] is not supported. */ | |
210 { | |
211 bool has_slash = false; | |
212 { | |
213 const char *p; | |
214 for (p = argv0; *p; p++) | |
215 if (*p == '/') | |
216 { | |
217 has_slash = true; | |
218 break; | |
219 } | |
220 } | |
221 if (!has_slash) | |
222 { | |
223 /* exec searches paths without slashes in the directory list given | |
224 by $PATH. */ | |
225 const char *path = getenv ("PATH"); | |
226 | |
227 if (path != NULL) | |
228 { | |
229 const char *p; | |
230 const char *p_next; | |
231 | |
232 for (p = path; *p; p = p_next) | |
233 { | |
234 const char *q; | |
235 size_t p_len; | |
236 char *concat_name; | |
237 | |
238 for (q = p; *q; q++) | |
239 if (*q == ':') | |
240 break; | |
241 p_len = q - p; | |
242 p_next = (*q == '\0' ? q : q + 1); | |
243 | |
244 /* We have a path item at p, of length p_len. | |
245 Now concatenate the path item and argv0. */ | |
246 concat_name = (char *) xmalloc (p_len + strlen (argv0) + 2); | |
247 #ifdef NO_XMALLOC | |
248 if (concat_name == NULL) | |
249 return NULL; | |
250 #endif | |
251 if (p_len == 0) | |
252 /* An empty PATH element designates the current directory. */ | |
253 strcpy (concat_name, argv0); | |
254 else | |
255 { | |
256 memcpy (concat_name, p, p_len); | |
257 concat_name[p_len] = '/'; | |
258 strcpy (concat_name + p_len + 1, argv0); | |
259 } | |
260 if (maybe_executable (concat_name)) | |
261 return canonicalize_file_name (concat_name); | |
262 free (concat_name); | |
263 } | |
264 } | |
265 /* Not found in the PATH, assume the current directory. */ | |
266 } | |
267 /* exec treats paths containing slashes as relative to the current | |
268 directory. */ | |
269 if (maybe_executable (argv0)) | |
270 return canonicalize_file_name (argv0); | |
271 } | |
272 /* No way to find the executable. */ | |
273 return NULL; | |
274 #endif | |
275 } | |
276 | |
277 /* Full pathname of executable, or NULL. */ | |
278 static char *executable_fullname; | |
279 | |
280 static void | |
281 prepare_relocate (const char *orig_installprefix, const char *orig_installdir, | |
282 const char *argv0) | |
283 { | |
9576
8cae100b8cd1
Improve memory cleanup in 'relocatable' module.
Bruno Haible <bruno@clisp.org>
parents:
9547
diff
changeset
|
284 char *curr_prefix; |
4603 | 285 |
286 /* Determine the full pathname of the current executable. */ | |
287 executable_fullname = find_executable (argv0); | |
288 | |
289 /* Determine the current installation prefix from it. */ | |
290 curr_prefix = compute_curr_prefix (orig_installprefix, orig_installdir, | |
291 executable_fullname); | |
292 if (curr_prefix != NULL) | |
9576
8cae100b8cd1
Improve memory cleanup in 'relocatable' module.
Bruno Haible <bruno@clisp.org>
parents:
9547
diff
changeset
|
293 { |
8cae100b8cd1
Improve memory cleanup in 'relocatable' module.
Bruno Haible <bruno@clisp.org>
parents:
9547
diff
changeset
|
294 /* Now pass this prefix to all copies of the relocate.c source file. */ |
8cae100b8cd1
Improve memory cleanup in 'relocatable' module.
Bruno Haible <bruno@clisp.org>
parents:
9547
diff
changeset
|
295 set_relocation_prefix (orig_installprefix, curr_prefix); |
8cae100b8cd1
Improve memory cleanup in 'relocatable' module.
Bruno Haible <bruno@clisp.org>
parents:
9547
diff
changeset
|
296 |
8cae100b8cd1
Improve memory cleanup in 'relocatable' module.
Bruno Haible <bruno@clisp.org>
parents:
9547
diff
changeset
|
297 free (curr_prefix); |
8cae100b8cd1
Improve memory cleanup in 'relocatable' module.
Bruno Haible <bruno@clisp.org>
parents:
9547
diff
changeset
|
298 } |
4603 | 299 } |
300 | |
301 /* Set program_name, based on argv[0], and original installation prefix and | |
302 directory, for relocatability. */ | |
303 void | |
304 set_program_name_and_installdir (const char *argv0, | |
305 const char *orig_installprefix, | |
306 const char *orig_installdir) | |
307 { | |
308 const char *argv0_stripped = argv0; | |
309 | |
7023
d78abd0c0b70
Update from GNU gettext 0.15.
Bruno Haible <bruno@clisp.org>
parents:
6259
diff
changeset
|
310 /* Relocatable programs are renamed to .bin by install-reloc. Or, more |
d78abd0c0b70
Update from GNU gettext 0.15.
Bruno Haible <bruno@clisp.org>
parents:
6259
diff
changeset
|
311 generally, their suffix is changed from $exeext to .bin$exeext. |
d78abd0c0b70
Update from GNU gettext 0.15.
Bruno Haible <bruno@clisp.org>
parents:
6259
diff
changeset
|
312 Remove the ".bin" here. */ |
4603 | 313 { |
314 size_t argv0_len = strlen (argv0); | |
7023
d78abd0c0b70
Update from GNU gettext 0.15.
Bruno Haible <bruno@clisp.org>
parents:
6259
diff
changeset
|
315 const size_t exeext_len = sizeof (EXEEXT) - sizeof (""); |
d78abd0c0b70
Update from GNU gettext 0.15.
Bruno Haible <bruno@clisp.org>
parents:
6259
diff
changeset
|
316 if (argv0_len > 4 + exeext_len) |
d78abd0c0b70
Update from GNU gettext 0.15.
Bruno Haible <bruno@clisp.org>
parents:
6259
diff
changeset
|
317 if (memcmp (argv0 + argv0_len - exeext_len - 4, ".bin", 4) == 0) |
d78abd0c0b70
Update from GNU gettext 0.15.
Bruno Haible <bruno@clisp.org>
parents:
6259
diff
changeset
|
318 { |
d78abd0c0b70
Update from GNU gettext 0.15.
Bruno Haible <bruno@clisp.org>
parents:
6259
diff
changeset
|
319 if (sizeof (EXEEXT) > sizeof ("")) |
d78abd0c0b70
Update from GNU gettext 0.15.
Bruno Haible <bruno@clisp.org>
parents:
6259
diff
changeset
|
320 { |
d78abd0c0b70
Update from GNU gettext 0.15.
Bruno Haible <bruno@clisp.org>
parents:
6259
diff
changeset
|
321 /* Compare using an inlined copy of c_strncasecmp(), because |
d78abd0c0b70
Update from GNU gettext 0.15.
Bruno Haible <bruno@clisp.org>
parents:
6259
diff
changeset
|
322 the filenames may have undergone a case conversion since |
d78abd0c0b70
Update from GNU gettext 0.15.
Bruno Haible <bruno@clisp.org>
parents:
6259
diff
changeset
|
323 they were packaged. In other words, EXEEXT may be ".exe" |
d78abd0c0b70
Update from GNU gettext 0.15.
Bruno Haible <bruno@clisp.org>
parents:
6259
diff
changeset
|
324 on one system and ".EXE" on another. */ |
d78abd0c0b70
Update from GNU gettext 0.15.
Bruno Haible <bruno@clisp.org>
parents:
6259
diff
changeset
|
325 static const char exeext[] = EXEEXT; |
d78abd0c0b70
Update from GNU gettext 0.15.
Bruno Haible <bruno@clisp.org>
parents:
6259
diff
changeset
|
326 const char *s1 = argv0 + argv0_len - exeext_len; |
d78abd0c0b70
Update from GNU gettext 0.15.
Bruno Haible <bruno@clisp.org>
parents:
6259
diff
changeset
|
327 const char *s2 = exeext; |
d78abd0c0b70
Update from GNU gettext 0.15.
Bruno Haible <bruno@clisp.org>
parents:
6259
diff
changeset
|
328 for (; *s1 != '\0'; s1++, s2++) |
d78abd0c0b70
Update from GNU gettext 0.15.
Bruno Haible <bruno@clisp.org>
parents:
6259
diff
changeset
|
329 { |
d78abd0c0b70
Update from GNU gettext 0.15.
Bruno Haible <bruno@clisp.org>
parents:
6259
diff
changeset
|
330 unsigned char c1 = *s1; |
d78abd0c0b70
Update from GNU gettext 0.15.
Bruno Haible <bruno@clisp.org>
parents:
6259
diff
changeset
|
331 unsigned char c2 = *s2; |
d78abd0c0b70
Update from GNU gettext 0.15.
Bruno Haible <bruno@clisp.org>
parents:
6259
diff
changeset
|
332 if ((c1 >= 'A' && c1 <= 'Z' ? c1 - 'A' + 'a' : c1) |
d78abd0c0b70
Update from GNU gettext 0.15.
Bruno Haible <bruno@clisp.org>
parents:
6259
diff
changeset
|
333 != (c2 >= 'A' && c2 <= 'Z' ? c2 - 'A' + 'a' : c2)) |
d78abd0c0b70
Update from GNU gettext 0.15.
Bruno Haible <bruno@clisp.org>
parents:
6259
diff
changeset
|
334 goto done_stripping; |
d78abd0c0b70
Update from GNU gettext 0.15.
Bruno Haible <bruno@clisp.org>
parents:
6259
diff
changeset
|
335 } |
d78abd0c0b70
Update from GNU gettext 0.15.
Bruno Haible <bruno@clisp.org>
parents:
6259
diff
changeset
|
336 } |
d78abd0c0b70
Update from GNU gettext 0.15.
Bruno Haible <bruno@clisp.org>
parents:
6259
diff
changeset
|
337 /* Remove ".bin" before EXEEXT or its equivalent. */ |
d78abd0c0b70
Update from GNU gettext 0.15.
Bruno Haible <bruno@clisp.org>
parents:
6259
diff
changeset
|
338 { |
d78abd0c0b70
Update from GNU gettext 0.15.
Bruno Haible <bruno@clisp.org>
parents:
6259
diff
changeset
|
339 char *shorter = (char *) xmalloc (argv0_len - 4 + 1); |
4603 | 340 #ifdef NO_XMALLOC |
7023
d78abd0c0b70
Update from GNU gettext 0.15.
Bruno Haible <bruno@clisp.org>
parents:
6259
diff
changeset
|
341 if (shorter != NULL) |
4603 | 342 #endif |
7023
d78abd0c0b70
Update from GNU gettext 0.15.
Bruno Haible <bruno@clisp.org>
parents:
6259
diff
changeset
|
343 { |
d78abd0c0b70
Update from GNU gettext 0.15.
Bruno Haible <bruno@clisp.org>
parents:
6259
diff
changeset
|
344 memcpy (shorter, argv0, argv0_len - exeext_len - 4); |
d78abd0c0b70
Update from GNU gettext 0.15.
Bruno Haible <bruno@clisp.org>
parents:
6259
diff
changeset
|
345 if (sizeof (EXEEXT) > sizeof ("")) |
d78abd0c0b70
Update from GNU gettext 0.15.
Bruno Haible <bruno@clisp.org>
parents:
6259
diff
changeset
|
346 memcpy (shorter + argv0_len - exeext_len - 4, |
d78abd0c0b70
Update from GNU gettext 0.15.
Bruno Haible <bruno@clisp.org>
parents:
6259
diff
changeset
|
347 argv0 + argv0_len - exeext_len - 4, |
d78abd0c0b70
Update from GNU gettext 0.15.
Bruno Haible <bruno@clisp.org>
parents:
6259
diff
changeset
|
348 exeext_len); |
d78abd0c0b70
Update from GNU gettext 0.15.
Bruno Haible <bruno@clisp.org>
parents:
6259
diff
changeset
|
349 shorter[argv0_len - 4] = '\0'; |
d78abd0c0b70
Update from GNU gettext 0.15.
Bruno Haible <bruno@clisp.org>
parents:
6259
diff
changeset
|
350 argv0_stripped = shorter; |
d78abd0c0b70
Update from GNU gettext 0.15.
Bruno Haible <bruno@clisp.org>
parents:
6259
diff
changeset
|
351 } |
4603 | 352 } |
7023
d78abd0c0b70
Update from GNU gettext 0.15.
Bruno Haible <bruno@clisp.org>
parents:
6259
diff
changeset
|
353 done_stripping: ; |
4603 | 354 } |
355 } | |
356 | |
357 set_program_name (argv0_stripped); | |
358 | |
359 prepare_relocate (orig_installprefix, orig_installdir, argv0); | |
360 } | |
361 | |
362 /* Return the full pathname of the current executable, based on the earlier | |
363 call to set_program_name_and_installdir. Return NULL if unknown. */ | |
364 char * | |
4691 | 365 get_full_program_name (void) |
4603 | 366 { |
367 return executable_fullname; | |
368 } | |
369 | |
370 #endif |