2012-01-20 17:49:32 +00:00
|
|
|
/*
|
|
|
|
* viridentity.c: helper APIs for managing user identities
|
|
|
|
*
|
|
|
|
* Copyright (C) 2012-2013 Red Hat, Inc.
|
|
|
|
*
|
|
|
|
* This 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.
|
|
|
|
*
|
|
|
|
* This 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
|
|
|
|
* License along with this library; If not, see
|
|
|
|
* <http://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <config.h>
|
|
|
|
|
2013-03-06 11:00:16 +00:00
|
|
|
#include <unistd.h>
|
2013-03-20 13:06:04 +00:00
|
|
|
#if WITH_SELINUX
|
2013-03-06 11:00:16 +00:00
|
|
|
# include <selinux/selinux.h>
|
|
|
|
#endif
|
|
|
|
|
2012-01-20 17:49:32 +00:00
|
|
|
#include "internal.h"
|
|
|
|
#include "viralloc.h"
|
|
|
|
#include "virerror.h"
|
|
|
|
#include "viridentity.h"
|
|
|
|
#include "virlog.h"
|
|
|
|
#include "virobject.h"
|
|
|
|
#include "virthread.h"
|
2013-03-06 11:00:16 +00:00
|
|
|
#include "virutil.h"
|
2013-05-24 07:19:51 +00:00
|
|
|
#include "virstring.h"
|
2012-01-20 17:49:32 +00:00
|
|
|
|
|
|
|
#define VIR_FROM_THIS VIR_FROM_IDENTITY
|
|
|
|
|
|
|
|
|
|
|
|
struct _virIdentity {
|
|
|
|
virObject parent;
|
|
|
|
|
|
|
|
char *attrs[VIR_IDENTITY_ATTR_LAST];
|
|
|
|
};
|
|
|
|
|
|
|
|
static virClassPtr virIdentityClass;
|
2013-03-06 10:53:47 +00:00
|
|
|
static virThreadLocal virIdentityCurrent;
|
2012-01-20 17:49:32 +00:00
|
|
|
|
|
|
|
static void virIdentityDispose(void *obj);
|
|
|
|
|
|
|
|
static int virIdentityOnceInit(void)
|
|
|
|
{
|
|
|
|
if (!(virIdentityClass = virClassNew(virClassForObject(),
|
|
|
|
"virIdentity",
|
|
|
|
sizeof(virIdentity),
|
|
|
|
virIdentityDispose)))
|
|
|
|
return -1;
|
|
|
|
|
2013-03-06 10:53:47 +00:00
|
|
|
if (virThreadLocalInit(&virIdentityCurrent,
|
|
|
|
(virThreadLocalCleanup)virObjectUnref) < 0) {
|
|
|
|
virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
|
|
|
|
_("Cannot initialize thread local for current identity"));
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2012-01-20 17:49:32 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
VIR_ONCE_GLOBAL_INIT(virIdentity)
|
|
|
|
|
2013-03-06 10:53:47 +00:00
|
|
|
/**
|
|
|
|
* virIdentityGetCurrent:
|
|
|
|
*
|
|
|
|
* Get the current identity associated with this thread. The
|
|
|
|
* caller will own a reference to the returned identity, but
|
|
|
|
* must not modify the object in any way, other than to
|
|
|
|
* release the reference when done with virObjectUnref
|
|
|
|
*
|
|
|
|
* Returns: a reference to the current identity, or NULL
|
|
|
|
*/
|
|
|
|
virIdentityPtr virIdentityGetCurrent(void)
|
|
|
|
{
|
|
|
|
virIdentityPtr ident;
|
|
|
|
|
2013-03-21 10:58:15 +00:00
|
|
|
if (virIdentityInitialize() < 0)
|
2013-03-06 10:53:47 +00:00
|
|
|
return NULL;
|
|
|
|
|
|
|
|
ident = virThreadLocalGet(&virIdentityCurrent);
|
|
|
|
return virObjectRef(ident);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* virIdentitySetCurrent:
|
|
|
|
*
|
|
|
|
* Set the new identity to be associated with this thread.
|
|
|
|
* The caller should not modify the passed identity after
|
|
|
|
* it has been set, other than to release its own reference.
|
|
|
|
*
|
|
|
|
* Returns 0 on success, or -1 on error
|
|
|
|
*/
|
|
|
|
int virIdentitySetCurrent(virIdentityPtr ident)
|
|
|
|
{
|
|
|
|
virIdentityPtr old;
|
|
|
|
|
2013-03-21 10:58:15 +00:00
|
|
|
if (virIdentityInitialize() < 0)
|
2013-03-06 10:53:47 +00:00
|
|
|
return -1;
|
|
|
|
|
|
|
|
old = virThreadLocalGet(&virIdentityCurrent);
|
|
|
|
virObjectUnref(old);
|
|
|
|
|
|
|
|
if (virThreadLocalSet(&virIdentityCurrent,
|
|
|
|
virObjectRef(ident)) < 0) {
|
|
|
|
virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
|
|
|
|
_("Unable to set thread local identity"));
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2012-01-20 17:49:32 +00:00
|
|
|
|
2013-03-06 11:00:16 +00:00
|
|
|
/**
|
|
|
|
* virIdentityGetSystem:
|
|
|
|
*
|
|
|
|
* Returns an identity that represents the system itself.
|
|
|
|
* This is the identity that the process is running as
|
|
|
|
*
|
|
|
|
* Returns a reference to the system identity, or NULL
|
|
|
|
*/
|
|
|
|
virIdentityPtr virIdentityGetSystem(void)
|
|
|
|
{
|
|
|
|
char *username = NULL;
|
|
|
|
char *groupname = NULL;
|
|
|
|
char *seccontext = NULL;
|
|
|
|
virIdentityPtr ret = NULL;
|
2013-03-20 13:06:04 +00:00
|
|
|
#if WITH_SELINUX
|
2013-03-06 11:00:16 +00:00
|
|
|
security_context_t con;
|
|
|
|
#endif
|
2013-06-24 13:47:31 +00:00
|
|
|
char *processid = NULL;
|
|
|
|
|
|
|
|
if (virAsprintf(&processid, "%llu",
|
2013-07-04 10:17:18 +00:00
|
|
|
(unsigned long long)getpid()) < 0)
|
2013-06-24 13:47:31 +00:00
|
|
|
goto cleanup;
|
2013-03-06 11:00:16 +00:00
|
|
|
|
|
|
|
if (!(username = virGetUserName(getuid())))
|
|
|
|
goto cleanup;
|
|
|
|
if (!(groupname = virGetGroupName(getgid())))
|
|
|
|
goto cleanup;
|
|
|
|
|
2013-03-20 13:06:04 +00:00
|
|
|
#if WITH_SELINUX
|
2013-03-06 11:00:16 +00:00
|
|
|
if (getcon(&con) < 0) {
|
|
|
|
virReportSystemError(errno, "%s",
|
|
|
|
_("Unable to lookup SELinux process context"));
|
|
|
|
goto cleanup;
|
|
|
|
}
|
2013-05-24 07:19:51 +00:00
|
|
|
if (VIR_STRDUP(seccontext, con) < 0) {
|
|
|
|
freecon(con);
|
2013-03-06 11:00:16 +00:00
|
|
|
goto cleanup;
|
|
|
|
}
|
2013-05-24 07:19:51 +00:00
|
|
|
freecon(con);
|
2013-03-06 11:00:16 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
if (!(ret = virIdentityNew()))
|
|
|
|
goto cleanup;
|
|
|
|
|
|
|
|
if (username &&
|
|
|
|
virIdentitySetAttr(ret,
|
|
|
|
VIR_IDENTITY_ATTR_UNIX_USER_NAME,
|
|
|
|
username) < 0)
|
|
|
|
goto error;
|
|
|
|
if (groupname &&
|
|
|
|
virIdentitySetAttr(ret,
|
|
|
|
VIR_IDENTITY_ATTR_UNIX_GROUP_NAME,
|
|
|
|
groupname) < 0)
|
|
|
|
goto error;
|
|
|
|
if (seccontext &&
|
|
|
|
virIdentitySetAttr(ret,
|
2013-04-25 10:33:43 +00:00
|
|
|
VIR_IDENTITY_ATTR_SELINUX_CONTEXT,
|
2013-03-06 11:00:16 +00:00
|
|
|
seccontext) < 0)
|
|
|
|
goto error;
|
2013-06-24 13:47:31 +00:00
|
|
|
if (virIdentitySetAttr(ret,
|
|
|
|
VIR_IDENTITY_ATTR_UNIX_PROCESS_ID,
|
|
|
|
processid) < 0)
|
|
|
|
goto error;
|
2013-03-06 11:00:16 +00:00
|
|
|
|
|
|
|
cleanup:
|
|
|
|
VIR_FREE(username);
|
|
|
|
VIR_FREE(groupname);
|
|
|
|
VIR_FREE(seccontext);
|
2013-06-24 13:47:31 +00:00
|
|
|
VIR_FREE(processid);
|
2013-03-06 11:00:16 +00:00
|
|
|
return ret;
|
|
|
|
|
|
|
|
error:
|
|
|
|
virObjectUnref(ret);
|
|
|
|
ret = NULL;
|
|
|
|
goto cleanup;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-01-20 17:49:32 +00:00
|
|
|
/**
|
|
|
|
* virIdentityNew:
|
|
|
|
*
|
|
|
|
* Creates a new empty identity object. After creating, one or
|
|
|
|
* more identifying attributes should be set on the identity.
|
|
|
|
*
|
|
|
|
* Returns: a new empty identity
|
|
|
|
*/
|
|
|
|
virIdentityPtr virIdentityNew(void)
|
|
|
|
{
|
|
|
|
virIdentityPtr ident;
|
|
|
|
|
|
|
|
if (virIdentityInitialize() < 0)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
if (!(ident = virObjectNew(virIdentityClass)))
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
return ident;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void virIdentityDispose(void *object)
|
|
|
|
{
|
|
|
|
virIdentityPtr ident = object;
|
|
|
|
size_t i;
|
|
|
|
|
2013-05-21 07:58:16 +00:00
|
|
|
for (i = 0; i < VIR_IDENTITY_ATTR_LAST; i++)
|
2012-01-20 17:49:32 +00:00
|
|
|
VIR_FREE(ident->attrs[i]);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* virIdentitySetAttr:
|
|
|
|
* @ident: the identity to modify
|
|
|
|
* @attr: the attribute type to set
|
|
|
|
* @value: the identifying value to associate with @attr
|
|
|
|
*
|
|
|
|
* Sets an identifying attribute @attr on @ident. Each
|
|
|
|
* @attr type can only be set once.
|
|
|
|
*
|
|
|
|
* Returns: 0 on success, or -1 on error
|
|
|
|
*/
|
|
|
|
int virIdentitySetAttr(virIdentityPtr ident,
|
|
|
|
unsigned int attr,
|
|
|
|
const char *value)
|
|
|
|
{
|
|
|
|
int ret = -1;
|
|
|
|
VIR_DEBUG("ident=%p attribute=%u value=%s", ident, attr, value);
|
|
|
|
|
|
|
|
if (ident->attrs[attr]) {
|
|
|
|
virReportError(VIR_ERR_OPERATION_DENIED, "%s",
|
|
|
|
_("Identity attribute is already set"));
|
|
|
|
goto cleanup;
|
|
|
|
}
|
|
|
|
|
2013-05-24 07:19:51 +00:00
|
|
|
if (VIR_STRDUP(ident->attrs[attr], value) < 0)
|
2012-01-20 17:49:32 +00:00
|
|
|
goto cleanup;
|
|
|
|
|
|
|
|
ret = 0;
|
|
|
|
|
|
|
|
cleanup:
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* virIdentityGetAttr:
|
|
|
|
* @ident: the identity to query
|
|
|
|
* @attr: the attribute to read
|
|
|
|
* @value: filled with the attribute value
|
|
|
|
*
|
|
|
|
* Fills @value with a pointer to the value associated
|
|
|
|
* with the identifying attribute @attr in @ident. If
|
|
|
|
* @attr is not set, then it will simply be initialized
|
|
|
|
* to NULL and considered as a successful read
|
|
|
|
*
|
|
|
|
* Returns 0 on success, -1 on error
|
|
|
|
*/
|
|
|
|
int virIdentityGetAttr(virIdentityPtr ident,
|
|
|
|
unsigned int attr,
|
|
|
|
const char **value)
|
|
|
|
{
|
|
|
|
VIR_DEBUG("ident=%p attribute=%d value=%p", ident, attr, value);
|
|
|
|
|
|
|
|
*value = ident->attrs[attr];
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* virIdentityIsEqual:
|
|
|
|
* @identA: the first identity
|
|
|
|
* @identB: the second identity
|
|
|
|
*
|
|
|
|
* Compares every attribute in @identA and @identB
|
|
|
|
* to determine if they refer to the same identity
|
|
|
|
*
|
|
|
|
* Returns true if they are equal, false if not equal
|
|
|
|
*/
|
|
|
|
bool virIdentityIsEqual(virIdentityPtr identA,
|
|
|
|
virIdentityPtr identB)
|
|
|
|
{
|
|
|
|
bool ret = false;
|
|
|
|
size_t i;
|
|
|
|
VIR_DEBUG("identA=%p identB=%p", identA, identB);
|
|
|
|
|
2013-05-21 07:58:16 +00:00
|
|
|
for (i = 0; i < VIR_IDENTITY_ATTR_LAST; i++) {
|
2012-01-20 17:49:32 +00:00
|
|
|
if (STRNEQ_NULLABLE(identA->attrs[i],
|
|
|
|
identB->attrs[i]))
|
|
|
|
goto cleanup;
|
|
|
|
}
|
|
|
|
|
|
|
|
ret = true;
|
|
|
|
cleanup:
|
|
|
|
return ret;
|
|
|
|
}
|