2010-05-17 22:18:00 +00:00
|
|
|
/*****************************************************************************\
|
|
|
|
* Copyright (C) 2007-2010 Lawrence Livermore National Security, LLC.
|
|
|
|
* Copyright (C) 2007 The Regents of the University of California.
|
|
|
|
* Produced at Lawrence Livermore National Laboratory (cf, DISCLAIMER).
|
|
|
|
* Written by Brian Behlendorf <behlendorf1@llnl.gov>.
|
2009-07-28 00:18:59 +00:00
|
|
|
* UCRL-CODE-235197
|
|
|
|
*
|
2010-05-17 22:18:00 +00:00
|
|
|
* This file is part of the SPL, Solaris Porting Layer.
|
2013-03-05 01:26:55 +00:00
|
|
|
* For details, see <http://zfsonlinux.org/>.
|
2009-07-28 00:18:59 +00:00
|
|
|
*
|
2010-05-17 22:18:00 +00:00
|
|
|
* The SPL is free software; you can redistribute it and/or modify it
|
|
|
|
* under the terms of the GNU General Public License as published by the
|
|
|
|
* Free Software Foundation; either version 2 of the License, or (at your
|
|
|
|
* option) any later version.
|
|
|
|
*
|
|
|
|
* The SPL is distributed in the hope that it will be useful, but WITHOUT
|
2009-07-28 00:18:59 +00:00
|
|
|
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
|
|
|
* for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License along
|
2010-05-17 22:18:00 +00:00
|
|
|
* with the SPL. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*****************************************************************************
|
|
|
|
* Solaris Porting Layer (SPL) Credential Implementation.
|
|
|
|
\*****************************************************************************/
|
2009-07-28 00:18:59 +00:00
|
|
|
|
|
|
|
#include <sys/cred.h>
|
|
|
|
|
|
|
|
#ifdef DEBUG_SUBSYSTEM
|
|
|
|
#undef DEBUG_SUBSYSTEM
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#define DEBUG_SUBSYSTEM S_CRED
|
|
|
|
|
|
|
|
static int
|
2013-07-13 20:34:56 +00:00
|
|
|
#ifdef HAVE_KUIDGID_T
|
|
|
|
cr_groups_search(const struct group_info *group_info, kgid_t grp)
|
|
|
|
#else
|
2009-07-28 00:18:59 +00:00
|
|
|
cr_groups_search(const struct group_info *group_info, gid_t grp)
|
2013-07-13 20:34:56 +00:00
|
|
|
#endif
|
2009-07-28 00:18:59 +00:00
|
|
|
{
|
2014-04-07 21:31:21 +00:00
|
|
|
unsigned int left, right, mid;
|
|
|
|
int cmp;
|
2009-07-28 00:18:59 +00:00
|
|
|
|
|
|
|
if (!group_info)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
left = 0;
|
|
|
|
right = group_info->ngroups;
|
|
|
|
while (left < right) {
|
2014-04-07 21:31:21 +00:00
|
|
|
mid = (left + right) / 2;
|
|
|
|
cmp = KGID_TO_SGID(grp) -
|
|
|
|
KGID_TO_SGID(GROUP_AT(group_info, mid));
|
|
|
|
|
2009-07-28 00:18:59 +00:00
|
|
|
if (cmp > 0)
|
|
|
|
left = mid + 1;
|
|
|
|
else if (cmp < 0)
|
|
|
|
right = mid;
|
|
|
|
else
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Hold a reference on the credential and group info */
|
|
|
|
void
|
|
|
|
crhold(cred_t *cr)
|
|
|
|
{
|
|
|
|
(void)get_cred((const cred_t *)cr);
|
|
|
|
(void)get_group_info(cr->group_info);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Free a reference on the credential and group info */
|
|
|
|
void
|
|
|
|
crfree(cred_t *cr)
|
|
|
|
{
|
|
|
|
put_group_info(cr->group_info);
|
|
|
|
put_cred((const cred_t *)cr);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Return the number of supplemental groups */
|
|
|
|
int
|
|
|
|
crgetngroups(const cred_t *cr)
|
|
|
|
{
|
|
|
|
struct group_info *gi;
|
|
|
|
int rc;
|
|
|
|
|
|
|
|
gi = get_group_info(cr->group_info);
|
|
|
|
rc = gi->ngroups;
|
|
|
|
put_group_info(gi);
|
|
|
|
|
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Return an array of supplemental gids. The returned address is safe
|
|
|
|
* to use as long as the caller has taken a reference with crhold().
|
|
|
|
* The caller is responsible for releasing the reference with crfree().
|
|
|
|
*/
|
|
|
|
gid_t *
|
|
|
|
crgetgroups(const cred_t *cr)
|
|
|
|
{
|
|
|
|
struct group_info *gi;
|
|
|
|
gid_t *gids;
|
|
|
|
|
|
|
|
gi = get_group_info(cr->group_info);
|
2013-07-13 20:34:56 +00:00
|
|
|
gids = KGIDP_TO_SGIDP(gi->blocks[0]);
|
2009-07-28 00:18:59 +00:00
|
|
|
put_group_info(gi);
|
|
|
|
|
|
|
|
return gids;
|
|
|
|
}
|
|
|
|
|
2014-04-07 21:31:21 +00:00
|
|
|
/* Check if the passed gid is available in supplied credential. */
|
2009-07-28 00:18:59 +00:00
|
|
|
int
|
|
|
|
groupmember(gid_t gid, const cred_t *cr)
|
|
|
|
{
|
|
|
|
struct group_info *gi;
|
|
|
|
int rc;
|
|
|
|
|
|
|
|
gi = get_group_info(cr->group_info);
|
2014-04-07 21:31:21 +00:00
|
|
|
rc = cr_groups_search(gi, SGID_TO_KGID(gid));
|
2009-07-28 00:18:59 +00:00
|
|
|
put_group_info(gi);
|
|
|
|
|
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
|
2011-03-22 18:18:15 +00:00
|
|
|
/* Return the effective user id */
|
|
|
|
uid_t
|
|
|
|
crgetuid(const cred_t *cr)
|
|
|
|
{
|
2013-07-13 20:34:56 +00:00
|
|
|
return KUID_TO_SUID(cr->euid);
|
2011-03-22 18:18:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Return the real user id */
|
|
|
|
uid_t
|
|
|
|
crgetruid(const cred_t *cr)
|
|
|
|
{
|
2013-07-13 20:34:56 +00:00
|
|
|
return KUID_TO_SUID(cr->uid);
|
2011-03-22 18:18:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Return the saved user id */
|
|
|
|
uid_t
|
|
|
|
crgetsuid(const cred_t *cr)
|
|
|
|
{
|
2013-07-13 20:34:56 +00:00
|
|
|
return KUID_TO_SUID(cr->suid);
|
2011-03-22 18:18:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Return the filesystem user id */
|
|
|
|
uid_t
|
|
|
|
crgetfsuid(const cred_t *cr)
|
|
|
|
{
|
2013-07-13 20:34:56 +00:00
|
|
|
return KUID_TO_SUID(cr->fsuid);
|
2011-03-22 18:18:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Return the effective group id */
|
|
|
|
gid_t
|
|
|
|
crgetgid(const cred_t *cr)
|
|
|
|
{
|
2013-07-13 20:34:56 +00:00
|
|
|
return KGID_TO_SGID(cr->egid);
|
2011-03-22 18:18:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Return the real group id */
|
|
|
|
gid_t
|
|
|
|
crgetrgid(const cred_t *cr)
|
|
|
|
{
|
2013-07-13 20:34:56 +00:00
|
|
|
return KGID_TO_SGID(cr->gid);
|
2011-03-22 18:18:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Return the saved group id */
|
|
|
|
gid_t
|
|
|
|
crgetsgid(const cred_t *cr)
|
|
|
|
{
|
2013-07-13 20:34:56 +00:00
|
|
|
return KGID_TO_SGID(cr->sgid);
|
2011-03-22 18:18:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Return the filesystem group id */
|
|
|
|
gid_t
|
|
|
|
crgetfsgid(const cred_t *cr)
|
|
|
|
{
|
2013-07-13 20:34:56 +00:00
|
|
|
return KGID_TO_SGID(cr->fsgid);
|
2011-03-22 18:18:15 +00:00
|
|
|
}
|
|
|
|
|
2009-07-28 00:18:59 +00:00
|
|
|
EXPORT_SYMBOL(crhold);
|
|
|
|
EXPORT_SYMBOL(crfree);
|
|
|
|
EXPORT_SYMBOL(crgetuid);
|
|
|
|
EXPORT_SYMBOL(crgetruid);
|
|
|
|
EXPORT_SYMBOL(crgetsuid);
|
2011-03-22 18:18:15 +00:00
|
|
|
EXPORT_SYMBOL(crgetfsuid);
|
2009-07-28 00:18:59 +00:00
|
|
|
EXPORT_SYMBOL(crgetgid);
|
|
|
|
EXPORT_SYMBOL(crgetrgid);
|
|
|
|
EXPORT_SYMBOL(crgetsgid);
|
2011-03-22 18:18:15 +00:00
|
|
|
EXPORT_SYMBOL(crgetfsgid);
|
2009-07-28 00:18:59 +00:00
|
|
|
EXPORT_SYMBOL(crgetngroups);
|
|
|
|
EXPORT_SYMBOL(crgetgroups);
|
|
|
|
EXPORT_SYMBOL(groupmember);
|