99 lines
2.9 KiB
C
99 lines
2.9 KiB
C
/* Copyright (C) 1991, 1992 Free Software Foundation, Inc.
|
|
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 Library General Public License as
|
|
published by the Free Software Foundation; either version 2 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
|
|
Library General Public License for more details.
|
|
|
|
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., 675 Mass Ave,
|
|
Cambridge, MA 02139, USA. */
|
|
|
|
#include <ansidecl.h>
|
|
#include <unistd.h>
|
|
#include <hurd.h>
|
|
|
|
/* Test for access to FILE by our real user and group IDs. */
|
|
int
|
|
DEFUN(__access, (file, type), CONST char *file AND int type)
|
|
{
|
|
error_t err;
|
|
file_t crdir, cwdir, rcrdir, rcwdir, io;
|
|
int dealloc_crdir, dealloc_cwdir;
|
|
int flags;
|
|
|
|
/* Set up _hurd_rid_auth. */
|
|
__mutex_lock (&_hurd_idlock);
|
|
if (!_hurd_id_valid)
|
|
{
|
|
if (_hurd_rid_auth != MACH_PORT_NULL)
|
|
{
|
|
__mach_port_deallocate (__mach_task_self (), _hurd_rid_auth);
|
|
_hurd_rid_auth = MACH_PORT_NULL;
|
|
}
|
|
if (err = __auth_getids (_hurd_auth, &_hurd_id))
|
|
goto lose;
|
|
|
|
}
|
|
if (_hurd_rid_auth == MACH_PORT_NULL)
|
|
{
|
|
idblock_t rid;
|
|
rid = _hurd_id;
|
|
/* XXX Should keep supplementary ids or not? */
|
|
rid.uids[0] = rid.ruid;
|
|
rid.gids[0] = rid.rgid;
|
|
rid.ruid = _hurd_id.uids[0];
|
|
rid.rgid = _hurd_id.gids[0];
|
|
if (err = __auth_makeauth (_hurd_auth, &rid, &_hurd_rid_auth))
|
|
goto lose;
|
|
}
|
|
|
|
crdir = _hurd_port_get (&_hurd_crdir, &dealloc_crdir);
|
|
err = __io_reauthenticate (crdir);
|
|
if (!err)
|
|
{
|
|
err = __auth_user_authenticate (_hurd_rid_auth, crdir, &rcrdir);
|
|
__mach_port_deallocate (__mach_task_self (), crdir);
|
|
}
|
|
_hurd_port_free (crdir, &dealloc_crdir);
|
|
cwdir = _hurd_port_get (&_hurd_cwdir, &dealloc_cwdir);
|
|
err = __io_reauthenticate (cwdir);
|
|
if (!err)
|
|
{
|
|
err = __auth_user_authenticate (_hurd_rid_auth, cwdir, &rcwdir);
|
|
__mach_port_deallocate (__mach_task_self (), cwdir);
|
|
}
|
|
__mutex_unlock (&_hurd_idlock);
|
|
_hurd_port_free (cwdir, &dealloc_cwdir);
|
|
if (err)
|
|
return __hurd_fail (err);
|
|
|
|
flags = 0;
|
|
if (type & R_OK)
|
|
flags |= FS_LOOKUP_READ;
|
|
if (type & W_OK)
|
|
flags |= FS_LOOKUP_WRITE;
|
|
if (type & X_OK)
|
|
flags |= FS_LOOKUP_EXECUTE;
|
|
|
|
err = __hurd_path_lookup (rcrdir, rcwdir, file, flags, 0, &io);
|
|
__mach_port_deallocate (__mach_task_self (), rcrdir);
|
|
__mach_port_deallocate (__mach_task_self (), rcwdir);
|
|
if (err)
|
|
return __hurd_fail (err);
|
|
|
|
__mach_port_deallocate (__mach_task_self (), io);
|
|
return 0;
|
|
|
|
lose:
|
|
__mutex_unlock (&_hurd_idlock);
|
|
return __hurd_fail (err);
|
|
}
|