1997-02-15 05:31:36 +01:00
|
|
|
|
/* Copyright (C) 1992, 93, 94, 95, 96, 97 Free Software Foundation, Inc.
|
|
|
|
|
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
|
|
|
|
|
modify it under the terms of the GNU Library General Public License as
|
|
|
|
|
published by the Free Software Foundation; either version 2 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
|
|
|
|
|
Library General Public License for more details.
|
1995-02-18 02:27:10 +01:00
|
|
|
|
|
1997-02-15 05:31:36 +01:00
|
|
|
|
You should have received a copy of the GNU Library General Public
|
|
|
|
|
License along with the GNU C Library; see the file COPYING.LIB. 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 <limits.h>
|
|
|
|
|
#include <fcntl.h>
|
1995-10-18 06:47:53 +01:00
|
|
|
|
#include "stdio-common/_itoa.h"
|
1995-02-18 02:27:10 +01:00
|
|
|
|
#include <hurd/term.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! */
|
|
|
|
|
|
1996-06-19 22:11:26 +02:00
|
|
|
|
error_t lookup_op (mach_port_t startdir)
|
1995-10-16 03:51:06 +01:00
|
|
|
|
{
|
|
|
|
|
while (file_name[0] == '/')
|
|
|
|
|
file_name++;
|
1995-02-18 02:27:10 +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;
|
|
|
|
|
|
1995-10-16 03:51:06 +01:00
|
|
|
|
err = (*use_init_port) (file_name[0] == '/'
|
|
|
|
|
? INIT_PORT_CRDIR : INIT_PORT_CWDIR,
|
1996-06-19 22:11:26 +02:00
|
|
|
|
&lookup_op);
|
1995-10-16 03:51:06 +01:00
|
|
|
|
if (! err)
|
1996-06-19 22:11:26 +02:00
|
|
|
|
err = __hurd_file_name_lookup_retry (use_init_port, get_dtable_port, lookup,
|
1995-10-16 03:51:06 +01:00
|
|
|
|
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_lookup_retry (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
|
|
|
|
enum retry_type doretry,
|
|
|
|
|
char retryname[1024],
|
|
|
|
|
int flags, mode_t mode,
|
|
|
|
|
file_t *result)
|
|
|
|
|
{
|
|
|
|
|
error_t err;
|
|
|
|
|
char *file_name;
|
|
|
|
|
int nloops;
|
|
|
|
|
|
1996-06-19 22:11:26 +02:00
|
|
|
|
error_t lookup_op (file_t startdir)
|
1995-10-16 03:51:06 +01:00
|
|
|
|
{
|
|
|
|
|
while (file_name[0] == '/')
|
|
|
|
|
file_name++;
|
|
|
|
|
|
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
|
|
|
|
}
|
|
|
|
|
error_t reauthenticate (file_t unauth)
|
|
|
|
|
{
|
|
|
|
|
error_t err;
|
|
|
|
|
mach_port_t ref = __mach_reply_port ();
|
|
|
|
|
error_t reauth (auth_t auth)
|
|
|
|
|
{
|
1996-05-04 11:46:57 +02:00
|
|
|
|
return __auth_user_authenticate (auth, ref,
|
1995-10-16 03:51:06 +01:00
|
|
|
|
MACH_MSG_TYPE_MAKE_SEND,
|
|
|
|
|
result);
|
|
|
|
|
}
|
|
|
|
|
err = __io_reauthenticate (unauth, ref, MACH_MSG_TYPE_MAKE_SEND);
|
|
|
|
|
if (! err)
|
|
|
|
|
err = (*use_init_port) (INIT_PORT_AUTH, &reauth);
|
|
|
|
|
__mach_port_destroy (__mach_task_self (), ref);
|
|
|
|
|
__mach_port_deallocate (__mach_task_self (), unauth);
|
|
|
|
|
return err;
|
|
|
|
|
}
|
|
|
|
|
|
1996-06-19 22:11:26 +02:00
|
|
|
|
if (! lookup)
|
|
|
|
|
lookup = __dir_lookup;
|
|
|
|
|
|
1995-02-18 02:27:10 +01:00
|
|
|
|
nloops = 0;
|
|
|
|
|
err = 0;
|
1995-10-16 03:51:06 +01:00
|
|
|
|
do
|
1995-02-18 02:27:10 +01:00
|
|
|
|
{
|
1995-10-16 03:51:06 +01:00
|
|
|
|
file_t startdir = MACH_PORT_NULL;
|
|
|
|
|
int dirport = INIT_PORT_CWDIR;
|
1995-02-18 02:27:10 +01:00
|
|
|
|
|
|
|
|
|
switch (doretry)
|
|
|
|
|
{
|
|
|
|
|
case FS_RETRY_REAUTH:
|
1995-10-16 03:51:06 +01:00
|
|
|
|
if (err = reauthenticate (*result))
|
1995-02-18 02:27:10 +01:00
|
|
|
|
return err;
|
|
|
|
|
/* Fall through. */
|
|
|
|
|
|
|
|
|
|
case FS_RETRY_NORMAL:
|
|
|
|
|
#ifdef SYMLOOP_MAX
|
|
|
|
|
if (nloops++ >= SYMLOOP_MAX)
|
|
|
|
|
return ELOOP;
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
/* An empty RETRYNAME indicates we have the final port. */
|
1996-02-08 03:10:15 +01:00
|
|
|
|
if (retryname[0] == '\0' &&
|
|
|
|
|
/* If reauth'd, we must do one more retry on "" to give the new
|
|
|
|
|
translator a chance to make a new port for us. */
|
|
|
|
|
doretry == FS_RETRY_NORMAL)
|
1995-02-18 02:27:10 +01:00
|
|
|
|
{
|
|
|
|
|
/* We got a successful translation. Now apply any open-time
|
|
|
|
|
action flags we were passed. */
|
1996-10-15 17:07:50 +02:00
|
|
|
|
if (flags & O_TRUNC)
|
1995-09-18 11:00:07 +02:00
|
|
|
|
err = __file_set_size (*result, 0);
|
1995-02-18 02:27:10 +01:00
|
|
|
|
|
|
|
|
|
if (err)
|
|
|
|
|
__mach_port_deallocate (__mach_task_self (), *result);
|
|
|
|
|
return err;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
startdir = *result;
|
|
|
|
|
file_name = retryname;
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case FS_RETRY_MAGICAL:
|
|
|
|
|
switch (retryname[0])
|
|
|
|
|
{
|
|
|
|
|
case '/':
|
1995-10-16 03:51:06 +01:00
|
|
|
|
dirport = INIT_PORT_CRDIR;
|
1995-02-18 02:27:10 +01:00
|
|
|
|
if (*result != MACH_PORT_NULL)
|
|
|
|
|
__mach_port_deallocate (__mach_task_self (), *result);
|
|
|
|
|
file_name = &retryname[1];
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case 'f':
|
|
|
|
|
if (retryname[1] == 'd' && retryname[2] == '/')
|
|
|
|
|
{
|
|
|
|
|
int fd;
|
|
|
|
|
char *end;
|
|
|
|
|
int save = errno;
|
|
|
|
|
errno = 0;
|
1995-10-18 08:36:16 +01:00
|
|
|
|
fd = (int) strtol (&retryname[3], &end, 10);
|
1995-02-18 02:27:10 +01:00
|
|
|
|
if (end == NULL || errno || /* Malformed number. */
|
|
|
|
|
/* Check for excess text after the number. A slash
|
|
|
|
|
is valid; it ends the component. Anything else
|
|
|
|
|
does not name a numeric file descriptor. */
|
|
|
|
|
(*end != '/' && *end != '\0'))
|
|
|
|
|
{
|
|
|
|
|
errno = save;
|
|
|
|
|
return ENOENT;
|
|
|
|
|
}
|
1995-10-16 03:51:06 +01:00
|
|
|
|
if (! get_dtable_port)
|
|
|
|
|
err = EGRATUITOUS;
|
|
|
|
|
else
|
1995-02-18 02:27:10 +01:00
|
|
|
|
{
|
1995-10-16 03:51:06 +01:00
|
|
|
|
*result = (*get_dtable_port) (fd);
|
|
|
|
|
if (*result == MACH_PORT_NULL)
|
|
|
|
|
{
|
|
|
|
|
/* If the name was a proper number, but the file
|
|
|
|
|
descriptor does not exist, we return EBADF instead
|
|
|
|
|
of ENOENT. */
|
|
|
|
|
err = errno;
|
|
|
|
|
errno = save;
|
|
|
|
|
}
|
1995-02-18 02:27:10 +01:00
|
|
|
|
}
|
|
|
|
|
errno = save;
|
1995-10-16 03:51:06 +01:00
|
|
|
|
if (err)
|
|
|
|
|
return err;
|
1995-02-18 02:27:10 +01:00
|
|
|
|
if (*end == '\0')
|
|
|
|
|
return 0;
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
/* Do a normal retry on the remaining components. */
|
|
|
|
|
startdir = *result;
|
|
|
|
|
file_name = end + 1; /* Skip the slash. */
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
goto bad_magic;
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case 'm':
|
|
|
|
|
if (retryname[1] == 'a' && retryname[2] == 'c' &&
|
|
|
|
|
retryname[3] == 'h' && retryname[4] == 't' &&
|
|
|
|
|
retryname[5] == 'y' && retryname[6] == 'p' &&
|
|
|
|
|
retryname[7] == 'e')
|
|
|
|
|
{
|
|
|
|
|
error_t err;
|
|
|
|
|
struct host_basic_info hostinfo;
|
|
|
|
|
mach_msg_type_number_t hostinfocnt = HOST_BASIC_INFO_COUNT;
|
|
|
|
|
char *p;
|
1995-10-16 03:51:06 +01:00
|
|
|
|
/* XXX want client's host */
|
1995-02-18 02:27:10 +01:00
|
|
|
|
if (err = __host_info (__mach_host_self (), HOST_BASIC_INFO,
|
|
|
|
|
(natural_t *) &hostinfo,
|
|
|
|
|
&hostinfocnt))
|
|
|
|
|
return err;
|
|
|
|
|
if (hostinfocnt != HOST_BASIC_INFO_COUNT)
|
|
|
|
|
return EGRATUITOUS;
|
|
|
|
|
p = _itoa (hostinfo.cpu_subtype, &retryname[8], 10, 0);
|
|
|
|
|
*--p = '/';
|
|
|
|
|
p = _itoa (hostinfo.cpu_type, &retryname[8], 10, 0);
|
|
|
|
|
if (p < retryname)
|
|
|
|
|
abort (); /* XXX write this right if this ever happens */
|
|
|
|
|
if (p > retryname)
|
|
|
|
|
strcpy (retryname, p);
|
|
|
|
|
startdir = *result;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
goto bad_magic;
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case 't':
|
|
|
|
|
if (retryname[1] == 't' && retryname[2] == 'y')
|
|
|
|
|
switch (retryname[3])
|
|
|
|
|
{
|
|
|
|
|
error_t opentty (file_t *result)
|
|
|
|
|
{
|
|
|
|
|
error_t err;
|
1995-10-16 03:51:06 +01:00
|
|
|
|
error_t ctty_open (file_t port)
|
1995-02-18 02:27:10 +01:00
|
|
|
|
{
|
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
|
|
|
|
if (port == MACH_PORT_NULL)
|
|
|
|
|
return ENXIO; /* No controlling terminal. */
|
1995-10-16 03:51:06 +01:00
|
|
|
|
return __termctty_open_terminal (port,
|
|
|
|
|
flags,
|
|
|
|
|
result);
|
1995-02-18 02:27:10 +01:00
|
|
|
|
}
|
1995-10-16 03:51:06 +01:00
|
|
|
|
err = (*use_init_port) (INIT_PORT_CTTYID, &ctty_open);
|
|
|
|
|
if (! err)
|
|
|
|
|
err = reauthenticate (*result);
|
1995-02-18 02:27:10 +01:00
|
|
|
|
return err;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
case '\0':
|
|
|
|
|
return opentty (result);
|
|
|
|
|
case '/':
|
|
|
|
|
if (err = opentty (&startdir))
|
|
|
|
|
return err;
|
|
|
|
|
strcpy (retryname, &retryname[4]);
|
|
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
goto bad_magic;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
goto bad_magic;
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
default:
|
|
|
|
|
bad_magic:
|
|
|
|
|
return EGRATUITOUS;
|
|
|
|
|
}
|
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
|
|
|
|
break;
|
1995-02-18 02:27:10 +01:00
|
|
|
|
|
|
|
|
|
default:
|
|
|
|
|
return EGRATUITOUS;
|
|
|
|
|
}
|
|
|
|
|
|
1995-10-16 03:51:06 +01:00
|
|
|
|
if (startdir != MACH_PORT_NULL)
|
|
|
|
|
{
|
1996-06-19 22:11:26 +02:00
|
|
|
|
err = lookup_op (startdir);
|
1995-10-16 03:51:06 +01:00
|
|
|
|
__mach_port_deallocate (__mach_task_self (), startdir);
|
|
|
|
|
startdir = MACH_PORT_NULL;
|
|
|
|
|
}
|
|
|
|
|
else
|
1996-06-19 22:11:26 +02:00
|
|
|
|
err = (*use_init_port) (dirport, &lookup_op);
|
1995-10-16 03:51:06 +01:00
|
|
|
|
} while (! err);
|
|
|
|
|
|
|
|
|
|
return err;
|
1995-02-18 02:27:10 +01:00
|
|
|
|
}
|
|
|
|
|
weak_alias (__hurd_file_name_lookup_retry, hurd_file_name_lookup_retry)
|
|
|
|
|
|
|
|
|
|
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
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
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)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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
|
|
|
|
|
|
|
|
|
|
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)
|