2002-11-22 21:01:07 +01:00
|
|
|
/* Relative (relocatable) prefix support.
|
2021-01-04 10:26:59 +01:00
|
|
|
Copyright (C) 1987-2021 Free Software Foundation, Inc.
|
2002-11-22 21:01:07 +01:00
|
|
|
|
|
|
|
This file is part of libiberty.
|
|
|
|
|
|
|
|
GCC 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 2, or (at your option) any later
|
|
|
|
version.
|
|
|
|
|
|
|
|
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 General Public License
|
|
|
|
for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with GCC; see the file COPYING. If not, write to the Free
|
2005-05-10 17:33:18 +02:00
|
|
|
Software Foundation, 51 Franklin Street - Fifth Floor, Boston, MA
|
|
|
|
02110-1301, USA. */
|
2002-11-22 21:01:07 +01:00
|
|
|
|
|
|
|
/*
|
|
|
|
|
libiberty: documentation markup and order fixes.
libiberty/:
* splay-tree.c: Escape wrapping newlines in texinfo markup
with '@', to fix function declaration output rendering.
* gather-docs: Relax and improve macro name matching to actually
match all current names and to allow input line wrapping.
* bsearch.c, concat.c, crc32.c, fnmatch.txh, fopen_unlocked.c,
hashtab.c, insque.c, make-relative-prefix.c, memchr.c, memcmp.c,
memcpy.c, memmem.c, memmove.c, mempcpy.c, memset.c,
pexecute.txh, random.c, setenv.c, setproctitle.c,
simple-object.txh, snprintf.c, stpncpy.c, strncmp.c, strtod.c,
strtol.c, vasprintf.c, vprintf.c, vsnprintf.c, xmemdup.c:
Wrap long texinfo input lines.
* functions.texi: Regenerate.
From-SVN: r169783
2011-02-03 08:23:20 +01:00
|
|
|
@deftypefn Extension {const char*} make_relative_prefix (const char *@var{progname}, @
|
|
|
|
const char *@var{bin_prefix}, const char *@var{prefix})
|
2002-11-22 21:01:07 +01:00
|
|
|
|
2003-02-20 23:11:13 +01:00
|
|
|
Given three paths @var{progname}, @var{bin_prefix}, @var{prefix},
|
|
|
|
return the path that is in the same position relative to
|
|
|
|
@var{progname}'s directory as @var{prefix} is relative to
|
|
|
|
@var{bin_prefix}. That is, a string starting with the directory
|
|
|
|
portion of @var{progname}, followed by a relative pathname of the
|
|
|
|
difference between @var{bin_prefix} and @var{prefix}.
|
|
|
|
|
|
|
|
If @var{progname} does not contain any directory separators,
|
|
|
|
@code{make_relative_prefix} will search @env{PATH} to find a program
|
|
|
|
named @var{progname}. Also, if @var{progname} is a symbolic link,
|
|
|
|
the symbolic link will be resolved.
|
|
|
|
|
|
|
|
For example, if @var{bin_prefix} is @code{/alpha/beta/gamma/gcc/delta},
|
|
|
|
@var{prefix} is @code{/alpha/beta/gamma/omega/}, and @var{progname} is
|
|
|
|
@code{/red/green/blue/gcc}, then this function will return
|
|
|
|
@code{/red/green/blue/../../omega/}.
|
|
|
|
|
|
|
|
The return value is normally allocated via @code{malloc}. If no
|
|
|
|
relative prefix can be found, return @code{NULL}.
|
2002-11-22 21:01:07 +01:00
|
|
|
|
|
|
|
@end deftypefn
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
#include "config.h"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef HAVE_STDLIB_H
|
|
|
|
#include <stdlib.h>
|
|
|
|
#endif
|
|
|
|
#ifdef HAVE_UNISTD_H
|
|
|
|
#include <unistd.h>
|
|
|
|
#endif
|
2012-01-02 23:18:21 +01:00
|
|
|
#ifdef HAVE_SYS_STAT_H
|
|
|
|
#include <sys/stat.h>
|
|
|
|
#endif
|
2002-11-22 21:01:07 +01:00
|
|
|
|
|
|
|
#include <string.h>
|
|
|
|
|
|
|
|
#include "ansidecl.h"
|
|
|
|
#include "libiberty.h"
|
|
|
|
|
|
|
|
#ifndef R_OK
|
|
|
|
#define R_OK 4
|
|
|
|
#define W_OK 2
|
|
|
|
#define X_OK 1
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef DIR_SEPARATOR
|
|
|
|
# define DIR_SEPARATOR '/'
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if defined (_WIN32) || defined (__MSDOS__) \
|
|
|
|
|| defined (__DJGPP__) || defined (__OS2__)
|
|
|
|
# define HAVE_DOS_BASED_FILE_SYSTEM
|
2002-12-04 02:57:27 +01:00
|
|
|
# define HAVE_HOST_EXECUTABLE_SUFFIX
|
2002-11-22 21:01:07 +01:00
|
|
|
# define HOST_EXECUTABLE_SUFFIX ".exe"
|
|
|
|
# ifndef DIR_SEPARATOR_2
|
|
|
|
# define DIR_SEPARATOR_2 '\\'
|
|
|
|
# endif
|
|
|
|
# define PATH_SEPARATOR ';'
|
|
|
|
#else
|
|
|
|
# define PATH_SEPARATOR ':'
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef DIR_SEPARATOR_2
|
|
|
|
# define IS_DIR_SEPARATOR(ch) ((ch) == DIR_SEPARATOR)
|
|
|
|
#else
|
|
|
|
# define IS_DIR_SEPARATOR(ch) \
|
|
|
|
(((ch) == DIR_SEPARATOR) || ((ch) == DIR_SEPARATOR_2))
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#define DIR_UP ".."
|
|
|
|
|
md5.h: Remove definition and uses of __P.
include/
2005-03-27 Gabriel Dos Reis <gdr@integrable-solutions.net>
* md5.h: Remove definition and uses of __P.
* dyn-string.h: Remove uses of PARAMS.
* fibheap.h: Likewise.
* floatformat.h: Likewise.
* hashtab.h: Likewise.
libiberty/
2005-03-27 Gabriel Dos Reis <gdr@integrable-solutions.net>
Convert libiberty to use ISO C prototype style 4/n.
* hashtab.c (higher_prime_index, hash_pointer, eq_pointer,
htab_size, htab_elements, htab_mod_1, htab_mod, htab_mod_m2,
htab_create_alloc, htab_set_functions_ex, htab_create,
htab_try_create, htab_delete, htab_empty,
find_empty_slot_for_expand, htab_expand, htab_find_with_hash,
htab_find, htab_find_slot_with_hash, htab_find_slot,
htab_remove_elt, htab_remove_elt_with_hash, htab_clear_slot,
htab_traverse_noresize, htab_traverse, htab_collisions,
htab_hash_string, iterative_hash): Use ISO C prototype.
* hex.c (hex_init): Likewise.
* index.c (index): Likewise.
* insque.c (insque, remque): Likewise.
* lbasename.c (lbasename): Likewise.
* lrealpath.c (lrealpath): Likewise.
* make-relative-prefix.c (save_string, split_directories,
free_split_directories, make_relative_prefix): Likewise.
* make-temp-file.c (try, choose_tmpdir, make_temp_file): Likewise.
* md5.c (md5_init_ctx, md5_read_ctx, md5_finish_ctx, md5_stream,
md5_buffer, md5_process_bytes, md5_process_block): Likewise.
* memchr.c (memchr): Likewise.
* memcpy.c (memcpy): Likewise.
* memmove.c (memmove): Likewise.
* gettimeofday.c (gettimeofday): Likewise.
* getruntime.c (get_run_time): Likewise.
* getpwd.c (getpwd, getpwd): Likewise.
* getpagesize.c (getpagesize): Likewise.
* getopt1.c (getopt_long, getopt_long_only, main): Likewise.
* getopt.c (my_index, exchange, _getopt_initialize,
_getopt_internal, getopt, main): Likewise.
* getcwd.c (getcwd): Likewise.
* fnmatch.c (fnmatch): Likewise.
* floatformat.c (floatformat_always_valid,
floatformat_i387_ext_is_valid, get_field, floatformat_to_double,
put_field, floatformat_from_double, floatformat_is_valid,
ieee_test, main): Likewise.
* fibheap.c (fibheap_new, fibnode_new, fibheap_compare,
fibheap_comp_data, fibheap_insert, fibheap_min, fibheap_min_key,
fibheap_union, fibheap_extract_min, fibheap_replace_key_data,
fibheap_replace_key, fibheap_replace_data, fibheap_delete_node,
fibheap_delete, fibheap_empty, fibheap_extr_min_node,
fibheap_ins_root, fibheap_rem_root, fibheap_consolidate,
fibheap_link, fibheap_cut, fibheap_cascading_cut,
fibnode_insert_after, fibnode_remove): Likewise.
* ffs.c (ffs): Likewise.
* fdmatch.c (fdmatch): Likewise.
* dyn-string.c (dyn_string_init, dyn_string_new,
dyn_string_delete, dyn_string_release, dyn_string_resize,
dyn_string_clear, dyn_string_copy, dyn_string_copy_cstr,
dyn_string_prepend, dyn_string_prepend_cstr, dyn_string_insert,
dyn_string_insert_cstr, dyn_string_insert_char,
dyn_string_append, dyn_string_append_cstr,
dyn_string_append_char, dyn_string_substring, dyn_string_eq):
Likewise.
From-SVN: r97113
2005-03-27 17:31:13 +02:00
|
|
|
static char *save_string (const char *, int);
|
|
|
|
static char **split_directories (const char *, int *);
|
|
|
|
static void free_split_directories (char **);
|
2002-11-22 21:01:07 +01:00
|
|
|
|
|
|
|
static char *
|
md5.h: Remove definition and uses of __P.
include/
2005-03-27 Gabriel Dos Reis <gdr@integrable-solutions.net>
* md5.h: Remove definition and uses of __P.
* dyn-string.h: Remove uses of PARAMS.
* fibheap.h: Likewise.
* floatformat.h: Likewise.
* hashtab.h: Likewise.
libiberty/
2005-03-27 Gabriel Dos Reis <gdr@integrable-solutions.net>
Convert libiberty to use ISO C prototype style 4/n.
* hashtab.c (higher_prime_index, hash_pointer, eq_pointer,
htab_size, htab_elements, htab_mod_1, htab_mod, htab_mod_m2,
htab_create_alloc, htab_set_functions_ex, htab_create,
htab_try_create, htab_delete, htab_empty,
find_empty_slot_for_expand, htab_expand, htab_find_with_hash,
htab_find, htab_find_slot_with_hash, htab_find_slot,
htab_remove_elt, htab_remove_elt_with_hash, htab_clear_slot,
htab_traverse_noresize, htab_traverse, htab_collisions,
htab_hash_string, iterative_hash): Use ISO C prototype.
* hex.c (hex_init): Likewise.
* index.c (index): Likewise.
* insque.c (insque, remque): Likewise.
* lbasename.c (lbasename): Likewise.
* lrealpath.c (lrealpath): Likewise.
* make-relative-prefix.c (save_string, split_directories,
free_split_directories, make_relative_prefix): Likewise.
* make-temp-file.c (try, choose_tmpdir, make_temp_file): Likewise.
* md5.c (md5_init_ctx, md5_read_ctx, md5_finish_ctx, md5_stream,
md5_buffer, md5_process_bytes, md5_process_block): Likewise.
* memchr.c (memchr): Likewise.
* memcpy.c (memcpy): Likewise.
* memmove.c (memmove): Likewise.
* gettimeofday.c (gettimeofday): Likewise.
* getruntime.c (get_run_time): Likewise.
* getpwd.c (getpwd, getpwd): Likewise.
* getpagesize.c (getpagesize): Likewise.
* getopt1.c (getopt_long, getopt_long_only, main): Likewise.
* getopt.c (my_index, exchange, _getopt_initialize,
_getopt_internal, getopt, main): Likewise.
* getcwd.c (getcwd): Likewise.
* fnmatch.c (fnmatch): Likewise.
* floatformat.c (floatformat_always_valid,
floatformat_i387_ext_is_valid, get_field, floatformat_to_double,
put_field, floatformat_from_double, floatformat_is_valid,
ieee_test, main): Likewise.
* fibheap.c (fibheap_new, fibnode_new, fibheap_compare,
fibheap_comp_data, fibheap_insert, fibheap_min, fibheap_min_key,
fibheap_union, fibheap_extract_min, fibheap_replace_key_data,
fibheap_replace_key, fibheap_replace_data, fibheap_delete_node,
fibheap_delete, fibheap_empty, fibheap_extr_min_node,
fibheap_ins_root, fibheap_rem_root, fibheap_consolidate,
fibheap_link, fibheap_cut, fibheap_cascading_cut,
fibnode_insert_after, fibnode_remove): Likewise.
* ffs.c (ffs): Likewise.
* fdmatch.c (fdmatch): Likewise.
* dyn-string.c (dyn_string_init, dyn_string_new,
dyn_string_delete, dyn_string_release, dyn_string_resize,
dyn_string_clear, dyn_string_copy, dyn_string_copy_cstr,
dyn_string_prepend, dyn_string_prepend_cstr, dyn_string_insert,
dyn_string_insert_cstr, dyn_string_insert_char,
dyn_string_append, dyn_string_append_cstr,
dyn_string_append_char, dyn_string_substring, dyn_string_eq):
Likewise.
From-SVN: r97113
2005-03-27 17:31:13 +02:00
|
|
|
save_string (const char *s, int len)
|
2002-11-22 21:01:07 +01:00
|
|
|
{
|
2005-05-24 22:48:25 +02:00
|
|
|
char *result = (char *) malloc (len + 1);
|
2002-11-22 21:01:07 +01:00
|
|
|
|
|
|
|
memcpy (result, s, len);
|
|
|
|
result[len] = 0;
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Split a filename into component directories. */
|
|
|
|
|
|
|
|
static char **
|
md5.h: Remove definition and uses of __P.
include/
2005-03-27 Gabriel Dos Reis <gdr@integrable-solutions.net>
* md5.h: Remove definition and uses of __P.
* dyn-string.h: Remove uses of PARAMS.
* fibheap.h: Likewise.
* floatformat.h: Likewise.
* hashtab.h: Likewise.
libiberty/
2005-03-27 Gabriel Dos Reis <gdr@integrable-solutions.net>
Convert libiberty to use ISO C prototype style 4/n.
* hashtab.c (higher_prime_index, hash_pointer, eq_pointer,
htab_size, htab_elements, htab_mod_1, htab_mod, htab_mod_m2,
htab_create_alloc, htab_set_functions_ex, htab_create,
htab_try_create, htab_delete, htab_empty,
find_empty_slot_for_expand, htab_expand, htab_find_with_hash,
htab_find, htab_find_slot_with_hash, htab_find_slot,
htab_remove_elt, htab_remove_elt_with_hash, htab_clear_slot,
htab_traverse_noresize, htab_traverse, htab_collisions,
htab_hash_string, iterative_hash): Use ISO C prototype.
* hex.c (hex_init): Likewise.
* index.c (index): Likewise.
* insque.c (insque, remque): Likewise.
* lbasename.c (lbasename): Likewise.
* lrealpath.c (lrealpath): Likewise.
* make-relative-prefix.c (save_string, split_directories,
free_split_directories, make_relative_prefix): Likewise.
* make-temp-file.c (try, choose_tmpdir, make_temp_file): Likewise.
* md5.c (md5_init_ctx, md5_read_ctx, md5_finish_ctx, md5_stream,
md5_buffer, md5_process_bytes, md5_process_block): Likewise.
* memchr.c (memchr): Likewise.
* memcpy.c (memcpy): Likewise.
* memmove.c (memmove): Likewise.
* gettimeofday.c (gettimeofday): Likewise.
* getruntime.c (get_run_time): Likewise.
* getpwd.c (getpwd, getpwd): Likewise.
* getpagesize.c (getpagesize): Likewise.
* getopt1.c (getopt_long, getopt_long_only, main): Likewise.
* getopt.c (my_index, exchange, _getopt_initialize,
_getopt_internal, getopt, main): Likewise.
* getcwd.c (getcwd): Likewise.
* fnmatch.c (fnmatch): Likewise.
* floatformat.c (floatformat_always_valid,
floatformat_i387_ext_is_valid, get_field, floatformat_to_double,
put_field, floatformat_from_double, floatformat_is_valid,
ieee_test, main): Likewise.
* fibheap.c (fibheap_new, fibnode_new, fibheap_compare,
fibheap_comp_data, fibheap_insert, fibheap_min, fibheap_min_key,
fibheap_union, fibheap_extract_min, fibheap_replace_key_data,
fibheap_replace_key, fibheap_replace_data, fibheap_delete_node,
fibheap_delete, fibheap_empty, fibheap_extr_min_node,
fibheap_ins_root, fibheap_rem_root, fibheap_consolidate,
fibheap_link, fibheap_cut, fibheap_cascading_cut,
fibnode_insert_after, fibnode_remove): Likewise.
* ffs.c (ffs): Likewise.
* fdmatch.c (fdmatch): Likewise.
* dyn-string.c (dyn_string_init, dyn_string_new,
dyn_string_delete, dyn_string_release, dyn_string_resize,
dyn_string_clear, dyn_string_copy, dyn_string_copy_cstr,
dyn_string_prepend, dyn_string_prepend_cstr, dyn_string_insert,
dyn_string_insert_cstr, dyn_string_insert_char,
dyn_string_append, dyn_string_append_cstr,
dyn_string_append_char, dyn_string_substring, dyn_string_eq):
Likewise.
From-SVN: r97113
2005-03-27 17:31:13 +02:00
|
|
|
split_directories (const char *name, int *ptr_num_dirs)
|
2002-11-22 21:01:07 +01:00
|
|
|
{
|
|
|
|
int num_dirs = 0;
|
|
|
|
char **dirs;
|
|
|
|
const char *p, *q;
|
|
|
|
int ch;
|
|
|
|
|
2019-12-06 23:20:06 +01:00
|
|
|
if (!*name)
|
|
|
|
return NULL;
|
|
|
|
|
2002-11-22 21:01:07 +01:00
|
|
|
/* Count the number of directories. Special case MSDOS disk names as part
|
|
|
|
of the initial directory. */
|
|
|
|
p = name;
|
|
|
|
#ifdef HAVE_DOS_BASED_FILE_SYSTEM
|
|
|
|
if (name[1] == ':' && IS_DIR_SEPARATOR (name[2]))
|
|
|
|
{
|
|
|
|
p += 3;
|
|
|
|
num_dirs++;
|
|
|
|
}
|
|
|
|
#endif /* HAVE_DOS_BASED_FILE_SYSTEM */
|
|
|
|
|
|
|
|
while ((ch = *p++) != '\0')
|
|
|
|
{
|
|
|
|
if (IS_DIR_SEPARATOR (ch))
|
|
|
|
{
|
|
|
|
num_dirs++;
|
|
|
|
while (IS_DIR_SEPARATOR (*p))
|
|
|
|
p++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
dirs = (char **) malloc (sizeof (char *) * (num_dirs + 2));
|
|
|
|
if (dirs == NULL)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
/* Now copy the directory parts. */
|
|
|
|
num_dirs = 0;
|
|
|
|
p = name;
|
|
|
|
#ifdef HAVE_DOS_BASED_FILE_SYSTEM
|
|
|
|
if (name[1] == ':' && IS_DIR_SEPARATOR (name[2]))
|
|
|
|
{
|
|
|
|
dirs[num_dirs++] = save_string (p, 3);
|
|
|
|
if (dirs[num_dirs - 1] == NULL)
|
|
|
|
{
|
|
|
|
free (dirs);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
p += 3;
|
|
|
|
}
|
|
|
|
#endif /* HAVE_DOS_BASED_FILE_SYSTEM */
|
|
|
|
|
|
|
|
q = p;
|
|
|
|
while ((ch = *p++) != '\0')
|
|
|
|
{
|
|
|
|
if (IS_DIR_SEPARATOR (ch))
|
|
|
|
{
|
|
|
|
while (IS_DIR_SEPARATOR (*p))
|
|
|
|
p++;
|
|
|
|
|
|
|
|
dirs[num_dirs++] = save_string (q, p - q);
|
|
|
|
if (dirs[num_dirs - 1] == NULL)
|
|
|
|
{
|
|
|
|
dirs[num_dirs] = NULL;
|
|
|
|
free_split_directories (dirs);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
q = p;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (p - 1 - q > 0)
|
|
|
|
dirs[num_dirs++] = save_string (q, p - 1 - q);
|
|
|
|
dirs[num_dirs] = NULL;
|
|
|
|
|
|
|
|
if (dirs[num_dirs - 1] == NULL)
|
|
|
|
{
|
|
|
|
free_split_directories (dirs);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ptr_num_dirs)
|
|
|
|
*ptr_num_dirs = num_dirs;
|
|
|
|
return dirs;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Release storage held by split directories. */
|
|
|
|
|
|
|
|
static void
|
md5.h: Remove definition and uses of __P.
include/
2005-03-27 Gabriel Dos Reis <gdr@integrable-solutions.net>
* md5.h: Remove definition and uses of __P.
* dyn-string.h: Remove uses of PARAMS.
* fibheap.h: Likewise.
* floatformat.h: Likewise.
* hashtab.h: Likewise.
libiberty/
2005-03-27 Gabriel Dos Reis <gdr@integrable-solutions.net>
Convert libiberty to use ISO C prototype style 4/n.
* hashtab.c (higher_prime_index, hash_pointer, eq_pointer,
htab_size, htab_elements, htab_mod_1, htab_mod, htab_mod_m2,
htab_create_alloc, htab_set_functions_ex, htab_create,
htab_try_create, htab_delete, htab_empty,
find_empty_slot_for_expand, htab_expand, htab_find_with_hash,
htab_find, htab_find_slot_with_hash, htab_find_slot,
htab_remove_elt, htab_remove_elt_with_hash, htab_clear_slot,
htab_traverse_noresize, htab_traverse, htab_collisions,
htab_hash_string, iterative_hash): Use ISO C prototype.
* hex.c (hex_init): Likewise.
* index.c (index): Likewise.
* insque.c (insque, remque): Likewise.
* lbasename.c (lbasename): Likewise.
* lrealpath.c (lrealpath): Likewise.
* make-relative-prefix.c (save_string, split_directories,
free_split_directories, make_relative_prefix): Likewise.
* make-temp-file.c (try, choose_tmpdir, make_temp_file): Likewise.
* md5.c (md5_init_ctx, md5_read_ctx, md5_finish_ctx, md5_stream,
md5_buffer, md5_process_bytes, md5_process_block): Likewise.
* memchr.c (memchr): Likewise.
* memcpy.c (memcpy): Likewise.
* memmove.c (memmove): Likewise.
* gettimeofday.c (gettimeofday): Likewise.
* getruntime.c (get_run_time): Likewise.
* getpwd.c (getpwd, getpwd): Likewise.
* getpagesize.c (getpagesize): Likewise.
* getopt1.c (getopt_long, getopt_long_only, main): Likewise.
* getopt.c (my_index, exchange, _getopt_initialize,
_getopt_internal, getopt, main): Likewise.
* getcwd.c (getcwd): Likewise.
* fnmatch.c (fnmatch): Likewise.
* floatformat.c (floatformat_always_valid,
floatformat_i387_ext_is_valid, get_field, floatformat_to_double,
put_field, floatformat_from_double, floatformat_is_valid,
ieee_test, main): Likewise.
* fibheap.c (fibheap_new, fibnode_new, fibheap_compare,
fibheap_comp_data, fibheap_insert, fibheap_min, fibheap_min_key,
fibheap_union, fibheap_extract_min, fibheap_replace_key_data,
fibheap_replace_key, fibheap_replace_data, fibheap_delete_node,
fibheap_delete, fibheap_empty, fibheap_extr_min_node,
fibheap_ins_root, fibheap_rem_root, fibheap_consolidate,
fibheap_link, fibheap_cut, fibheap_cascading_cut,
fibnode_insert_after, fibnode_remove): Likewise.
* ffs.c (ffs): Likewise.
* fdmatch.c (fdmatch): Likewise.
* dyn-string.c (dyn_string_init, dyn_string_new,
dyn_string_delete, dyn_string_release, dyn_string_resize,
dyn_string_clear, dyn_string_copy, dyn_string_copy_cstr,
dyn_string_prepend, dyn_string_prepend_cstr, dyn_string_insert,
dyn_string_insert_cstr, dyn_string_insert_char,
dyn_string_append, dyn_string_append_cstr,
dyn_string_append_char, dyn_string_substring, dyn_string_eq):
Likewise.
From-SVN: r97113
2005-03-27 17:31:13 +02:00
|
|
|
free_split_directories (char **dirs)
|
2002-11-22 21:01:07 +01:00
|
|
|
{
|
|
|
|
int i = 0;
|
|
|
|
|
2007-08-17 21:28:22 +02:00
|
|
|
if (dirs != NULL)
|
|
|
|
{
|
|
|
|
while (dirs[i] != NULL)
|
|
|
|
free (dirs[i++]);
|
2002-11-22 21:01:07 +01:00
|
|
|
|
2007-08-17 21:28:22 +02:00
|
|
|
free ((char *) dirs);
|
|
|
|
}
|
2002-11-22 21:01:07 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Given three strings PROGNAME, BIN_PREFIX, PREFIX, return a string that gets
|
|
|
|
to PREFIX starting with the directory portion of PROGNAME and a relative
|
|
|
|
pathname of the difference between BIN_PREFIX and PREFIX.
|
|
|
|
|
|
|
|
For example, if BIN_PREFIX is /alpha/beta/gamma/gcc/delta, PREFIX is
|
|
|
|
/alpha/beta/gamma/omega/, and PROGNAME is /red/green/blue/gcc, then this
|
|
|
|
function will return /red/green/blue/../../omega/.
|
|
|
|
|
|
|
|
If no relative prefix can be found, return NULL. */
|
|
|
|
|
2006-11-30 18:05:45 +01:00
|
|
|
static char *
|
|
|
|
make_relative_prefix_1 (const char *progname, const char *bin_prefix,
|
|
|
|
const char *prefix, const int resolve_links)
|
2002-11-22 21:01:07 +01:00
|
|
|
{
|
2007-08-17 21:28:22 +02:00
|
|
|
char **prog_dirs = NULL, **bin_dirs = NULL, **prefix_dirs = NULL;
|
2002-11-22 21:01:07 +01:00
|
|
|
int prog_num, bin_num, prefix_num;
|
|
|
|
int i, n, common;
|
|
|
|
int needed_len;
|
2007-08-17 21:28:22 +02:00
|
|
|
char *ret = NULL, *ptr, *full_progname;
|
2016-07-29 18:40:55 +02:00
|
|
|
char *alloc_ptr = NULL;
|
2002-11-22 21:01:07 +01:00
|
|
|
|
|
|
|
if (progname == NULL || bin_prefix == NULL || prefix == NULL)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
/* If there is no full pathname, try to find the program by checking in each
|
|
|
|
of the directories specified in the PATH environment variable. */
|
2003-02-20 23:11:13 +01:00
|
|
|
if (lbasename (progname) == progname)
|
2002-11-22 21:01:07 +01:00
|
|
|
{
|
|
|
|
char *temp;
|
|
|
|
|
|
|
|
temp = getenv ("PATH");
|
|
|
|
if (temp)
|
|
|
|
{
|
|
|
|
char *startp, *endp, *nstore;
|
|
|
|
size_t prefixlen = strlen (temp) + 1;
|
2012-01-26 15:26:25 +01:00
|
|
|
size_t len;
|
2002-11-22 21:01:07 +01:00
|
|
|
if (prefixlen < 2)
|
|
|
|
prefixlen = 2;
|
|
|
|
|
2012-01-26 15:26:25 +01:00
|
|
|
len = prefixlen + strlen (progname) + 1;
|
2012-01-02 23:18:21 +01:00
|
|
|
#ifdef HAVE_HOST_EXECUTABLE_SUFFIX
|
2012-01-26 15:26:25 +01:00
|
|
|
len += strlen (HOST_EXECUTABLE_SUFFIX);
|
2012-01-02 23:18:21 +01:00
|
|
|
#endif
|
2016-07-29 18:40:55 +02:00
|
|
|
if (len < MAX_ALLOCA_SIZE)
|
|
|
|
nstore = (char *) alloca (len);
|
|
|
|
else
|
|
|
|
alloc_ptr = nstore = (char *) malloc (len);
|
2002-11-22 21:01:07 +01:00
|
|
|
|
|
|
|
startp = endp = temp;
|
|
|
|
while (1)
|
|
|
|
{
|
|
|
|
if (*endp == PATH_SEPARATOR || *endp == 0)
|
|
|
|
{
|
|
|
|
if (endp == startp)
|
|
|
|
{
|
|
|
|
nstore[0] = '.';
|
|
|
|
nstore[1] = DIR_SEPARATOR;
|
|
|
|
nstore[2] = '\0';
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2012-01-02 23:18:21 +01:00
|
|
|
memcpy (nstore, startp, endp - startp);
|
2002-11-22 21:01:07 +01:00
|
|
|
if (! IS_DIR_SEPARATOR (endp[-1]))
|
|
|
|
{
|
|
|
|
nstore[endp - startp] = DIR_SEPARATOR;
|
|
|
|
nstore[endp - startp + 1] = 0;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
nstore[endp - startp] = 0;
|
|
|
|
}
|
|
|
|
strcat (nstore, progname);
|
|
|
|
if (! access (nstore, X_OK)
|
|
|
|
#ifdef HAVE_HOST_EXECUTABLE_SUFFIX
|
|
|
|
|| ! access (strcat (nstore, HOST_EXECUTABLE_SUFFIX), X_OK)
|
|
|
|
#endif
|
|
|
|
)
|
|
|
|
{
|
2012-01-02 23:18:21 +01:00
|
|
|
#if defined (HAVE_SYS_STAT_H) && defined (S_ISREG)
|
|
|
|
struct stat st;
|
|
|
|
if (stat (nstore, &st) >= 0 && S_ISREG (st.st_mode))
|
|
|
|
#endif
|
|
|
|
{
|
|
|
|
progname = nstore;
|
|
|
|
break;
|
|
|
|
}
|
2002-11-22 21:01:07 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
if (*endp == 0)
|
|
|
|
break;
|
|
|
|
endp = startp = endp + 1;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
endp++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-03-24 18:11:21 +01:00
|
|
|
if (resolve_links)
|
|
|
|
full_progname = lrealpath (progname);
|
2006-11-30 18:05:45 +01:00
|
|
|
else
|
2008-03-24 18:11:21 +01:00
|
|
|
full_progname = strdup (progname);
|
|
|
|
if (full_progname == NULL)
|
2016-07-29 18:40:55 +02:00
|
|
|
goto bailout;
|
2003-02-20 23:11:13 +01:00
|
|
|
|
|
|
|
prog_dirs = split_directories (full_progname, &prog_num);
|
|
|
|
free (full_progname);
|
2007-08-03 19:38:14 +02:00
|
|
|
if (prog_dirs == NULL)
|
2016-07-29 18:40:55 +02:00
|
|
|
goto bailout;
|
2003-02-20 23:11:13 +01:00
|
|
|
|
2007-08-03 19:38:14 +02:00
|
|
|
bin_dirs = split_directories (bin_prefix, &bin_num);
|
|
|
|
if (bin_dirs == NULL)
|
2007-08-17 21:28:22 +02:00
|
|
|
goto bailout;
|
2007-08-03 19:38:14 +02:00
|
|
|
|
2002-11-22 21:01:07 +01:00
|
|
|
/* Remove the program name from comparison of directory names. */
|
|
|
|
prog_num--;
|
|
|
|
|
|
|
|
/* If we are still installed in the standard location, we don't need to
|
|
|
|
specify relative directories. Also, if argv[0] still doesn't contain
|
|
|
|
any directory specifiers after the search above, then there is not much
|
|
|
|
we can do. */
|
|
|
|
if (prog_num == bin_num)
|
|
|
|
{
|
|
|
|
for (i = 0; i < bin_num; i++)
|
|
|
|
{
|
|
|
|
if (strcmp (prog_dirs[i], bin_dirs[i]) != 0)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (prog_num <= 0 || i == bin_num)
|
2007-08-17 21:28:22 +02:00
|
|
|
goto bailout;
|
2002-11-22 21:01:07 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
prefix_dirs = split_directories (prefix, &prefix_num);
|
|
|
|
if (prefix_dirs == NULL)
|
2007-08-17 21:28:22 +02:00
|
|
|
goto bailout;
|
2002-11-22 21:01:07 +01:00
|
|
|
|
|
|
|
/* Find how many directories are in common between bin_prefix & prefix. */
|
|
|
|
n = (prefix_num < bin_num) ? prefix_num : bin_num;
|
|
|
|
for (common = 0; common < n; common++)
|
|
|
|
{
|
|
|
|
if (strcmp (bin_dirs[common], prefix_dirs[common]) != 0)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* If there are no common directories, there can be no relative prefix. */
|
|
|
|
if (common == 0)
|
2007-08-17 21:28:22 +02:00
|
|
|
goto bailout;
|
2002-11-22 21:01:07 +01:00
|
|
|
|
|
|
|
/* Two passes: first figure out the size of the result string, and
|
|
|
|
then construct it. */
|
|
|
|
needed_len = 0;
|
|
|
|
for (i = 0; i < prog_num; i++)
|
|
|
|
needed_len += strlen (prog_dirs[i]);
|
|
|
|
needed_len += sizeof (DIR_UP) * (bin_num - common);
|
|
|
|
for (i = common; i < prefix_num; i++)
|
|
|
|
needed_len += strlen (prefix_dirs[i]);
|
|
|
|
needed_len += 1; /* Trailing NUL. */
|
|
|
|
|
|
|
|
ret = (char *) malloc (needed_len);
|
|
|
|
if (ret == NULL)
|
2007-08-17 21:28:22 +02:00
|
|
|
goto bailout;
|
2002-11-22 21:01:07 +01:00
|
|
|
|
|
|
|
/* Build up the pathnames in argv[0]. */
|
2002-11-24 09:10:28 +01:00
|
|
|
*ret = '\0';
|
2002-11-22 21:01:07 +01:00
|
|
|
for (i = 0; i < prog_num; i++)
|
|
|
|
strcat (ret, prog_dirs[i]);
|
|
|
|
|
|
|
|
/* Now build up the ..'s. */
|
|
|
|
ptr = ret + strlen(ret);
|
|
|
|
for (i = common; i < bin_num; i++)
|
|
|
|
{
|
|
|
|
strcpy (ptr, DIR_UP);
|
|
|
|
ptr += sizeof (DIR_UP) - 1;
|
|
|
|
*(ptr++) = DIR_SEPARATOR;
|
|
|
|
}
|
|
|
|
*ptr = '\0';
|
|
|
|
|
|
|
|
/* Put in directories to move over to prefix. */
|
|
|
|
for (i = common; i < prefix_num; i++)
|
|
|
|
strcat (ret, prefix_dirs[i]);
|
|
|
|
|
2007-08-17 21:28:22 +02:00
|
|
|
bailout:
|
2002-11-22 21:01:07 +01:00
|
|
|
free_split_directories (prog_dirs);
|
|
|
|
free_split_directories (bin_dirs);
|
|
|
|
free_split_directories (prefix_dirs);
|
2016-07-29 18:40:55 +02:00
|
|
|
free (alloc_ptr);
|
2002-11-22 21:01:07 +01:00
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
2006-11-30 18:05:45 +01:00
|
|
|
|
|
|
|
|
|
|
|
/* Do the full job, including symlink resolution.
|
|
|
|
This path will find files installed in the same place as the
|
|
|
|
program even when a soft link has been made to the program
|
|
|
|
from somwhere else. */
|
|
|
|
|
|
|
|
char *
|
2007-04-11 21:02:45 +02:00
|
|
|
make_relative_prefix (const char *progname, const char *bin_prefix,
|
|
|
|
const char *prefix)
|
2006-11-30 18:05:45 +01:00
|
|
|
{
|
|
|
|
return make_relative_prefix_1 (progname, bin_prefix, prefix, 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Make the relative pathname without attempting to resolve any links.
|
|
|
|
'..' etc may also be left in the pathname.
|
|
|
|
This will find the files the user meant the program to find if the
|
|
|
|
installation is patched together with soft links. */
|
|
|
|
|
|
|
|
char *
|
2007-04-11 21:02:45 +02:00
|
|
|
make_relative_prefix_ignore_links (const char *progname,
|
|
|
|
const char *bin_prefix,
|
|
|
|
const char *prefix)
|
2006-11-30 18:05:45 +01:00
|
|
|
{
|
|
|
|
return make_relative_prefix_1 (progname, bin_prefix, prefix, 0);
|
|
|
|
}
|
|
|
|
|