landlock: Prepare to use credential instead of domain for scope

This cosmetic change that is needed for audit support, specifically to
be able to filter according to cross-execution boundaries.

Replace hardcoded LANDLOCK_SCOPE_SIGNAL with the signal_scope.scope
variable.

Use scoped guards for RCU read-side critical sections.

Cc: Günther Noack <gnoack@google.com>
Link: https://lore.kernel.org/r/20250320190717.2287696-7-mic@digikod.net
[mic: Update headers]
Signed-off-by: Mickaël Salaün <mic@digikod.net>
pull/1188/head
Mickaël Salaün 2025-03-20 20:06:55 +01:00
parent 93f33f0cb2
commit 8d20efa9dc
No known key found for this signature in database
GPG Key ID: E5E3D0E88C82F6D2
1 changed files with 28 additions and 24 deletions

View File

@ -1,12 +1,14 @@
// SPDX-License-Identifier: GPL-2.0-only
/*
* Landlock LSM - Ptrace hooks
* Landlock - Ptrace and scope hooks
*
* Copyright © 2017-2020 Mickaël Salaün <mic@digikod.net>
* Copyright © 2019-2020 ANSSI
* Copyright © 2024-2025 Microsoft Corporation
*/
#include <asm/current.h>
#include <linux/cleanup.h>
#include <linux/cred.h>
#include <linux/errno.h>
#include <linux/kernel.h>
@ -214,15 +216,15 @@ static int hook_unix_stream_connect(struct sock *const sock,
struct sock *const other,
struct sock *const newsk)
{
const struct landlock_ruleset *const dom =
landlock_get_applicable_domain(landlock_get_current_domain(),
unix_scope);
const struct landlock_cred_security *const subject =
landlock_get_applicable_subject(current_cred(), unix_scope,
NULL);
/* Quick return for non-landlocked tasks. */
if (!dom)
if (!subject)
return 0;
if (is_abstract_socket(other) && sock_is_scoped(other, dom))
if (is_abstract_socket(other) && sock_is_scoped(other, subject->domain))
return -EPERM;
return 0;
@ -231,11 +233,11 @@ static int hook_unix_stream_connect(struct sock *const sock,
static int hook_unix_may_send(struct socket *const sock,
struct socket *const other)
{
const struct landlock_ruleset *const dom =
landlock_get_applicable_domain(landlock_get_current_domain(),
unix_scope);
const struct landlock_cred_security *const subject =
landlock_get_applicable_subject(current_cred(), unix_scope,
NULL);
if (!dom)
if (!subject)
return 0;
/*
@ -245,7 +247,8 @@ static int hook_unix_may_send(struct socket *const sock,
if (unix_peer(sock->sk) == other->sk)
return 0;
if (is_abstract_socket(other->sk) && sock_is_scoped(other->sk, dom))
if (is_abstract_socket(other->sk) &&
sock_is_scoped(other->sk, subject->domain))
return -EPERM;
return 0;
@ -257,15 +260,12 @@ static const struct access_masks signal_scope = {
static int hook_task_kill(struct task_struct *const p,
struct kernel_siginfo *const info, const int sig,
const struct cred *const cred)
const struct cred *cred)
{
bool is_scoped;
const struct landlock_ruleset *dom;
const struct landlock_cred_security *subject;
if (cred) {
/* Dealing with USB IO. */
dom = landlock_cred(cred)->domain;
} else {
if (!cred) {
/*
* Always allow sending signals between threads of the same process.
* This is required for process credential changes by the Native POSIX
@ -277,18 +277,22 @@ static int hook_task_kill(struct task_struct *const p,
if (same_thread_group(p, current))
return 0;
dom = landlock_get_current_domain();
/* Not dealing with USB IO. */
cred = current_cred();
}
dom = landlock_get_applicable_domain(dom, signal_scope);
subject = landlock_get_applicable_subject(cred, signal_scope, NULL);
/* Quick return for non-landlocked tasks. */
if (!dom)
if (!subject)
return 0;
rcu_read_lock();
is_scoped = domain_is_scoped(dom, landlock_get_task_domain(p),
LANDLOCK_SCOPE_SIGNAL);
rcu_read_unlock();
scoped_guard(rcu)
{
is_scoped = domain_is_scoped(subject->domain,
landlock_get_task_domain(p),
signal_scope.scope);
}
if (is_scoped)
return -EPERM;