2003-02-20 22:11:13 +00:00
|
|
|
/* Libiberty realpath. Like realpath, but more consistent behavior.
|
|
|
|
Based on gdb_realpath from GDB.
|
|
|
|
|
2024-01-03 11:19:35 +00:00
|
|
|
Copyright (C) 2003-2024 Free Software Foundation, Inc.
|
2003-02-20 22:11:13 +00:00
|
|
|
|
|
|
|
This file is part of the libiberty library.
|
|
|
|
|
|
|
|
This program 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 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
This program 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 this program; if not, write to the Free Software
|
2005-05-10 15:33:18 +00:00
|
|
|
Foundation, Inc., 51 Franklin Street - Fifth Floor,
|
|
|
|
Boston, MA 02110-1301, USA. */
|
2003-02-20 22:11:13 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
|
|
|
|
@deftypefn Replacement {const char*} lrealpath (const char *@var{name})
|
|
|
|
|
|
|
|
Given a pointer to a string containing a pathname, returns a canonical
|
|
|
|
version of the filename. Symlinks will be resolved, and ``.'' and ``..''
|
|
|
|
components will be simplified. The returned value will be allocated using
|
|
|
|
@code{malloc}, or @code{NULL} will be returned on a memory allocation error.
|
|
|
|
|
|
|
|
@end deftypefn
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "config.h"
|
|
|
|
#include "ansidecl.h"
|
|
|
|
#include "libiberty.h"
|
|
|
|
|
|
|
|
#ifdef HAVE_LIMITS_H
|
|
|
|
#include <limits.h>
|
|
|
|
#endif
|
|
|
|
#ifdef HAVE_STDLIB_H
|
|
|
|
#include <stdlib.h>
|
|
|
|
#endif
|
|
|
|
#ifdef HAVE_UNISTD_H
|
|
|
|
#include <unistd.h>
|
|
|
|
#endif
|
|
|
|
#ifdef HAVE_STRING_H
|
|
|
|
#include <string.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* On GNU libc systems the declaration is only visible with _GNU_SOURCE. */
|
|
|
|
#if defined(HAVE_CANONICALIZE_FILE_NAME) \
|
|
|
|
&& defined(NEED_DECLARATION_CANONICALIZE_FILE_NAME)
|
|
|
|
extern char *canonicalize_file_name (const char *);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if defined(HAVE_REALPATH)
|
|
|
|
# if defined (PATH_MAX)
|
|
|
|
# define REALPATH_LIMIT PATH_MAX
|
|
|
|
# else
|
|
|
|
# if defined (MAXPATHLEN)
|
|
|
|
# define REALPATH_LIMIT MAXPATHLEN
|
|
|
|
# endif
|
|
|
|
# endif
|
2004-06-29 11:37:20 +00:00
|
|
|
#else
|
|
|
|
/* cygwin has realpath, so it won't get here. */
|
|
|
|
# if defined (_WIN32)
|
|
|
|
# define WIN32_LEAN_AND_MEAN
|
2023-02-11 06:18:10 +00:00
|
|
|
# include <windows.h> /* for GetFullPathName/GetFinalPathNameByHandle/
|
|
|
|
CreateFile/CloseHandle */
|
|
|
|
# define WIN32_REPLACE_SLASHES(_ptr, _len) \
|
|
|
|
for (unsigned i = 0; i != (_len); ++i) \
|
|
|
|
if ((_ptr)[i] == '\\') (_ptr)[i] = '/';
|
|
|
|
|
|
|
|
# define WIN32_UNC_PREFIX "//?/UNC/"
|
|
|
|
# define WIN32_UNC_PREFIX_LEN (sizeof(WIN32_UNC_PREFIX)-1)
|
|
|
|
# define WIN32_IS_UNC_PREFIX(ptr) \
|
|
|
|
(0 == memcmp(ptr, WIN32_UNC_PREFIX, WIN32_UNC_PREFIX_LEN))
|
|
|
|
|
|
|
|
# define WIN32_NON_UNC_PREFIX "//?/"
|
|
|
|
# define WIN32_NON_UNC_PREFIX_LEN (sizeof(WIN32_NON_UNC_PREFIX)-1)
|
|
|
|
# define WIN32_IS_NON_UNC_PREFIX(ptr) \
|
|
|
|
(0 == memcmp(ptr, WIN32_NON_UNC_PREFIX, WIN32_NON_UNC_PREFIX_LEN))
|
|
|
|
|
|
|
|
/* Get full path name without symlinks resolution.
|
|
|
|
It also converts all forward slashes to back slashes.
|
|
|
|
*/
|
|
|
|
char* get_full_path_name(const char *filename) {
|
|
|
|
DWORD len;
|
|
|
|
char *buf, *ptr, *res;
|
|
|
|
|
|
|
|
/* determining the required buffer size.
|
|
|
|
from the man: `If the lpBuffer buffer is too small to contain
|
|
|
|
the path, the return value is the size, in TCHARs, of the buffer
|
|
|
|
that is required to hold the path _and_the_terminating_null_character_`
|
|
|
|
*/
|
|
|
|
len = GetFullPathName(filename, 0, NULL, NULL);
|
|
|
|
|
|
|
|
if ( len == 0 )
|
|
|
|
return strdup(filename);
|
|
|
|
|
|
|
|
buf = (char *)malloc(len);
|
|
|
|
|
|
|
|
/* no point to check the result again */
|
|
|
|
len = GetFullPathName(filename, len, buf, NULL);
|
|
|
|
buf[len] = 0;
|
|
|
|
|
|
|
|
/* replace slashes */
|
|
|
|
WIN32_REPLACE_SLASHES(buf, len);
|
|
|
|
|
|
|
|
/* calculate offset based on prefix type */
|
|
|
|
len = WIN32_IS_UNC_PREFIX(buf)
|
|
|
|
? (WIN32_UNC_PREFIX_LEN - 2)
|
|
|
|
: WIN32_IS_NON_UNC_PREFIX(buf)
|
|
|
|
? WIN32_NON_UNC_PREFIX_LEN
|
|
|
|
: 0
|
|
|
|
;
|
|
|
|
|
|
|
|
ptr = buf + len;
|
|
|
|
if ( WIN32_IS_UNC_PREFIX(buf) ) {
|
|
|
|
ptr[0] = '/';
|
|
|
|
ptr[1] = '/';
|
|
|
|
}
|
|
|
|
|
|
|
|
res = strdup(ptr);
|
|
|
|
|
|
|
|
free(buf);
|
|
|
|
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
|
|
|
# if _WIN32_WINNT >= 0x0600
|
|
|
|
|
|
|
|
/* Get full path name WITH symlinks resolution.
|
|
|
|
It also converts all forward slashes to back slashes.
|
|
|
|
*/
|
|
|
|
char* get_final_path_name(HANDLE fh) {
|
|
|
|
DWORD len;
|
|
|
|
char *buf, *ptr, *res;
|
|
|
|
|
|
|
|
/* determining the required buffer size.
|
|
|
|
from the man: `If the function fails because lpszFilePath is too
|
|
|
|
small to hold the string plus the terminating null character,
|
|
|
|
the return value is the required buffer size, in TCHARs. This
|
|
|
|
value _includes_the_size_of_the_terminating_null_character_`.
|
|
|
|
but in my testcase I have path with 26 chars, the function
|
|
|
|
returns 26 also, ie without the trailing zero-char...
|
|
|
|
*/
|
|
|
|
len = GetFinalPathNameByHandle(
|
|
|
|
fh
|
|
|
|
,NULL
|
|
|
|
,0
|
|
|
|
,FILE_NAME_NORMALIZED | VOLUME_NAME_DOS
|
|
|
|
);
|
|
|
|
|
|
|
|
if ( len == 0 )
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
len += 1; /* for zero-char */
|
|
|
|
buf = (char *)malloc(len);
|
|
|
|
|
|
|
|
/* no point to check the result again */
|
|
|
|
len = GetFinalPathNameByHandle(
|
|
|
|
fh
|
|
|
|
,buf
|
|
|
|
,len
|
|
|
|
,FILE_NAME_NORMALIZED | VOLUME_NAME_DOS
|
|
|
|
);
|
|
|
|
buf[len] = 0;
|
|
|
|
|
|
|
|
/* replace slashes */
|
|
|
|
WIN32_REPLACE_SLASHES(buf, len);
|
|
|
|
|
|
|
|
/* calculate offset based on prefix type */
|
|
|
|
len = WIN32_IS_UNC_PREFIX(buf)
|
|
|
|
? (WIN32_UNC_PREFIX_LEN - 2)
|
|
|
|
: WIN32_IS_NON_UNC_PREFIX(buf)
|
|
|
|
? WIN32_NON_UNC_PREFIX_LEN
|
|
|
|
: 0
|
|
|
|
;
|
|
|
|
|
|
|
|
ptr = buf + len;
|
|
|
|
if ( WIN32_IS_UNC_PREFIX(buf) ) {
|
|
|
|
ptr[0] = '/';
|
|
|
|
ptr[1] = '/';
|
|
|
|
}
|
|
|
|
|
|
|
|
res = strdup(ptr);
|
|
|
|
|
|
|
|
free(buf);
|
|
|
|
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
|
|
|
# endif // _WIN32_WINNT >= 0x0600
|
|
|
|
|
|
|
|
# endif // _WIN32
|
2003-02-20 22:11:13 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
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 15:31:13 +00:00
|
|
|
lrealpath (const char *filename)
|
2003-02-20 22:11:13 +00:00
|
|
|
{
|
|
|
|
/* Method 1: The system has a compile time upper bound on a filename
|
|
|
|
path. Use that and realpath() to canonicalize the name. This is
|
|
|
|
the most common case. Note that, if there isn't a compile time
|
|
|
|
upper bound, you want to avoid realpath() at all costs. */
|
|
|
|
#if defined(REALPATH_LIMIT)
|
|
|
|
{
|
|
|
|
char buf[REALPATH_LIMIT];
|
|
|
|
const char *rp = realpath (filename, buf);
|
|
|
|
if (rp == NULL)
|
|
|
|
rp = filename;
|
|
|
|
return strdup (rp);
|
|
|
|
}
|
|
|
|
#endif /* REALPATH_LIMIT */
|
|
|
|
|
|
|
|
/* Method 2: The host system (i.e., GNU) has the function
|
|
|
|
canonicalize_file_name() which malloc's a chunk of memory and
|
|
|
|
returns that, use that. */
|
|
|
|
#if defined(HAVE_CANONICALIZE_FILE_NAME)
|
|
|
|
{
|
|
|
|
char *rp = canonicalize_file_name (filename);
|
|
|
|
if (rp == NULL)
|
|
|
|
return strdup (filename);
|
|
|
|
else
|
|
|
|
return rp;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* Method 3: Now we're getting desperate! The system doesn't have a
|
|
|
|
compile time buffer size and no alternative function. Query the
|
|
|
|
OS, using pathconf(), for the buffer limit. Care is needed
|
|
|
|
though, some systems do not limit PATH_MAX (return -1 for
|
|
|
|
pathconf()) making it impossible to pass a correctly sized buffer
|
|
|
|
to realpath() (it could always overflow). On those systems, we
|
|
|
|
skip this. */
|
|
|
|
#if defined (HAVE_REALPATH) && defined (HAVE_UNISTD_H)
|
|
|
|
{
|
|
|
|
/* Find out the max path size. */
|
|
|
|
long path_max = pathconf ("/", _PC_PATH_MAX);
|
|
|
|
if (path_max > 0)
|
|
|
|
{
|
|
|
|
/* PATH_MAX is bounded. */
|
|
|
|
char *buf, *rp, *ret;
|
2005-05-24 20:48:25 +00:00
|
|
|
buf = (char *) malloc (path_max);
|
2003-02-20 22:11:13 +00:00
|
|
|
if (buf == NULL)
|
|
|
|
return NULL;
|
|
|
|
rp = realpath (filename, buf);
|
|
|
|
ret = strdup (rp ? rp : filename);
|
|
|
|
free (buf);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2023-02-11 06:18:10 +00:00
|
|
|
/* The MS Windows method */
|
2004-06-29 11:37:20 +00:00
|
|
|
#if defined (_WIN32)
|
|
|
|
{
|
2023-02-11 06:18:10 +00:00
|
|
|
char *res;
|
|
|
|
|
|
|
|
/* For Windows Vista and greater */
|
|
|
|
#if _WIN32_WINNT >= 0x0600
|
|
|
|
|
|
|
|
/* For some reason the function receives just empty `filename`, but not NULL.
|
|
|
|
What should we do in that case?
|
|
|
|
According to `strdup()` implementation
|
|
|
|
(https://elixir.bootlin.com/glibc/latest/source/string/strdup.c)
|
|
|
|
it will alloc 1 byte even for empty but non NULL string.
|
|
|
|
OK, will use `strdup()` for that case.
|
|
|
|
*/
|
|
|
|
if ( 0 == strlen(filename) )
|
|
|
|
return strdup(filename);
|
|
|
|
|
|
|
|
HANDLE fh = CreateFile(
|
|
|
|
filename
|
|
|
|
,FILE_READ_ATTRIBUTES
|
|
|
|
,FILE_SHARE_READ | FILE_SHARE_WRITE | FILE_SHARE_DELETE
|
|
|
|
,NULL
|
|
|
|
,OPEN_EXISTING
|
|
|
|
,FILE_FLAG_BACKUP_SEMANTICS
|
|
|
|
,NULL
|
|
|
|
);
|
|
|
|
|
|
|
|
if ( fh == INVALID_HANDLE_VALUE ) {
|
|
|
|
res = get_full_path_name(filename);
|
|
|
|
} else {
|
|
|
|
res = get_final_path_name(fh);
|
|
|
|
CloseHandle(fh);
|
2004-06-29 11:37:20 +00:00
|
|
|
|
2023-02-11 06:18:10 +00:00
|
|
|
if ( !res )
|
|
|
|
res = get_full_path_name(filename);
|
|
|
|
}
|
|
|
|
|
|
|
|
#else
|
|
|
|
|
|
|
|
/* For Windows XP */
|
|
|
|
res = get_full_path_name(filename);
|
|
|
|
|
|
|
|
#endif // _WIN32_WINNT >= 0x0600
|
|
|
|
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
#endif // _WIN32
|
2003-02-20 22:11:13 +00:00
|
|
|
}
|