2021-04-22 15:41:13 +00:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0-only */
|
|
|
|
/*
|
|
|
|
* Landlock LSM - Credential hooks
|
|
|
|
*
|
|
|
|
* Copyright © 2019-2020 Mickaël Salaün <mic@digikod.net>
|
|
|
|
* Copyright © 2019-2020 ANSSI
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _SECURITY_LANDLOCK_CRED_H
|
|
|
|
#define _SECURITY_LANDLOCK_CRED_H
|
|
|
|
|
|
|
|
#include <linux/cred.h>
|
|
|
|
#include <linux/init.h>
|
|
|
|
#include <linux/rcupdate.h>
|
|
|
|
|
|
|
|
#include "ruleset.h"
|
|
|
|
#include "setup.h"
|
|
|
|
|
|
|
|
struct landlock_cred_security {
|
|
|
|
struct landlock_ruleset *domain;
|
|
|
|
};
|
|
|
|
|
2022-05-06 16:05:08 +00:00
|
|
|
static inline struct landlock_cred_security *
|
|
|
|
landlock_cred(const struct cred *cred)
|
2021-04-22 15:41:13 +00:00
|
|
|
{
|
|
|
|
return cred->security + landlock_blob_sizes.lbs_cred;
|
|
|
|
}
|
|
|
|
|
landlock: Add signal scoping
Currently, a sandbox process is not restricted to sending a signal (e.g.
SIGKILL) to a process outside the sandbox environment. The ability to
send a signal for a sandboxed process should be scoped the same way
abstract UNIX sockets are scoped. Therefore, we extend the "scoped"
field in a ruleset with LANDLOCK_SCOPE_SIGNAL to specify that a ruleset
will deny sending any signal from within a sandbox process to its parent
(i.e. any parent sandbox or non-sandboxed processes).
This patch adds file_set_fowner and file_free_security hooks to set and
release a pointer to the file owner's domain. This pointer, fown_domain
in landlock_file_security will be used in file_send_sigiotask to check
if the process can send a signal.
The ruleset_with_unknown_scope test is updated to support
LANDLOCK_SCOPE_SIGNAL.
This depends on two new changes:
- commit 1934b212615d ("file: reclaim 24 bytes from f_owner"): replace
container_of(fown, struct file, f_owner) with fown->file .
- commit 26f204380a3c ("fs: Fix file_set_fowner LSM hook
inconsistencies"): lock before calling the hook.
Signed-off-by: Tahera Fahimi <fahimitahera@gmail.com>
Closes: https://github.com/landlock-lsm/linux/issues/8
Link: https://lore.kernel.org/r/df2b4f880a2ed3042992689a793ea0951f6798a5.1725657727.git.fahimitahera@gmail.com
[mic: Update landlock_get_current_domain()'s return type, improve and
fix locking in hook_file_set_fowner(), simplify and fix sleepable call
and locking issue in hook_file_send_sigiotask() and rebase on the latest
VFS tree, simplify hook_task_kill() and quickly return when not
sandboxed, improve comments, rename LANDLOCK_SCOPED_SIGNAL]
Co-developed-by: Mickaël Salaün <mic@digikod.net>
Signed-off-by: Mickaël Salaün <mic@digikod.net>
2024-09-06 21:30:03 +00:00
|
|
|
static inline struct landlock_ruleset *landlock_get_current_domain(void)
|
2021-04-22 15:41:13 +00:00
|
|
|
{
|
|
|
|
return landlock_cred(current_cred())->domain;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* The call needs to come from an RCU read-side critical section.
|
|
|
|
*/
|
2022-05-06 16:05:08 +00:00
|
|
|
static inline const struct landlock_ruleset *
|
|
|
|
landlock_get_task_domain(const struct task_struct *const task)
|
2021-04-22 15:41:13 +00:00
|
|
|
{
|
|
|
|
return landlock_cred(__task_cred(task))->domain;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline bool landlocked(const struct task_struct *const task)
|
|
|
|
{
|
|
|
|
bool has_dom;
|
|
|
|
|
|
|
|
if (task == current)
|
|
|
|
return !!landlock_get_current_domain();
|
|
|
|
|
|
|
|
rcu_read_lock();
|
|
|
|
has_dom = !!landlock_get_task_domain(task);
|
|
|
|
rcu_read_unlock();
|
|
|
|
return has_dom;
|
|
|
|
}
|
|
|
|
|
|
|
|
__init void landlock_add_cred_hooks(void);
|
|
|
|
|
|
|
|
#endif /* _SECURITY_LANDLOCK_CRED_H */
|