2008-04-29 12:01:31 +04:00
|
|
|
/* Keyring handling
|
2005-04-17 02:20:36 +04:00
|
|
|
*
|
2008-04-29 12:01:31 +04:00
|
|
|
* Copyright (C) 2004-2005, 2008 Red Hat, Inc. All Rights Reserved.
|
2005-04-17 02:20:36 +04:00
|
|
|
* Written by David Howells (dhowells@redhat.com)
|
|
|
|
*
|
|
|
|
* This program 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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <linux/module.h>
|
|
|
|
#include <linux/init.h>
|
|
|
|
#include <linux/sched.h>
|
|
|
|
#include <linux/slab.h>
|
2005-10-31 02:02:44 +03:00
|
|
|
#include <linux/security.h>
|
2005-04-17 02:20:36 +04:00
|
|
|
#include <linux/seq_file.h>
|
|
|
|
#include <linux/err.h>
|
2008-11-14 02:39:13 +03:00
|
|
|
#include <keys/keyring-type.h>
|
2010-03-09 02:11:34 +03:00
|
|
|
#include <linux/uaccess.h>
|
2005-04-17 02:20:36 +04:00
|
|
|
#include "internal.h"
|
|
|
|
|
2010-04-30 17:32:18 +04:00
|
|
|
#define rcu_dereference_locked_keyring(keyring) \
|
|
|
|
(rcu_dereference_protected( \
|
|
|
|
(keyring)->payload.subscriptions, \
|
|
|
|
rwsem_is_locked((struct rw_semaphore *)&(keyring)->sem)))
|
|
|
|
|
2012-05-11 13:56:56 +04:00
|
|
|
#define rcu_deref_link_locked(klist, index, keyring) \
|
|
|
|
(rcu_dereference_protected( \
|
|
|
|
(klist)->keys[index], \
|
|
|
|
rwsem_is_locked((struct rw_semaphore *)&(keyring)->sem)))
|
|
|
|
|
2012-05-11 13:56:56 +04:00
|
|
|
#define MAX_KEYRING_LINKS \
|
|
|
|
min_t(size_t, USHRT_MAX - 1, \
|
|
|
|
((PAGE_SIZE - sizeof(struct keyring_list)) / sizeof(struct key *)))
|
|
|
|
|
2011-01-25 19:34:28 +03:00
|
|
|
#define KEY_LINK_FIXQUOTA 1UL
|
|
|
|
|
2005-04-17 02:20:36 +04:00
|
|
|
/*
|
2011-01-20 19:38:33 +03:00
|
|
|
* When plumbing the depths of the key tree, this sets a hard limit
|
|
|
|
* set on how deep we're willing to go.
|
2005-04-17 02:20:36 +04:00
|
|
|
*/
|
|
|
|
#define KEYRING_SEARCH_MAX_DEPTH 6
|
|
|
|
|
|
|
|
/*
|
2011-01-20 19:38:33 +03:00
|
|
|
* We keep all named keyrings in a hash to speed looking them up.
|
2005-04-17 02:20:36 +04:00
|
|
|
*/
|
|
|
|
#define KEYRING_NAME_HASH_SIZE (1 << 5)
|
|
|
|
|
|
|
|
static struct list_head keyring_name_hash[KEYRING_NAME_HASH_SIZE];
|
|
|
|
static DEFINE_RWLOCK(keyring_name_lock);
|
|
|
|
|
|
|
|
static inline unsigned keyring_hash(const char *desc)
|
|
|
|
{
|
|
|
|
unsigned bucket = 0;
|
|
|
|
|
|
|
|
for (; *desc; desc++)
|
2010-04-21 11:02:11 +04:00
|
|
|
bucket += (unsigned char)*desc;
|
2005-04-17 02:20:36 +04:00
|
|
|
|
|
|
|
return bucket & (KEYRING_NAME_HASH_SIZE - 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2011-01-20 19:38:33 +03:00
|
|
|
* The keyring key type definition. Keyrings are simply keys of this type and
|
|
|
|
* can be treated as ordinary keys in addition to having their own special
|
|
|
|
* operations.
|
2005-04-17 02:20:36 +04:00
|
|
|
*/
|
|
|
|
static int keyring_instantiate(struct key *keyring,
|
|
|
|
const void *data, size_t datalen);
|
|
|
|
static int keyring_match(const struct key *keyring, const void *criterion);
|
2006-06-26 11:24:51 +04:00
|
|
|
static void keyring_revoke(struct key *keyring);
|
2005-04-17 02:20:36 +04:00
|
|
|
static void keyring_destroy(struct key *keyring);
|
|
|
|
static void keyring_describe(const struct key *keyring, struct seq_file *m);
|
|
|
|
static long keyring_read(const struct key *keyring,
|
|
|
|
char __user *buffer, size_t buflen);
|
|
|
|
|
|
|
|
struct key_type key_type_keyring = {
|
|
|
|
.name = "keyring",
|
|
|
|
.def_datalen = sizeof(struct keyring_list),
|
|
|
|
.instantiate = keyring_instantiate,
|
|
|
|
.match = keyring_match,
|
2006-06-26 11:24:51 +04:00
|
|
|
.revoke = keyring_revoke,
|
2005-04-17 02:20:36 +04:00
|
|
|
.destroy = keyring_destroy,
|
|
|
|
.describe = keyring_describe,
|
|
|
|
.read = keyring_read,
|
|
|
|
};
|
2007-04-27 02:46:23 +04:00
|
|
|
EXPORT_SYMBOL(key_type_keyring);
|
|
|
|
|
2005-04-17 02:20:36 +04:00
|
|
|
/*
|
2011-01-20 19:38:33 +03:00
|
|
|
* Semaphore to serialise link/link calls to prevent two link calls in parallel
|
|
|
|
* introducing a cycle.
|
2005-04-17 02:20:36 +04:00
|
|
|
*/
|
2006-01-06 11:11:25 +03:00
|
|
|
static DECLARE_RWSEM(keyring_serialise_link_sem);
|
2005-04-17 02:20:36 +04:00
|
|
|
|
|
|
|
/*
|
2011-01-20 19:38:33 +03:00
|
|
|
* Publish the name of a keyring so that it can be found by name (if it has
|
|
|
|
* one).
|
2005-04-17 02:20:36 +04:00
|
|
|
*/
|
2008-04-29 12:01:31 +04:00
|
|
|
static void keyring_publish_name(struct key *keyring)
|
2005-04-17 02:20:36 +04:00
|
|
|
{
|
|
|
|
int bucket;
|
|
|
|
|
|
|
|
if (keyring->description) {
|
|
|
|
bucket = keyring_hash(keyring->description);
|
|
|
|
|
|
|
|
write_lock(&keyring_name_lock);
|
|
|
|
|
|
|
|
if (!keyring_name_hash[bucket].next)
|
|
|
|
INIT_LIST_HEAD(&keyring_name_hash[bucket]);
|
|
|
|
|
|
|
|
list_add_tail(&keyring->type_data.link,
|
|
|
|
&keyring_name_hash[bucket]);
|
|
|
|
|
|
|
|
write_unlock(&keyring_name_lock);
|
|
|
|
}
|
2011-01-20 19:38:27 +03:00
|
|
|
}
|
2005-04-17 02:20:36 +04:00
|
|
|
|
|
|
|
/*
|
2011-01-20 19:38:33 +03:00
|
|
|
* Initialise a keyring.
|
|
|
|
*
|
|
|
|
* Returns 0 on success, -EINVAL if given any data.
|
2005-04-17 02:20:36 +04:00
|
|
|
*/
|
|
|
|
static int keyring_instantiate(struct key *keyring,
|
|
|
|
const void *data, size_t datalen)
|
|
|
|
{
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
ret = -EINVAL;
|
|
|
|
if (datalen == 0) {
|
|
|
|
/* make the keyring available by name if it has one */
|
|
|
|
keyring_publish_name(keyring);
|
|
|
|
ret = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
return ret;
|
2011-01-20 19:38:27 +03:00
|
|
|
}
|
2005-04-17 02:20:36 +04:00
|
|
|
|
|
|
|
/*
|
2011-01-20 19:38:33 +03:00
|
|
|
* Match keyrings on their name
|
2005-04-17 02:20:36 +04:00
|
|
|
*/
|
|
|
|
static int keyring_match(const struct key *keyring, const void *description)
|
|
|
|
{
|
|
|
|
return keyring->description &&
|
|
|
|
strcmp(keyring->description, description) == 0;
|
2011-01-20 19:38:27 +03:00
|
|
|
}
|
2005-04-17 02:20:36 +04:00
|
|
|
|
|
|
|
/*
|
2011-01-20 19:38:33 +03:00
|
|
|
* Clean up a keyring when it is destroyed. Unpublish its name if it had one
|
|
|
|
* and dispose of its data.
|
2012-05-11 13:56:56 +04:00
|
|
|
*
|
|
|
|
* The garbage collector detects the final key_put(), removes the keyring from
|
|
|
|
* the serial number tree and then does RCU synchronisation before coming here,
|
|
|
|
* so we shouldn't need to worry about code poking around here with the RCU
|
|
|
|
* readlock held by this time.
|
2005-04-17 02:20:36 +04:00
|
|
|
*/
|
|
|
|
static void keyring_destroy(struct key *keyring)
|
|
|
|
{
|
|
|
|
struct keyring_list *klist;
|
|
|
|
int loop;
|
|
|
|
|
|
|
|
if (keyring->description) {
|
|
|
|
write_lock(&keyring_name_lock);
|
2005-08-05 00:07:07 +04:00
|
|
|
|
|
|
|
if (keyring->type_data.link.next != NULL &&
|
|
|
|
!list_empty(&keyring->type_data.link))
|
|
|
|
list_del(&keyring->type_data.link);
|
|
|
|
|
2005-04-17 02:20:36 +04:00
|
|
|
write_unlock(&keyring_name_lock);
|
|
|
|
}
|
|
|
|
|
2012-05-11 13:56:56 +04:00
|
|
|
klist = rcu_access_pointer(keyring->payload.subscriptions);
|
2005-04-17 02:20:36 +04:00
|
|
|
if (klist) {
|
|
|
|
for (loop = klist->nkeys - 1; loop >= 0; loop--)
|
2012-05-11 13:56:56 +04:00
|
|
|
key_put(rcu_access_pointer(klist->keys[loop]));
|
2005-04-17 02:20:36 +04:00
|
|
|
kfree(klist);
|
|
|
|
}
|
2011-01-20 19:38:27 +03:00
|
|
|
}
|
2005-04-17 02:20:36 +04:00
|
|
|
|
|
|
|
/*
|
2011-01-20 19:38:33 +03:00
|
|
|
* Describe a keyring for /proc.
|
2005-04-17 02:20:36 +04:00
|
|
|
*/
|
|
|
|
static void keyring_describe(const struct key *keyring, struct seq_file *m)
|
|
|
|
{
|
|
|
|
struct keyring_list *klist;
|
|
|
|
|
2010-03-04 16:26:23 +03:00
|
|
|
if (keyring->description)
|
2005-04-17 02:20:36 +04:00
|
|
|
seq_puts(m, keyring->description);
|
2010-03-04 16:26:23 +03:00
|
|
|
else
|
2005-04-17 02:20:36 +04:00
|
|
|
seq_puts(m, "[anon]");
|
|
|
|
|
2011-03-11 20:57:23 +03:00
|
|
|
if (key_is_instantiated(keyring)) {
|
|
|
|
rcu_read_lock();
|
|
|
|
klist = rcu_dereference(keyring->payload.subscriptions);
|
|
|
|
if (klist)
|
|
|
|
seq_printf(m, ": %u/%u", klist->nkeys, klist->maxkeys);
|
|
|
|
else
|
|
|
|
seq_puts(m, ": empty");
|
|
|
|
rcu_read_unlock();
|
|
|
|
}
|
2011-01-20 19:38:27 +03:00
|
|
|
}
|
2005-04-17 02:20:36 +04:00
|
|
|
|
|
|
|
/*
|
2011-01-20 19:38:33 +03:00
|
|
|
* Read a list of key IDs from the keyring's contents in binary form
|
|
|
|
*
|
|
|
|
* The keyring's semaphore is read-locked by the caller.
|
2005-04-17 02:20:36 +04:00
|
|
|
*/
|
|
|
|
static long keyring_read(const struct key *keyring,
|
|
|
|
char __user *buffer, size_t buflen)
|
|
|
|
{
|
|
|
|
struct keyring_list *klist;
|
|
|
|
struct key *key;
|
|
|
|
size_t qty, tmp;
|
|
|
|
int loop, ret;
|
|
|
|
|
|
|
|
ret = 0;
|
2010-04-30 17:32:18 +04:00
|
|
|
klist = rcu_dereference_locked_keyring(keyring);
|
2005-04-17 02:20:36 +04:00
|
|
|
if (klist) {
|
|
|
|
/* calculate how much data we could return */
|
|
|
|
qty = klist->nkeys * sizeof(key_serial_t);
|
|
|
|
|
|
|
|
if (buffer && buflen > 0) {
|
|
|
|
if (buflen > qty)
|
|
|
|
buflen = qty;
|
|
|
|
|
|
|
|
/* copy the IDs of the subscribed keys into the
|
|
|
|
* buffer */
|
|
|
|
ret = -EFAULT;
|
|
|
|
|
|
|
|
for (loop = 0; loop < klist->nkeys; loop++) {
|
2012-05-11 13:56:56 +04:00
|
|
|
key = rcu_deref_link_locked(klist, loop,
|
|
|
|
keyring);
|
2005-04-17 02:20:36 +04:00
|
|
|
|
|
|
|
tmp = sizeof(key_serial_t);
|
|
|
|
if (tmp > buflen)
|
|
|
|
tmp = buflen;
|
|
|
|
|
|
|
|
if (copy_to_user(buffer,
|
|
|
|
&key->serial,
|
|
|
|
tmp) != 0)
|
|
|
|
goto error;
|
|
|
|
|
|
|
|
buflen -= tmp;
|
|
|
|
if (buflen == 0)
|
|
|
|
break;
|
|
|
|
buffer += tmp;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
ret = qty;
|
|
|
|
}
|
|
|
|
|
2010-04-21 11:02:11 +04:00
|
|
|
error:
|
2005-04-17 02:20:36 +04:00
|
|
|
return ret;
|
2011-01-20 19:38:27 +03:00
|
|
|
}
|
2005-04-17 02:20:36 +04:00
|
|
|
|
|
|
|
/*
|
2011-01-20 19:38:33 +03:00
|
|
|
* Allocate a keyring and link into the destination keyring.
|
2005-04-17 02:20:36 +04:00
|
|
|
*/
|
|
|
|
struct key *keyring_alloc(const char *description, uid_t uid, gid_t gid,
|
CRED: Inaugurate COW credentials
Inaugurate copy-on-write credentials management. This uses RCU to manage the
credentials pointer in the task_struct with respect to accesses by other tasks.
A process may only modify its own credentials, and so does not need locking to
access or modify its own credentials.
A mutex (cred_replace_mutex) is added to the task_struct to control the effect
of PTRACE_ATTACHED on credential calculations, particularly with respect to
execve().
With this patch, the contents of an active credentials struct may not be
changed directly; rather a new set of credentials must be prepared, modified
and committed using something like the following sequence of events:
struct cred *new = prepare_creds();
int ret = blah(new);
if (ret < 0) {
abort_creds(new);
return ret;
}
return commit_creds(new);
There are some exceptions to this rule: the keyrings pointed to by the active
credentials may be instantiated - keyrings violate the COW rule as managing
COW keyrings is tricky, given that it is possible for a task to directly alter
the keys in a keyring in use by another task.
To help enforce this, various pointers to sets of credentials, such as those in
the task_struct, are declared const. The purpose of this is compile-time
discouragement of altering credentials through those pointers. Once a set of
credentials has been made public through one of these pointers, it may not be
modified, except under special circumstances:
(1) Its reference count may incremented and decremented.
(2) The keyrings to which it points may be modified, but not replaced.
The only safe way to modify anything else is to create a replacement and commit
using the functions described in Documentation/credentials.txt (which will be
added by a later patch).
This patch and the preceding patches have been tested with the LTP SELinux
testsuite.
This patch makes several logical sets of alteration:
(1) execve().
This now prepares and commits credentials in various places in the
security code rather than altering the current creds directly.
(2) Temporary credential overrides.
do_coredump() and sys_faccessat() now prepare their own credentials and
temporarily override the ones currently on the acting thread, whilst
preventing interference from other threads by holding cred_replace_mutex
on the thread being dumped.
This will be replaced in a future patch by something that hands down the
credentials directly to the functions being called, rather than altering
the task's objective credentials.
(3) LSM interface.
A number of functions have been changed, added or removed:
(*) security_capset_check(), ->capset_check()
(*) security_capset_set(), ->capset_set()
Removed in favour of security_capset().
(*) security_capset(), ->capset()
New. This is passed a pointer to the new creds, a pointer to the old
creds and the proposed capability sets. It should fill in the new
creds or return an error. All pointers, barring the pointer to the
new creds, are now const.
(*) security_bprm_apply_creds(), ->bprm_apply_creds()
Changed; now returns a value, which will cause the process to be
killed if it's an error.
(*) security_task_alloc(), ->task_alloc_security()
Removed in favour of security_prepare_creds().
(*) security_cred_free(), ->cred_free()
New. Free security data attached to cred->security.
(*) security_prepare_creds(), ->cred_prepare()
New. Duplicate any security data attached to cred->security.
(*) security_commit_creds(), ->cred_commit()
New. Apply any security effects for the upcoming installation of new
security by commit_creds().
(*) security_task_post_setuid(), ->task_post_setuid()
Removed in favour of security_task_fix_setuid().
(*) security_task_fix_setuid(), ->task_fix_setuid()
Fix up the proposed new credentials for setuid(). This is used by
cap_set_fix_setuid() to implicitly adjust capabilities in line with
setuid() changes. Changes are made to the new credentials, rather
than the task itself as in security_task_post_setuid().
(*) security_task_reparent_to_init(), ->task_reparent_to_init()
Removed. Instead the task being reparented to init is referred
directly to init's credentials.
NOTE! This results in the loss of some state: SELinux's osid no
longer records the sid of the thread that forked it.
(*) security_key_alloc(), ->key_alloc()
(*) security_key_permission(), ->key_permission()
Changed. These now take cred pointers rather than task pointers to
refer to the security context.
(4) sys_capset().
This has been simplified and uses less locking. The LSM functions it
calls have been merged.
(5) reparent_to_kthreadd().
This gives the current thread the same credentials as init by simply using
commit_thread() to point that way.
(6) __sigqueue_alloc() and switch_uid()
__sigqueue_alloc() can't stop the target task from changing its creds
beneath it, so this function gets a reference to the currently applicable
user_struct which it then passes into the sigqueue struct it returns if
successful.
switch_uid() is now called from commit_creds(), and possibly should be
folded into that. commit_creds() should take care of protecting
__sigqueue_alloc().
(7) [sg]et[ug]id() and co and [sg]et_current_groups.
The set functions now all use prepare_creds(), commit_creds() and
abort_creds() to build and check a new set of credentials before applying
it.
security_task_set[ug]id() is called inside the prepared section. This
guarantees that nothing else will affect the creds until we've finished.
The calling of set_dumpable() has been moved into commit_creds().
Much of the functionality of set_user() has been moved into
commit_creds().
The get functions all simply access the data directly.
(8) security_task_prctl() and cap_task_prctl().
security_task_prctl() has been modified to return -ENOSYS if it doesn't
want to handle a function, or otherwise return the return value directly
rather than through an argument.
Additionally, cap_task_prctl() now prepares a new set of credentials, even
if it doesn't end up using it.
(9) Keyrings.
A number of changes have been made to the keyrings code:
(a) switch_uid_keyring(), copy_keys(), exit_keys() and suid_keys() have
all been dropped and built in to the credentials functions directly.
They may want separating out again later.
(b) key_alloc() and search_process_keyrings() now take a cred pointer
rather than a task pointer to specify the security context.
(c) copy_creds() gives a new thread within the same thread group a new
thread keyring if its parent had one, otherwise it discards the thread
keyring.
(d) The authorisation key now points directly to the credentials to extend
the search into rather pointing to the task that carries them.
(e) Installing thread, process or session keyrings causes a new set of
credentials to be created, even though it's not strictly necessary for
process or session keyrings (they're shared).
(10) Usermode helper.
The usermode helper code now carries a cred struct pointer in its
subprocess_info struct instead of a new session keyring pointer. This set
of credentials is derived from init_cred and installed on the new process
after it has been cloned.
call_usermodehelper_setup() allocates the new credentials and
call_usermodehelper_freeinfo() discards them if they haven't been used. A
special cred function (prepare_usermodeinfo_creds()) is provided
specifically for call_usermodehelper_setup() to call.
call_usermodehelper_setkeys() adjusts the credentials to sport the
supplied keyring as the new session keyring.
(11) SELinux.
SELinux has a number of changes, in addition to those to support the LSM
interface changes mentioned above:
(a) selinux_setprocattr() no longer does its check for whether the
current ptracer can access processes with the new SID inside the lock
that covers getting the ptracer's SID. Whilst this lock ensures that
the check is done with the ptracer pinned, the result is only valid
until the lock is released, so there's no point doing it inside the
lock.
(12) is_single_threaded().
This function has been extracted from selinux_setprocattr() and put into
a file of its own in the lib/ directory as join_session_keyring() now
wants to use it too.
The code in SELinux just checked to see whether a task shared mm_structs
with other tasks (CLONE_VM), but that isn't good enough. We really want
to know if they're part of the same thread group (CLONE_THREAD).
(13) nfsd.
The NFS server daemon now has to use the COW credentials to set the
credentials it is going to use. It really needs to pass the credentials
down to the functions it calls, but it can't do that until other patches
in this series have been applied.
Signed-off-by: David Howells <dhowells@redhat.com>
Acked-by: James Morris <jmorris@namei.org>
Signed-off-by: James Morris <jmorris@namei.org>
2008-11-14 02:39:23 +03:00
|
|
|
const struct cred *cred, unsigned long flags,
|
2006-06-23 01:47:17 +04:00
|
|
|
struct key *dest)
|
2005-04-17 02:20:36 +04:00
|
|
|
{
|
|
|
|
struct key *keyring;
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
keyring = key_alloc(&key_type_keyring, description,
|
CRED: Inaugurate COW credentials
Inaugurate copy-on-write credentials management. This uses RCU to manage the
credentials pointer in the task_struct with respect to accesses by other tasks.
A process may only modify its own credentials, and so does not need locking to
access or modify its own credentials.
A mutex (cred_replace_mutex) is added to the task_struct to control the effect
of PTRACE_ATTACHED on credential calculations, particularly with respect to
execve().
With this patch, the contents of an active credentials struct may not be
changed directly; rather a new set of credentials must be prepared, modified
and committed using something like the following sequence of events:
struct cred *new = prepare_creds();
int ret = blah(new);
if (ret < 0) {
abort_creds(new);
return ret;
}
return commit_creds(new);
There are some exceptions to this rule: the keyrings pointed to by the active
credentials may be instantiated - keyrings violate the COW rule as managing
COW keyrings is tricky, given that it is possible for a task to directly alter
the keys in a keyring in use by another task.
To help enforce this, various pointers to sets of credentials, such as those in
the task_struct, are declared const. The purpose of this is compile-time
discouragement of altering credentials through those pointers. Once a set of
credentials has been made public through one of these pointers, it may not be
modified, except under special circumstances:
(1) Its reference count may incremented and decremented.
(2) The keyrings to which it points may be modified, but not replaced.
The only safe way to modify anything else is to create a replacement and commit
using the functions described in Documentation/credentials.txt (which will be
added by a later patch).
This patch and the preceding patches have been tested with the LTP SELinux
testsuite.
This patch makes several logical sets of alteration:
(1) execve().
This now prepares and commits credentials in various places in the
security code rather than altering the current creds directly.
(2) Temporary credential overrides.
do_coredump() and sys_faccessat() now prepare their own credentials and
temporarily override the ones currently on the acting thread, whilst
preventing interference from other threads by holding cred_replace_mutex
on the thread being dumped.
This will be replaced in a future patch by something that hands down the
credentials directly to the functions being called, rather than altering
the task's objective credentials.
(3) LSM interface.
A number of functions have been changed, added or removed:
(*) security_capset_check(), ->capset_check()
(*) security_capset_set(), ->capset_set()
Removed in favour of security_capset().
(*) security_capset(), ->capset()
New. This is passed a pointer to the new creds, a pointer to the old
creds and the proposed capability sets. It should fill in the new
creds or return an error. All pointers, barring the pointer to the
new creds, are now const.
(*) security_bprm_apply_creds(), ->bprm_apply_creds()
Changed; now returns a value, which will cause the process to be
killed if it's an error.
(*) security_task_alloc(), ->task_alloc_security()
Removed in favour of security_prepare_creds().
(*) security_cred_free(), ->cred_free()
New. Free security data attached to cred->security.
(*) security_prepare_creds(), ->cred_prepare()
New. Duplicate any security data attached to cred->security.
(*) security_commit_creds(), ->cred_commit()
New. Apply any security effects for the upcoming installation of new
security by commit_creds().
(*) security_task_post_setuid(), ->task_post_setuid()
Removed in favour of security_task_fix_setuid().
(*) security_task_fix_setuid(), ->task_fix_setuid()
Fix up the proposed new credentials for setuid(). This is used by
cap_set_fix_setuid() to implicitly adjust capabilities in line with
setuid() changes. Changes are made to the new credentials, rather
than the task itself as in security_task_post_setuid().
(*) security_task_reparent_to_init(), ->task_reparent_to_init()
Removed. Instead the task being reparented to init is referred
directly to init's credentials.
NOTE! This results in the loss of some state: SELinux's osid no
longer records the sid of the thread that forked it.
(*) security_key_alloc(), ->key_alloc()
(*) security_key_permission(), ->key_permission()
Changed. These now take cred pointers rather than task pointers to
refer to the security context.
(4) sys_capset().
This has been simplified and uses less locking. The LSM functions it
calls have been merged.
(5) reparent_to_kthreadd().
This gives the current thread the same credentials as init by simply using
commit_thread() to point that way.
(6) __sigqueue_alloc() and switch_uid()
__sigqueue_alloc() can't stop the target task from changing its creds
beneath it, so this function gets a reference to the currently applicable
user_struct which it then passes into the sigqueue struct it returns if
successful.
switch_uid() is now called from commit_creds(), and possibly should be
folded into that. commit_creds() should take care of protecting
__sigqueue_alloc().
(7) [sg]et[ug]id() and co and [sg]et_current_groups.
The set functions now all use prepare_creds(), commit_creds() and
abort_creds() to build and check a new set of credentials before applying
it.
security_task_set[ug]id() is called inside the prepared section. This
guarantees that nothing else will affect the creds until we've finished.
The calling of set_dumpable() has been moved into commit_creds().
Much of the functionality of set_user() has been moved into
commit_creds().
The get functions all simply access the data directly.
(8) security_task_prctl() and cap_task_prctl().
security_task_prctl() has been modified to return -ENOSYS if it doesn't
want to handle a function, or otherwise return the return value directly
rather than through an argument.
Additionally, cap_task_prctl() now prepares a new set of credentials, even
if it doesn't end up using it.
(9) Keyrings.
A number of changes have been made to the keyrings code:
(a) switch_uid_keyring(), copy_keys(), exit_keys() and suid_keys() have
all been dropped and built in to the credentials functions directly.
They may want separating out again later.
(b) key_alloc() and search_process_keyrings() now take a cred pointer
rather than a task pointer to specify the security context.
(c) copy_creds() gives a new thread within the same thread group a new
thread keyring if its parent had one, otherwise it discards the thread
keyring.
(d) The authorisation key now points directly to the credentials to extend
the search into rather pointing to the task that carries them.
(e) Installing thread, process or session keyrings causes a new set of
credentials to be created, even though it's not strictly necessary for
process or session keyrings (they're shared).
(10) Usermode helper.
The usermode helper code now carries a cred struct pointer in its
subprocess_info struct instead of a new session keyring pointer. This set
of credentials is derived from init_cred and installed on the new process
after it has been cloned.
call_usermodehelper_setup() allocates the new credentials and
call_usermodehelper_freeinfo() discards them if they haven't been used. A
special cred function (prepare_usermodeinfo_creds()) is provided
specifically for call_usermodehelper_setup() to call.
call_usermodehelper_setkeys() adjusts the credentials to sport the
supplied keyring as the new session keyring.
(11) SELinux.
SELinux has a number of changes, in addition to those to support the LSM
interface changes mentioned above:
(a) selinux_setprocattr() no longer does its check for whether the
current ptracer can access processes with the new SID inside the lock
that covers getting the ptracer's SID. Whilst this lock ensures that
the check is done with the ptracer pinned, the result is only valid
until the lock is released, so there's no point doing it inside the
lock.
(12) is_single_threaded().
This function has been extracted from selinux_setprocattr() and put into
a file of its own in the lib/ directory as join_session_keyring() now
wants to use it too.
The code in SELinux just checked to see whether a task shared mm_structs
with other tasks (CLONE_VM), but that isn't good enough. We really want
to know if they're part of the same thread group (CLONE_THREAD).
(13) nfsd.
The NFS server daemon now has to use the COW credentials to set the
credentials it is going to use. It really needs to pass the credentials
down to the functions it calls, but it can't do that until other patches
in this series have been applied.
Signed-off-by: David Howells <dhowells@redhat.com>
Acked-by: James Morris <jmorris@namei.org>
Signed-off-by: James Morris <jmorris@namei.org>
2008-11-14 02:39:23 +03:00
|
|
|
uid, gid, cred,
|
2005-10-31 02:02:44 +03:00
|
|
|
(KEY_POS_ALL & ~KEY_POS_SETATTR) | KEY_USR_ALL,
|
2006-06-26 11:24:50 +04:00
|
|
|
flags);
|
2005-04-17 02:20:36 +04:00
|
|
|
|
|
|
|
if (!IS_ERR(keyring)) {
|
[PATCH] Keys: Make request-key create an authorisation key
The attached patch makes the following changes:
(1) There's a new special key type called ".request_key_auth".
This is an authorisation key for when one process requests a key and
another process is started to construct it. This type of key cannot be
created by the user; nor can it be requested by kernel services.
Authorisation keys hold two references:
(a) Each refers to a key being constructed. When the key being
constructed is instantiated the authorisation key is revoked,
rendering it of no further use.
(b) The "authorising process". This is either:
(i) the process that called request_key(), or:
(ii) if the process that called request_key() itself had an
authorisation key in its session keyring, then the authorising
process referred to by that authorisation key will also be
referred to by the new authorisation key.
This means that the process that initiated a chain of key requests
will authorise the lot of them, and will, by default, wind up with
the keys obtained from them in its keyrings.
(2) request_key() creates an authorisation key which is then passed to
/sbin/request-key in as part of a new session keyring.
(3) When request_key() is searching for a key to hand back to the caller, if
it comes across an authorisation key in the session keyring of the
calling process, it will also search the keyrings of the process
specified therein and it will use the specified process's credentials
(fsuid, fsgid, groups) to do that rather than the calling process's
credentials.
This allows a process started by /sbin/request-key to find keys belonging
to the authorising process.
(4) A key can be read, even if the process executing KEYCTL_READ doesn't have
direct read or search permission if that key is contained within the
keyrings of a process specified by an authorisation key found within the
calling process's session keyring, and is searchable using the
credentials of the authorising process.
This allows a process started by /sbin/request-key to read keys belonging
to the authorising process.
(5) The magic KEY_SPEC_*_KEYRING key IDs when passed to KEYCTL_INSTANTIATE or
KEYCTL_NEGATE will specify a keyring of the authorising process, rather
than the process doing the instantiation.
(6) One of the process keyrings can be nominated as the default to which
request_key() should attach new keys if not otherwise specified. This is
done with KEYCTL_SET_REQKEY_KEYRING and one of the KEY_REQKEY_DEFL_*
constants. The current setting can also be read using this call.
(7) request_key() is partially interruptible. If it is waiting for another
process to finish constructing a key, it can be interrupted. This permits
a request-key cycle to be broken without recourse to rebooting.
Signed-Off-By: David Howells <dhowells@redhat.com>
Signed-Off-By: Benoit Boissinot <benoit.boissinot@ens-lyon.org>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
2005-06-24 09:00:56 +04:00
|
|
|
ret = key_instantiate_and_link(keyring, NULL, 0, dest, NULL);
|
2005-04-17 02:20:36 +04:00
|
|
|
if (ret < 0) {
|
|
|
|
key_put(keyring);
|
|
|
|
keyring = ERR_PTR(ret);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return keyring;
|
2011-01-20 19:38:27 +03:00
|
|
|
}
|
2005-04-17 02:20:36 +04:00
|
|
|
|
2011-01-20 19:38:33 +03:00
|
|
|
/**
|
|
|
|
* keyring_search_aux - Search a keyring tree for a key matching some criteria
|
|
|
|
* @keyring_ref: A pointer to the keyring with possession indicator.
|
|
|
|
* @cred: The credentials to use for permissions checks.
|
|
|
|
* @type: The type of key to search for.
|
|
|
|
* @description: Parameter for @match.
|
|
|
|
* @match: Function to rule on whether or not a key is the one required.
|
2011-03-11 20:57:23 +03:00
|
|
|
* @no_state_check: Don't check if a matching key is bad
|
2011-01-20 19:38:33 +03:00
|
|
|
*
|
|
|
|
* Search the supplied keyring tree for a key that matches the criteria given.
|
|
|
|
* The root keyring and any linked keyrings must grant Search permission to the
|
|
|
|
* caller to be searchable and keys can only be found if they too grant Search
|
|
|
|
* to the caller. The possession flag on the root keyring pointer controls use
|
|
|
|
* of the possessor bits in permissions checking of the entire tree. In
|
|
|
|
* addition, the LSM gets to forbid keyring searches and key matches.
|
|
|
|
*
|
|
|
|
* The search is performed as a breadth-then-depth search up to the prescribed
|
|
|
|
* limit (KEYRING_SEARCH_MAX_DEPTH).
|
|
|
|
*
|
|
|
|
* Keys are matched to the type provided and are then filtered by the match
|
|
|
|
* function, which is given the description to use in any way it sees fit. The
|
|
|
|
* match function may use any attributes of a key that it wishes to to
|
|
|
|
* determine the match. Normally the match function from the key type would be
|
|
|
|
* used.
|
|
|
|
*
|
|
|
|
* RCU is used to prevent the keyring key lists from disappearing without the
|
|
|
|
* need to take lots of locks.
|
|
|
|
*
|
|
|
|
* Returns a pointer to the found key and increments the key usage count if
|
|
|
|
* successful; -EAGAIN if no matching keys were found, or if expired or revoked
|
|
|
|
* keys were found; -ENOKEY if only negative keys were found; -ENOTDIR if the
|
|
|
|
* specified keyring wasn't a keyring.
|
|
|
|
*
|
|
|
|
* In the case of a successful return, the possession attribute from
|
|
|
|
* @keyring_ref is propagated to the returned key reference.
|
2005-04-17 02:20:36 +04:00
|
|
|
*/
|
2005-09-28 20:03:15 +04:00
|
|
|
key_ref_t keyring_search_aux(key_ref_t keyring_ref,
|
CRED: Inaugurate COW credentials
Inaugurate copy-on-write credentials management. This uses RCU to manage the
credentials pointer in the task_struct with respect to accesses by other tasks.
A process may only modify its own credentials, and so does not need locking to
access or modify its own credentials.
A mutex (cred_replace_mutex) is added to the task_struct to control the effect
of PTRACE_ATTACHED on credential calculations, particularly with respect to
execve().
With this patch, the contents of an active credentials struct may not be
changed directly; rather a new set of credentials must be prepared, modified
and committed using something like the following sequence of events:
struct cred *new = prepare_creds();
int ret = blah(new);
if (ret < 0) {
abort_creds(new);
return ret;
}
return commit_creds(new);
There are some exceptions to this rule: the keyrings pointed to by the active
credentials may be instantiated - keyrings violate the COW rule as managing
COW keyrings is tricky, given that it is possible for a task to directly alter
the keys in a keyring in use by another task.
To help enforce this, various pointers to sets of credentials, such as those in
the task_struct, are declared const. The purpose of this is compile-time
discouragement of altering credentials through those pointers. Once a set of
credentials has been made public through one of these pointers, it may not be
modified, except under special circumstances:
(1) Its reference count may incremented and decremented.
(2) The keyrings to which it points may be modified, but not replaced.
The only safe way to modify anything else is to create a replacement and commit
using the functions described in Documentation/credentials.txt (which will be
added by a later patch).
This patch and the preceding patches have been tested with the LTP SELinux
testsuite.
This patch makes several logical sets of alteration:
(1) execve().
This now prepares and commits credentials in various places in the
security code rather than altering the current creds directly.
(2) Temporary credential overrides.
do_coredump() and sys_faccessat() now prepare their own credentials and
temporarily override the ones currently on the acting thread, whilst
preventing interference from other threads by holding cred_replace_mutex
on the thread being dumped.
This will be replaced in a future patch by something that hands down the
credentials directly to the functions being called, rather than altering
the task's objective credentials.
(3) LSM interface.
A number of functions have been changed, added or removed:
(*) security_capset_check(), ->capset_check()
(*) security_capset_set(), ->capset_set()
Removed in favour of security_capset().
(*) security_capset(), ->capset()
New. This is passed a pointer to the new creds, a pointer to the old
creds and the proposed capability sets. It should fill in the new
creds or return an error. All pointers, barring the pointer to the
new creds, are now const.
(*) security_bprm_apply_creds(), ->bprm_apply_creds()
Changed; now returns a value, which will cause the process to be
killed if it's an error.
(*) security_task_alloc(), ->task_alloc_security()
Removed in favour of security_prepare_creds().
(*) security_cred_free(), ->cred_free()
New. Free security data attached to cred->security.
(*) security_prepare_creds(), ->cred_prepare()
New. Duplicate any security data attached to cred->security.
(*) security_commit_creds(), ->cred_commit()
New. Apply any security effects for the upcoming installation of new
security by commit_creds().
(*) security_task_post_setuid(), ->task_post_setuid()
Removed in favour of security_task_fix_setuid().
(*) security_task_fix_setuid(), ->task_fix_setuid()
Fix up the proposed new credentials for setuid(). This is used by
cap_set_fix_setuid() to implicitly adjust capabilities in line with
setuid() changes. Changes are made to the new credentials, rather
than the task itself as in security_task_post_setuid().
(*) security_task_reparent_to_init(), ->task_reparent_to_init()
Removed. Instead the task being reparented to init is referred
directly to init's credentials.
NOTE! This results in the loss of some state: SELinux's osid no
longer records the sid of the thread that forked it.
(*) security_key_alloc(), ->key_alloc()
(*) security_key_permission(), ->key_permission()
Changed. These now take cred pointers rather than task pointers to
refer to the security context.
(4) sys_capset().
This has been simplified and uses less locking. The LSM functions it
calls have been merged.
(5) reparent_to_kthreadd().
This gives the current thread the same credentials as init by simply using
commit_thread() to point that way.
(6) __sigqueue_alloc() and switch_uid()
__sigqueue_alloc() can't stop the target task from changing its creds
beneath it, so this function gets a reference to the currently applicable
user_struct which it then passes into the sigqueue struct it returns if
successful.
switch_uid() is now called from commit_creds(), and possibly should be
folded into that. commit_creds() should take care of protecting
__sigqueue_alloc().
(7) [sg]et[ug]id() and co and [sg]et_current_groups.
The set functions now all use prepare_creds(), commit_creds() and
abort_creds() to build and check a new set of credentials before applying
it.
security_task_set[ug]id() is called inside the prepared section. This
guarantees that nothing else will affect the creds until we've finished.
The calling of set_dumpable() has been moved into commit_creds().
Much of the functionality of set_user() has been moved into
commit_creds().
The get functions all simply access the data directly.
(8) security_task_prctl() and cap_task_prctl().
security_task_prctl() has been modified to return -ENOSYS if it doesn't
want to handle a function, or otherwise return the return value directly
rather than through an argument.
Additionally, cap_task_prctl() now prepares a new set of credentials, even
if it doesn't end up using it.
(9) Keyrings.
A number of changes have been made to the keyrings code:
(a) switch_uid_keyring(), copy_keys(), exit_keys() and suid_keys() have
all been dropped and built in to the credentials functions directly.
They may want separating out again later.
(b) key_alloc() and search_process_keyrings() now take a cred pointer
rather than a task pointer to specify the security context.
(c) copy_creds() gives a new thread within the same thread group a new
thread keyring if its parent had one, otherwise it discards the thread
keyring.
(d) The authorisation key now points directly to the credentials to extend
the search into rather pointing to the task that carries them.
(e) Installing thread, process or session keyrings causes a new set of
credentials to be created, even though it's not strictly necessary for
process or session keyrings (they're shared).
(10) Usermode helper.
The usermode helper code now carries a cred struct pointer in its
subprocess_info struct instead of a new session keyring pointer. This set
of credentials is derived from init_cred and installed on the new process
after it has been cloned.
call_usermodehelper_setup() allocates the new credentials and
call_usermodehelper_freeinfo() discards them if they haven't been used. A
special cred function (prepare_usermodeinfo_creds()) is provided
specifically for call_usermodehelper_setup() to call.
call_usermodehelper_setkeys() adjusts the credentials to sport the
supplied keyring as the new session keyring.
(11) SELinux.
SELinux has a number of changes, in addition to those to support the LSM
interface changes mentioned above:
(a) selinux_setprocattr() no longer does its check for whether the
current ptracer can access processes with the new SID inside the lock
that covers getting the ptracer's SID. Whilst this lock ensures that
the check is done with the ptracer pinned, the result is only valid
until the lock is released, so there's no point doing it inside the
lock.
(12) is_single_threaded().
This function has been extracted from selinux_setprocattr() and put into
a file of its own in the lib/ directory as join_session_keyring() now
wants to use it too.
The code in SELinux just checked to see whether a task shared mm_structs
with other tasks (CLONE_VM), but that isn't good enough. We really want
to know if they're part of the same thread group (CLONE_THREAD).
(13) nfsd.
The NFS server daemon now has to use the COW credentials to set the
credentials it is going to use. It really needs to pass the credentials
down to the functions it calls, but it can't do that until other patches
in this series have been applied.
Signed-off-by: David Howells <dhowells@redhat.com>
Acked-by: James Morris <jmorris@namei.org>
Signed-off-by: James Morris <jmorris@namei.org>
2008-11-14 02:39:23 +03:00
|
|
|
const struct cred *cred,
|
2005-09-28 20:03:15 +04:00
|
|
|
struct key_type *type,
|
|
|
|
const void *description,
|
2011-03-11 20:57:23 +03:00
|
|
|
key_match_func_t match,
|
|
|
|
bool no_state_check)
|
2005-04-17 02:20:36 +04:00
|
|
|
{
|
|
|
|
struct {
|
2012-05-11 13:56:56 +04:00
|
|
|
/* Need a separate keylist pointer for RCU purposes */
|
|
|
|
struct key *keyring;
|
2005-06-24 09:00:49 +04:00
|
|
|
struct keyring_list *keylist;
|
2005-04-17 02:20:36 +04:00
|
|
|
int kix;
|
|
|
|
} stack[KEYRING_SEARCH_MAX_DEPTH];
|
|
|
|
|
|
|
|
struct keyring_list *keylist;
|
|
|
|
struct timespec now;
|
2008-04-29 12:01:22 +04:00
|
|
|
unsigned long possessed, kflags;
|
2005-09-28 20:03:15 +04:00
|
|
|
struct key *keyring, *key;
|
|
|
|
key_ref_t key_ref;
|
2005-04-17 02:20:36 +04:00
|
|
|
long err;
|
2012-01-18 00:39:40 +04:00
|
|
|
int sp, nkeys, kix;
|
2005-04-17 02:20:36 +04:00
|
|
|
|
2005-09-28 20:03:15 +04:00
|
|
|
keyring = key_ref_to_ptr(keyring_ref);
|
|
|
|
possessed = is_key_possessed(keyring_ref);
|
2005-04-17 02:20:36 +04:00
|
|
|
key_check(keyring);
|
|
|
|
|
|
|
|
/* top keyring must have search permission to begin the search */
|
2010-03-09 02:11:34 +03:00
|
|
|
err = key_task_permission(keyring_ref, cred, KEY_SEARCH);
|
2005-10-31 02:02:44 +03:00
|
|
|
if (err < 0) {
|
|
|
|
key_ref = ERR_PTR(err);
|
2005-04-17 02:20:36 +04:00
|
|
|
goto error;
|
2005-10-31 02:02:44 +03:00
|
|
|
}
|
2005-04-17 02:20:36 +04:00
|
|
|
|
2005-09-28 20:03:15 +04:00
|
|
|
key_ref = ERR_PTR(-ENOTDIR);
|
2005-04-17 02:20:36 +04:00
|
|
|
if (keyring->type != &key_type_keyring)
|
|
|
|
goto error;
|
|
|
|
|
2005-09-28 20:03:15 +04:00
|
|
|
rcu_read_lock();
|
|
|
|
|
2005-04-17 02:20:36 +04:00
|
|
|
now = current_kernel_time();
|
|
|
|
err = -EAGAIN;
|
|
|
|
sp = 0;
|
|
|
|
|
2008-04-29 12:01:22 +04:00
|
|
|
/* firstly we should check to see if this top-level keyring is what we
|
|
|
|
* are looking for */
|
|
|
|
key_ref = ERR_PTR(-EAGAIN);
|
|
|
|
kflags = keyring->flags;
|
|
|
|
if (keyring->type == type && match(keyring, description)) {
|
|
|
|
key = keyring;
|
2011-03-11 20:57:23 +03:00
|
|
|
if (no_state_check)
|
|
|
|
goto found;
|
2008-04-29 12:01:22 +04:00
|
|
|
|
|
|
|
/* check it isn't negative and hasn't expired or been
|
|
|
|
* revoked */
|
|
|
|
if (kflags & (1 << KEY_FLAG_REVOKED))
|
|
|
|
goto error_2;
|
|
|
|
if (key->expiry && now.tv_sec >= key->expiry)
|
|
|
|
goto error_2;
|
2011-03-07 18:06:09 +03:00
|
|
|
key_ref = ERR_PTR(key->type_data.reject_error);
|
2008-04-29 12:01:22 +04:00
|
|
|
if (kflags & (1 << KEY_FLAG_NEGATIVE))
|
|
|
|
goto error_2;
|
|
|
|
goto found;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* otherwise, the top keyring must not be revoked, expired, or
|
|
|
|
* negatively instantiated if we are to search it */
|
|
|
|
key_ref = ERR_PTR(-EAGAIN);
|
2012-05-11 13:56:56 +04:00
|
|
|
if (kflags & ((1 << KEY_FLAG_INVALIDATED) |
|
|
|
|
(1 << KEY_FLAG_REVOKED) |
|
|
|
|
(1 << KEY_FLAG_NEGATIVE)) ||
|
2008-04-29 12:01:22 +04:00
|
|
|
(keyring->expiry && now.tv_sec >= keyring->expiry))
|
|
|
|
goto error_2;
|
|
|
|
|
2005-04-17 02:20:36 +04:00
|
|
|
/* start processing a new keyring */
|
2005-09-28 20:03:15 +04:00
|
|
|
descend:
|
2012-05-11 13:56:56 +04:00
|
|
|
kflags = keyring->flags;
|
|
|
|
if (kflags & ((1 << KEY_FLAG_INVALIDATED) |
|
|
|
|
(1 << KEY_FLAG_REVOKED)))
|
2005-04-17 02:20:36 +04:00
|
|
|
goto not_this_keyring;
|
|
|
|
|
2005-06-24 09:00:49 +04:00
|
|
|
keylist = rcu_dereference(keyring->payload.subscriptions);
|
2005-04-17 02:20:36 +04:00
|
|
|
if (!keylist)
|
|
|
|
goto not_this_keyring;
|
|
|
|
|
|
|
|
/* iterate through the keys in this keyring first */
|
2012-01-18 00:39:40 +04:00
|
|
|
nkeys = keylist->nkeys;
|
|
|
|
smp_rmb();
|
|
|
|
for (kix = 0; kix < nkeys; kix++) {
|
2012-05-11 13:56:56 +04:00
|
|
|
key = rcu_dereference(keylist->keys[kix]);
|
2008-04-29 12:01:22 +04:00
|
|
|
kflags = key->flags;
|
2005-04-17 02:20:36 +04:00
|
|
|
|
|
|
|
/* ignore keys not of this type */
|
|
|
|
if (key->type != type)
|
|
|
|
continue;
|
|
|
|
|
2012-05-11 13:56:56 +04:00
|
|
|
/* skip invalidated, revoked and expired keys */
|
2011-03-11 20:57:23 +03:00
|
|
|
if (!no_state_check) {
|
2012-05-11 13:56:56 +04:00
|
|
|
if (kflags & ((1 << KEY_FLAG_INVALIDATED) |
|
|
|
|
(1 << KEY_FLAG_REVOKED)))
|
2011-03-11 20:57:23 +03:00
|
|
|
continue;
|
2005-04-17 02:20:36 +04:00
|
|
|
|
2011-03-11 20:57:23 +03:00
|
|
|
if (key->expiry && now.tv_sec >= key->expiry)
|
|
|
|
continue;
|
|
|
|
}
|
2005-04-17 02:20:36 +04:00
|
|
|
|
|
|
|
/* keys that don't match */
|
|
|
|
if (!match(key, description))
|
|
|
|
continue;
|
|
|
|
|
|
|
|
/* key must have search permissions */
|
2005-10-31 02:02:44 +03:00
|
|
|
if (key_task_permission(make_key_ref(key, possessed),
|
CRED: Inaugurate COW credentials
Inaugurate copy-on-write credentials management. This uses RCU to manage the
credentials pointer in the task_struct with respect to accesses by other tasks.
A process may only modify its own credentials, and so does not need locking to
access or modify its own credentials.
A mutex (cred_replace_mutex) is added to the task_struct to control the effect
of PTRACE_ATTACHED on credential calculations, particularly with respect to
execve().
With this patch, the contents of an active credentials struct may not be
changed directly; rather a new set of credentials must be prepared, modified
and committed using something like the following sequence of events:
struct cred *new = prepare_creds();
int ret = blah(new);
if (ret < 0) {
abort_creds(new);
return ret;
}
return commit_creds(new);
There are some exceptions to this rule: the keyrings pointed to by the active
credentials may be instantiated - keyrings violate the COW rule as managing
COW keyrings is tricky, given that it is possible for a task to directly alter
the keys in a keyring in use by another task.
To help enforce this, various pointers to sets of credentials, such as those in
the task_struct, are declared const. The purpose of this is compile-time
discouragement of altering credentials through those pointers. Once a set of
credentials has been made public through one of these pointers, it may not be
modified, except under special circumstances:
(1) Its reference count may incremented and decremented.
(2) The keyrings to which it points may be modified, but not replaced.
The only safe way to modify anything else is to create a replacement and commit
using the functions described in Documentation/credentials.txt (which will be
added by a later patch).
This patch and the preceding patches have been tested with the LTP SELinux
testsuite.
This patch makes several logical sets of alteration:
(1) execve().
This now prepares and commits credentials in various places in the
security code rather than altering the current creds directly.
(2) Temporary credential overrides.
do_coredump() and sys_faccessat() now prepare their own credentials and
temporarily override the ones currently on the acting thread, whilst
preventing interference from other threads by holding cred_replace_mutex
on the thread being dumped.
This will be replaced in a future patch by something that hands down the
credentials directly to the functions being called, rather than altering
the task's objective credentials.
(3) LSM interface.
A number of functions have been changed, added or removed:
(*) security_capset_check(), ->capset_check()
(*) security_capset_set(), ->capset_set()
Removed in favour of security_capset().
(*) security_capset(), ->capset()
New. This is passed a pointer to the new creds, a pointer to the old
creds and the proposed capability sets. It should fill in the new
creds or return an error. All pointers, barring the pointer to the
new creds, are now const.
(*) security_bprm_apply_creds(), ->bprm_apply_creds()
Changed; now returns a value, which will cause the process to be
killed if it's an error.
(*) security_task_alloc(), ->task_alloc_security()
Removed in favour of security_prepare_creds().
(*) security_cred_free(), ->cred_free()
New. Free security data attached to cred->security.
(*) security_prepare_creds(), ->cred_prepare()
New. Duplicate any security data attached to cred->security.
(*) security_commit_creds(), ->cred_commit()
New. Apply any security effects for the upcoming installation of new
security by commit_creds().
(*) security_task_post_setuid(), ->task_post_setuid()
Removed in favour of security_task_fix_setuid().
(*) security_task_fix_setuid(), ->task_fix_setuid()
Fix up the proposed new credentials for setuid(). This is used by
cap_set_fix_setuid() to implicitly adjust capabilities in line with
setuid() changes. Changes are made to the new credentials, rather
than the task itself as in security_task_post_setuid().
(*) security_task_reparent_to_init(), ->task_reparent_to_init()
Removed. Instead the task being reparented to init is referred
directly to init's credentials.
NOTE! This results in the loss of some state: SELinux's osid no
longer records the sid of the thread that forked it.
(*) security_key_alloc(), ->key_alloc()
(*) security_key_permission(), ->key_permission()
Changed. These now take cred pointers rather than task pointers to
refer to the security context.
(4) sys_capset().
This has been simplified and uses less locking. The LSM functions it
calls have been merged.
(5) reparent_to_kthreadd().
This gives the current thread the same credentials as init by simply using
commit_thread() to point that way.
(6) __sigqueue_alloc() and switch_uid()
__sigqueue_alloc() can't stop the target task from changing its creds
beneath it, so this function gets a reference to the currently applicable
user_struct which it then passes into the sigqueue struct it returns if
successful.
switch_uid() is now called from commit_creds(), and possibly should be
folded into that. commit_creds() should take care of protecting
__sigqueue_alloc().
(7) [sg]et[ug]id() and co and [sg]et_current_groups.
The set functions now all use prepare_creds(), commit_creds() and
abort_creds() to build and check a new set of credentials before applying
it.
security_task_set[ug]id() is called inside the prepared section. This
guarantees that nothing else will affect the creds until we've finished.
The calling of set_dumpable() has been moved into commit_creds().
Much of the functionality of set_user() has been moved into
commit_creds().
The get functions all simply access the data directly.
(8) security_task_prctl() and cap_task_prctl().
security_task_prctl() has been modified to return -ENOSYS if it doesn't
want to handle a function, or otherwise return the return value directly
rather than through an argument.
Additionally, cap_task_prctl() now prepares a new set of credentials, even
if it doesn't end up using it.
(9) Keyrings.
A number of changes have been made to the keyrings code:
(a) switch_uid_keyring(), copy_keys(), exit_keys() and suid_keys() have
all been dropped and built in to the credentials functions directly.
They may want separating out again later.
(b) key_alloc() and search_process_keyrings() now take a cred pointer
rather than a task pointer to specify the security context.
(c) copy_creds() gives a new thread within the same thread group a new
thread keyring if its parent had one, otherwise it discards the thread
keyring.
(d) The authorisation key now points directly to the credentials to extend
the search into rather pointing to the task that carries them.
(e) Installing thread, process or session keyrings causes a new set of
credentials to be created, even though it's not strictly necessary for
process or session keyrings (they're shared).
(10) Usermode helper.
The usermode helper code now carries a cred struct pointer in its
subprocess_info struct instead of a new session keyring pointer. This set
of credentials is derived from init_cred and installed on the new process
after it has been cloned.
call_usermodehelper_setup() allocates the new credentials and
call_usermodehelper_freeinfo() discards them if they haven't been used. A
special cred function (prepare_usermodeinfo_creds()) is provided
specifically for call_usermodehelper_setup() to call.
call_usermodehelper_setkeys() adjusts the credentials to sport the
supplied keyring as the new session keyring.
(11) SELinux.
SELinux has a number of changes, in addition to those to support the LSM
interface changes mentioned above:
(a) selinux_setprocattr() no longer does its check for whether the
current ptracer can access processes with the new SID inside the lock
that covers getting the ptracer's SID. Whilst this lock ensures that
the check is done with the ptracer pinned, the result is only valid
until the lock is released, so there's no point doing it inside the
lock.
(12) is_single_threaded().
This function has been extracted from selinux_setprocattr() and put into
a file of its own in the lib/ directory as join_session_keyring() now
wants to use it too.
The code in SELinux just checked to see whether a task shared mm_structs
with other tasks (CLONE_VM), but that isn't good enough. We really want
to know if they're part of the same thread group (CLONE_THREAD).
(13) nfsd.
The NFS server daemon now has to use the COW credentials to set the
credentials it is going to use. It really needs to pass the credentials
down to the functions it calls, but it can't do that until other patches
in this series have been applied.
Signed-off-by: David Howells <dhowells@redhat.com>
Acked-by: James Morris <jmorris@namei.org>
Signed-off-by: James Morris <jmorris@namei.org>
2008-11-14 02:39:23 +03:00
|
|
|
cred, KEY_SEARCH) < 0)
|
2005-04-17 02:20:36 +04:00
|
|
|
continue;
|
|
|
|
|
2011-03-11 20:57:23 +03:00
|
|
|
if (no_state_check)
|
|
|
|
goto found;
|
|
|
|
|
2008-04-29 12:01:22 +04:00
|
|
|
/* we set a different error code if we pass a negative key */
|
|
|
|
if (kflags & (1 << KEY_FLAG_NEGATIVE)) {
|
2011-03-07 18:06:09 +03:00
|
|
|
err = key->type_data.reject_error;
|
2005-04-17 02:20:36 +04:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
goto found;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* search through the keyrings nested in this one */
|
|
|
|
kix = 0;
|
2005-09-28 20:03:15 +04:00
|
|
|
ascend:
|
2012-01-18 00:39:40 +04:00
|
|
|
nkeys = keylist->nkeys;
|
|
|
|
smp_rmb();
|
|
|
|
for (; kix < nkeys; kix++) {
|
2012-05-11 13:56:56 +04:00
|
|
|
key = rcu_dereference(keylist->keys[kix]);
|
2005-04-17 02:20:36 +04:00
|
|
|
if (key->type != &key_type_keyring)
|
2005-06-24 09:00:49 +04:00
|
|
|
continue;
|
2005-04-17 02:20:36 +04:00
|
|
|
|
|
|
|
/* recursively search nested keyrings
|
|
|
|
* - only search keyrings for which we have search permission
|
|
|
|
*/
|
|
|
|
if (sp >= KEYRING_SEARCH_MAX_DEPTH)
|
2005-06-24 09:00:49 +04:00
|
|
|
continue;
|
2005-04-17 02:20:36 +04:00
|
|
|
|
2005-11-07 11:59:30 +03:00
|
|
|
if (key_task_permission(make_key_ref(key, possessed),
|
CRED: Inaugurate COW credentials
Inaugurate copy-on-write credentials management. This uses RCU to manage the
credentials pointer in the task_struct with respect to accesses by other tasks.
A process may only modify its own credentials, and so does not need locking to
access or modify its own credentials.
A mutex (cred_replace_mutex) is added to the task_struct to control the effect
of PTRACE_ATTACHED on credential calculations, particularly with respect to
execve().
With this patch, the contents of an active credentials struct may not be
changed directly; rather a new set of credentials must be prepared, modified
and committed using something like the following sequence of events:
struct cred *new = prepare_creds();
int ret = blah(new);
if (ret < 0) {
abort_creds(new);
return ret;
}
return commit_creds(new);
There are some exceptions to this rule: the keyrings pointed to by the active
credentials may be instantiated - keyrings violate the COW rule as managing
COW keyrings is tricky, given that it is possible for a task to directly alter
the keys in a keyring in use by another task.
To help enforce this, various pointers to sets of credentials, such as those in
the task_struct, are declared const. The purpose of this is compile-time
discouragement of altering credentials through those pointers. Once a set of
credentials has been made public through one of these pointers, it may not be
modified, except under special circumstances:
(1) Its reference count may incremented and decremented.
(2) The keyrings to which it points may be modified, but not replaced.
The only safe way to modify anything else is to create a replacement and commit
using the functions described in Documentation/credentials.txt (which will be
added by a later patch).
This patch and the preceding patches have been tested with the LTP SELinux
testsuite.
This patch makes several logical sets of alteration:
(1) execve().
This now prepares and commits credentials in various places in the
security code rather than altering the current creds directly.
(2) Temporary credential overrides.
do_coredump() and sys_faccessat() now prepare their own credentials and
temporarily override the ones currently on the acting thread, whilst
preventing interference from other threads by holding cred_replace_mutex
on the thread being dumped.
This will be replaced in a future patch by something that hands down the
credentials directly to the functions being called, rather than altering
the task's objective credentials.
(3) LSM interface.
A number of functions have been changed, added or removed:
(*) security_capset_check(), ->capset_check()
(*) security_capset_set(), ->capset_set()
Removed in favour of security_capset().
(*) security_capset(), ->capset()
New. This is passed a pointer to the new creds, a pointer to the old
creds and the proposed capability sets. It should fill in the new
creds or return an error. All pointers, barring the pointer to the
new creds, are now const.
(*) security_bprm_apply_creds(), ->bprm_apply_creds()
Changed; now returns a value, which will cause the process to be
killed if it's an error.
(*) security_task_alloc(), ->task_alloc_security()
Removed in favour of security_prepare_creds().
(*) security_cred_free(), ->cred_free()
New. Free security data attached to cred->security.
(*) security_prepare_creds(), ->cred_prepare()
New. Duplicate any security data attached to cred->security.
(*) security_commit_creds(), ->cred_commit()
New. Apply any security effects for the upcoming installation of new
security by commit_creds().
(*) security_task_post_setuid(), ->task_post_setuid()
Removed in favour of security_task_fix_setuid().
(*) security_task_fix_setuid(), ->task_fix_setuid()
Fix up the proposed new credentials for setuid(). This is used by
cap_set_fix_setuid() to implicitly adjust capabilities in line with
setuid() changes. Changes are made to the new credentials, rather
than the task itself as in security_task_post_setuid().
(*) security_task_reparent_to_init(), ->task_reparent_to_init()
Removed. Instead the task being reparented to init is referred
directly to init's credentials.
NOTE! This results in the loss of some state: SELinux's osid no
longer records the sid of the thread that forked it.
(*) security_key_alloc(), ->key_alloc()
(*) security_key_permission(), ->key_permission()
Changed. These now take cred pointers rather than task pointers to
refer to the security context.
(4) sys_capset().
This has been simplified and uses less locking. The LSM functions it
calls have been merged.
(5) reparent_to_kthreadd().
This gives the current thread the same credentials as init by simply using
commit_thread() to point that way.
(6) __sigqueue_alloc() and switch_uid()
__sigqueue_alloc() can't stop the target task from changing its creds
beneath it, so this function gets a reference to the currently applicable
user_struct which it then passes into the sigqueue struct it returns if
successful.
switch_uid() is now called from commit_creds(), and possibly should be
folded into that. commit_creds() should take care of protecting
__sigqueue_alloc().
(7) [sg]et[ug]id() and co and [sg]et_current_groups.
The set functions now all use prepare_creds(), commit_creds() and
abort_creds() to build and check a new set of credentials before applying
it.
security_task_set[ug]id() is called inside the prepared section. This
guarantees that nothing else will affect the creds until we've finished.
The calling of set_dumpable() has been moved into commit_creds().
Much of the functionality of set_user() has been moved into
commit_creds().
The get functions all simply access the data directly.
(8) security_task_prctl() and cap_task_prctl().
security_task_prctl() has been modified to return -ENOSYS if it doesn't
want to handle a function, or otherwise return the return value directly
rather than through an argument.
Additionally, cap_task_prctl() now prepares a new set of credentials, even
if it doesn't end up using it.
(9) Keyrings.
A number of changes have been made to the keyrings code:
(a) switch_uid_keyring(), copy_keys(), exit_keys() and suid_keys() have
all been dropped and built in to the credentials functions directly.
They may want separating out again later.
(b) key_alloc() and search_process_keyrings() now take a cred pointer
rather than a task pointer to specify the security context.
(c) copy_creds() gives a new thread within the same thread group a new
thread keyring if its parent had one, otherwise it discards the thread
keyring.
(d) The authorisation key now points directly to the credentials to extend
the search into rather pointing to the task that carries them.
(e) Installing thread, process or session keyrings causes a new set of
credentials to be created, even though it's not strictly necessary for
process or session keyrings (they're shared).
(10) Usermode helper.
The usermode helper code now carries a cred struct pointer in its
subprocess_info struct instead of a new session keyring pointer. This set
of credentials is derived from init_cred and installed on the new process
after it has been cloned.
call_usermodehelper_setup() allocates the new credentials and
call_usermodehelper_freeinfo() discards them if they haven't been used. A
special cred function (prepare_usermodeinfo_creds()) is provided
specifically for call_usermodehelper_setup() to call.
call_usermodehelper_setkeys() adjusts the credentials to sport the
supplied keyring as the new session keyring.
(11) SELinux.
SELinux has a number of changes, in addition to those to support the LSM
interface changes mentioned above:
(a) selinux_setprocattr() no longer does its check for whether the
current ptracer can access processes with the new SID inside the lock
that covers getting the ptracer's SID. Whilst this lock ensures that
the check is done with the ptracer pinned, the result is only valid
until the lock is released, so there's no point doing it inside the
lock.
(12) is_single_threaded().
This function has been extracted from selinux_setprocattr() and put into
a file of its own in the lib/ directory as join_session_keyring() now
wants to use it too.
The code in SELinux just checked to see whether a task shared mm_structs
with other tasks (CLONE_VM), but that isn't good enough. We really want
to know if they're part of the same thread group (CLONE_THREAD).
(13) nfsd.
The NFS server daemon now has to use the COW credentials to set the
credentials it is going to use. It really needs to pass the credentials
down to the functions it calls, but it can't do that until other patches
in this series have been applied.
Signed-off-by: David Howells <dhowells@redhat.com>
Acked-by: James Morris <jmorris@namei.org>
Signed-off-by: James Morris <jmorris@namei.org>
2008-11-14 02:39:23 +03:00
|
|
|
cred, KEY_SEARCH) < 0)
|
2005-06-24 09:00:49 +04:00
|
|
|
continue;
|
2005-04-17 02:20:36 +04:00
|
|
|
|
|
|
|
/* stack the current position */
|
2012-05-11 13:56:56 +04:00
|
|
|
stack[sp].keyring = keyring;
|
2005-06-24 09:00:49 +04:00
|
|
|
stack[sp].keylist = keylist;
|
2005-04-17 02:20:36 +04:00
|
|
|
stack[sp].kix = kix;
|
|
|
|
sp++;
|
|
|
|
|
|
|
|
/* begin again with the new keyring */
|
|
|
|
keyring = key;
|
|
|
|
goto descend;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* the keyring we're looking at was disqualified or didn't contain a
|
|
|
|
* matching key */
|
2005-09-28 20:03:15 +04:00
|
|
|
not_this_keyring:
|
2005-04-17 02:20:36 +04:00
|
|
|
if (sp > 0) {
|
|
|
|
/* resume the processing of a keyring higher up in the tree */
|
|
|
|
sp--;
|
2012-05-11 13:56:56 +04:00
|
|
|
keyring = stack[sp].keyring;
|
2005-06-24 09:00:49 +04:00
|
|
|
keylist = stack[sp].keylist;
|
2005-04-17 02:20:36 +04:00
|
|
|
kix = stack[sp].kix + 1;
|
|
|
|
goto ascend;
|
|
|
|
}
|
|
|
|
|
2005-09-28 20:03:15 +04:00
|
|
|
key_ref = ERR_PTR(err);
|
|
|
|
goto error_2;
|
2005-04-17 02:20:36 +04:00
|
|
|
|
|
|
|
/* we found a viable match */
|
2005-09-28 20:03:15 +04:00
|
|
|
found:
|
2005-04-17 02:20:36 +04:00
|
|
|
atomic_inc(&key->usage);
|
2012-05-11 13:56:56 +04:00
|
|
|
key->last_used_at = now.tv_sec;
|
|
|
|
keyring->last_used_at = now.tv_sec;
|
|
|
|
while (sp > 0)
|
|
|
|
stack[--sp].keyring->last_used_at = now.tv_sec;
|
2005-04-17 02:20:36 +04:00
|
|
|
key_check(key);
|
2005-09-28 20:03:15 +04:00
|
|
|
key_ref = make_key_ref(key, possessed);
|
|
|
|
error_2:
|
2005-06-24 09:00:49 +04:00
|
|
|
rcu_read_unlock();
|
2005-09-28 20:03:15 +04:00
|
|
|
error:
|
|
|
|
return key_ref;
|
2011-01-20 19:38:27 +03:00
|
|
|
}
|
2005-04-17 02:20:36 +04:00
|
|
|
|
2011-01-20 19:38:33 +03:00
|
|
|
/**
|
|
|
|
* keyring_search - Search the supplied keyring tree for a matching key
|
|
|
|
* @keyring: The root of the keyring tree to be searched.
|
|
|
|
* @type: The type of keyring we want to find.
|
|
|
|
* @description: The name of the keyring we want to find.
|
|
|
|
*
|
|
|
|
* As keyring_search_aux() above, but using the current task's credentials and
|
|
|
|
* type's default matching function.
|
2005-04-17 02:20:36 +04:00
|
|
|
*/
|
2005-09-28 20:03:15 +04:00
|
|
|
key_ref_t keyring_search(key_ref_t keyring,
|
|
|
|
struct key_type *type,
|
|
|
|
const char *description)
|
2005-04-17 02:20:36 +04:00
|
|
|
{
|
[PATCH] Keys: Make request-key create an authorisation key
The attached patch makes the following changes:
(1) There's a new special key type called ".request_key_auth".
This is an authorisation key for when one process requests a key and
another process is started to construct it. This type of key cannot be
created by the user; nor can it be requested by kernel services.
Authorisation keys hold two references:
(a) Each refers to a key being constructed. When the key being
constructed is instantiated the authorisation key is revoked,
rendering it of no further use.
(b) The "authorising process". This is either:
(i) the process that called request_key(), or:
(ii) if the process that called request_key() itself had an
authorisation key in its session keyring, then the authorising
process referred to by that authorisation key will also be
referred to by the new authorisation key.
This means that the process that initiated a chain of key requests
will authorise the lot of them, and will, by default, wind up with
the keys obtained from them in its keyrings.
(2) request_key() creates an authorisation key which is then passed to
/sbin/request-key in as part of a new session keyring.
(3) When request_key() is searching for a key to hand back to the caller, if
it comes across an authorisation key in the session keyring of the
calling process, it will also search the keyrings of the process
specified therein and it will use the specified process's credentials
(fsuid, fsgid, groups) to do that rather than the calling process's
credentials.
This allows a process started by /sbin/request-key to find keys belonging
to the authorising process.
(4) A key can be read, even if the process executing KEYCTL_READ doesn't have
direct read or search permission if that key is contained within the
keyrings of a process specified by an authorisation key found within the
calling process's session keyring, and is searchable using the
credentials of the authorising process.
This allows a process started by /sbin/request-key to read keys belonging
to the authorising process.
(5) The magic KEY_SPEC_*_KEYRING key IDs when passed to KEYCTL_INSTANTIATE or
KEYCTL_NEGATE will specify a keyring of the authorising process, rather
than the process doing the instantiation.
(6) One of the process keyrings can be nominated as the default to which
request_key() should attach new keys if not otherwise specified. This is
done with KEYCTL_SET_REQKEY_KEYRING and one of the KEY_REQKEY_DEFL_*
constants. The current setting can also be read using this call.
(7) request_key() is partially interruptible. If it is waiting for another
process to finish constructing a key, it can be interrupted. This permits
a request-key cycle to be broken without recourse to rebooting.
Signed-Off-By: David Howells <dhowells@redhat.com>
Signed-Off-By: Benoit Boissinot <benoit.boissinot@ens-lyon.org>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
2005-06-24 09:00:56 +04:00
|
|
|
if (!type->match)
|
|
|
|
return ERR_PTR(-ENOKEY);
|
|
|
|
|
CRED: Inaugurate COW credentials
Inaugurate copy-on-write credentials management. This uses RCU to manage the
credentials pointer in the task_struct with respect to accesses by other tasks.
A process may only modify its own credentials, and so does not need locking to
access or modify its own credentials.
A mutex (cred_replace_mutex) is added to the task_struct to control the effect
of PTRACE_ATTACHED on credential calculations, particularly with respect to
execve().
With this patch, the contents of an active credentials struct may not be
changed directly; rather a new set of credentials must be prepared, modified
and committed using something like the following sequence of events:
struct cred *new = prepare_creds();
int ret = blah(new);
if (ret < 0) {
abort_creds(new);
return ret;
}
return commit_creds(new);
There are some exceptions to this rule: the keyrings pointed to by the active
credentials may be instantiated - keyrings violate the COW rule as managing
COW keyrings is tricky, given that it is possible for a task to directly alter
the keys in a keyring in use by another task.
To help enforce this, various pointers to sets of credentials, such as those in
the task_struct, are declared const. The purpose of this is compile-time
discouragement of altering credentials through those pointers. Once a set of
credentials has been made public through one of these pointers, it may not be
modified, except under special circumstances:
(1) Its reference count may incremented and decremented.
(2) The keyrings to which it points may be modified, but not replaced.
The only safe way to modify anything else is to create a replacement and commit
using the functions described in Documentation/credentials.txt (which will be
added by a later patch).
This patch and the preceding patches have been tested with the LTP SELinux
testsuite.
This patch makes several logical sets of alteration:
(1) execve().
This now prepares and commits credentials in various places in the
security code rather than altering the current creds directly.
(2) Temporary credential overrides.
do_coredump() and sys_faccessat() now prepare their own credentials and
temporarily override the ones currently on the acting thread, whilst
preventing interference from other threads by holding cred_replace_mutex
on the thread being dumped.
This will be replaced in a future patch by something that hands down the
credentials directly to the functions being called, rather than altering
the task's objective credentials.
(3) LSM interface.
A number of functions have been changed, added or removed:
(*) security_capset_check(), ->capset_check()
(*) security_capset_set(), ->capset_set()
Removed in favour of security_capset().
(*) security_capset(), ->capset()
New. This is passed a pointer to the new creds, a pointer to the old
creds and the proposed capability sets. It should fill in the new
creds or return an error. All pointers, barring the pointer to the
new creds, are now const.
(*) security_bprm_apply_creds(), ->bprm_apply_creds()
Changed; now returns a value, which will cause the process to be
killed if it's an error.
(*) security_task_alloc(), ->task_alloc_security()
Removed in favour of security_prepare_creds().
(*) security_cred_free(), ->cred_free()
New. Free security data attached to cred->security.
(*) security_prepare_creds(), ->cred_prepare()
New. Duplicate any security data attached to cred->security.
(*) security_commit_creds(), ->cred_commit()
New. Apply any security effects for the upcoming installation of new
security by commit_creds().
(*) security_task_post_setuid(), ->task_post_setuid()
Removed in favour of security_task_fix_setuid().
(*) security_task_fix_setuid(), ->task_fix_setuid()
Fix up the proposed new credentials for setuid(). This is used by
cap_set_fix_setuid() to implicitly adjust capabilities in line with
setuid() changes. Changes are made to the new credentials, rather
than the task itself as in security_task_post_setuid().
(*) security_task_reparent_to_init(), ->task_reparent_to_init()
Removed. Instead the task being reparented to init is referred
directly to init's credentials.
NOTE! This results in the loss of some state: SELinux's osid no
longer records the sid of the thread that forked it.
(*) security_key_alloc(), ->key_alloc()
(*) security_key_permission(), ->key_permission()
Changed. These now take cred pointers rather than task pointers to
refer to the security context.
(4) sys_capset().
This has been simplified and uses less locking. The LSM functions it
calls have been merged.
(5) reparent_to_kthreadd().
This gives the current thread the same credentials as init by simply using
commit_thread() to point that way.
(6) __sigqueue_alloc() and switch_uid()
__sigqueue_alloc() can't stop the target task from changing its creds
beneath it, so this function gets a reference to the currently applicable
user_struct which it then passes into the sigqueue struct it returns if
successful.
switch_uid() is now called from commit_creds(), and possibly should be
folded into that. commit_creds() should take care of protecting
__sigqueue_alloc().
(7) [sg]et[ug]id() and co and [sg]et_current_groups.
The set functions now all use prepare_creds(), commit_creds() and
abort_creds() to build and check a new set of credentials before applying
it.
security_task_set[ug]id() is called inside the prepared section. This
guarantees that nothing else will affect the creds until we've finished.
The calling of set_dumpable() has been moved into commit_creds().
Much of the functionality of set_user() has been moved into
commit_creds().
The get functions all simply access the data directly.
(8) security_task_prctl() and cap_task_prctl().
security_task_prctl() has been modified to return -ENOSYS if it doesn't
want to handle a function, or otherwise return the return value directly
rather than through an argument.
Additionally, cap_task_prctl() now prepares a new set of credentials, even
if it doesn't end up using it.
(9) Keyrings.
A number of changes have been made to the keyrings code:
(a) switch_uid_keyring(), copy_keys(), exit_keys() and suid_keys() have
all been dropped and built in to the credentials functions directly.
They may want separating out again later.
(b) key_alloc() and search_process_keyrings() now take a cred pointer
rather than a task pointer to specify the security context.
(c) copy_creds() gives a new thread within the same thread group a new
thread keyring if its parent had one, otherwise it discards the thread
keyring.
(d) The authorisation key now points directly to the credentials to extend
the search into rather pointing to the task that carries them.
(e) Installing thread, process or session keyrings causes a new set of
credentials to be created, even though it's not strictly necessary for
process or session keyrings (they're shared).
(10) Usermode helper.
The usermode helper code now carries a cred struct pointer in its
subprocess_info struct instead of a new session keyring pointer. This set
of credentials is derived from init_cred and installed on the new process
after it has been cloned.
call_usermodehelper_setup() allocates the new credentials and
call_usermodehelper_freeinfo() discards them if they haven't been used. A
special cred function (prepare_usermodeinfo_creds()) is provided
specifically for call_usermodehelper_setup() to call.
call_usermodehelper_setkeys() adjusts the credentials to sport the
supplied keyring as the new session keyring.
(11) SELinux.
SELinux has a number of changes, in addition to those to support the LSM
interface changes mentioned above:
(a) selinux_setprocattr() no longer does its check for whether the
current ptracer can access processes with the new SID inside the lock
that covers getting the ptracer's SID. Whilst this lock ensures that
the check is done with the ptracer pinned, the result is only valid
until the lock is released, so there's no point doing it inside the
lock.
(12) is_single_threaded().
This function has been extracted from selinux_setprocattr() and put into
a file of its own in the lib/ directory as join_session_keyring() now
wants to use it too.
The code in SELinux just checked to see whether a task shared mm_structs
with other tasks (CLONE_VM), but that isn't good enough. We really want
to know if they're part of the same thread group (CLONE_THREAD).
(13) nfsd.
The NFS server daemon now has to use the COW credentials to set the
credentials it is going to use. It really needs to pass the credentials
down to the functions it calls, but it can't do that until other patches
in this series have been applied.
Signed-off-by: David Howells <dhowells@redhat.com>
Acked-by: James Morris <jmorris@namei.org>
Signed-off-by: James Morris <jmorris@namei.org>
2008-11-14 02:39:23 +03:00
|
|
|
return keyring_search_aux(keyring, current->cred,
|
2011-03-11 20:57:23 +03:00
|
|
|
type, description, type->match, false);
|
2011-01-20 19:38:27 +03:00
|
|
|
}
|
2005-04-17 02:20:36 +04:00
|
|
|
EXPORT_SYMBOL(keyring_search);
|
|
|
|
|
|
|
|
/*
|
2011-01-20 19:38:33 +03:00
|
|
|
* Search the given keyring only (no recursion).
|
|
|
|
*
|
|
|
|
* The caller must guarantee that the keyring is a keyring and that the
|
|
|
|
* permission is granted to search the keyring as no check is made here.
|
|
|
|
*
|
|
|
|
* RCU is used to make it unnecessary to lock the keyring key list here.
|
|
|
|
*
|
|
|
|
* Returns a pointer to the found key with usage count incremented if
|
|
|
|
* successful and returns -ENOKEY if not found. Revoked keys and keys not
|
|
|
|
* providing the requested permission are skipped over.
|
|
|
|
*
|
|
|
|
* If successful, the possession indicator is propagated from the keyring ref
|
|
|
|
* to the returned key reference.
|
2005-04-17 02:20:36 +04:00
|
|
|
*/
|
2005-09-28 20:03:15 +04:00
|
|
|
key_ref_t __keyring_search_one(key_ref_t keyring_ref,
|
|
|
|
const struct key_type *ktype,
|
|
|
|
const char *description,
|
|
|
|
key_perm_t perm)
|
2005-04-17 02:20:36 +04:00
|
|
|
{
|
|
|
|
struct keyring_list *klist;
|
2005-09-28 20:03:15 +04:00
|
|
|
unsigned long possessed;
|
|
|
|
struct key *keyring, *key;
|
2012-01-18 00:39:40 +04:00
|
|
|
int nkeys, loop;
|
2005-04-17 02:20:36 +04:00
|
|
|
|
2005-09-28 20:03:15 +04:00
|
|
|
keyring = key_ref_to_ptr(keyring_ref);
|
|
|
|
possessed = is_key_possessed(keyring_ref);
|
|
|
|
|
2005-06-24 09:00:49 +04:00
|
|
|
rcu_read_lock();
|
|
|
|
|
|
|
|
klist = rcu_dereference(keyring->payload.subscriptions);
|
2005-04-17 02:20:36 +04:00
|
|
|
if (klist) {
|
2012-01-18 00:39:40 +04:00
|
|
|
nkeys = klist->nkeys;
|
|
|
|
smp_rmb();
|
|
|
|
for (loop = 0; loop < nkeys ; loop++) {
|
2012-05-11 13:56:56 +04:00
|
|
|
key = rcu_dereference(klist->keys[loop]);
|
2005-04-17 02:20:36 +04:00
|
|
|
if (key->type == ktype &&
|
[PATCH] Keys: Make request-key create an authorisation key
The attached patch makes the following changes:
(1) There's a new special key type called ".request_key_auth".
This is an authorisation key for when one process requests a key and
another process is started to construct it. This type of key cannot be
created by the user; nor can it be requested by kernel services.
Authorisation keys hold two references:
(a) Each refers to a key being constructed. When the key being
constructed is instantiated the authorisation key is revoked,
rendering it of no further use.
(b) The "authorising process". This is either:
(i) the process that called request_key(), or:
(ii) if the process that called request_key() itself had an
authorisation key in its session keyring, then the authorising
process referred to by that authorisation key will also be
referred to by the new authorisation key.
This means that the process that initiated a chain of key requests
will authorise the lot of them, and will, by default, wind up with
the keys obtained from them in its keyrings.
(2) request_key() creates an authorisation key which is then passed to
/sbin/request-key in as part of a new session keyring.
(3) When request_key() is searching for a key to hand back to the caller, if
it comes across an authorisation key in the session keyring of the
calling process, it will also search the keyrings of the process
specified therein and it will use the specified process's credentials
(fsuid, fsgid, groups) to do that rather than the calling process's
credentials.
This allows a process started by /sbin/request-key to find keys belonging
to the authorising process.
(4) A key can be read, even if the process executing KEYCTL_READ doesn't have
direct read or search permission if that key is contained within the
keyrings of a process specified by an authorisation key found within the
calling process's session keyring, and is searchable using the
credentials of the authorising process.
This allows a process started by /sbin/request-key to read keys belonging
to the authorising process.
(5) The magic KEY_SPEC_*_KEYRING key IDs when passed to KEYCTL_INSTANTIATE or
KEYCTL_NEGATE will specify a keyring of the authorising process, rather
than the process doing the instantiation.
(6) One of the process keyrings can be nominated as the default to which
request_key() should attach new keys if not otherwise specified. This is
done with KEYCTL_SET_REQKEY_KEYRING and one of the KEY_REQKEY_DEFL_*
constants. The current setting can also be read using this call.
(7) request_key() is partially interruptible. If it is waiting for another
process to finish constructing a key, it can be interrupted. This permits
a request-key cycle to be broken without recourse to rebooting.
Signed-Off-By: David Howells <dhowells@redhat.com>
Signed-Off-By: Benoit Boissinot <benoit.boissinot@ens-lyon.org>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
2005-06-24 09:00:56 +04:00
|
|
|
(!key->type->match ||
|
|
|
|
key->type->match(key, description)) &&
|
2005-09-28 20:03:15 +04:00
|
|
|
key_permission(make_key_ref(key, possessed),
|
2005-12-01 11:51:18 +03:00
|
|
|
perm) == 0 &&
|
2012-05-11 13:56:56 +04:00
|
|
|
!(key->flags & ((1 << KEY_FLAG_INVALIDATED) |
|
|
|
|
(1 << KEY_FLAG_REVOKED)))
|
2005-04-17 02:20:36 +04:00
|
|
|
)
|
|
|
|
goto found;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-09-28 20:03:15 +04:00
|
|
|
rcu_read_unlock();
|
|
|
|
return ERR_PTR(-ENOKEY);
|
2005-04-17 02:20:36 +04:00
|
|
|
|
2010-04-21 11:02:11 +04:00
|
|
|
found:
|
2005-04-17 02:20:36 +04:00
|
|
|
atomic_inc(&key->usage);
|
2012-05-11 13:56:56 +04:00
|
|
|
keyring->last_used_at = key->last_used_at =
|
|
|
|
current_kernel_time().tv_sec;
|
2005-06-24 09:00:49 +04:00
|
|
|
rcu_read_unlock();
|
2005-09-28 20:03:15 +04:00
|
|
|
return make_key_ref(key, possessed);
|
2011-01-20 19:38:27 +03:00
|
|
|
}
|
2005-04-17 02:20:36 +04:00
|
|
|
|
|
|
|
/*
|
2011-01-20 19:38:33 +03:00
|
|
|
* Find a keyring with the specified name.
|
|
|
|
*
|
|
|
|
* All named keyrings in the current user namespace are searched, provided they
|
|
|
|
* grant Search permission directly to the caller (unless this check is
|
|
|
|
* skipped). Keyrings whose usage points have reached zero or who have been
|
|
|
|
* revoked are skipped.
|
|
|
|
*
|
|
|
|
* Returns a pointer to the keyring with the keyring's refcount having being
|
|
|
|
* incremented on success. -ENOKEY is returned if a key could not be found.
|
2005-04-17 02:20:36 +04:00
|
|
|
*/
|
2008-04-29 12:01:31 +04:00
|
|
|
struct key *find_keyring_by_name(const char *name, bool skip_perm_check)
|
2005-04-17 02:20:36 +04:00
|
|
|
{
|
|
|
|
struct key *keyring;
|
|
|
|
int bucket;
|
|
|
|
|
|
|
|
if (!name)
|
KEYS: find_keyring_by_name() can gain access to a freed keyring
find_keyring_by_name() can gain access to a keyring that has had its reference
count reduced to zero, and is thus ready to be freed. This then allows the
dead keyring to be brought back into use whilst it is being destroyed.
The following timeline illustrates the process:
|(cleaner) (user)
|
| free_user(user) sys_keyctl()
| | |
| key_put(user->session_keyring) keyctl_get_keyring_ID()
| || //=> keyring->usage = 0 |
| |schedule_work(&key_cleanup_task) lookup_user_key()
| || |
| kmem_cache_free(,user) |
| . |[KEY_SPEC_USER_KEYRING]
| . install_user_keyrings()
| . ||
| key_cleanup() [<= worker_thread()] ||
| | ||
| [spin_lock(&key_serial_lock)] |[mutex_lock(&key_user_keyr..mutex)]
| | ||
| atomic_read() == 0 ||
| |{ rb_ease(&key->serial_node,) } ||
| | ||
| [spin_unlock(&key_serial_lock)] |find_keyring_by_name()
| | |||
| keyring_destroy(keyring) ||[read_lock(&keyring_name_lock)]
| || |||
| |[write_lock(&keyring_name_lock)] ||atomic_inc(&keyring->usage)
| |. ||| *** GET freeing keyring ***
| |. ||[read_unlock(&keyring_name_lock)]
| || ||
| |list_del() |[mutex_unlock(&key_user_k..mutex)]
| || |
| |[write_unlock(&keyring_name_lock)] ** INVALID keyring is returned **
| | .
| kmem_cache_free(,keyring) .
| .
| atomic_dec(&keyring->usage)
v *** DESTROYED ***
TIME
If CONFIG_SLUB_DEBUG=y then we may see the following message generated:
=============================================================================
BUG key_jar: Poison overwritten
-----------------------------------------------------------------------------
INFO: 0xffff880197a7e200-0xffff880197a7e200. First byte 0x6a instead of 0x6b
INFO: Allocated in key_alloc+0x10b/0x35f age=25 cpu=1 pid=5086
INFO: Freed in key_cleanup+0xd0/0xd5 age=12 cpu=1 pid=10
INFO: Slab 0xffffea000592cb90 objects=16 used=2 fp=0xffff880197a7e200 flags=0x200000000000c3
INFO: Object 0xffff880197a7e200 @offset=512 fp=0xffff880197a7e300
Bytes b4 0xffff880197a7e1f0: 5a 5a 5a 5a 5a 5a 5a 5a 5a 5a 5a 5a 5a 5a 5a 5a ZZZZZZZZZZZZZZZZ
Object 0xffff880197a7e200: 6a 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b jkkkkkkkkkkkkkkk
Alternatively, we may see a system panic happen, such as:
BUG: unable to handle kernel NULL pointer dereference at 0000000000000001
IP: [<ffffffff810e61a3>] kmem_cache_alloc+0x5b/0xe9
PGD 6b2b4067 PUD 6a80d067 PMD 0
Oops: 0000 [#1] SMP
last sysfs file: /sys/kernel/kexec_crash_loaded
CPU 1
...
Pid: 31245, comm: su Not tainted 2.6.34-rc5-nofixed-nodebug #2 D2089/PRIMERGY
RIP: 0010:[<ffffffff810e61a3>] [<ffffffff810e61a3>] kmem_cache_alloc+0x5b/0xe9
RSP: 0018:ffff88006af3bd98 EFLAGS: 00010002
RAX: 0000000000000000 RBX: 0000000000000001 RCX: ffff88007d19900b
RDX: 0000000100000000 RSI: 00000000000080d0 RDI: ffffffff81828430
RBP: ffffffff81828430 R08: ffff88000a293750 R09: 0000000000000000
R10: 0000000000000001 R11: 0000000000100000 R12: 00000000000080d0
R13: 00000000000080d0 R14: 0000000000000296 R15: ffffffff810f20ce
FS: 00007f97116bc700(0000) GS:ffff88000a280000(0000) knlGS:0000000000000000
CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033
CR2: 0000000000000001 CR3: 000000006a91c000 CR4: 00000000000006e0
DR0: 0000000000000000 DR1: 0000000000000000 DR2: 0000000000000000
DR3: 0000000000000000 DR6: 00000000ffff0ff0 DR7: 0000000000000400
Process su (pid: 31245, threadinfo ffff88006af3a000, task ffff8800374414c0)
Stack:
0000000512e0958e 0000000000008000 ffff880037f8d180 0000000000000001
0000000000000000 0000000000008001 ffff88007d199000 ffffffff810f20ce
0000000000008000 ffff88006af3be48 0000000000000024 ffffffff810face3
Call Trace:
[<ffffffff810f20ce>] ? get_empty_filp+0x70/0x12f
[<ffffffff810face3>] ? do_filp_open+0x145/0x590
[<ffffffff810ce208>] ? tlb_finish_mmu+0x2a/0x33
[<ffffffff810ce43c>] ? unmap_region+0xd3/0xe2
[<ffffffff810e4393>] ? virt_to_head_page+0x9/0x2d
[<ffffffff81103916>] ? alloc_fd+0x69/0x10e
[<ffffffff810ef4ed>] ? do_sys_open+0x56/0xfc
[<ffffffff81008a02>] ? system_call_fastpath+0x16/0x1b
Code: 0f 1f 44 00 00 49 89 c6 fa 66 0f 1f 44 00 00 65 4c 8b 04 25 60 e8 00 00 48 8b 45 00 49 01 c0 49 8b 18 48 85 db 74 0d 48 63 45 18 <48> 8b 04 03 49 89 00 eb 14 4c 89 f9 83 ca ff 44 89 e6 48 89 ef
RIP [<ffffffff810e61a3>] kmem_cache_alloc+0x5b/0xe9
This problem is that find_keyring_by_name does not confirm that the keyring is
valid before accepting it.
Skipping keyrings that have been reduced to a zero count seems the way to go.
To this end, use atomic_inc_not_zero() to increment the usage count and skip
the candidate keyring if that returns false.
The following script _may_ cause the bug to happen, but there's no guarantee
as the window of opportunity is small:
#!/bin/sh
LOOP=100000
USER=dummy_user
/bin/su -c "exit;" $USER || { /usr/sbin/adduser -m $USER; add=1; }
for ((i=0; i<LOOP; i++))
do
/bin/su -c "echo '$i' > /dev/null" $USER
done
(( add == 1 )) && /usr/sbin/userdel -r $USER
exit
Note that the nominated user must not be in use.
An alternative way of testing this may be:
for ((i=0; i<100000; i++))
do
keyctl session foo /bin/true || break
done >&/dev/null
as that uses a keyring named "foo" rather than relying on the user and
user-session named keyrings.
Reported-by: Toshiyuki Okajima <toshi.okajima@jp.fujitsu.com>
Signed-off-by: David Howells <dhowells@redhat.com>
Tested-by: Toshiyuki Okajima <toshi.okajima@jp.fujitsu.com>
Acked-by: Serge Hallyn <serue@us.ibm.com>
Signed-off-by: James Morris <jmorris@namei.org>
2010-04-30 17:32:13 +04:00
|
|
|
return ERR_PTR(-EINVAL);
|
2005-04-17 02:20:36 +04:00
|
|
|
|
|
|
|
bucket = keyring_hash(name);
|
|
|
|
|
|
|
|
read_lock(&keyring_name_lock);
|
|
|
|
|
|
|
|
if (keyring_name_hash[bucket].next) {
|
|
|
|
/* search this hash bucket for a keyring with a matching name
|
|
|
|
* that's readable and that hasn't been revoked */
|
|
|
|
list_for_each_entry(keyring,
|
|
|
|
&keyring_name_hash[bucket],
|
|
|
|
type_data.link
|
|
|
|
) {
|
2009-02-27 03:27:55 +03:00
|
|
|
if (keyring->user->user_ns != current_user_ns())
|
|
|
|
continue;
|
|
|
|
|
2005-06-24 09:00:49 +04:00
|
|
|
if (test_bit(KEY_FLAG_REVOKED, &keyring->flags))
|
2005-04-17 02:20:36 +04:00
|
|
|
continue;
|
|
|
|
|
|
|
|
if (strcmp(keyring->description, name) != 0)
|
|
|
|
continue;
|
|
|
|
|
2008-04-29 12:01:31 +04:00
|
|
|
if (!skip_perm_check &&
|
|
|
|
key_permission(make_key_ref(keyring, 0),
|
2005-11-07 11:59:30 +03:00
|
|
|
KEY_SEARCH) < 0)
|
2005-04-17 02:20:36 +04:00
|
|
|
continue;
|
|
|
|
|
KEYS: find_keyring_by_name() can gain access to a freed keyring
find_keyring_by_name() can gain access to a keyring that has had its reference
count reduced to zero, and is thus ready to be freed. This then allows the
dead keyring to be brought back into use whilst it is being destroyed.
The following timeline illustrates the process:
|(cleaner) (user)
|
| free_user(user) sys_keyctl()
| | |
| key_put(user->session_keyring) keyctl_get_keyring_ID()
| || //=> keyring->usage = 0 |
| |schedule_work(&key_cleanup_task) lookup_user_key()
| || |
| kmem_cache_free(,user) |
| . |[KEY_SPEC_USER_KEYRING]
| . install_user_keyrings()
| . ||
| key_cleanup() [<= worker_thread()] ||
| | ||
| [spin_lock(&key_serial_lock)] |[mutex_lock(&key_user_keyr..mutex)]
| | ||
| atomic_read() == 0 ||
| |{ rb_ease(&key->serial_node,) } ||
| | ||
| [spin_unlock(&key_serial_lock)] |find_keyring_by_name()
| | |||
| keyring_destroy(keyring) ||[read_lock(&keyring_name_lock)]
| || |||
| |[write_lock(&keyring_name_lock)] ||atomic_inc(&keyring->usage)
| |. ||| *** GET freeing keyring ***
| |. ||[read_unlock(&keyring_name_lock)]
| || ||
| |list_del() |[mutex_unlock(&key_user_k..mutex)]
| || |
| |[write_unlock(&keyring_name_lock)] ** INVALID keyring is returned **
| | .
| kmem_cache_free(,keyring) .
| .
| atomic_dec(&keyring->usage)
v *** DESTROYED ***
TIME
If CONFIG_SLUB_DEBUG=y then we may see the following message generated:
=============================================================================
BUG key_jar: Poison overwritten
-----------------------------------------------------------------------------
INFO: 0xffff880197a7e200-0xffff880197a7e200. First byte 0x6a instead of 0x6b
INFO: Allocated in key_alloc+0x10b/0x35f age=25 cpu=1 pid=5086
INFO: Freed in key_cleanup+0xd0/0xd5 age=12 cpu=1 pid=10
INFO: Slab 0xffffea000592cb90 objects=16 used=2 fp=0xffff880197a7e200 flags=0x200000000000c3
INFO: Object 0xffff880197a7e200 @offset=512 fp=0xffff880197a7e300
Bytes b4 0xffff880197a7e1f0: 5a 5a 5a 5a 5a 5a 5a 5a 5a 5a 5a 5a 5a 5a 5a 5a ZZZZZZZZZZZZZZZZ
Object 0xffff880197a7e200: 6a 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b jkkkkkkkkkkkkkkk
Alternatively, we may see a system panic happen, such as:
BUG: unable to handle kernel NULL pointer dereference at 0000000000000001
IP: [<ffffffff810e61a3>] kmem_cache_alloc+0x5b/0xe9
PGD 6b2b4067 PUD 6a80d067 PMD 0
Oops: 0000 [#1] SMP
last sysfs file: /sys/kernel/kexec_crash_loaded
CPU 1
...
Pid: 31245, comm: su Not tainted 2.6.34-rc5-nofixed-nodebug #2 D2089/PRIMERGY
RIP: 0010:[<ffffffff810e61a3>] [<ffffffff810e61a3>] kmem_cache_alloc+0x5b/0xe9
RSP: 0018:ffff88006af3bd98 EFLAGS: 00010002
RAX: 0000000000000000 RBX: 0000000000000001 RCX: ffff88007d19900b
RDX: 0000000100000000 RSI: 00000000000080d0 RDI: ffffffff81828430
RBP: ffffffff81828430 R08: ffff88000a293750 R09: 0000000000000000
R10: 0000000000000001 R11: 0000000000100000 R12: 00000000000080d0
R13: 00000000000080d0 R14: 0000000000000296 R15: ffffffff810f20ce
FS: 00007f97116bc700(0000) GS:ffff88000a280000(0000) knlGS:0000000000000000
CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033
CR2: 0000000000000001 CR3: 000000006a91c000 CR4: 00000000000006e0
DR0: 0000000000000000 DR1: 0000000000000000 DR2: 0000000000000000
DR3: 0000000000000000 DR6: 00000000ffff0ff0 DR7: 0000000000000400
Process su (pid: 31245, threadinfo ffff88006af3a000, task ffff8800374414c0)
Stack:
0000000512e0958e 0000000000008000 ffff880037f8d180 0000000000000001
0000000000000000 0000000000008001 ffff88007d199000 ffffffff810f20ce
0000000000008000 ffff88006af3be48 0000000000000024 ffffffff810face3
Call Trace:
[<ffffffff810f20ce>] ? get_empty_filp+0x70/0x12f
[<ffffffff810face3>] ? do_filp_open+0x145/0x590
[<ffffffff810ce208>] ? tlb_finish_mmu+0x2a/0x33
[<ffffffff810ce43c>] ? unmap_region+0xd3/0xe2
[<ffffffff810e4393>] ? virt_to_head_page+0x9/0x2d
[<ffffffff81103916>] ? alloc_fd+0x69/0x10e
[<ffffffff810ef4ed>] ? do_sys_open+0x56/0xfc
[<ffffffff81008a02>] ? system_call_fastpath+0x16/0x1b
Code: 0f 1f 44 00 00 49 89 c6 fa 66 0f 1f 44 00 00 65 4c 8b 04 25 60 e8 00 00 48 8b 45 00 49 01 c0 49 8b 18 48 85 db 74 0d 48 63 45 18 <48> 8b 04 03 49 89 00 eb 14 4c 89 f9 83 ca ff 44 89 e6 48 89 ef
RIP [<ffffffff810e61a3>] kmem_cache_alloc+0x5b/0xe9
This problem is that find_keyring_by_name does not confirm that the keyring is
valid before accepting it.
Skipping keyrings that have been reduced to a zero count seems the way to go.
To this end, use atomic_inc_not_zero() to increment the usage count and skip
the candidate keyring if that returns false.
The following script _may_ cause the bug to happen, but there's no guarantee
as the window of opportunity is small:
#!/bin/sh
LOOP=100000
USER=dummy_user
/bin/su -c "exit;" $USER || { /usr/sbin/adduser -m $USER; add=1; }
for ((i=0; i<LOOP; i++))
do
/bin/su -c "echo '$i' > /dev/null" $USER
done
(( add == 1 )) && /usr/sbin/userdel -r $USER
exit
Note that the nominated user must not be in use.
An alternative way of testing this may be:
for ((i=0; i<100000; i++))
do
keyctl session foo /bin/true || break
done >&/dev/null
as that uses a keyring named "foo" rather than relying on the user and
user-session named keyrings.
Reported-by: Toshiyuki Okajima <toshi.okajima@jp.fujitsu.com>
Signed-off-by: David Howells <dhowells@redhat.com>
Tested-by: Toshiyuki Okajima <toshi.okajima@jp.fujitsu.com>
Acked-by: Serge Hallyn <serue@us.ibm.com>
Signed-off-by: James Morris <jmorris@namei.org>
2010-04-30 17:32:13 +04:00
|
|
|
/* we've got a match but we might end up racing with
|
|
|
|
* key_cleanup() if the keyring is currently 'dead'
|
|
|
|
* (ie. it has a zero usage count) */
|
|
|
|
if (!atomic_inc_not_zero(&keyring->usage))
|
|
|
|
continue;
|
2012-05-11 13:56:56 +04:00
|
|
|
keyring->last_used_at = current_kernel_time().tv_sec;
|
KEYS: find_keyring_by_name() can gain access to a freed keyring
find_keyring_by_name() can gain access to a keyring that has had its reference
count reduced to zero, and is thus ready to be freed. This then allows the
dead keyring to be brought back into use whilst it is being destroyed.
The following timeline illustrates the process:
|(cleaner) (user)
|
| free_user(user) sys_keyctl()
| | |
| key_put(user->session_keyring) keyctl_get_keyring_ID()
| || //=> keyring->usage = 0 |
| |schedule_work(&key_cleanup_task) lookup_user_key()
| || |
| kmem_cache_free(,user) |
| . |[KEY_SPEC_USER_KEYRING]
| . install_user_keyrings()
| . ||
| key_cleanup() [<= worker_thread()] ||
| | ||
| [spin_lock(&key_serial_lock)] |[mutex_lock(&key_user_keyr..mutex)]
| | ||
| atomic_read() == 0 ||
| |{ rb_ease(&key->serial_node,) } ||
| | ||
| [spin_unlock(&key_serial_lock)] |find_keyring_by_name()
| | |||
| keyring_destroy(keyring) ||[read_lock(&keyring_name_lock)]
| || |||
| |[write_lock(&keyring_name_lock)] ||atomic_inc(&keyring->usage)
| |. ||| *** GET freeing keyring ***
| |. ||[read_unlock(&keyring_name_lock)]
| || ||
| |list_del() |[mutex_unlock(&key_user_k..mutex)]
| || |
| |[write_unlock(&keyring_name_lock)] ** INVALID keyring is returned **
| | .
| kmem_cache_free(,keyring) .
| .
| atomic_dec(&keyring->usage)
v *** DESTROYED ***
TIME
If CONFIG_SLUB_DEBUG=y then we may see the following message generated:
=============================================================================
BUG key_jar: Poison overwritten
-----------------------------------------------------------------------------
INFO: 0xffff880197a7e200-0xffff880197a7e200. First byte 0x6a instead of 0x6b
INFO: Allocated in key_alloc+0x10b/0x35f age=25 cpu=1 pid=5086
INFO: Freed in key_cleanup+0xd0/0xd5 age=12 cpu=1 pid=10
INFO: Slab 0xffffea000592cb90 objects=16 used=2 fp=0xffff880197a7e200 flags=0x200000000000c3
INFO: Object 0xffff880197a7e200 @offset=512 fp=0xffff880197a7e300
Bytes b4 0xffff880197a7e1f0: 5a 5a 5a 5a 5a 5a 5a 5a 5a 5a 5a 5a 5a 5a 5a 5a ZZZZZZZZZZZZZZZZ
Object 0xffff880197a7e200: 6a 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b jkkkkkkkkkkkkkkk
Alternatively, we may see a system panic happen, such as:
BUG: unable to handle kernel NULL pointer dereference at 0000000000000001
IP: [<ffffffff810e61a3>] kmem_cache_alloc+0x5b/0xe9
PGD 6b2b4067 PUD 6a80d067 PMD 0
Oops: 0000 [#1] SMP
last sysfs file: /sys/kernel/kexec_crash_loaded
CPU 1
...
Pid: 31245, comm: su Not tainted 2.6.34-rc5-nofixed-nodebug #2 D2089/PRIMERGY
RIP: 0010:[<ffffffff810e61a3>] [<ffffffff810e61a3>] kmem_cache_alloc+0x5b/0xe9
RSP: 0018:ffff88006af3bd98 EFLAGS: 00010002
RAX: 0000000000000000 RBX: 0000000000000001 RCX: ffff88007d19900b
RDX: 0000000100000000 RSI: 00000000000080d0 RDI: ffffffff81828430
RBP: ffffffff81828430 R08: ffff88000a293750 R09: 0000000000000000
R10: 0000000000000001 R11: 0000000000100000 R12: 00000000000080d0
R13: 00000000000080d0 R14: 0000000000000296 R15: ffffffff810f20ce
FS: 00007f97116bc700(0000) GS:ffff88000a280000(0000) knlGS:0000000000000000
CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033
CR2: 0000000000000001 CR3: 000000006a91c000 CR4: 00000000000006e0
DR0: 0000000000000000 DR1: 0000000000000000 DR2: 0000000000000000
DR3: 0000000000000000 DR6: 00000000ffff0ff0 DR7: 0000000000000400
Process su (pid: 31245, threadinfo ffff88006af3a000, task ffff8800374414c0)
Stack:
0000000512e0958e 0000000000008000 ffff880037f8d180 0000000000000001
0000000000000000 0000000000008001 ffff88007d199000 ffffffff810f20ce
0000000000008000 ffff88006af3be48 0000000000000024 ffffffff810face3
Call Trace:
[<ffffffff810f20ce>] ? get_empty_filp+0x70/0x12f
[<ffffffff810face3>] ? do_filp_open+0x145/0x590
[<ffffffff810ce208>] ? tlb_finish_mmu+0x2a/0x33
[<ffffffff810ce43c>] ? unmap_region+0xd3/0xe2
[<ffffffff810e4393>] ? virt_to_head_page+0x9/0x2d
[<ffffffff81103916>] ? alloc_fd+0x69/0x10e
[<ffffffff810ef4ed>] ? do_sys_open+0x56/0xfc
[<ffffffff81008a02>] ? system_call_fastpath+0x16/0x1b
Code: 0f 1f 44 00 00 49 89 c6 fa 66 0f 1f 44 00 00 65 4c 8b 04 25 60 e8 00 00 48 8b 45 00 49 01 c0 49 8b 18 48 85 db 74 0d 48 63 45 18 <48> 8b 04 03 49 89 00 eb 14 4c 89 f9 83 ca ff 44 89 e6 48 89 ef
RIP [<ffffffff810e61a3>] kmem_cache_alloc+0x5b/0xe9
This problem is that find_keyring_by_name does not confirm that the keyring is
valid before accepting it.
Skipping keyrings that have been reduced to a zero count seems the way to go.
To this end, use atomic_inc_not_zero() to increment the usage count and skip
the candidate keyring if that returns false.
The following script _may_ cause the bug to happen, but there's no guarantee
as the window of opportunity is small:
#!/bin/sh
LOOP=100000
USER=dummy_user
/bin/su -c "exit;" $USER || { /usr/sbin/adduser -m $USER; add=1; }
for ((i=0; i<LOOP; i++))
do
/bin/su -c "echo '$i' > /dev/null" $USER
done
(( add == 1 )) && /usr/sbin/userdel -r $USER
exit
Note that the nominated user must not be in use.
An alternative way of testing this may be:
for ((i=0; i<100000; i++))
do
keyctl session foo /bin/true || break
done >&/dev/null
as that uses a keyring named "foo" rather than relying on the user and
user-session named keyrings.
Reported-by: Toshiyuki Okajima <toshi.okajima@jp.fujitsu.com>
Signed-off-by: David Howells <dhowells@redhat.com>
Tested-by: Toshiyuki Okajima <toshi.okajima@jp.fujitsu.com>
Acked-by: Serge Hallyn <serue@us.ibm.com>
Signed-off-by: James Morris <jmorris@namei.org>
2010-04-30 17:32:13 +04:00
|
|
|
goto out;
|
2005-04-17 02:20:36 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
keyring = ERR_PTR(-ENOKEY);
|
KEYS: find_keyring_by_name() can gain access to a freed keyring
find_keyring_by_name() can gain access to a keyring that has had its reference
count reduced to zero, and is thus ready to be freed. This then allows the
dead keyring to be brought back into use whilst it is being destroyed.
The following timeline illustrates the process:
|(cleaner) (user)
|
| free_user(user) sys_keyctl()
| | |
| key_put(user->session_keyring) keyctl_get_keyring_ID()
| || //=> keyring->usage = 0 |
| |schedule_work(&key_cleanup_task) lookup_user_key()
| || |
| kmem_cache_free(,user) |
| . |[KEY_SPEC_USER_KEYRING]
| . install_user_keyrings()
| . ||
| key_cleanup() [<= worker_thread()] ||
| | ||
| [spin_lock(&key_serial_lock)] |[mutex_lock(&key_user_keyr..mutex)]
| | ||
| atomic_read() == 0 ||
| |{ rb_ease(&key->serial_node,) } ||
| | ||
| [spin_unlock(&key_serial_lock)] |find_keyring_by_name()
| | |||
| keyring_destroy(keyring) ||[read_lock(&keyring_name_lock)]
| || |||
| |[write_lock(&keyring_name_lock)] ||atomic_inc(&keyring->usage)
| |. ||| *** GET freeing keyring ***
| |. ||[read_unlock(&keyring_name_lock)]
| || ||
| |list_del() |[mutex_unlock(&key_user_k..mutex)]
| || |
| |[write_unlock(&keyring_name_lock)] ** INVALID keyring is returned **
| | .
| kmem_cache_free(,keyring) .
| .
| atomic_dec(&keyring->usage)
v *** DESTROYED ***
TIME
If CONFIG_SLUB_DEBUG=y then we may see the following message generated:
=============================================================================
BUG key_jar: Poison overwritten
-----------------------------------------------------------------------------
INFO: 0xffff880197a7e200-0xffff880197a7e200. First byte 0x6a instead of 0x6b
INFO: Allocated in key_alloc+0x10b/0x35f age=25 cpu=1 pid=5086
INFO: Freed in key_cleanup+0xd0/0xd5 age=12 cpu=1 pid=10
INFO: Slab 0xffffea000592cb90 objects=16 used=2 fp=0xffff880197a7e200 flags=0x200000000000c3
INFO: Object 0xffff880197a7e200 @offset=512 fp=0xffff880197a7e300
Bytes b4 0xffff880197a7e1f0: 5a 5a 5a 5a 5a 5a 5a 5a 5a 5a 5a 5a 5a 5a 5a 5a ZZZZZZZZZZZZZZZZ
Object 0xffff880197a7e200: 6a 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b jkkkkkkkkkkkkkkk
Alternatively, we may see a system panic happen, such as:
BUG: unable to handle kernel NULL pointer dereference at 0000000000000001
IP: [<ffffffff810e61a3>] kmem_cache_alloc+0x5b/0xe9
PGD 6b2b4067 PUD 6a80d067 PMD 0
Oops: 0000 [#1] SMP
last sysfs file: /sys/kernel/kexec_crash_loaded
CPU 1
...
Pid: 31245, comm: su Not tainted 2.6.34-rc5-nofixed-nodebug #2 D2089/PRIMERGY
RIP: 0010:[<ffffffff810e61a3>] [<ffffffff810e61a3>] kmem_cache_alloc+0x5b/0xe9
RSP: 0018:ffff88006af3bd98 EFLAGS: 00010002
RAX: 0000000000000000 RBX: 0000000000000001 RCX: ffff88007d19900b
RDX: 0000000100000000 RSI: 00000000000080d0 RDI: ffffffff81828430
RBP: ffffffff81828430 R08: ffff88000a293750 R09: 0000000000000000
R10: 0000000000000001 R11: 0000000000100000 R12: 00000000000080d0
R13: 00000000000080d0 R14: 0000000000000296 R15: ffffffff810f20ce
FS: 00007f97116bc700(0000) GS:ffff88000a280000(0000) knlGS:0000000000000000
CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033
CR2: 0000000000000001 CR3: 000000006a91c000 CR4: 00000000000006e0
DR0: 0000000000000000 DR1: 0000000000000000 DR2: 0000000000000000
DR3: 0000000000000000 DR6: 00000000ffff0ff0 DR7: 0000000000000400
Process su (pid: 31245, threadinfo ffff88006af3a000, task ffff8800374414c0)
Stack:
0000000512e0958e 0000000000008000 ffff880037f8d180 0000000000000001
0000000000000000 0000000000008001 ffff88007d199000 ffffffff810f20ce
0000000000008000 ffff88006af3be48 0000000000000024 ffffffff810face3
Call Trace:
[<ffffffff810f20ce>] ? get_empty_filp+0x70/0x12f
[<ffffffff810face3>] ? do_filp_open+0x145/0x590
[<ffffffff810ce208>] ? tlb_finish_mmu+0x2a/0x33
[<ffffffff810ce43c>] ? unmap_region+0xd3/0xe2
[<ffffffff810e4393>] ? virt_to_head_page+0x9/0x2d
[<ffffffff81103916>] ? alloc_fd+0x69/0x10e
[<ffffffff810ef4ed>] ? do_sys_open+0x56/0xfc
[<ffffffff81008a02>] ? system_call_fastpath+0x16/0x1b
Code: 0f 1f 44 00 00 49 89 c6 fa 66 0f 1f 44 00 00 65 4c 8b 04 25 60 e8 00 00 48 8b 45 00 49 01 c0 49 8b 18 48 85 db 74 0d 48 63 45 18 <48> 8b 04 03 49 89 00 eb 14 4c 89 f9 83 ca ff 44 89 e6 48 89 ef
RIP [<ffffffff810e61a3>] kmem_cache_alloc+0x5b/0xe9
This problem is that find_keyring_by_name does not confirm that the keyring is
valid before accepting it.
Skipping keyrings that have been reduced to a zero count seems the way to go.
To this end, use atomic_inc_not_zero() to increment the usage count and skip
the candidate keyring if that returns false.
The following script _may_ cause the bug to happen, but there's no guarantee
as the window of opportunity is small:
#!/bin/sh
LOOP=100000
USER=dummy_user
/bin/su -c "exit;" $USER || { /usr/sbin/adduser -m $USER; add=1; }
for ((i=0; i<LOOP; i++))
do
/bin/su -c "echo '$i' > /dev/null" $USER
done
(( add == 1 )) && /usr/sbin/userdel -r $USER
exit
Note that the nominated user must not be in use.
An alternative way of testing this may be:
for ((i=0; i<100000; i++))
do
keyctl session foo /bin/true || break
done >&/dev/null
as that uses a keyring named "foo" rather than relying on the user and
user-session named keyrings.
Reported-by: Toshiyuki Okajima <toshi.okajima@jp.fujitsu.com>
Signed-off-by: David Howells <dhowells@redhat.com>
Tested-by: Toshiyuki Okajima <toshi.okajima@jp.fujitsu.com>
Acked-by: Serge Hallyn <serue@us.ibm.com>
Signed-off-by: James Morris <jmorris@namei.org>
2010-04-30 17:32:13 +04:00
|
|
|
out:
|
|
|
|
read_unlock(&keyring_name_lock);
|
2005-04-17 02:20:36 +04:00
|
|
|
return keyring;
|
2011-01-20 19:38:27 +03:00
|
|
|
}
|
2005-04-17 02:20:36 +04:00
|
|
|
|
|
|
|
/*
|
2011-01-20 19:38:33 +03:00
|
|
|
* See if a cycle will will be created by inserting acyclic tree B in acyclic
|
|
|
|
* tree A at the topmost level (ie: as a direct child of A).
|
|
|
|
*
|
|
|
|
* Since we are adding B to A at the top level, checking for cycles should just
|
|
|
|
* be a matter of seeing if node A is somewhere in tree B.
|
2005-04-17 02:20:36 +04:00
|
|
|
*/
|
|
|
|
static int keyring_detect_cycle(struct key *A, struct key *B)
|
|
|
|
{
|
|
|
|
struct {
|
2005-06-24 09:00:49 +04:00
|
|
|
struct keyring_list *keylist;
|
2005-04-17 02:20:36 +04:00
|
|
|
int kix;
|
|
|
|
} stack[KEYRING_SEARCH_MAX_DEPTH];
|
|
|
|
|
|
|
|
struct keyring_list *keylist;
|
|
|
|
struct key *subtree, *key;
|
2012-01-18 00:39:40 +04:00
|
|
|
int sp, nkeys, kix, ret;
|
2005-04-17 02:20:36 +04:00
|
|
|
|
2005-06-24 09:00:49 +04:00
|
|
|
rcu_read_lock();
|
|
|
|
|
2005-04-17 02:20:36 +04:00
|
|
|
ret = -EDEADLK;
|
|
|
|
if (A == B)
|
2005-06-24 09:00:49 +04:00
|
|
|
goto cycle_detected;
|
2005-04-17 02:20:36 +04:00
|
|
|
|
|
|
|
subtree = B;
|
|
|
|
sp = 0;
|
|
|
|
|
|
|
|
/* start processing a new keyring */
|
2010-04-21 11:02:11 +04:00
|
|
|
descend:
|
2005-06-24 09:00:49 +04:00
|
|
|
if (test_bit(KEY_FLAG_REVOKED, &subtree->flags))
|
2005-04-17 02:20:36 +04:00
|
|
|
goto not_this_keyring;
|
|
|
|
|
2005-06-24 09:00:49 +04:00
|
|
|
keylist = rcu_dereference(subtree->payload.subscriptions);
|
2005-04-17 02:20:36 +04:00
|
|
|
if (!keylist)
|
|
|
|
goto not_this_keyring;
|
|
|
|
kix = 0;
|
|
|
|
|
2010-04-21 11:02:11 +04:00
|
|
|
ascend:
|
2005-04-17 02:20:36 +04:00
|
|
|
/* iterate through the remaining keys in this keyring */
|
2012-01-18 00:39:40 +04:00
|
|
|
nkeys = keylist->nkeys;
|
|
|
|
smp_rmb();
|
|
|
|
for (; kix < nkeys; kix++) {
|
2012-05-11 13:56:56 +04:00
|
|
|
key = rcu_dereference(keylist->keys[kix]);
|
2005-04-17 02:20:36 +04:00
|
|
|
|
|
|
|
if (key == A)
|
|
|
|
goto cycle_detected;
|
|
|
|
|
|
|
|
/* recursively check nested keyrings */
|
|
|
|
if (key->type == &key_type_keyring) {
|
|
|
|
if (sp >= KEYRING_SEARCH_MAX_DEPTH)
|
|
|
|
goto too_deep;
|
|
|
|
|
|
|
|
/* stack the current position */
|
2005-06-24 09:00:49 +04:00
|
|
|
stack[sp].keylist = keylist;
|
2005-04-17 02:20:36 +04:00
|
|
|
stack[sp].kix = kix;
|
|
|
|
sp++;
|
|
|
|
|
|
|
|
/* begin again with the new keyring */
|
|
|
|
subtree = key;
|
|
|
|
goto descend;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* the keyring we're looking at was disqualified or didn't contain a
|
|
|
|
* matching key */
|
2010-04-21 11:02:11 +04:00
|
|
|
not_this_keyring:
|
2005-04-17 02:20:36 +04:00
|
|
|
if (sp > 0) {
|
|
|
|
/* resume the checking of a keyring higher up in the tree */
|
|
|
|
sp--;
|
2005-06-24 09:00:49 +04:00
|
|
|
keylist = stack[sp].keylist;
|
2005-04-17 02:20:36 +04:00
|
|
|
kix = stack[sp].kix + 1;
|
|
|
|
goto ascend;
|
|
|
|
}
|
|
|
|
|
|
|
|
ret = 0; /* no cycles detected */
|
|
|
|
|
2010-04-21 11:02:11 +04:00
|
|
|
error:
|
2005-06-24 09:00:49 +04:00
|
|
|
rcu_read_unlock();
|
2005-04-17 02:20:36 +04:00
|
|
|
return ret;
|
|
|
|
|
2010-04-21 11:02:11 +04:00
|
|
|
too_deep:
|
2005-04-17 02:20:36 +04:00
|
|
|
ret = -ELOOP;
|
2005-06-24 09:00:49 +04:00
|
|
|
goto error;
|
|
|
|
|
2010-04-21 11:02:11 +04:00
|
|
|
cycle_detected:
|
2005-04-17 02:20:36 +04:00
|
|
|
ret = -EDEADLK;
|
|
|
|
goto error;
|
2011-01-20 19:38:27 +03:00
|
|
|
}
|
2005-04-17 02:20:36 +04:00
|
|
|
|
2006-01-08 12:02:45 +03:00
|
|
|
/*
|
2011-01-20 19:38:33 +03:00
|
|
|
* Dispose of a keyring list after the RCU grace period, freeing the unlinked
|
2006-01-08 12:02:45 +03:00
|
|
|
* key
|
|
|
|
*/
|
|
|
|
static void keyring_unlink_rcu_disposal(struct rcu_head *rcu)
|
|
|
|
{
|
|
|
|
struct keyring_list *klist =
|
|
|
|
container_of(rcu, struct keyring_list, rcu);
|
|
|
|
|
2010-05-25 01:33:03 +04:00
|
|
|
if (klist->delkey != USHRT_MAX)
|
2012-05-11 13:56:56 +04:00
|
|
|
key_put(rcu_access_pointer(klist->keys[klist->delkey]));
|
2006-01-08 12:02:45 +03:00
|
|
|
kfree(klist);
|
2010-04-30 17:32:39 +04:00
|
|
|
}
|
2006-01-08 12:02:45 +03:00
|
|
|
|
2005-04-17 02:20:36 +04:00
|
|
|
/*
|
2011-01-20 19:38:33 +03:00
|
|
|
* Preallocate memory so that a key can be linked into to a keyring.
|
2005-04-17 02:20:36 +04:00
|
|
|
*/
|
2010-04-30 17:32:39 +04:00
|
|
|
int __key_link_begin(struct key *keyring, const struct key_type *type,
|
2011-01-25 19:34:28 +03:00
|
|
|
const char *description, unsigned long *_prealloc)
|
2010-04-30 17:32:39 +04:00
|
|
|
__acquires(&keyring->sem)
|
2012-05-21 15:32:13 +04:00
|
|
|
__acquires(&keyring_serialise_link_sem)
|
2005-04-17 02:20:36 +04:00
|
|
|
{
|
|
|
|
struct keyring_list *klist, *nklist;
|
2011-01-25 19:34:28 +03:00
|
|
|
unsigned long prealloc;
|
2005-04-17 02:20:36 +04:00
|
|
|
unsigned max;
|
2012-05-11 13:56:56 +04:00
|
|
|
time_t lowest_lru;
|
2005-04-17 02:20:36 +04:00
|
|
|
size_t size;
|
2012-05-11 13:56:56 +04:00
|
|
|
int loop, lru, ret;
|
2005-04-17 02:20:36 +04:00
|
|
|
|
2010-04-30 17:32:39 +04:00
|
|
|
kenter("%d,%s,%s,", key_serial(keyring), type->name, description);
|
2005-04-17 02:20:36 +04:00
|
|
|
|
|
|
|
if (keyring->type != &key_type_keyring)
|
2010-04-30 17:32:39 +04:00
|
|
|
return -ENOTDIR;
|
|
|
|
|
|
|
|
down_write(&keyring->sem);
|
|
|
|
|
|
|
|
ret = -EKEYREVOKED;
|
|
|
|
if (test_bit(KEY_FLAG_REVOKED, &keyring->flags))
|
|
|
|
goto error_krsem;
|
2005-04-17 02:20:36 +04:00
|
|
|
|
2010-04-30 17:32:39 +04:00
|
|
|
/* serialise link/link calls to prevent parallel calls causing a cycle
|
|
|
|
* when linking two keyring in opposite orders */
|
|
|
|
if (type == &key_type_keyring)
|
2010-04-30 17:32:28 +04:00
|
|
|
down_write(&keyring_serialise_link_sem);
|
|
|
|
|
2010-04-30 17:32:39 +04:00
|
|
|
klist = rcu_dereference_locked_keyring(keyring);
|
2005-04-17 02:20:36 +04:00
|
|
|
|
2006-01-08 12:02:45 +03:00
|
|
|
/* see if there's a matching key we can displace */
|
2012-05-11 13:56:56 +04:00
|
|
|
lru = -1;
|
2006-01-08 12:02:45 +03:00
|
|
|
if (klist && klist->nkeys > 0) {
|
2012-05-11 13:56:56 +04:00
|
|
|
lowest_lru = TIME_T_MAX;
|
2006-01-08 12:02:45 +03:00
|
|
|
for (loop = klist->nkeys - 1; loop >= 0; loop--) {
|
2012-05-11 13:56:56 +04:00
|
|
|
struct key *key = rcu_deref_link_locked(klist, loop,
|
|
|
|
keyring);
|
|
|
|
if (key->type == type &&
|
|
|
|
strcmp(key->description, description) == 0) {
|
|
|
|
/* Found a match - we'll replace the link with
|
|
|
|
* one to the new key. We record the slot
|
|
|
|
* position.
|
|
|
|
*/
|
|
|
|
klist->delkey = loop;
|
|
|
|
prealloc = 0;
|
2006-01-08 12:02:45 +03:00
|
|
|
goto done;
|
|
|
|
}
|
2012-05-11 13:56:56 +04:00
|
|
|
if (key->last_used_at < lowest_lru) {
|
|
|
|
lowest_lru = key->last_used_at;
|
|
|
|
lru = loop;
|
|
|
|
}
|
2006-01-08 12:02:45 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-05-11 13:56:56 +04:00
|
|
|
/* If the keyring is full then do an LRU discard */
|
|
|
|
if (klist &&
|
|
|
|
klist->nkeys == klist->maxkeys &&
|
|
|
|
klist->maxkeys >= MAX_KEYRING_LINKS) {
|
|
|
|
kdebug("LRU discard %d\n", lru);
|
|
|
|
klist->delkey = lru;
|
|
|
|
prealloc = 0;
|
|
|
|
goto done;
|
|
|
|
}
|
|
|
|
|
2005-04-17 02:20:36 +04:00
|
|
|
/* check that we aren't going to overrun the user's quota */
|
|
|
|
ret = key_payload_reserve(keyring,
|
|
|
|
keyring->datalen + KEYQUOTA_LINK_BYTES);
|
|
|
|
if (ret < 0)
|
2010-04-30 17:32:39 +04:00
|
|
|
goto error_sem;
|
2005-04-17 02:20:36 +04:00
|
|
|
|
|
|
|
if (klist && klist->nkeys < klist->maxkeys) {
|
2010-04-30 17:32:39 +04:00
|
|
|
/* there's sufficient slack space to append directly */
|
2012-05-11 13:56:56 +04:00
|
|
|
klist->delkey = klist->nkeys;
|
2011-01-25 19:34:28 +03:00
|
|
|
prealloc = KEY_LINK_FIXQUOTA;
|
2010-03-09 02:11:34 +03:00
|
|
|
} else {
|
2005-04-17 02:20:36 +04:00
|
|
|
/* grow the key list */
|
|
|
|
max = 4;
|
2012-05-11 13:56:56 +04:00
|
|
|
if (klist) {
|
2005-04-17 02:20:36 +04:00
|
|
|
max += klist->maxkeys;
|
2012-05-11 13:56:56 +04:00
|
|
|
if (max > MAX_KEYRING_LINKS)
|
|
|
|
max = MAX_KEYRING_LINKS;
|
|
|
|
BUG_ON(max <= klist->maxkeys);
|
|
|
|
}
|
2005-04-17 02:20:36 +04:00
|
|
|
|
2005-07-08 04:57:03 +04:00
|
|
|
size = sizeof(*klist) + sizeof(struct key *) * max;
|
2005-04-17 02:20:36 +04:00
|
|
|
|
|
|
|
ret = -ENOMEM;
|
|
|
|
nklist = kmalloc(size, GFP_KERNEL);
|
|
|
|
if (!nklist)
|
2010-04-30 17:32:39 +04:00
|
|
|
goto error_quota;
|
2005-04-17 02:20:36 +04:00
|
|
|
|
2010-04-30 17:32:39 +04:00
|
|
|
nklist->maxkeys = max;
|
2005-04-17 02:20:36 +04:00
|
|
|
if (klist) {
|
2010-04-30 17:32:39 +04:00
|
|
|
memcpy(nklist->keys, klist->keys,
|
2005-04-17 02:20:36 +04:00
|
|
|
sizeof(struct key *) * klist->nkeys);
|
2010-04-30 17:32:39 +04:00
|
|
|
nklist->delkey = klist->nkeys;
|
|
|
|
nklist->nkeys = klist->nkeys + 1;
|
2010-05-25 01:33:03 +04:00
|
|
|
klist->delkey = USHRT_MAX;
|
2010-04-30 17:32:39 +04:00
|
|
|
} else {
|
|
|
|
nklist->nkeys = 1;
|
|
|
|
nklist->delkey = 0;
|
2005-04-17 02:20:36 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/* add the key into the new space */
|
2012-05-11 13:56:56 +04:00
|
|
|
RCU_INIT_POINTER(nklist->keys[nklist->delkey], NULL);
|
|
|
|
prealloc = (unsigned long)nklist | KEY_LINK_FIXQUOTA;
|
2005-04-17 02:20:36 +04:00
|
|
|
}
|
|
|
|
|
2006-01-08 12:02:45 +03:00
|
|
|
done:
|
2011-01-25 19:34:28 +03:00
|
|
|
*_prealloc = prealloc;
|
2010-04-30 17:32:39 +04:00
|
|
|
kleave(" = 0");
|
|
|
|
return 0;
|
2005-04-17 02:20:36 +04:00
|
|
|
|
2010-04-30 17:32:39 +04:00
|
|
|
error_quota:
|
2005-04-17 02:20:36 +04:00
|
|
|
/* undo the quota changes */
|
|
|
|
key_payload_reserve(keyring,
|
|
|
|
keyring->datalen - KEYQUOTA_LINK_BYTES);
|
2010-04-30 17:32:39 +04:00
|
|
|
error_sem:
|
|
|
|
if (type == &key_type_keyring)
|
|
|
|
up_write(&keyring_serialise_link_sem);
|
|
|
|
error_krsem:
|
|
|
|
up_write(&keyring->sem);
|
|
|
|
kleave(" = %d", ret);
|
|
|
|
return ret;
|
|
|
|
}
|
2005-04-17 02:20:36 +04:00
|
|
|
|
2010-04-30 17:32:39 +04:00
|
|
|
/*
|
2011-01-20 19:38:33 +03:00
|
|
|
* Check already instantiated keys aren't going to be a problem.
|
|
|
|
*
|
|
|
|
* The caller must have called __key_link_begin(). Don't need to call this for
|
|
|
|
* keys that were created since __key_link_begin() was called.
|
2010-04-30 17:32:39 +04:00
|
|
|
*/
|
|
|
|
int __key_link_check_live_key(struct key *keyring, struct key *key)
|
|
|
|
{
|
|
|
|
if (key->type == &key_type_keyring)
|
|
|
|
/* check that we aren't going to create a cycle by linking one
|
|
|
|
* keyring to another */
|
|
|
|
return keyring_detect_cycle(keyring, key);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2011-01-20 19:38:33 +03:00
|
|
|
* Link a key into to a keyring.
|
|
|
|
*
|
|
|
|
* Must be called with __key_link_begin() having being called. Discards any
|
|
|
|
* already extant link to matching key if there is one, so that each keyring
|
|
|
|
* holds at most one link to any given key of a particular type+description
|
|
|
|
* combination.
|
2010-04-30 17:32:39 +04:00
|
|
|
*/
|
|
|
|
void __key_link(struct key *keyring, struct key *key,
|
2011-01-25 19:34:28 +03:00
|
|
|
unsigned long *_prealloc)
|
2010-04-30 17:32:39 +04:00
|
|
|
{
|
|
|
|
struct keyring_list *klist, *nklist;
|
2012-05-11 13:56:56 +04:00
|
|
|
struct key *discard;
|
2010-04-30 17:32:39 +04:00
|
|
|
|
2011-01-25 19:34:28 +03:00
|
|
|
nklist = (struct keyring_list *)(*_prealloc & ~KEY_LINK_FIXQUOTA);
|
|
|
|
*_prealloc = 0;
|
2010-04-30 17:32:39 +04:00
|
|
|
|
|
|
|
kenter("%d,%d,%p", keyring->serial, key->serial, nklist);
|
|
|
|
|
2011-08-22 17:08:51 +04:00
|
|
|
klist = rcu_dereference_locked_keyring(keyring);
|
2010-04-30 17:32:39 +04:00
|
|
|
|
|
|
|
atomic_inc(&key->usage);
|
2012-05-11 13:56:56 +04:00
|
|
|
keyring->last_used_at = key->last_used_at =
|
|
|
|
current_kernel_time().tv_sec;
|
2010-04-30 17:32:39 +04:00
|
|
|
|
|
|
|
/* there's a matching key we can displace or an empty slot in a newly
|
|
|
|
* allocated list we can fill */
|
|
|
|
if (nklist) {
|
2012-05-11 13:56:56 +04:00
|
|
|
kdebug("reissue %hu/%hu/%hu",
|
2010-04-30 17:32:39 +04:00
|
|
|
nklist->delkey, nklist->nkeys, nklist->maxkeys);
|
|
|
|
|
2012-05-11 13:56:56 +04:00
|
|
|
RCU_INIT_POINTER(nklist->keys[nklist->delkey], key);
|
2010-04-30 17:32:39 +04:00
|
|
|
|
|
|
|
rcu_assign_pointer(keyring->payload.subscriptions, nklist);
|
|
|
|
|
|
|
|
/* dispose of the old keyring list and, if there was one, the
|
|
|
|
* displaced key */
|
|
|
|
if (klist) {
|
|
|
|
kdebug("dispose %hu/%hu/%hu",
|
|
|
|
klist->delkey, klist->nkeys, klist->maxkeys);
|
|
|
|
call_rcu(&klist->rcu, keyring_unlink_rcu_disposal);
|
|
|
|
}
|
2012-05-11 13:56:56 +04:00
|
|
|
} else if (klist->delkey < klist->nkeys) {
|
|
|
|
kdebug("replace %hu/%hu/%hu",
|
|
|
|
klist->delkey, klist->nkeys, klist->maxkeys);
|
|
|
|
|
|
|
|
discard = rcu_dereference_protected(
|
|
|
|
klist->keys[klist->delkey],
|
|
|
|
rwsem_is_locked(&keyring->sem));
|
|
|
|
rcu_assign_pointer(klist->keys[klist->delkey], key);
|
|
|
|
/* The garbage collector will take care of RCU
|
|
|
|
* synchronisation */
|
|
|
|
key_put(discard);
|
2010-04-30 17:32:39 +04:00
|
|
|
} else {
|
|
|
|
/* there's sufficient slack space to append directly */
|
2012-05-11 13:56:56 +04:00
|
|
|
kdebug("append %hu/%hu/%hu",
|
|
|
|
klist->delkey, klist->nkeys, klist->maxkeys);
|
|
|
|
|
|
|
|
RCU_INIT_POINTER(klist->keys[klist->delkey], key);
|
2010-04-30 17:32:39 +04:00
|
|
|
smp_wmb();
|
|
|
|
klist->nkeys++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2011-01-20 19:38:33 +03:00
|
|
|
* Finish linking a key into to a keyring.
|
|
|
|
*
|
|
|
|
* Must be called with __key_link_begin() having being called.
|
2010-04-30 17:32:39 +04:00
|
|
|
*/
|
|
|
|
void __key_link_end(struct key *keyring, struct key_type *type,
|
2011-01-25 19:34:28 +03:00
|
|
|
unsigned long prealloc)
|
2010-04-30 17:32:39 +04:00
|
|
|
__releases(&keyring->sem)
|
2012-05-21 15:32:13 +04:00
|
|
|
__releases(&keyring_serialise_link_sem)
|
2010-04-30 17:32:39 +04:00
|
|
|
{
|
|
|
|
BUG_ON(type == NULL);
|
|
|
|
BUG_ON(type->name == NULL);
|
2011-01-25 19:34:28 +03:00
|
|
|
kenter("%d,%s,%lx", keyring->serial, type->name, prealloc);
|
2010-04-30 17:32:39 +04:00
|
|
|
|
|
|
|
if (type == &key_type_keyring)
|
|
|
|
up_write(&keyring_serialise_link_sem);
|
|
|
|
|
|
|
|
if (prealloc) {
|
2011-01-25 19:34:28 +03:00
|
|
|
if (prealloc & KEY_LINK_FIXQUOTA)
|
|
|
|
key_payload_reserve(keyring,
|
|
|
|
keyring->datalen -
|
|
|
|
KEYQUOTA_LINK_BYTES);
|
|
|
|
kfree((struct keyring_list *)(prealloc & ~KEY_LINK_FIXQUOTA));
|
2010-04-30 17:32:39 +04:00
|
|
|
}
|
|
|
|
up_write(&keyring->sem);
|
|
|
|
}
|
2005-04-17 02:20:36 +04:00
|
|
|
|
2011-01-20 19:38:33 +03:00
|
|
|
/**
|
|
|
|
* key_link - Link a key to a keyring
|
|
|
|
* @keyring: The keyring to make the link in.
|
|
|
|
* @key: The key to link to.
|
|
|
|
*
|
|
|
|
* Make a link in a keyring to a key, such that the keyring holds a reference
|
|
|
|
* on that key and the key can potentially be found by searching that keyring.
|
|
|
|
*
|
|
|
|
* This function will write-lock the keyring's semaphore and will consume some
|
|
|
|
* of the user's key data quota to hold the link.
|
|
|
|
*
|
|
|
|
* Returns 0 if successful, -ENOTDIR if the keyring isn't a keyring,
|
|
|
|
* -EKEYREVOKED if the keyring has been revoked, -ENFILE if the keyring is
|
|
|
|
* full, -EDQUOT if there is insufficient key data quota remaining to add
|
|
|
|
* another link or -ENOMEM if there's insufficient memory.
|
|
|
|
*
|
|
|
|
* It is assumed that the caller has checked that it is permitted for a link to
|
|
|
|
* be made (the keyring should have Write permission and the key Link
|
|
|
|
* permission).
|
2005-04-17 02:20:36 +04:00
|
|
|
*/
|
|
|
|
int key_link(struct key *keyring, struct key *key)
|
|
|
|
{
|
2011-01-25 19:34:28 +03:00
|
|
|
unsigned long prealloc;
|
2005-04-17 02:20:36 +04:00
|
|
|
int ret;
|
|
|
|
|
|
|
|
key_check(keyring);
|
|
|
|
key_check(key);
|
|
|
|
|
2010-04-30 17:32:39 +04:00
|
|
|
ret = __key_link_begin(keyring, key->type, key->description, &prealloc);
|
|
|
|
if (ret == 0) {
|
|
|
|
ret = __key_link_check_live_key(keyring, key);
|
|
|
|
if (ret == 0)
|
|
|
|
__key_link(keyring, key, &prealloc);
|
|
|
|
__key_link_end(keyring, key->type, prealloc);
|
|
|
|
}
|
2005-04-17 02:20:36 +04:00
|
|
|
|
|
|
|
return ret;
|
2010-04-30 17:32:39 +04:00
|
|
|
}
|
2005-04-17 02:20:36 +04:00
|
|
|
EXPORT_SYMBOL(key_link);
|
|
|
|
|
2011-01-20 19:38:33 +03:00
|
|
|
/**
|
|
|
|
* key_unlink - Unlink the first link to a key from a keyring.
|
|
|
|
* @keyring: The keyring to remove the link from.
|
|
|
|
* @key: The key the link is to.
|
|
|
|
*
|
|
|
|
* Remove a link from a keyring to a key.
|
|
|
|
*
|
|
|
|
* This function will write-lock the keyring's semaphore.
|
|
|
|
*
|
|
|
|
* Returns 0 if successful, -ENOTDIR if the keyring isn't a keyring, -ENOENT if
|
|
|
|
* the key isn't linked to by the keyring or -ENOMEM if there's insufficient
|
|
|
|
* memory.
|
|
|
|
*
|
|
|
|
* It is assumed that the caller has checked that it is permitted for a link to
|
|
|
|
* be removed (the keyring should have Write permission; no permissions are
|
|
|
|
* required on the key).
|
2005-04-17 02:20:36 +04:00
|
|
|
*/
|
|
|
|
int key_unlink(struct key *keyring, struct key *key)
|
|
|
|
{
|
2005-06-24 09:00:49 +04:00
|
|
|
struct keyring_list *klist, *nklist;
|
2005-04-17 02:20:36 +04:00
|
|
|
int loop, ret;
|
|
|
|
|
|
|
|
key_check(keyring);
|
|
|
|
key_check(key);
|
|
|
|
|
|
|
|
ret = -ENOTDIR;
|
|
|
|
if (keyring->type != &key_type_keyring)
|
|
|
|
goto error;
|
|
|
|
|
|
|
|
down_write(&keyring->sem);
|
|
|
|
|
2010-04-30 17:32:18 +04:00
|
|
|
klist = rcu_dereference_locked_keyring(keyring);
|
2005-04-17 02:20:36 +04:00
|
|
|
if (klist) {
|
|
|
|
/* search the keyring for the key */
|
|
|
|
for (loop = 0; loop < klist->nkeys; loop++)
|
2012-05-11 13:56:56 +04:00
|
|
|
if (rcu_access_pointer(klist->keys[loop]) == key)
|
2005-04-17 02:20:36 +04:00
|
|
|
goto key_is_present;
|
|
|
|
}
|
|
|
|
|
|
|
|
up_write(&keyring->sem);
|
|
|
|
ret = -ENOENT;
|
|
|
|
goto error;
|
|
|
|
|
2005-06-24 09:00:49 +04:00
|
|
|
key_is_present:
|
|
|
|
/* we need to copy the key list for RCU purposes */
|
2005-07-08 04:57:03 +04:00
|
|
|
nklist = kmalloc(sizeof(*klist) +
|
|
|
|
sizeof(struct key *) * klist->maxkeys,
|
2005-06-24 09:00:49 +04:00
|
|
|
GFP_KERNEL);
|
|
|
|
if (!nklist)
|
|
|
|
goto nomem;
|
|
|
|
nklist->maxkeys = klist->maxkeys;
|
|
|
|
nklist->nkeys = klist->nkeys - 1;
|
|
|
|
|
|
|
|
if (loop > 0)
|
|
|
|
memcpy(&nklist->keys[0],
|
|
|
|
&klist->keys[0],
|
2005-07-08 04:57:03 +04:00
|
|
|
loop * sizeof(struct key *));
|
2005-06-24 09:00:49 +04:00
|
|
|
|
|
|
|
if (loop < nklist->nkeys)
|
|
|
|
memcpy(&nklist->keys[loop],
|
|
|
|
&klist->keys[loop + 1],
|
2005-07-08 04:57:03 +04:00
|
|
|
(nklist->nkeys - loop) * sizeof(struct key *));
|
2005-06-24 09:00:49 +04:00
|
|
|
|
2005-04-17 02:20:36 +04:00
|
|
|
/* adjust the user's quota */
|
|
|
|
key_payload_reserve(keyring,
|
|
|
|
keyring->datalen - KEYQUOTA_LINK_BYTES);
|
|
|
|
|
2005-06-24 09:00:49 +04:00
|
|
|
rcu_assign_pointer(keyring->payload.subscriptions, nklist);
|
2005-04-17 02:20:36 +04:00
|
|
|
|
2005-06-24 09:00:49 +04:00
|
|
|
up_write(&keyring->sem);
|
2005-04-17 02:20:36 +04:00
|
|
|
|
2005-06-24 09:00:49 +04:00
|
|
|
/* schedule for later cleanup */
|
|
|
|
klist->delkey = loop;
|
|
|
|
call_rcu(&klist->rcu, keyring_unlink_rcu_disposal);
|
2005-04-17 02:20:36 +04:00
|
|
|
|
|
|
|
ret = 0;
|
|
|
|
|
2005-06-24 09:00:49 +04:00
|
|
|
error:
|
2005-04-17 02:20:36 +04:00
|
|
|
return ret;
|
2005-06-24 09:00:49 +04:00
|
|
|
nomem:
|
|
|
|
ret = -ENOMEM;
|
|
|
|
up_write(&keyring->sem);
|
|
|
|
goto error;
|
2011-01-20 19:38:27 +03:00
|
|
|
}
|
2005-04-17 02:20:36 +04:00
|
|
|
EXPORT_SYMBOL(key_unlink);
|
|
|
|
|
2005-06-24 09:00:49 +04:00
|
|
|
/*
|
2011-01-20 19:38:33 +03:00
|
|
|
* Dispose of a keyring list after the RCU grace period, releasing the keys it
|
|
|
|
* links to.
|
2005-06-24 09:00:49 +04:00
|
|
|
*/
|
|
|
|
static void keyring_clear_rcu_disposal(struct rcu_head *rcu)
|
|
|
|
{
|
|
|
|
struct keyring_list *klist;
|
|
|
|
int loop;
|
|
|
|
|
|
|
|
klist = container_of(rcu, struct keyring_list, rcu);
|
|
|
|
|
|
|
|
for (loop = klist->nkeys - 1; loop >= 0; loop--)
|
2012-05-11 13:56:56 +04:00
|
|
|
key_put(rcu_access_pointer(klist->keys[loop]));
|
2005-06-24 09:00:49 +04:00
|
|
|
|
|
|
|
kfree(klist);
|
2011-01-20 19:38:27 +03:00
|
|
|
}
|
2005-06-24 09:00:49 +04:00
|
|
|
|
2011-01-20 19:38:33 +03:00
|
|
|
/**
|
|
|
|
* keyring_clear - Clear a keyring
|
|
|
|
* @keyring: The keyring to clear.
|
|
|
|
*
|
|
|
|
* Clear the contents of the specified keyring.
|
|
|
|
*
|
|
|
|
* Returns 0 if successful or -ENOTDIR if the keyring isn't a keyring.
|
2005-04-17 02:20:36 +04:00
|
|
|
*/
|
|
|
|
int keyring_clear(struct key *keyring)
|
|
|
|
{
|
|
|
|
struct keyring_list *klist;
|
2005-06-24 09:00:49 +04:00
|
|
|
int ret;
|
2005-04-17 02:20:36 +04:00
|
|
|
|
|
|
|
ret = -ENOTDIR;
|
|
|
|
if (keyring->type == &key_type_keyring) {
|
|
|
|
/* detach the pointer block with the locks held */
|
|
|
|
down_write(&keyring->sem);
|
|
|
|
|
2010-04-30 17:32:18 +04:00
|
|
|
klist = rcu_dereference_locked_keyring(keyring);
|
2005-04-17 02:20:36 +04:00
|
|
|
if (klist) {
|
|
|
|
/* adjust the quota */
|
|
|
|
key_payload_reserve(keyring,
|
|
|
|
sizeof(struct keyring_list));
|
|
|
|
|
2005-06-24 09:00:49 +04:00
|
|
|
rcu_assign_pointer(keyring->payload.subscriptions,
|
|
|
|
NULL);
|
2005-04-17 02:20:36 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
up_write(&keyring->sem);
|
|
|
|
|
|
|
|
/* free the keys after the locks have been dropped */
|
2005-06-24 09:00:49 +04:00
|
|
|
if (klist)
|
|
|
|
call_rcu(&klist->rcu, keyring_clear_rcu_disposal);
|
2005-04-17 02:20:36 +04:00
|
|
|
|
|
|
|
ret = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
return ret;
|
2011-01-20 19:38:27 +03:00
|
|
|
}
|
2005-04-17 02:20:36 +04:00
|
|
|
EXPORT_SYMBOL(keyring_clear);
|
2006-06-26 11:24:51 +04:00
|
|
|
|
|
|
|
/*
|
2011-01-20 19:38:33 +03:00
|
|
|
* Dispose of the links from a revoked keyring.
|
|
|
|
*
|
|
|
|
* This is called with the key sem write-locked.
|
2006-06-26 11:24:51 +04:00
|
|
|
*/
|
|
|
|
static void keyring_revoke(struct key *keyring)
|
|
|
|
{
|
2010-04-30 17:32:18 +04:00
|
|
|
struct keyring_list *klist;
|
|
|
|
|
|
|
|
klist = rcu_dereference_locked_keyring(keyring);
|
2006-06-26 11:24:51 +04:00
|
|
|
|
|
|
|
/* adjust the quota */
|
|
|
|
key_payload_reserve(keyring, 0);
|
|
|
|
|
|
|
|
if (klist) {
|
|
|
|
rcu_assign_pointer(keyring->payload.subscriptions, NULL);
|
|
|
|
call_rcu(&klist->rcu, keyring_clear_rcu_disposal);
|
|
|
|
}
|
2011-01-20 19:38:27 +03:00
|
|
|
}
|
2009-09-02 12:14:00 +04:00
|
|
|
|
|
|
|
/*
|
2011-01-20 19:38:33 +03:00
|
|
|
* Collect garbage from the contents of a keyring, replacing the old list with
|
|
|
|
* a new one with the pointers all shuffled down.
|
|
|
|
*
|
|
|
|
* Dead keys are classed as oned that are flagged as being dead or are revoked,
|
|
|
|
* expired or negative keys that were revoked or expired before the specified
|
|
|
|
* limit.
|
2009-09-02 12:14:00 +04:00
|
|
|
*/
|
|
|
|
void keyring_gc(struct key *keyring, time_t limit)
|
|
|
|
{
|
|
|
|
struct keyring_list *klist, *new;
|
|
|
|
struct key *key;
|
|
|
|
int loop, keep, max;
|
|
|
|
|
2009-09-14 20:26:13 +04:00
|
|
|
kenter("{%x,%s}", key_serial(keyring), keyring->description);
|
2009-09-02 12:14:00 +04:00
|
|
|
|
|
|
|
down_write(&keyring->sem);
|
|
|
|
|
2010-04-30 17:32:18 +04:00
|
|
|
klist = rcu_dereference_locked_keyring(keyring);
|
2009-09-02 12:14:00 +04:00
|
|
|
if (!klist)
|
2009-09-14 20:26:13 +04:00
|
|
|
goto no_klist;
|
2009-09-02 12:14:00 +04:00
|
|
|
|
|
|
|
/* work out how many subscriptions we're keeping */
|
|
|
|
keep = 0;
|
|
|
|
for (loop = klist->nkeys - 1; loop >= 0; loop--)
|
2012-05-11 13:56:56 +04:00
|
|
|
if (!key_is_dead(rcu_deref_link_locked(klist, loop, keyring),
|
|
|
|
limit))
|
2009-09-02 12:14:00 +04:00
|
|
|
keep++;
|
|
|
|
|
|
|
|
if (keep == klist->nkeys)
|
|
|
|
goto just_return;
|
|
|
|
|
|
|
|
/* allocate a new keyring payload */
|
|
|
|
max = roundup(keep, 4);
|
|
|
|
new = kmalloc(sizeof(struct keyring_list) + max * sizeof(struct key *),
|
|
|
|
GFP_KERNEL);
|
|
|
|
if (!new)
|
2009-09-14 20:26:13 +04:00
|
|
|
goto nomem;
|
2009-09-02 12:14:00 +04:00
|
|
|
new->maxkeys = max;
|
|
|
|
new->nkeys = 0;
|
|
|
|
new->delkey = 0;
|
|
|
|
|
|
|
|
/* install the live keys
|
|
|
|
* - must take care as expired keys may be updated back to life
|
|
|
|
*/
|
|
|
|
keep = 0;
|
|
|
|
for (loop = klist->nkeys - 1; loop >= 0; loop--) {
|
2012-05-11 13:56:56 +04:00
|
|
|
key = rcu_deref_link_locked(klist, loop, keyring);
|
2009-09-02 12:14:00 +04:00
|
|
|
if (!key_is_dead(key, limit)) {
|
|
|
|
if (keep >= max)
|
|
|
|
goto discard_new;
|
2012-05-11 13:56:56 +04:00
|
|
|
RCU_INIT_POINTER(new->keys[keep++], key_get(key));
|
2009-09-02 12:14:00 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
new->nkeys = keep;
|
|
|
|
|
|
|
|
/* adjust the quota */
|
|
|
|
key_payload_reserve(keyring,
|
|
|
|
sizeof(struct keyring_list) +
|
|
|
|
KEYQUOTA_LINK_BYTES * keep);
|
|
|
|
|
|
|
|
if (keep == 0) {
|
|
|
|
rcu_assign_pointer(keyring->payload.subscriptions, NULL);
|
|
|
|
kfree(new);
|
|
|
|
} else {
|
|
|
|
rcu_assign_pointer(keyring->payload.subscriptions, new);
|
|
|
|
}
|
|
|
|
|
|
|
|
up_write(&keyring->sem);
|
|
|
|
|
|
|
|
call_rcu(&klist->rcu, keyring_clear_rcu_disposal);
|
|
|
|
kleave(" [yes]");
|
|
|
|
return;
|
|
|
|
|
|
|
|
discard_new:
|
|
|
|
new->nkeys = keep;
|
|
|
|
keyring_clear_rcu_disposal(&new->rcu);
|
2009-09-14 20:26:13 +04:00
|
|
|
up_write(&keyring->sem);
|
|
|
|
kleave(" [discard]");
|
|
|
|
return;
|
|
|
|
|
2009-09-02 12:14:00 +04:00
|
|
|
just_return:
|
|
|
|
up_write(&keyring->sem);
|
2009-09-14 20:26:13 +04:00
|
|
|
kleave(" [no dead]");
|
|
|
|
return;
|
|
|
|
|
|
|
|
no_klist:
|
|
|
|
up_write(&keyring->sem);
|
|
|
|
kleave(" [no_klist]");
|
|
|
|
return;
|
|
|
|
|
|
|
|
nomem:
|
|
|
|
up_write(&keyring->sem);
|
|
|
|
kleave(" [oom]");
|
2009-09-02 12:14:00 +04:00
|
|
|
}
|