2024-01-01 18:12:26 +00:00
|
|
|
|
/* Copyright (C) 1992-2024 Free Software Foundation, Inc.
|
1997-02-15 04:31:36 +00:00
|
|
|
|
This file is part of the GNU C Library.
|
1995-02-18 01:27:10 +00:00
|
|
|
|
|
1997-02-15 04:31:36 +00:00
|
|
|
|
The GNU C Library is free software; you can redistribute it and/or
|
2001-07-06 04:58:11 +00:00
|
|
|
|
modify it under the terms of the GNU Lesser General Public
|
|
|
|
|
License as published by the Free Software Foundation; either
|
|
|
|
|
version 2.1 of the License, or (at your option) any later version.
|
1995-02-18 01:27:10 +00:00
|
|
|
|
|
1997-02-15 04:31:36 +00:00
|
|
|
|
The GNU C Library 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
|
2001-07-06 04:58:11 +00:00
|
|
|
|
Lesser General Public License for more details.
|
1995-02-18 01:27:10 +00:00
|
|
|
|
|
2001-07-06 04:58:11 +00:00
|
|
|
|
You should have received a copy of the GNU Lesser General Public
|
2012-02-09 23:18:22 +00:00
|
|
|
|
License along with the GNU C Library; if not, see
|
Prefer https to http for gnu.org and fsf.org URLs
Also, change sources.redhat.com to sourceware.org.
This patch was automatically generated by running the following shell
script, which uses GNU sed, and which avoids modifying files imported
from upstream:
sed -ri '
s,(http|ftp)(://(.*\.)?(gnu|fsf|sourceware)\.org($|[^.]|\.[^a-z])),https\2,g
s,(http|ftp)(://(.*\.)?)sources\.redhat\.com($|[^.]|\.[^a-z]),https\2sourceware.org\4,g
' \
$(find $(git ls-files) -prune -type f \
! -name '*.po' \
! -name 'ChangeLog*' \
! -path COPYING ! -path COPYING.LIB \
! -path manual/fdl-1.3.texi ! -path manual/lgpl-2.1.texi \
! -path manual/texinfo.tex ! -path scripts/config.guess \
! -path scripts/config.sub ! -path scripts/install-sh \
! -path scripts/mkinstalldirs ! -path scripts/move-if-change \
! -path INSTALL ! -path locale/programs/charmap-kw.h \
! -path po/libc.pot ! -path sysdeps/gnu/errlist.c \
! '(' -name configure \
-execdir test -f configure.ac -o -f configure.in ';' ')' \
! '(' -name preconfigure \
-execdir test -f preconfigure.ac ';' ')' \
-print)
and then by running 'make dist-prepare' to regenerate files built
from the altered files, and then executing the following to cleanup:
chmod a+x sysdeps/unix/sysv/linux/riscv/configure
# Omit irrelevant whitespace and comment-only changes,
# perhaps from a slightly-different Autoconf version.
git checkout -f \
sysdeps/csky/configure \
sysdeps/hppa/configure \
sysdeps/riscv/configure \
sysdeps/unix/sysv/linux/csky/configure
# Omit changes that caused a pre-commit check to fail like this:
# remote: *** error: sysdeps/powerpc/powerpc64/ppc-mcount.S: trailing lines
git checkout -f \
sysdeps/powerpc/powerpc64/ppc-mcount.S \
sysdeps/unix/sysv/linux/s390/s390-64/syscall.S
# Omit change that caused a pre-commit check to fail like this:
# remote: *** error: sysdeps/sparc/sparc64/multiarch/memcpy-ultra3.S: last line does not end in newline
git checkout -f sysdeps/sparc/sparc64/multiarch/memcpy-ultra3.S
2019-09-07 05:40:42 +00:00
|
|
|
|
<https://www.gnu.org/licenses/>. */
|
1995-02-18 01:27:10 +00:00
|
|
|
|
|
|
|
|
|
#include <hurd.h>
|
2023-01-30 12:52:14 +00:00
|
|
|
|
#include <hurd/fd.h>
|
1995-10-16 02:51:06 +00:00
|
|
|
|
#include <hurd/lookup.h>
|
1995-02-18 01:27:10 +00:00
|
|
|
|
#include <string.h>
|
|
|
|
|
#include <fcntl.h>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* Translate the error from dir_lookup into the error the user sees. */
|
|
|
|
|
static inline error_t
|
|
|
|
|
lookup_error (error_t error)
|
|
|
|
|
{
|
|
|
|
|
switch (error)
|
|
|
|
|
{
|
|
|
|
|
case EOPNOTSUPP:
|
|
|
|
|
case MIG_BAD_ID:
|
|
|
|
|
/* These indicate that the server does not understand dir_lookup
|
|
|
|
|
at all. If it were a directory, it would, by definition. */
|
|
|
|
|
return ENOTDIR;
|
|
|
|
|
default:
|
|
|
|
|
return error;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
error_t
|
1995-10-16 02:51:06 +00:00
|
|
|
|
__hurd_file_name_lookup (error_t (*use_init_port)
|
|
|
|
|
(int which, error_t (*operate) (file_t)),
|
|
|
|
|
file_t (*get_dtable_port) (int fd),
|
1996-06-19 20:11:26 +00:00
|
|
|
|
error_t (*lookup)
|
hurd: Fix warnings
* hurd/hurd/lookup.h (__hurd_file_name_lookup, hurd_file_name_lookup,
__hurd_file_name_split, hurd_file_name_split,
__hurd_directory_name_split, hurd_directory_name_split,
__hurd_file_name_lookup_retry, hurd_file_name_lookup_retry,
hurd_file_name_path_lookup): Make lookup function parameter take a
const char *name instead of char *name.
* hurd/hurdlookup.c (__hurd_file_name_lookup, __hurd_file_name_split,
__hurd_directory_name_split): Likewise.
* hurd/lookup-retry.c (__hurd_file_name_lookup_retry): Likewise.
* hurd/path-lookup.c (hurd_file_name_path_lookup): Likewise.
2018-01-28 15:23:59 +00:00
|
|
|
|
(file_t dir, const char *name, int flags, mode_t mode,
|
1996-06-19 20:11:26 +00:00
|
|
|
|
retry_type *do_retry, string_t retry_name,
|
|
|
|
|
mach_port_t *result),
|
1995-02-18 01:27:10 +00:00
|
|
|
|
const char *file_name, int flags, mode_t mode,
|
|
|
|
|
file_t *result)
|
|
|
|
|
{
|
|
|
|
|
error_t err;
|
|
|
|
|
enum retry_type doretry;
|
|
|
|
|
char retryname[1024]; /* XXX string_t LOSES! */
|
1999-03-03 00:31:05 +00:00
|
|
|
|
int startport;
|
1995-02-18 01:27:10 +00:00
|
|
|
|
|
1996-06-19 20:11:26 +00:00
|
|
|
|
error_t lookup_op (mach_port_t startdir)
|
1995-10-16 02:51:06 +00:00
|
|
|
|
{
|
1996-06-19 20:11:26 +00:00
|
|
|
|
return lookup_error ((*lookup) (startdir, file_name, flags, mode,
|
|
|
|
|
&doretry, retryname, result));
|
1995-10-16 02:51:06 +00:00
|
|
|
|
}
|
1995-02-18 01:27:10 +00:00
|
|
|
|
|
1996-06-19 20:11:26 +00:00
|
|
|
|
if (! lookup)
|
|
|
|
|
lookup = __dir_lookup;
|
|
|
|
|
|
2001-08-22 23:12:51 +00:00
|
|
|
|
if (file_name[0] == '\0')
|
|
|
|
|
return ENOENT;
|
|
|
|
|
|
1999-03-03 00:31:05 +00:00
|
|
|
|
startport = (file_name[0] == '/') ? INIT_PORT_CRDIR : INIT_PORT_CWDIR;
|
|
|
|
|
while (file_name[0] == '/')
|
|
|
|
|
file_name++;
|
|
|
|
|
|
2001-08-12 22:02:11 +00:00
|
|
|
|
if (flags & O_NOFOLLOW) /* See lookup-retry.c about O_NOFOLLOW. */
|
1999-03-03 00:31:05 +00:00
|
|
|
|
flags |= O_NOTRANS;
|
|
|
|
|
|
2018-03-18 18:43:04 +00:00
|
|
|
|
if (flags & O_DIRECTORY && (flags & O_NOFOLLOW) == 0)
|
1999-03-03 00:31:05 +00:00
|
|
|
|
{
|
|
|
|
|
/* The caller wants to require that the file we look up is a directory.
|
|
|
|
|
We can do this without an extra RPC by appending a trailing slash
|
|
|
|
|
to the file name we look up. */
|
|
|
|
|
size_t len = strlen (file_name);
|
|
|
|
|
if (len == 0)
|
|
|
|
|
file_name = "/";
|
|
|
|
|
else if (file_name[len - 1] != '/')
|
|
|
|
|
{
|
|
|
|
|
char *n = alloca (len + 2);
|
|
|
|
|
memcpy (n, file_name, len);
|
|
|
|
|
n[len] = '/';
|
|
|
|
|
n[len + 1] = '\0';
|
|
|
|
|
file_name = n;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
err = (*use_init_port) (startport, &lookup_op);
|
1995-10-16 02:51:06 +00:00
|
|
|
|
if (! err)
|
1999-03-03 00:31:05 +00:00
|
|
|
|
err = __hurd_file_name_lookup_retry (use_init_port, get_dtable_port,
|
|
|
|
|
lookup, doretry, retryname,
|
|
|
|
|
flags, mode, result);
|
1995-02-18 01:27:10 +00:00
|
|
|
|
|
1995-10-16 02:51:06 +00:00
|
|
|
|
return err;
|
1995-02-18 01:27:10 +00:00
|
|
|
|
}
|
|
|
|
|
weak_alias (__hurd_file_name_lookup, hurd_file_name_lookup)
|
|
|
|
|
|
|
|
|
|
error_t
|
1995-10-16 02:51:06 +00:00
|
|
|
|
__hurd_file_name_split (error_t (*use_init_port)
|
|
|
|
|
(int which, error_t (*operate) (file_t)),
|
|
|
|
|
file_t (*get_dtable_port) (int fd),
|
1996-06-19 20:11:26 +00:00
|
|
|
|
error_t (*lookup)
|
hurd: Fix warnings
* hurd/hurd/lookup.h (__hurd_file_name_lookup, hurd_file_name_lookup,
__hurd_file_name_split, hurd_file_name_split,
__hurd_directory_name_split, hurd_directory_name_split,
__hurd_file_name_lookup_retry, hurd_file_name_lookup_retry,
hurd_file_name_path_lookup): Make lookup function parameter take a
const char *name instead of char *name.
* hurd/hurdlookup.c (__hurd_file_name_lookup, __hurd_file_name_split,
__hurd_directory_name_split): Likewise.
* hurd/lookup-retry.c (__hurd_file_name_lookup_retry): Likewise.
* hurd/path-lookup.c (hurd_file_name_path_lookup): Likewise.
2018-01-28 15:23:59 +00:00
|
|
|
|
(file_t dir, const char *name, int flags, mode_t mode,
|
1996-06-19 20:11:26 +00:00
|
|
|
|
retry_type *do_retry, string_t retry_name,
|
|
|
|
|
mach_port_t *result),
|
1995-02-18 01:27:10 +00:00
|
|
|
|
const char *file_name,
|
|
|
|
|
file_t *dir, char **name)
|
|
|
|
|
{
|
1995-10-16 02:51:06 +00:00
|
|
|
|
error_t addref (file_t crdir)
|
|
|
|
|
{
|
|
|
|
|
*dir = crdir;
|
Fri Dec 8 13:04:51 1995 Roland McGrath <roland@churchy.gnu.ai.mit.edu>
* locale/error.c, locale/error.h: Files removed.
* locale/Makefile (distribute): Remove error.h.
(lib-modules): Remove error.
* hurd/hurdlookup.c (__hurd_file_name_lookup_retry): For "tty"
magic, return ENXIO if no ctty.
* sysdeps/mach/hurd/mmap.c: For MAP_FIXED, deallocate a previous
mapping if vm_map fails for that reason.
* posix/glob.c: Implement new options GLOB_ALTDIRFUNC, GLOB_BRACE,
GLOB_TILDE, GLOB_NOMAGIC.
(glob): Use stat instead of lstat to determine directoriness.
* posix/glob.h (GLOB_ALTDIRFUNC, GLOB_BRACE, GLOB_NOMAGIC, GLOB_TILDE):
New flag bits.
(__GLOB_FLAGS): Include them.
(glob_t): New members gl_closedir, gl_readdir, gl_opendir, gl_lstat,
gl_stat.
* elf/elf.h (ET_NUM, SHT_NUM, STB_NUM, STT_NUM, PT_NUM): New macros.
* sysdeps/unix/sysv/linux/sys/mman.h: Include <linux/mman.h> to
define all the bit values.
(MAP_*, MCL_*): Macros removed.
1995-12-09 10:00:22 +00:00
|
|
|
|
return __mach_port_mod_refs (__mach_task_self (),
|
1995-10-16 02:51:06 +00:00
|
|
|
|
crdir, MACH_PORT_RIGHT_SEND, +1);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const char *lastslash = strrchr (file_name, '/');
|
1995-02-18 01:27:10 +00:00
|
|
|
|
|
|
|
|
|
if (lastslash != NULL)
|
|
|
|
|
{
|
|
|
|
|
if (lastslash == file_name)
|
|
|
|
|
{
|
|
|
|
|
/* "/foobar" => crdir + "foobar". */
|
|
|
|
|
*name = (char *) file_name + 1;
|
1995-10-16 02:51:06 +00:00
|
|
|
|
return (*use_init_port) (INIT_PORT_CRDIR, &addref);
|
1995-02-18 01:27:10 +00:00
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
/* "/dir1/dir2/.../file". */
|
|
|
|
|
char dirname[lastslash - file_name + 1];
|
|
|
|
|
memcpy (dirname, file_name, lastslash - file_name);
|
|
|
|
|
dirname[lastslash - file_name] = '\0';
|
|
|
|
|
*name = (char *) lastslash + 1;
|
1996-06-19 20:11:26 +00:00
|
|
|
|
return
|
|
|
|
|
__hurd_file_name_lookup (use_init_port, get_dtable_port, lookup,
|
|
|
|
|
dirname, 0, 0, dir);
|
1995-02-18 01:27:10 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
2004-05-10 20:11:11 +00:00
|
|
|
|
else if (file_name[0] == '\0')
|
|
|
|
|
return ENOENT;
|
1995-02-18 01:27:10 +00:00
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
/* "foobar" => cwdir + "foobar". */
|
|
|
|
|
*name = (char *) file_name;
|
1995-10-16 02:51:06 +00:00
|
|
|
|
return (*use_init_port) (INIT_PORT_CWDIR, &addref);
|
1995-02-18 01:27:10 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
weak_alias (__hurd_file_name_split, hurd_file_name_split)
|
|
|
|
|
|
1999-11-13 23:52:38 +00:00
|
|
|
|
/* This is the same as hurd_file_name_split, except that it ignores
|
|
|
|
|
trailing slashes (so *NAME is never ""). */
|
|
|
|
|
error_t
|
|
|
|
|
__hurd_directory_name_split (error_t (*use_init_port)
|
|
|
|
|
(int which, error_t (*operate) (file_t)),
|
|
|
|
|
file_t (*get_dtable_port) (int fd),
|
|
|
|
|
error_t (*lookup)
|
hurd: Fix warnings
* hurd/hurd/lookup.h (__hurd_file_name_lookup, hurd_file_name_lookup,
__hurd_file_name_split, hurd_file_name_split,
__hurd_directory_name_split, hurd_directory_name_split,
__hurd_file_name_lookup_retry, hurd_file_name_lookup_retry,
hurd_file_name_path_lookup): Make lookup function parameter take a
const char *name instead of char *name.
* hurd/hurdlookup.c (__hurd_file_name_lookup, __hurd_file_name_split,
__hurd_directory_name_split): Likewise.
* hurd/lookup-retry.c (__hurd_file_name_lookup_retry): Likewise.
* hurd/path-lookup.c (hurd_file_name_path_lookup): Likewise.
2018-01-28 15:23:59 +00:00
|
|
|
|
(file_t dir, const char *name, int flags, mode_t mode,
|
1999-11-13 23:52:38 +00:00
|
|
|
|
retry_type *do_retry, string_t retry_name,
|
|
|
|
|
mach_port_t *result),
|
|
|
|
|
const char *file_name,
|
|
|
|
|
file_t *dir, char **name)
|
|
|
|
|
{
|
|
|
|
|
error_t addref (file_t crdir)
|
|
|
|
|
{
|
|
|
|
|
*dir = crdir;
|
|
|
|
|
return __mach_port_mod_refs (__mach_task_self (),
|
|
|
|
|
crdir, MACH_PORT_RIGHT_SEND, +1);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const char *lastslash = strrchr (file_name, '/');
|
|
|
|
|
|
|
|
|
|
if (lastslash != NULL && lastslash[1] == '\0')
|
|
|
|
|
{
|
|
|
|
|
/* Trailing slash doesn't count. Look back further. */
|
|
|
|
|
|
|
|
|
|
/* Back up over all trailing slashes. */
|
|
|
|
|
while (lastslash > file_name && *lastslash == '/')
|
|
|
|
|
--lastslash;
|
|
|
|
|
|
|
|
|
|
/* Find the last one earlier in the string, before the trailing ones. */
|
|
|
|
|
lastslash = __memrchr (file_name, '/', lastslash - file_name);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (lastslash != NULL)
|
|
|
|
|
{
|
|
|
|
|
if (lastslash == file_name)
|
|
|
|
|
{
|
|
|
|
|
/* "/foobar" => crdir + "foobar". */
|
|
|
|
|
*name = (char *) file_name + 1;
|
|
|
|
|
return (*use_init_port) (INIT_PORT_CRDIR, &addref);
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
/* "/dir1/dir2/.../file". */
|
|
|
|
|
char dirname[lastslash - file_name + 1];
|
|
|
|
|
memcpy (dirname, file_name, lastslash - file_name);
|
|
|
|
|
dirname[lastslash - file_name] = '\0';
|
|
|
|
|
*name = (char *) lastslash + 1;
|
|
|
|
|
return
|
|
|
|
|
__hurd_file_name_lookup (use_init_port, get_dtable_port, lookup,
|
|
|
|
|
dirname, 0, 0, dir);
|
|
|
|
|
}
|
|
|
|
|
}
|
2004-05-10 20:11:11 +00:00
|
|
|
|
else if (file_name[0] == '\0')
|
|
|
|
|
return ENOENT;
|
1999-11-13 23:52:38 +00:00
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
/* "foobar" => cwdir + "foobar". */
|
|
|
|
|
*name = (char *) file_name;
|
|
|
|
|
return (*use_init_port) (INIT_PORT_CWDIR, &addref);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
weak_alias (__hurd_directory_name_split, hurd_directory_name_split)
|
|
|
|
|
|
1995-02-18 01:27:10 +00:00
|
|
|
|
|
|
|
|
|
file_t
|
|
|
|
|
__file_name_lookup (const char *file_name, int flags, mode_t mode)
|
|
|
|
|
{
|
2023-01-30 12:52:14 +00:00
|
|
|
|
return __file_name_lookup_at (AT_FDCWD, 0, file_name, flags, mode);
|
1995-02-18 01:27:10 +00:00
|
|
|
|
}
|
|
|
|
|
weak_alias (__file_name_lookup, file_name_lookup)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
file_t
|
|
|
|
|
__file_name_split (const char *file_name, char **name)
|
|
|
|
|
{
|
|
|
|
|
error_t err;
|
1995-10-16 02:51:06 +00:00
|
|
|
|
file_t result;
|
|
|
|
|
|
1996-06-19 20:11:26 +00:00
|
|
|
|
err = __hurd_file_name_split (&_hurd_ports_use, &__getdport, 0,
|
1995-10-16 02:51:06 +00:00
|
|
|
|
file_name, &result, name);
|
1995-02-18 01:27:10 +00:00
|
|
|
|
|
1995-10-16 02:51:06 +00:00
|
|
|
|
return err ? (__hurd_fail (err), MACH_PORT_NULL) : result;
|
|
|
|
|
}
|
|
|
|
|
weak_alias (__file_name_split, file_name_split)
|
1995-02-18 01:27:10 +00:00
|
|
|
|
|
1999-11-13 23:52:38 +00:00
|
|
|
|
file_t
|
|
|
|
|
__directory_name_split (const char *directory_name, char **name)
|
|
|
|
|
{
|
|
|
|
|
error_t err;
|
|
|
|
|
file_t result;
|
|
|
|
|
|
|
|
|
|
err = __hurd_directory_name_split (&_hurd_ports_use, &__getdport, 0,
|
|
|
|
|
directory_name, &result, name);
|
|
|
|
|
|
|
|
|
|
return err ? (__hurd_fail (err), MACH_PORT_NULL) : result;
|
|
|
|
|
}
|
|
|
|
|
weak_alias (__directory_name_split, directory_name_split)
|
|
|
|
|
|
1995-02-18 01:27:10 +00:00
|
|
|
|
|
1995-10-16 02:51:06 +00:00
|
|
|
|
file_t
|
|
|
|
|
__file_name_lookup_under (file_t startdir,
|
|
|
|
|
const char *file_name, int flags, mode_t mode)
|
|
|
|
|
{
|
|
|
|
|
error_t err;
|
|
|
|
|
file_t result;
|
1995-02-18 01:27:10 +00:00
|
|
|
|
|
1995-10-16 02:51:06 +00:00
|
|
|
|
error_t use_init_port (int which, error_t (*operate) (mach_port_t))
|
1995-02-18 01:27:10 +00:00
|
|
|
|
{
|
2019-02-25 13:19:19 +00:00
|
|
|
|
return (which == INIT_PORT_CWDIR ? (*operate) (startdir)
|
|
|
|
|
: _hurd_ports_use (which, operate));
|
1995-02-18 01:27:10 +00:00
|
|
|
|
}
|
1995-10-16 02:51:06 +00:00
|
|
|
|
|
1996-06-19 20:11:26 +00:00
|
|
|
|
err = __hurd_file_name_lookup (&use_init_port, &__getdport, 0,
|
1996-01-28 22:47:31 +00:00
|
|
|
|
file_name, flags, mode & ~_hurd_umask,
|
1995-10-16 02:51:06 +00:00
|
|
|
|
&result);
|
|
|
|
|
|
|
|
|
|
return err ? (__hurd_fail (err), MACH_PORT_NULL) : result;
|
1995-02-18 01:27:10 +00:00
|
|
|
|
}
|
1995-10-16 02:51:06 +00:00
|
|
|
|
weak_alias (__file_name_lookup_under, file_name_lookup_under)
|