2014-11-04 19:01:58 +03:00
|
|
|
/* $NetBSD: secmodel.c,v 1.2 2014/11/04 16:01:58 maxv Exp $ */
|
Implement the register/deregister/evaluation API for secmodel(9). It
allows registration of callbacks that can be used later for
cross-secmodel "safe" communication.
When a secmodel wishes to know a property maintained by another
secmodel, it has to submit a request to it so the other secmodel can
proceed to evaluating the request. This is done through the
secmodel_eval(9) call; example:
bool isroot;
error = secmodel_eval("org.netbsd.secmodel.suser", "is-root",
cred, &isroot);
if (error == 0 && !isroot)
result = KAUTH_RESULT_DENY;
This one asks the suser module if the credentials are assumed to be root
when evaluated by suser module. If the module is present, it will
respond. If absent, the call will return an error.
Args and command are arbitrarily defined; it's up to the secmodel(9) to
document what it expects.
Typical example is securelevel testing: when someone wants to know
whether securelevel is raised above a certain level or not, the caller
has to request this property to the secmodel_securelevel(9) module.
Given that securelevel module may be absent from system's context (thus
making access to the global "securelevel" variable impossible or
unsafe), this API can cope with this absence and return an error.
We are using secmodel_eval(9) to implement a secmodel_extensions(9)
module, which plugs with the bsd44, suser and securelevel secmodels
to provide the logic behind curtain, usermount and user_set_cpu_affinity
modes, without adding hooks to traditional secmodels. This solves a
real issue with the current secmodel(9) code, as usermount or
user_set_cpu_affinity are not really tied to secmodel_suser(9).
The secmodel_eval(9) is also used to restrict security.models settings
when securelevel is above 0, through the "is-securelevel-above"
evaluation:
- curtain can be enabled any time, but cannot be disabled if
securelevel is above 0.
- usermount/user_set_cpu_affinity can be disabled any time, but cannot
be enabled if securelevel is above 0.
Regarding sysctl(7) entries:
curtain and usermount are now found under security.models.extensions
tree. The security.curtain and vfs.generic.usermount are still
accessible for backwards compat.
Documentation is incoming, I am proof-reading my writings.
Written by elad@, reviewed and tested (anita test + interact for rights
tests) by me. ok elad@.
See also
http://mail-index.netbsd.org/tech-security/2011/11/29/msg000422.html
XXX might consider va0 mapping too.
XXX Having a secmodel(9) specific printf (like aprint_*) for reporting
secmodel(9) errors might be a good idea, but I am not sure on how
to design such a function right now.
2011-12-04 23:24:58 +04:00
|
|
|
/*-
|
|
|
|
* Copyright (c) 2011 Elad Efrat <elad@NetBSD.org>
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
|
|
|
* 3. The name of the author may not be used to endorse or promote products
|
|
|
|
* derived from this software without specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
|
|
|
|
* IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
|
|
|
|
* OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
|
|
|
* IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
|
|
|
|
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
|
|
|
* NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
|
|
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
|
|
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
|
|
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
|
|
|
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/param.h>
|
|
|
|
#include <sys/errno.h>
|
|
|
|
|
|
|
|
#include <sys/atomic.h>
|
|
|
|
#include <sys/kauth.h>
|
|
|
|
#include <sys/kmem.h>
|
|
|
|
#include <sys/queue.h>
|
|
|
|
#include <sys/rwlock.h>
|
|
|
|
#include <secmodel/secmodel.h>
|
|
|
|
#include <prop/proplib.h>
|
|
|
|
|
|
|
|
/* List of secmodels, parameters, and lock. */
|
|
|
|
static LIST_HEAD(, secmodel_descr) secmodels =
|
|
|
|
LIST_HEAD_INITIALIZER(secmodels);
|
|
|
|
static unsigned int secmodel_copy_cred_on_fork = false;
|
|
|
|
static krwlock_t secmodels_lock;
|
|
|
|
static int nsecmodels = 0; /* number of registered secmodels */
|
|
|
|
|
|
|
|
static int secmodel_plug(secmodel_t);
|
|
|
|
static int secmodel_unplug(secmodel_t);
|
|
|
|
|
|
|
|
int
|
|
|
|
secmodel_nsecmodels(void)
|
|
|
|
{
|
|
|
|
|
|
|
|
return nsecmodels;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
secmodel_init(void)
|
|
|
|
{
|
|
|
|
|
|
|
|
rw_init(&secmodels_lock);
|
|
|
|
|
|
|
|
secmodel_copy_cred_on_fork = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Register a new secmodel.
|
|
|
|
*/
|
|
|
|
int
|
|
|
|
secmodel_register(secmodel_t *secmodel, const char *id, const char *name,
|
|
|
|
prop_dictionary_t behavior,
|
|
|
|
secmodel_eval_t eval, secmodel_setinfo_t setinfo)
|
|
|
|
{
|
|
|
|
int err;
|
|
|
|
secmodel_t sm;
|
|
|
|
|
|
|
|
sm = kmem_alloc(sizeof(*sm), KM_SLEEP);
|
|
|
|
|
|
|
|
sm->sm_id = id;
|
|
|
|
sm->sm_name = name;
|
|
|
|
sm->sm_behavior = behavior;
|
|
|
|
sm->sm_eval = eval;
|
|
|
|
sm->sm_setinfo = setinfo;
|
|
|
|
|
|
|
|
err = secmodel_plug(sm);
|
|
|
|
if (err == 0) {
|
|
|
|
atomic_inc_uint(&nsecmodels);
|
|
|
|
} else {
|
|
|
|
kmem_free(sm, sizeof(*sm));
|
|
|
|
sm = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
*secmodel = sm;
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Deregister a secmodel.
|
|
|
|
*/
|
|
|
|
int
|
|
|
|
secmodel_deregister(secmodel_t sm)
|
|
|
|
{
|
|
|
|
int error;
|
|
|
|
|
|
|
|
error = secmodel_unplug(sm);
|
|
|
|
if (error == 0) {
|
|
|
|
atomic_dec_uint(&nsecmodels);
|
|
|
|
kmem_free(sm, sizeof(*sm));
|
|
|
|
}
|
|
|
|
|
|
|
|
return error;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Lookup a secmodel by its id.
|
|
|
|
*
|
|
|
|
* Requires "secmodels_lock" handling by the caller.
|
|
|
|
*/
|
|
|
|
static secmodel_t
|
|
|
|
secmodel_lookup(const char *id)
|
|
|
|
{
|
|
|
|
secmodel_t tsm;
|
|
|
|
|
|
|
|
KASSERT(rw_lock_held(&secmodels_lock));
|
|
|
|
|
|
|
|
LIST_FOREACH(tsm, &secmodels, sm_list) {
|
|
|
|
if (strcasecmp(tsm->sm_id, id) == 0) {
|
|
|
|
return tsm;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Adjust system-global secmodel behavior following the addition
|
|
|
|
* or removal of a secmodel.
|
|
|
|
*
|
|
|
|
* Requires "secmodels_lock" to be held by the caller.
|
|
|
|
*/
|
|
|
|
static void
|
|
|
|
secmodel_adjust_behavior(secmodel_t sm, bool added)
|
|
|
|
{
|
|
|
|
bool r, b;
|
|
|
|
|
|
|
|
KASSERT(rw_write_held(&secmodels_lock));
|
|
|
|
|
|
|
|
#define ADJUST_COUNTER(which, added) \
|
|
|
|
do { \
|
|
|
|
if (added) { \
|
|
|
|
(which)++; \
|
|
|
|
} else { \
|
|
|
|
if ((which) > 0) \
|
|
|
|
(which)--; \
|
|
|
|
} \
|
|
|
|
} while (/*CONSTCOND*/0)
|
|
|
|
|
|
|
|
/* Copy credentials on fork? */
|
|
|
|
r = prop_dictionary_get_bool(sm->sm_behavior, "copy-cred-on-fork", &b);
|
|
|
|
if (r) {
|
|
|
|
ADJUST_COUNTER(secmodel_copy_cred_on_fork, added);
|
|
|
|
}
|
|
|
|
|
|
|
|
#undef ADJUST_COUNTER
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
secmodel_plug(secmodel_t sm)
|
|
|
|
{
|
|
|
|
secmodel_t tsm;
|
|
|
|
int error = 0;
|
|
|
|
|
2014-11-04 19:01:58 +03:00
|
|
|
if (sm == NULL)
|
|
|
|
return EFAULT;
|
Implement the register/deregister/evaluation API for secmodel(9). It
allows registration of callbacks that can be used later for
cross-secmodel "safe" communication.
When a secmodel wishes to know a property maintained by another
secmodel, it has to submit a request to it so the other secmodel can
proceed to evaluating the request. This is done through the
secmodel_eval(9) call; example:
bool isroot;
error = secmodel_eval("org.netbsd.secmodel.suser", "is-root",
cred, &isroot);
if (error == 0 && !isroot)
result = KAUTH_RESULT_DENY;
This one asks the suser module if the credentials are assumed to be root
when evaluated by suser module. If the module is present, it will
respond. If absent, the call will return an error.
Args and command are arbitrarily defined; it's up to the secmodel(9) to
document what it expects.
Typical example is securelevel testing: when someone wants to know
whether securelevel is raised above a certain level or not, the caller
has to request this property to the secmodel_securelevel(9) module.
Given that securelevel module may be absent from system's context (thus
making access to the global "securelevel" variable impossible or
unsafe), this API can cope with this absence and return an error.
We are using secmodel_eval(9) to implement a secmodel_extensions(9)
module, which plugs with the bsd44, suser and securelevel secmodels
to provide the logic behind curtain, usermount and user_set_cpu_affinity
modes, without adding hooks to traditional secmodels. This solves a
real issue with the current secmodel(9) code, as usermount or
user_set_cpu_affinity are not really tied to secmodel_suser(9).
The secmodel_eval(9) is also used to restrict security.models settings
when securelevel is above 0, through the "is-securelevel-above"
evaluation:
- curtain can be enabled any time, but cannot be disabled if
securelevel is above 0.
- usermount/user_set_cpu_affinity can be disabled any time, but cannot
be enabled if securelevel is above 0.
Regarding sysctl(7) entries:
curtain and usermount are now found under security.models.extensions
tree. The security.curtain and vfs.generic.usermount are still
accessible for backwards compat.
Documentation is incoming, I am proof-reading my writings.
Written by elad@, reviewed and tested (anita test + interact for rights
tests) by me. ok elad@.
See also
http://mail-index.netbsd.org/tech-security/2011/11/29/msg000422.html
XXX might consider va0 mapping too.
XXX Having a secmodel(9) specific printf (like aprint_*) for reporting
secmodel(9) errors might be a good idea, but I am not sure on how
to design such a function right now.
2011-12-04 23:24:58 +04:00
|
|
|
|
|
|
|
/* Check if the secmodel is already present. */
|
|
|
|
rw_enter(&secmodels_lock, RW_WRITER);
|
|
|
|
tsm = secmodel_lookup(sm->sm_id);
|
|
|
|
if (tsm != NULL) {
|
|
|
|
error = EEXIST;
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Add the secmodel. */
|
|
|
|
LIST_INSERT_HEAD(&secmodels, sm, sm_list);
|
|
|
|
|
|
|
|
/* Adjust behavior. */
|
|
|
|
secmodel_adjust_behavior(sm, true);
|
|
|
|
|
|
|
|
out:
|
|
|
|
/* Unlock the secmodels list. */
|
|
|
|
rw_exit(&secmodels_lock);
|
|
|
|
|
|
|
|
return error;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
secmodel_unplug(secmodel_t sm)
|
|
|
|
{
|
|
|
|
secmodel_t tsm;
|
|
|
|
int error = 0;
|
|
|
|
|
2014-11-04 19:01:58 +03:00
|
|
|
if (sm == NULL)
|
|
|
|
return EFAULT;
|
Implement the register/deregister/evaluation API for secmodel(9). It
allows registration of callbacks that can be used later for
cross-secmodel "safe" communication.
When a secmodel wishes to know a property maintained by another
secmodel, it has to submit a request to it so the other secmodel can
proceed to evaluating the request. This is done through the
secmodel_eval(9) call; example:
bool isroot;
error = secmodel_eval("org.netbsd.secmodel.suser", "is-root",
cred, &isroot);
if (error == 0 && !isroot)
result = KAUTH_RESULT_DENY;
This one asks the suser module if the credentials are assumed to be root
when evaluated by suser module. If the module is present, it will
respond. If absent, the call will return an error.
Args and command are arbitrarily defined; it's up to the secmodel(9) to
document what it expects.
Typical example is securelevel testing: when someone wants to know
whether securelevel is raised above a certain level or not, the caller
has to request this property to the secmodel_securelevel(9) module.
Given that securelevel module may be absent from system's context (thus
making access to the global "securelevel" variable impossible or
unsafe), this API can cope with this absence and return an error.
We are using secmodel_eval(9) to implement a secmodel_extensions(9)
module, which plugs with the bsd44, suser and securelevel secmodels
to provide the logic behind curtain, usermount and user_set_cpu_affinity
modes, without adding hooks to traditional secmodels. This solves a
real issue with the current secmodel(9) code, as usermount or
user_set_cpu_affinity are not really tied to secmodel_suser(9).
The secmodel_eval(9) is also used to restrict security.models settings
when securelevel is above 0, through the "is-securelevel-above"
evaluation:
- curtain can be enabled any time, but cannot be disabled if
securelevel is above 0.
- usermount/user_set_cpu_affinity can be disabled any time, but cannot
be enabled if securelevel is above 0.
Regarding sysctl(7) entries:
curtain and usermount are now found under security.models.extensions
tree. The security.curtain and vfs.generic.usermount are still
accessible for backwards compat.
Documentation is incoming, I am proof-reading my writings.
Written by elad@, reviewed and tested (anita test + interact for rights
tests) by me. ok elad@.
See also
http://mail-index.netbsd.org/tech-security/2011/11/29/msg000422.html
XXX might consider va0 mapping too.
XXX Having a secmodel(9) specific printf (like aprint_*) for reporting
secmodel(9) errors might be a good idea, but I am not sure on how
to design such a function right now.
2011-12-04 23:24:58 +04:00
|
|
|
|
|
|
|
/* Make sure the secmodel is present. */
|
|
|
|
rw_enter(&secmodels_lock, RW_WRITER);
|
|
|
|
tsm = secmodel_lookup(sm->sm_id);
|
|
|
|
if (tsm == NULL) {
|
|
|
|
error = ENOENT;
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Remove the secmodel. */
|
|
|
|
LIST_REMOVE(tsm, sm_list);
|
|
|
|
|
|
|
|
/* Adjust behavior. */
|
|
|
|
secmodel_adjust_behavior(tsm, false);
|
|
|
|
|
|
|
|
out:
|
|
|
|
/* Unlock the secmodels list. */
|
|
|
|
rw_exit(&secmodels_lock);
|
|
|
|
|
|
|
|
return error;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* XXX TODO */
|
|
|
|
int
|
|
|
|
secmodel_setinfo(const char *id, void *v, int *err)
|
|
|
|
{
|
|
|
|
|
|
|
|
return EOPNOTSUPP;
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
secmodel_eval(const char *id, const char *what, void *arg, void *ret)
|
|
|
|
{
|
|
|
|
secmodel_t sm;
|
|
|
|
int error = 0;
|
|
|
|
|
|
|
|
rw_enter(&secmodels_lock, RW_READER);
|
|
|
|
sm = secmodel_lookup(id);
|
|
|
|
if (sm == NULL) {
|
|
|
|
error = EINVAL;
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (sm->sm_eval == NULL) {
|
|
|
|
error = ENOENT;
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ret == NULL) {
|
|
|
|
error = EFAULT;
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
|
|
|
|
error = sm->sm_eval(what, arg, ret);
|
|
|
|
/* pass error from a secmodel(9) callback as a negative value */
|
|
|
|
error = -error;
|
|
|
|
|
|
|
|
out:
|
|
|
|
rw_exit(&secmodels_lock);
|
|
|
|
|
|
|
|
return error;
|
|
|
|
}
|