2006-03-06 08:59:23 +01:00
|
|
|
|
/* Copyright (C) 1992,1993,1994,1995,1996,1997,1999,2001,2004,2006
|
2004-05-10 22:11:11 +02:00
|
|
|
|
Free Software Foundation, Inc.
|
1997-02-15 05:31:36 +01:00
|
|
|
|
This file is part of the GNU C Library.
|
1995-02-18 02:27:10 +01:00
|
|
|
|
|
1997-02-15 05:31:36 +01:00
|
|
|
|
The GNU C Library is free software; you can redistribute it and/or
|
2001-07-06 06:58:11 +02: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 02:27:10 +01:00
|
|
|
|
|
1997-02-15 05:31:36 +01: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 06:58:11 +02:00
|
|
|
|
Lesser General Public License for more details.
|
1995-02-18 02:27:10 +01:00
|
|
|
|
|
2001-07-06 06:58:11 +02:00
|
|
|
|
You should have received a copy of the GNU Lesser General Public
|
|
|
|
|
License along with the GNU C Library; if not, write to the Free
|
|
|
|
|
Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
|
|
|
|
|
02111-1307 USA. */
|
1995-02-18 02:27:10 +01:00
|
|
|
|
|
|
|
|
|
#include <hurd.h>
|
1995-10-16 03:51:06 +01:00
|
|
|
|
#include <hurd/lookup.h>
|
1995-02-18 02:27:10 +01: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 03:51:06 +01: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 22:11:26 +02:00
|
|
|
|
error_t (*lookup)
|
|
|
|
|
(file_t dir, char *name, int flags, mode_t mode,
|
|
|
|
|
retry_type *do_retry, string_t retry_name,
|
|
|
|
|
mach_port_t *result),
|
1995-02-18 02:27:10 +01: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 01:31:05 +01:00
|
|
|
|
int startport;
|
1995-02-18 02:27:10 +01:00
|
|
|
|
|
1996-06-19 22:11:26 +02:00
|
|
|
|
error_t lookup_op (mach_port_t startdir)
|
1995-10-16 03:51:06 +01:00
|
|
|
|
{
|
1996-06-19 22:11:26 +02:00
|
|
|
|
return lookup_error ((*lookup) (startdir, file_name, flags, mode,
|
|
|
|
|
&doretry, retryname, result));
|
1995-10-16 03:51:06 +01:00
|
|
|
|
}
|
1995-02-18 02:27:10 +01:00
|
|
|
|
|
1996-06-19 22:11:26 +02:00
|
|
|
|
if (! lookup)
|
|
|
|
|
lookup = __dir_lookup;
|
|
|
|
|
|
2001-08-23 01:12:51 +02:00
|
|
|
|
if (file_name[0] == '\0')
|
|
|
|
|
return ENOENT;
|
|
|
|
|
|
1999-03-03 01:31:05 +01:00
|
|
|
|
startport = (file_name[0] == '/') ? INIT_PORT_CRDIR : INIT_PORT_CWDIR;
|
|
|
|
|
while (file_name[0] == '/')
|
|
|
|
|
file_name++;
|
|
|
|
|
|
2001-08-13 00:02:11 +02:00
|
|
|
|
if (flags & O_NOFOLLOW) /* See lookup-retry.c about O_NOFOLLOW. */
|
1999-03-03 01:31:05 +01:00
|
|
|
|
flags |= O_NOTRANS;
|
|
|
|
|
|
|
|
|
|
if (flags & O_DIRECTORY)
|
|
|
|
|
{
|
|
|
|
|
/* 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 03:51:06 +01:00
|
|
|
|
if (! err)
|
1999-03-03 01:31:05 +01:00
|
|
|
|
err = __hurd_file_name_lookup_retry (use_init_port, get_dtable_port,
|
|
|
|
|
lookup, doretry, retryname,
|
|
|
|
|
flags, mode, result);
|
1995-02-18 02:27:10 +01:00
|
|
|
|
|
1995-10-16 03:51:06 +01:00
|
|
|
|
return err;
|
1995-02-18 02:27:10 +01:00
|
|
|
|
}
|
|
|
|
|
weak_alias (__hurd_file_name_lookup, hurd_file_name_lookup)
|
|
|
|
|
|
|
|
|
|
error_t
|
1995-10-16 03:51:06 +01: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 22:11:26 +02:00
|
|
|
|
error_t (*lookup)
|
|
|
|
|
(file_t dir, char *name, int flags, mode_t mode,
|
|
|
|
|
retry_type *do_retry, string_t retry_name,
|
|
|
|
|
mach_port_t *result),
|
1995-02-18 02:27:10 +01:00
|
|
|
|
const char *file_name,
|
|
|
|
|
file_t *dir, char **name)
|
|
|
|
|
{
|
1995-10-16 03:51:06 +01: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 11:00:22 +01:00
|
|
|
|
return __mach_port_mod_refs (__mach_task_self (),
|
1995-10-16 03:51:06 +01:00
|
|
|
|
crdir, MACH_PORT_RIGHT_SEND, +1);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const char *lastslash = strrchr (file_name, '/');
|
1995-02-18 02:27:10 +01:00
|
|
|
|
|
|
|
|
|
if (lastslash != NULL)
|
|
|
|
|
{
|
|
|
|
|
if (lastslash == file_name)
|
|
|
|
|
{
|
|
|
|
|
/* "/foobar" => crdir + "foobar". */
|
|
|
|
|
*name = (char *) file_name + 1;
|
1995-10-16 03:51:06 +01:00
|
|
|
|
return (*use_init_port) (INIT_PORT_CRDIR, &addref);
|
1995-02-18 02:27:10 +01: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 22:11:26 +02:00
|
|
|
|
return
|
|
|
|
|
__hurd_file_name_lookup (use_init_port, get_dtable_port, lookup,
|
|
|
|
|
dirname, 0, 0, dir);
|
1995-02-18 02:27:10 +01:00
|
|
|
|
}
|
|
|
|
|
}
|
2004-05-10 22:11:11 +02:00
|
|
|
|
else if (file_name[0] == '\0')
|
|
|
|
|
return ENOENT;
|
1995-02-18 02:27:10 +01:00
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
/* "foobar" => cwdir + "foobar". */
|
|
|
|
|
*name = (char *) file_name;
|
1995-10-16 03:51:06 +01:00
|
|
|
|
return (*use_init_port) (INIT_PORT_CWDIR, &addref);
|
1995-02-18 02:27:10 +01:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
weak_alias (__hurd_file_name_split, hurd_file_name_split)
|
|
|
|
|
|
1999-11-14 00:52:38 +01: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)
|
|
|
|
|
(file_t dir, char *name, int flags, mode_t mode,
|
|
|
|
|
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 22:11:11 +02:00
|
|
|
|
else if (file_name[0] == '\0')
|
|
|
|
|
return ENOENT;
|
1999-11-14 00:52:38 +01: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 02:27:10 +01:00
|
|
|
|
|
|
|
|
|
file_t
|
|
|
|
|
__file_name_lookup (const char *file_name, int flags, mode_t mode)
|
|
|
|
|
{
|
|
|
|
|
error_t err;
|
1995-10-16 03:51:06 +01:00
|
|
|
|
file_t result;
|
1995-02-18 02:27:10 +01:00
|
|
|
|
|
1996-06-19 22:11:26 +02:00
|
|
|
|
err = __hurd_file_name_lookup (&_hurd_ports_use, &__getdport, 0,
|
1996-01-28 23:47:31 +01:00
|
|
|
|
file_name, flags, mode & ~_hurd_umask,
|
1995-02-18 02:27:10 +01:00
|
|
|
|
&result);
|
|
|
|
|
|
1995-10-16 03:51:06 +01:00
|
|
|
|
return err ? (__hurd_fail (err), MACH_PORT_NULL) : result;
|
1995-02-18 02:27:10 +01: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 03:51:06 +01:00
|
|
|
|
file_t result;
|
|
|
|
|
|
1996-06-19 22:11:26 +02:00
|
|
|
|
err = __hurd_file_name_split (&_hurd_ports_use, &__getdport, 0,
|
1995-10-16 03:51:06 +01:00
|
|
|
|
file_name, &result, name);
|
1995-02-18 02:27:10 +01:00
|
|
|
|
|
1995-10-16 03:51:06 +01:00
|
|
|
|
return err ? (__hurd_fail (err), MACH_PORT_NULL) : result;
|
|
|
|
|
}
|
|
|
|
|
weak_alias (__file_name_split, file_name_split)
|
1995-02-18 02:27:10 +01:00
|
|
|
|
|
1999-11-14 00:52:38 +01: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 02:27:10 +01:00
|
|
|
|
|
1995-10-16 03:51:06 +01: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 02:27:10 +01:00
|
|
|
|
|
1995-10-16 03:51:06 +01:00
|
|
|
|
error_t use_init_port (int which, error_t (*operate) (mach_port_t))
|
1995-02-18 02:27:10 +01:00
|
|
|
|
{
|
1995-10-16 03:51:06 +01:00
|
|
|
|
return (which == INIT_PORT_CWDIR ? (*operate) (startdir) :
|
|
|
|
|
_hurd_ports_use (which, operate));
|
1995-02-18 02:27:10 +01:00
|
|
|
|
}
|
1995-10-16 03:51:06 +01:00
|
|
|
|
|
1996-06-19 22:11:26 +02:00
|
|
|
|
err = __hurd_file_name_lookup (&use_init_port, &__getdport, 0,
|
1996-01-28 23:47:31 +01:00
|
|
|
|
file_name, flags, mode & ~_hurd_umask,
|
1995-10-16 03:51:06 +01:00
|
|
|
|
&result);
|
|
|
|
|
|
|
|
|
|
return err ? (__hurd_fail (err), MACH_PORT_NULL) : result;
|
1995-02-18 02:27:10 +01:00
|
|
|
|
}
|
1995-10-16 03:51:06 +01:00
|
|
|
|
weak_alias (__file_name_lookup_under, file_name_lookup_under)
|