2006-03-06 07:59:23 +00:00
|
|
|
/* Test for access to file, relative to open directory. Hurd version.
|
2024-01-01 18:12:26 +00:00
|
|
|
Copyright (C) 2006-2024 Free Software Foundation, Inc.
|
2006-03-06 07:59:23 +00:00
|
|
|
This file is part of the GNU C Library.
|
|
|
|
|
|
|
|
The GNU C Library is free software; you can redistribute it and/or
|
|
|
|
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.
|
|
|
|
|
|
|
|
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
|
|
|
|
Lesser General Public License for more details.
|
|
|
|
|
|
|
|
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/>. */
|
2006-03-06 07:59:23 +00:00
|
|
|
|
|
|
|
#include <errno.h>
|
|
|
|
#include <fcntl.h>
|
|
|
|
#include <stddef.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <hurd.h>
|
|
|
|
#include <hurd/fd.h>
|
2018-01-10 00:58:23 +00:00
|
|
|
#include <hurd/port.h>
|
|
|
|
#include <hurd/id.h>
|
|
|
|
#include <hurd/lookup.h>
|
2006-03-06 07:59:23 +00:00
|
|
|
|
2018-01-10 00:58:23 +00:00
|
|
|
static int
|
|
|
|
hurd_fail_seterrno (error_t err)
|
|
|
|
{
|
|
|
|
return __hurd_fail (err);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
hurd_fail_noerrno (error_t err)
|
|
|
|
{
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
__faccessat_common (int fd, const char *file, int type, int at_flags,
|
|
|
|
int (*errfunc) (error_t))
|
2006-03-06 07:59:23 +00:00
|
|
|
{
|
|
|
|
error_t err;
|
2018-01-10 00:58:23 +00:00
|
|
|
file_t rcrdir, rcwdir, io;
|
|
|
|
int flags, allowed;
|
2006-03-06 07:59:23 +00:00
|
|
|
|
2018-01-10 00:58:23 +00:00
|
|
|
if ((at_flags & AT_EACCESS) == AT_EACCESS)
|
2006-03-06 07:59:23 +00:00
|
|
|
{
|
2018-01-10 00:58:23 +00:00
|
|
|
/* Use effective permissions. */
|
|
|
|
io = __file_name_lookup_at (fd, at_flags &~ AT_EACCESS, file, 0, 0);
|
|
|
|
if (io == MACH_PORT_NULL)
|
|
|
|
return -1;
|
2006-03-06 07:59:23 +00:00
|
|
|
}
|
2018-01-10 00:58:23 +00:00
|
|
|
else
|
|
|
|
{
|
|
|
|
/* We have to use real permissions instead of the
|
|
|
|
usual effective permissions. */
|
|
|
|
|
|
|
|
int hurd_flags = 0;
|
2019-01-22 21:47:10 +00:00
|
|
|
err = __hurd_at_flags (&at_flags, &hurd_flags);
|
|
|
|
if (err)
|
|
|
|
return errfunc (err);
|
2018-01-10 00:58:23 +00:00
|
|
|
|
|
|
|
error_t reauthenticate_cwdir_at (file_t *result)
|
|
|
|
{
|
|
|
|
/* Get a port to the FD directory, authenticated with the real IDs. */
|
|
|
|
error_t err;
|
|
|
|
mach_port_t ref;
|
|
|
|
ref = __mach_reply_port ();
|
|
|
|
err = HURD_DPORT_USE
|
|
|
|
(fd,
|
|
|
|
({
|
|
|
|
err = __io_reauthenticate (port, ref, MACH_MSG_TYPE_MAKE_SEND);
|
|
|
|
if (!err)
|
|
|
|
err = __auth_user_authenticate (_hurd_id.rid_auth,
|
|
|
|
ref, MACH_MSG_TYPE_MAKE_SEND,
|
|
|
|
result);
|
|
|
|
err;
|
|
|
|
}));
|
|
|
|
__mach_port_destroy (__mach_task_self (), ref);
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
|
|
|
error_t reauthenticate (int which, file_t *result)
|
|
|
|
{
|
|
|
|
/* Get a port to our root directory, authenticated with the real IDs. */
|
|
|
|
error_t err;
|
|
|
|
mach_port_t ref;
|
|
|
|
ref = __mach_reply_port ();
|
|
|
|
err = HURD_PORT_USE
|
|
|
|
(&_hurd_ports[which],
|
|
|
|
({
|
|
|
|
err = __io_reauthenticate (port, ref, MACH_MSG_TYPE_MAKE_SEND);
|
|
|
|
if (!err)
|
|
|
|
err = __auth_user_authenticate (_hurd_id.rid_auth,
|
|
|
|
ref, MACH_MSG_TYPE_MAKE_SEND,
|
|
|
|
result);
|
|
|
|
err;
|
|
|
|
}));
|
|
|
|
__mach_port_destroy (__mach_task_self (), ref);
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
|
|
|
error_t init_port (int which, error_t (*operate) (mach_port_t))
|
|
|
|
{
|
|
|
|
switch (which)
|
|
|
|
{
|
|
|
|
case INIT_PORT_AUTH:
|
|
|
|
return (*operate) (_hurd_id.rid_auth);
|
|
|
|
case INIT_PORT_CRDIR:
|
|
|
|
return (reauthenticate (INIT_PORT_CRDIR, &rcrdir) ?:
|
|
|
|
(*operate) (rcrdir));
|
|
|
|
case INIT_PORT_CWDIR:
|
|
|
|
if (fd == AT_FDCWD || file[0] == '/')
|
|
|
|
return (reauthenticate (INIT_PORT_CWDIR, &rcwdir) ?:
|
|
|
|
(*operate) (rcwdir));
|
|
|
|
else
|
|
|
|
return (reauthenticate_cwdir_at (&rcwdir) ?:
|
|
|
|
(*operate) (rcwdir));
|
|
|
|
default:
|
|
|
|
return _hurd_ports_use (which, operate);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
rcrdir = rcwdir = MACH_PORT_NULL;
|
|
|
|
|
2021-03-23 22:38:54 +00:00
|
|
|
retry:
|
2018-01-10 00:58:23 +00:00
|
|
|
HURD_CRITICAL_BEGIN;
|
|
|
|
|
|
|
|
__mutex_lock (&_hurd_id.lock);
|
|
|
|
/* Get _hurd_id up to date. */
|
|
|
|
if (err = _hurd_check_ids ())
|
|
|
|
goto lose;
|
2006-03-06 07:59:23 +00:00
|
|
|
|
2018-01-10 00:58:23 +00:00
|
|
|
if (_hurd_id.rid_auth == MACH_PORT_NULL)
|
|
|
|
{
|
|
|
|
/* Set up _hurd_id.rid_auth. This is a special auth server port
|
|
|
|
which uses the real uid and gid (the first aux uid and gid) as
|
|
|
|
the only effective uid and gid. */
|
|
|
|
|
|
|
|
if (_hurd_id.aux.nuids < 1 || _hurd_id.aux.ngids < 1)
|
|
|
|
{
|
|
|
|
/* We do not have a real UID and GID. Lose, lose, lose! */
|
|
|
|
err = EGRATUITOUS;
|
|
|
|
goto lose;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Create a new auth port using our real UID and GID (the first
|
|
|
|
auxiliary UID and GID) as the only effective IDs. */
|
|
|
|
if (err = __USEPORT (AUTH,
|
|
|
|
__auth_makeauth (port,
|
|
|
|
NULL, MACH_MSG_TYPE_COPY_SEND, 0,
|
|
|
|
_hurd_id.aux.uids, 1,
|
|
|
|
_hurd_id.aux.uids,
|
|
|
|
_hurd_id.aux.nuids,
|
|
|
|
_hurd_id.aux.gids, 1,
|
|
|
|
_hurd_id.aux.gids,
|
|
|
|
_hurd_id.aux.ngids,
|
|
|
|
&_hurd_id.rid_auth)))
|
|
|
|
goto lose;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!err)
|
|
|
|
/* Look up the file name using the modified init ports. */
|
|
|
|
err = __hurd_file_name_lookup (&init_port, &__getdport, 0,
|
|
|
|
file, hurd_flags, 0, &io);
|
|
|
|
|
|
|
|
/* We are done with _hurd_id.rid_auth now. */
|
|
|
|
lose:
|
|
|
|
__mutex_unlock (&_hurd_id.lock);
|
|
|
|
|
|
|
|
HURD_CRITICAL_END;
|
2021-03-23 22:38:54 +00:00
|
|
|
if (err == EINTR)
|
|
|
|
/* Got a signal while inside an RPC of the critical section, retry again */
|
|
|
|
goto retry;
|
2018-01-10 00:58:23 +00:00
|
|
|
|
|
|
|
if (rcrdir != MACH_PORT_NULL)
|
|
|
|
__mach_port_deallocate (__mach_task_self (), rcrdir);
|
|
|
|
if (rcwdir != MACH_PORT_NULL)
|
|
|
|
__mach_port_deallocate (__mach_task_self (), rcwdir);
|
|
|
|
if (err)
|
|
|
|
return errfunc (err);
|
|
|
|
}
|
2006-03-06 07:59:23 +00:00
|
|
|
|
|
|
|
/* Find out what types of access we are allowed to this file. */
|
2018-01-10 00:58:23 +00:00
|
|
|
err = __file_check_access (io, &allowed);
|
|
|
|
__mach_port_deallocate (__mach_task_self (), io);
|
2006-03-06 07:59:23 +00:00
|
|
|
if (err)
|
2018-01-10 00:58:23 +00:00
|
|
|
return errfunc (err);
|
2006-03-06 07:59:23 +00:00
|
|
|
|
|
|
|
flags = 0;
|
|
|
|
if (type & R_OK)
|
|
|
|
flags |= O_READ;
|
|
|
|
if (type & W_OK)
|
|
|
|
flags |= O_WRITE;
|
|
|
|
if (type & X_OK)
|
|
|
|
flags |= O_EXEC;
|
|
|
|
|
|
|
|
if (flags & ~allowed)
|
|
|
|
/* We are not allowed all the requested types of access. */
|
2018-01-10 00:58:23 +00:00
|
|
|
return errfunc (EACCES);
|
2006-03-06 07:59:23 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
2018-01-10 00:58:23 +00:00
|
|
|
|
|
|
|
int
|
|
|
|
__faccessat_noerrno (int fd, const char *file, int type, int at_flags)
|
|
|
|
{
|
|
|
|
return __faccessat_common (fd, file, type, at_flags, hurd_fail_noerrno);
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
__faccessat (int fd, const char *file, int type, int at_flags)
|
|
|
|
{
|
|
|
|
return __faccessat_common (fd, file, type, at_flags, hurd_fail_seterrno);
|
|
|
|
}
|
|
|
|
weak_alias (__faccessat, faccessat)
|