118 lines
3.2 KiB
C
Raw Normal View History

2026-01-21 18:59:54 +08:00
// SPDX-License-Identifier: GPL-2.0-only
/*
* AppArmor security module
*
* This file contains AppArmor ipc mediation
*
* Copyright (C) 1998-2008 Novell/SUSE
* Copyright 2009-2017 Canonical Ltd.
*/
#include <linux/gfp.h>
#include "include/audit.h"
#include "include/capability.h"
#include "include/cred.h"
#include "include/policy.h"
#include "include/ipc.h"
#include "include/sig_names.h"
static inline int map_signal_num(int sig)
{
if (sig > SIGRTMAX)
return SIGUNKNOWN;
else if (sig >= SIGRTMIN)
return sig - SIGRTMIN + SIGRT_BASE;
else if (sig < MAXMAPPED_SIG)
return sig_map[sig];
return SIGUNKNOWN;
}
/**
* audit_signal_mask - convert mask to permission string
* @mask: permission mask to convert
*
* Returns: pointer to static string
*/
static const char *audit_signal_mask(u32 mask)
{
if (mask & MAY_READ)
return "receive";
if (mask & MAY_WRITE)
return "send";
return "";
}
/**
2026-01-29 22:25:33 +08:00
* audit_signal_cb() - call back for signal specific audit fields
2026-01-21 18:59:54 +08:00
* @ab: audit_buffer (NOT NULL)
* @va: audit struct to audit values of (NOT NULL)
*/
static void audit_signal_cb(struct audit_buffer *ab, void *va)
{
struct common_audit_data *sa = va;
2026-01-29 22:25:33 +08:00
struct apparmor_audit_data *ad = aad(sa);
2026-01-21 18:59:54 +08:00
2026-01-29 22:25:33 +08:00
if (ad->request & AA_SIGNAL_PERM_MASK) {
2026-01-21 18:59:54 +08:00
audit_log_format(ab, " requested_mask=\"%s\"",
2026-01-29 22:25:33 +08:00
audit_signal_mask(ad->request));
if (ad->denied & AA_SIGNAL_PERM_MASK) {
2026-01-21 18:59:54 +08:00
audit_log_format(ab, " denied_mask=\"%s\"",
2026-01-29 22:25:33 +08:00
audit_signal_mask(ad->denied));
2026-01-21 18:59:54 +08:00
}
}
2026-01-29 22:25:33 +08:00
if (ad->signal == SIGUNKNOWN)
2026-01-21 18:59:54 +08:00
audit_log_format(ab, "signal=unknown(%d)",
2026-01-29 22:25:33 +08:00
ad->unmappedsig);
else if (ad->signal < MAXMAPPED_SIGNAME)
audit_log_format(ab, " signal=%s", sig_names[ad->signal]);
2026-01-21 18:59:54 +08:00
else
audit_log_format(ab, " signal=rtmin+%d",
2026-01-29 22:25:33 +08:00
ad->signal - SIGRT_BASE);
2026-01-21 18:59:54 +08:00
audit_log_format(ab, " peer=");
2026-01-29 22:25:33 +08:00
aa_label_xaudit(ab, labels_ns(ad->subj_label), ad->peer,
2026-01-21 18:59:54 +08:00
FLAGS_NONE, GFP_ATOMIC);
}
2026-01-29 22:25:33 +08:00
static int profile_signal_perm(const struct cred *cred,
struct aa_profile *profile,
2026-01-21 18:59:54 +08:00
struct aa_label *peer, u32 request,
2026-01-29 22:25:33 +08:00
struct apparmor_audit_data *ad)
2026-01-21 18:59:54 +08:00
{
2026-01-29 22:25:33 +08:00
struct aa_ruleset *rules = list_first_entry(&profile->rules,
typeof(*rules), list);
2026-01-21 18:59:54 +08:00
struct aa_perms perms;
2026-01-29 22:25:33 +08:00
aa_state_t state;
2026-01-21 18:59:54 +08:00
if (profile_unconfined(profile) ||
2026-01-29 22:25:33 +08:00
!ANY_RULE_MEDIATES(&profile->rules, AA_CLASS_SIGNAL))
2026-01-21 18:59:54 +08:00
return 0;
2026-01-29 22:25:33 +08:00
ad->subj_cred = cred;
ad->peer = peer;
2026-01-21 18:59:54 +08:00
/* TODO: secondary cache check <profile, profile, perm> */
2026-01-29 22:25:33 +08:00
state = aa_dfa_next(rules->policy.dfa,
rules->policy.start[AA_CLASS_SIGNAL],
ad->signal);
aa_label_match(profile, rules, peer, state, false, request, &perms);
2026-01-21 18:59:54 +08:00
aa_apply_modes_to_perms(profile, &perms);
2026-01-29 22:25:33 +08:00
return aa_check_perms(profile, &perms, request, ad, audit_signal_cb);
2026-01-21 18:59:54 +08:00
}
2026-01-29 22:25:33 +08:00
int aa_may_signal(const struct cred *subj_cred, struct aa_label *sender,
const struct cred *target_cred, struct aa_label *target,
int sig)
2026-01-21 18:59:54 +08:00
{
struct aa_profile *profile;
2026-01-29 22:25:33 +08:00
DEFINE_AUDIT_DATA(ad, LSM_AUDIT_DATA_NONE, AA_CLASS_SIGNAL, OP_SIGNAL);
2026-01-21 18:59:54 +08:00
2026-01-29 22:25:33 +08:00
ad.signal = map_signal_num(sig);
ad.unmappedsig = sig;
2026-01-21 18:59:54 +08:00
return xcheck_labels(sender, target, profile,
2026-01-29 22:25:33 +08:00
profile_signal_perm(subj_cred, profile, target,
MAY_WRITE, &ad),
profile_signal_perm(target_cred, profile, sender,
MAY_READ, &ad));
2026-01-21 18:59:54 +08:00
}