mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-12-30 16:13:54 +08:00
a6f76f23d2
Make execve() take advantage of copy-on-write credentials, allowing it to set up the credentials in advance, and then commit the whole lot after the point of no return. This patch and the preceding patches have been tested with the LTP SELinux testsuite. This patch makes several logical sets of alteration: (1) execve(). The credential bits from struct linux_binprm are, for the most part, replaced with a single credentials pointer (bprm->cred). This means that all the creds can be calculated in advance and then applied at the point of no return with no possibility of failure. I would like to replace bprm->cap_effective with: cap_isclear(bprm->cap_effective) but this seems impossible due to special behaviour for processes of pid 1 (they always retain their parent's capability masks where normally they'd be changed - see cap_bprm_set_creds()). The following sequence of events now happens: (a) At the start of do_execve, the current task's cred_exec_mutex is locked to prevent PTRACE_ATTACH from obsoleting the calculation of creds that we make. (a) prepare_exec_creds() is then called to make a copy of the current task's credentials and prepare it. This copy is then assigned to bprm->cred. This renders security_bprm_alloc() and security_bprm_free() unnecessary, and so they've been removed. (b) The determination of unsafe execution is now performed immediately after (a) rather than later on in the code. The result is stored in bprm->unsafe for future reference. (c) prepare_binprm() is called, possibly multiple times. (i) This applies the result of set[ug]id binaries to the new creds attached to bprm->cred. Personality bit clearance is recorded, but now deferred on the basis that the exec procedure may yet fail. (ii) This then calls the new security_bprm_set_creds(). This should calculate the new LSM and capability credentials into *bprm->cred. This folds together security_bprm_set() and parts of security_bprm_apply_creds() (these two have been removed). Anything that might fail must be done at this point. (iii) bprm->cred_prepared is set to 1. bprm->cred_prepared is 0 on the first pass of the security calculations, and 1 on all subsequent passes. This allows SELinux in (ii) to base its calculations only on the initial script and not on the interpreter. (d) flush_old_exec() is called to commit the task to execution. This performs the following steps with regard to credentials: (i) Clear pdeath_signal and set dumpable on certain circumstances that may not be covered by commit_creds(). (ii) Clear any bits in current->personality that were deferred from (c.i). (e) install_exec_creds() [compute_creds() as was] is called to install the new credentials. This performs the following steps with regard to credentials: (i) Calls security_bprm_committing_creds() to apply any security requirements, such as flushing unauthorised files in SELinux, that must be done before the credentials are changed. This is made up of bits of security_bprm_apply_creds() and security_bprm_post_apply_creds(), both of which have been removed. This function is not allowed to fail; anything that might fail must have been done in (c.ii). (ii) Calls commit_creds() to apply the new credentials in a single assignment (more or less). Possibly pdeath_signal and dumpable should be part of struct creds. (iii) Unlocks the task's cred_replace_mutex, thus allowing PTRACE_ATTACH to take place. (iv) Clears The bprm->cred pointer as the credentials it was holding are now immutable. (v) Calls security_bprm_committed_creds() to apply any security alterations that must be done after the creds have been changed. SELinux uses this to flush signals and signal handlers. (f) If an error occurs before (d.i), bprm_free() will call abort_creds() to destroy the proposed new credentials and will then unlock cred_replace_mutex. No changes to the credentials will have been made. (2) LSM interface. A number of functions have been changed, added or removed: (*) security_bprm_alloc(), ->bprm_alloc_security() (*) security_bprm_free(), ->bprm_free_security() Removed in favour of preparing new credentials and modifying those. (*) security_bprm_apply_creds(), ->bprm_apply_creds() (*) security_bprm_post_apply_creds(), ->bprm_post_apply_creds() Removed; split between security_bprm_set_creds(), security_bprm_committing_creds() and security_bprm_committed_creds(). (*) security_bprm_set(), ->bprm_set_security() Removed; folded into security_bprm_set_creds(). (*) security_bprm_set_creds(), ->bprm_set_creds() New. The new credentials in bprm->creds should be checked and set up as appropriate. bprm->cred_prepared is 0 on the first call, 1 on the second and subsequent calls. (*) security_bprm_committing_creds(), ->bprm_committing_creds() (*) security_bprm_committed_creds(), ->bprm_committed_creds() New. Apply the security effects of the new credentials. This includes closing unauthorised files in SELinux. This function may not fail. When the former is called, the creds haven't yet been applied to the process; when the latter is called, they have. The former may access bprm->cred, the latter may not. (3) SELinux. SELinux has a number of changes, in addition to those to support the LSM interface changes mentioned above: (a) The bprm_security_struct struct has been removed in favour of using the credentials-under-construction approach. (c) flush_unauthorized_files() now takes a cred pointer and passes it on to inode_has_perm(), file_has_perm() and dentry_open(). Signed-off-by: David Howells <dhowells@redhat.com> Acked-by: James Morris <jmorris@namei.org> Acked-by: Serge Hallyn <serue@us.ibm.com> Signed-off-by: James Morris <jmorris@namei.org>
328 lines
9.6 KiB
C
328 lines
9.6 KiB
C
/* Credentials management
|
|
*
|
|
* Copyright (C) 2008 Red Hat, Inc. All Rights Reserved.
|
|
* 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 Licence
|
|
* as published by the Free Software Foundation; either version
|
|
* 2 of the Licence, or (at your option) any later version.
|
|
*/
|
|
|
|
#ifndef _LINUX_CRED_H
|
|
#define _LINUX_CRED_H
|
|
|
|
#include <linux/capability.h>
|
|
#include <linux/key.h>
|
|
#include <asm/atomic.h>
|
|
|
|
struct user_struct;
|
|
struct cred;
|
|
|
|
/*
|
|
* COW Supplementary groups list
|
|
*/
|
|
#define NGROUPS_SMALL 32
|
|
#define NGROUPS_PER_BLOCK ((unsigned int)(PAGE_SIZE / sizeof(gid_t)))
|
|
|
|
struct group_info {
|
|
atomic_t usage;
|
|
int ngroups;
|
|
int nblocks;
|
|
gid_t small_block[NGROUPS_SMALL];
|
|
gid_t *blocks[0];
|
|
};
|
|
|
|
/**
|
|
* get_group_info - Get a reference to a group info structure
|
|
* @group_info: The group info to reference
|
|
*
|
|
* This gets a reference to a set of supplementary groups.
|
|
*
|
|
* If the caller is accessing a task's credentials, they must hold the RCU read
|
|
* lock when reading.
|
|
*/
|
|
static inline struct group_info *get_group_info(struct group_info *gi)
|
|
{
|
|
atomic_inc(&gi->usage);
|
|
return gi;
|
|
}
|
|
|
|
/**
|
|
* put_group_info - Release a reference to a group info structure
|
|
* @group_info: The group info to release
|
|
*/
|
|
#define put_group_info(group_info) \
|
|
do { \
|
|
if (atomic_dec_and_test(&(group_info)->usage)) \
|
|
groups_free(group_info); \
|
|
} while (0)
|
|
|
|
extern struct group_info *groups_alloc(int);
|
|
extern void groups_free(struct group_info *);
|
|
extern int set_current_groups(struct group_info *);
|
|
extern int set_groups(struct cred *, struct group_info *);
|
|
extern int groups_search(const struct group_info *, gid_t);
|
|
|
|
/* access the groups "array" with this macro */
|
|
#define GROUP_AT(gi, i) \
|
|
((gi)->blocks[(i) / NGROUPS_PER_BLOCK][(i) % NGROUPS_PER_BLOCK])
|
|
|
|
extern int in_group_p(gid_t);
|
|
extern int in_egroup_p(gid_t);
|
|
|
|
/*
|
|
* The common credentials for a thread group
|
|
* - shared by CLONE_THREAD
|
|
*/
|
|
#ifdef CONFIG_KEYS
|
|
struct thread_group_cred {
|
|
atomic_t usage;
|
|
pid_t tgid; /* thread group process ID */
|
|
spinlock_t lock;
|
|
struct key *session_keyring; /* keyring inherited over fork */
|
|
struct key *process_keyring; /* keyring private to this process */
|
|
struct rcu_head rcu; /* RCU deletion hook */
|
|
};
|
|
#endif
|
|
|
|
/*
|
|
* The security context of a task
|
|
*
|
|
* The parts of the context break down into two categories:
|
|
*
|
|
* (1) The objective context of a task. These parts are used when some other
|
|
* task is attempting to affect this one.
|
|
*
|
|
* (2) The subjective context. These details are used when the task is acting
|
|
* upon another object, be that a file, a task, a key or whatever.
|
|
*
|
|
* Note that some members of this structure belong to both categories - the
|
|
* LSM security pointer for instance.
|
|
*
|
|
* A task has two security pointers. task->real_cred points to the objective
|
|
* context that defines that task's actual details. The objective part of this
|
|
* context is used whenever that task is acted upon.
|
|
*
|
|
* task->cred points to the subjective context that defines the details of how
|
|
* that task is going to act upon another object. This may be overridden
|
|
* temporarily to point to another security context, but normally points to the
|
|
* same context as task->real_cred.
|
|
*/
|
|
struct cred {
|
|
atomic_t usage;
|
|
uid_t uid; /* real UID of the task */
|
|
gid_t gid; /* real GID of the task */
|
|
uid_t suid; /* saved UID of the task */
|
|
gid_t sgid; /* saved GID of the task */
|
|
uid_t euid; /* effective UID of the task */
|
|
gid_t egid; /* effective GID of the task */
|
|
uid_t fsuid; /* UID for VFS ops */
|
|
gid_t fsgid; /* GID for VFS ops */
|
|
unsigned securebits; /* SUID-less security management */
|
|
kernel_cap_t cap_inheritable; /* caps our children can inherit */
|
|
kernel_cap_t cap_permitted; /* caps we're permitted */
|
|
kernel_cap_t cap_effective; /* caps we can actually use */
|
|
kernel_cap_t cap_bset; /* capability bounding set */
|
|
#ifdef CONFIG_KEYS
|
|
unsigned char jit_keyring; /* default keyring to attach requested
|
|
* keys to */
|
|
struct key *thread_keyring; /* keyring private to this thread */
|
|
struct key *request_key_auth; /* assumed request_key authority */
|
|
struct thread_group_cred *tgcred; /* thread-group shared credentials */
|
|
#endif
|
|
#ifdef CONFIG_SECURITY
|
|
void *security; /* subjective LSM security */
|
|
#endif
|
|
struct user_struct *user; /* real user ID subscription */
|
|
struct group_info *group_info; /* supplementary groups for euid/fsgid */
|
|
struct rcu_head rcu; /* RCU deletion hook */
|
|
};
|
|
|
|
extern void __put_cred(struct cred *);
|
|
extern int copy_creds(struct task_struct *, unsigned long);
|
|
extern struct cred *prepare_creds(void);
|
|
extern struct cred *prepare_exec_creds(void);
|
|
extern struct cred *prepare_usermodehelper_creds(void);
|
|
extern int commit_creds(struct cred *);
|
|
extern void abort_creds(struct cred *);
|
|
extern const struct cred *override_creds(const struct cred *) __deprecated;
|
|
extern void revert_creds(const struct cred *) __deprecated;
|
|
extern void __init cred_init(void);
|
|
|
|
/**
|
|
* get_new_cred - Get a reference on a new set of credentials
|
|
* @cred: The new credentials to reference
|
|
*
|
|
* Get a reference on the specified set of new credentials. The caller must
|
|
* release the reference.
|
|
*/
|
|
static inline struct cred *get_new_cred(struct cred *cred)
|
|
{
|
|
atomic_inc(&cred->usage);
|
|
return cred;
|
|
}
|
|
|
|
/**
|
|
* get_cred - Get a reference on a set of credentials
|
|
* @cred: The credentials to reference
|
|
*
|
|
* Get a reference on the specified set of credentials. The caller must
|
|
* release the reference.
|
|
*/
|
|
static inline const struct cred *get_cred(const struct cred *cred)
|
|
{
|
|
return get_new_cred((struct cred *) cred);
|
|
}
|
|
|
|
/**
|
|
* put_cred - Release a reference to a set of credentials
|
|
* @cred: The credentials to release
|
|
*
|
|
* Release a reference to a set of credentials, deleting them when the last ref
|
|
* is released.
|
|
*/
|
|
static inline void put_cred(const struct cred *_cred)
|
|
{
|
|
struct cred *cred = (struct cred *) _cred;
|
|
|
|
BUG_ON(atomic_read(&(cred)->usage) <= 0);
|
|
if (atomic_dec_and_test(&(cred)->usage))
|
|
__put_cred(cred);
|
|
}
|
|
|
|
/**
|
|
* current_cred - Access the current task's credentials
|
|
*
|
|
* Access the credentials of the current task.
|
|
*/
|
|
#define current_cred() \
|
|
(current->cred)
|
|
|
|
/**
|
|
* __task_cred - Access another task's credentials
|
|
* @task: The task to query
|
|
*
|
|
* Access the credentials of another task. The caller must hold the
|
|
* RCU readlock.
|
|
*
|
|
* The caller must make sure task doesn't go away, either by holding a ref on
|
|
* task or by holding tasklist_lock to prevent it from being unlinked.
|
|
*/
|
|
#define __task_cred(task) \
|
|
((const struct cred *)(rcu_dereference((task)->cred)))
|
|
|
|
/**
|
|
* get_task_cred - Get another task's credentials
|
|
* @task: The task to query
|
|
*
|
|
* Get the credentials of a task, pinning them so that they can't go away.
|
|
* Accessing a task's credentials directly is not permitted.
|
|
*
|
|
* The caller must make sure task doesn't go away, either by holding a ref on
|
|
* task or by holding tasklist_lock to prevent it from being unlinked.
|
|
*/
|
|
#define get_task_cred(task) \
|
|
({ \
|
|
struct cred *__cred; \
|
|
rcu_read_lock(); \
|
|
__cred = (struct cred *) __task_cred((task)); \
|
|
get_cred(__cred); \
|
|
rcu_read_unlock(); \
|
|
__cred; \
|
|
})
|
|
|
|
/**
|
|
* get_current_cred - Get the current task's credentials
|
|
*
|
|
* Get the credentials of the current task, pinning them so that they can't go
|
|
* away. Accessing the current task's credentials directly is not permitted.
|
|
*/
|
|
#define get_current_cred() \
|
|
(get_cred(current_cred()))
|
|
|
|
/**
|
|
* get_current_user - Get the current task's user_struct
|
|
*
|
|
* Get the user record of the current task, pinning it so that it can't go
|
|
* away.
|
|
*/
|
|
#define get_current_user() \
|
|
({ \
|
|
struct user_struct *__u; \
|
|
struct cred *__cred; \
|
|
__cred = (struct cred *) current_cred(); \
|
|
__u = get_uid(__cred->user); \
|
|
__u; \
|
|
})
|
|
|
|
/**
|
|
* get_current_groups - Get the current task's supplementary group list
|
|
*
|
|
* Get the supplementary group list of the current task, pinning it so that it
|
|
* can't go away.
|
|
*/
|
|
#define get_current_groups() \
|
|
({ \
|
|
struct group_info *__groups; \
|
|
struct cred *__cred; \
|
|
__cred = (struct cred *) current_cred(); \
|
|
__groups = get_group_info(__cred->group_info); \
|
|
__groups; \
|
|
})
|
|
|
|
#define task_cred_xxx(task, xxx) \
|
|
({ \
|
|
__typeof__(((struct cred *)NULL)->xxx) ___val; \
|
|
rcu_read_lock(); \
|
|
___val = __task_cred((task))->xxx; \
|
|
rcu_read_unlock(); \
|
|
___val; \
|
|
})
|
|
|
|
#define task_uid(task) (task_cred_xxx((task), uid))
|
|
#define task_euid(task) (task_cred_xxx((task), euid))
|
|
|
|
#define current_cred_xxx(xxx) \
|
|
({ \
|
|
current->cred->xxx; \
|
|
})
|
|
|
|
#define current_uid() (current_cred_xxx(uid))
|
|
#define current_gid() (current_cred_xxx(gid))
|
|
#define current_euid() (current_cred_xxx(euid))
|
|
#define current_egid() (current_cred_xxx(egid))
|
|
#define current_suid() (current_cred_xxx(suid))
|
|
#define current_sgid() (current_cred_xxx(sgid))
|
|
#define current_fsuid() (current_cred_xxx(fsuid))
|
|
#define current_fsgid() (current_cred_xxx(fsgid))
|
|
#define current_cap() (current_cred_xxx(cap_effective))
|
|
#define current_user() (current_cred_xxx(user))
|
|
#define current_security() (current_cred_xxx(security))
|
|
|
|
#define current_uid_gid(_uid, _gid) \
|
|
do { \
|
|
const struct cred *__cred; \
|
|
__cred = current_cred(); \
|
|
*(_uid) = __cred->uid; \
|
|
*(_gid) = __cred->gid; \
|
|
} while(0)
|
|
|
|
#define current_euid_egid(_euid, _egid) \
|
|
do { \
|
|
const struct cred *__cred; \
|
|
__cred = current_cred(); \
|
|
*(_euid) = __cred->euid; \
|
|
*(_egid) = __cred->egid; \
|
|
} while(0)
|
|
|
|
#define current_fsuid_fsgid(_fsuid, _fsgid) \
|
|
do { \
|
|
const struct cred *__cred; \
|
|
__cred = current_cred(); \
|
|
*(_fsuid) = __cred->fsuid; \
|
|
*(_fsgid) = __cred->fsgid; \
|
|
} while(0)
|
|
|
|
#endif /* _LINUX_CRED_H */
|