2019-06-01 16:08:55 +08:00
|
|
|
// SPDX-License-Identifier: GPL-2.0-only
|
2010-07-30 05:48:05 +08:00
|
|
|
/*
|
|
|
|
* AppArmor security module
|
|
|
|
*
|
|
|
|
* This file contains AppArmor ipc mediation
|
|
|
|
*
|
|
|
|
* Copyright (C) 1998-2008 Novell/SUSE
|
2017-06-10 05:22:14 +08:00
|
|
|
* Copyright 2009-2017 Canonical Ltd.
|
2010-07-30 05:48:05 +08:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <linux/gfp.h>
|
|
|
|
|
|
|
|
#include "include/audit.h"
|
|
|
|
#include "include/capability.h"
|
2017-10-11 16:04:48 +08:00
|
|
|
#include "include/cred.h"
|
2010-07-30 05:48:05 +08:00
|
|
|
#include "include/policy.h"
|
2011-08-29 08:40:54 +08:00
|
|
|
#include "include/ipc.h"
|
2017-07-19 13:56:22 +08:00
|
|
|
#include "include/sig_names.h"
|
2010-07-30 05:48:05 +08:00
|
|
|
|
|
|
|
|
2017-07-19 13:56:22 +08:00
|
|
|
static inline int map_signal_num(int sig)
|
|
|
|
{
|
|
|
|
if (sig > SIGRTMAX)
|
|
|
|
return SIGUNKNOWN;
|
|
|
|
else if (sig >= SIGRTMIN)
|
2018-02-01 19:32:02 +08:00
|
|
|
return sig - SIGRTMIN + SIGRT_BASE;
|
2017-11-09 00:09:52 +08:00
|
|
|
else if (sig < MAXMAPPED_SIG)
|
2017-07-19 13:56:22 +08:00
|
|
|
return sig_map[sig];
|
|
|
|
return SIGUNKNOWN;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2020-07-14 03:51:59 +08:00
|
|
|
* audit_signal_mask - convert mask to permission string
|
2017-07-19 13:56:22 +08:00
|
|
|
* @mask: permission mask to convert
|
2020-07-14 03:51:59 +08:00
|
|
|
*
|
|
|
|
* Returns: pointer to static string
|
2017-07-19 13:56:22 +08:00
|
|
|
*/
|
2020-07-14 03:51:59 +08:00
|
|
|
static const char *audit_signal_mask(u32 mask)
|
2017-07-19 13:56:22 +08:00
|
|
|
{
|
|
|
|
if (mask & MAY_READ)
|
2020-07-14 03:51:59 +08:00
|
|
|
return "receive";
|
2017-07-19 13:56:22 +08:00
|
|
|
if (mask & MAY_WRITE)
|
2020-07-14 03:51:59 +08:00
|
|
|
return "send";
|
|
|
|
return "";
|
2017-07-19 13:56:22 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2022-10-08 14:34:11 +08:00
|
|
|
* audit_signal_cb() - call back for signal specific audit fields
|
2017-07-19 13:56:22 +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;
|
2022-09-14 15:20:12 +08:00
|
|
|
struct apparmor_audit_data *ad = aad(sa);
|
2017-07-19 13:56:22 +08:00
|
|
|
|
2022-09-14 15:20:12 +08:00
|
|
|
if (ad->request & AA_SIGNAL_PERM_MASK) {
|
2020-07-14 03:51:59 +08:00
|
|
|
audit_log_format(ab, " requested_mask=\"%s\"",
|
2022-09-14 15:20:12 +08:00
|
|
|
audit_signal_mask(ad->request));
|
|
|
|
if (ad->denied & AA_SIGNAL_PERM_MASK) {
|
2020-07-14 03:51:59 +08:00
|
|
|
audit_log_format(ab, " denied_mask=\"%s\"",
|
2022-09-14 15:20:12 +08:00
|
|
|
audit_signal_mask(ad->denied));
|
2017-07-19 13:56:22 +08:00
|
|
|
}
|
|
|
|
}
|
2022-09-14 15:20:12 +08:00
|
|
|
if (ad->signal == SIGUNKNOWN)
|
2018-02-01 19:32:02 +08:00
|
|
|
audit_log_format(ab, "signal=unknown(%d)",
|
2022-09-14 15:20:12 +08:00
|
|
|
ad->unmappedsig);
|
|
|
|
else if (ad->signal < MAXMAPPED_SIGNAME)
|
|
|
|
audit_log_format(ab, " signal=%s", sig_names[ad->signal]);
|
2017-07-19 13:56:22 +08:00
|
|
|
else
|
|
|
|
audit_log_format(ab, " signal=rtmin+%d",
|
2022-09-14 15:20:12 +08:00
|
|
|
ad->signal - SIGRT_BASE);
|
2017-07-19 13:56:22 +08:00
|
|
|
audit_log_format(ab, " peer=");
|
2022-09-19 15:46:09 +08:00
|
|
|
aa_label_xaudit(ab, labels_ns(ad->subj_label), ad->peer,
|
2017-07-19 13:56:22 +08:00
|
|
|
FLAGS_NONE, GFP_ATOMIC);
|
|
|
|
}
|
|
|
|
|
2022-09-20 11:48:48 +08:00
|
|
|
static int profile_signal_perm(const struct cred *cred,
|
|
|
|
struct aa_profile *profile,
|
2017-12-12 17:02:13 +08:00
|
|
|
struct aa_label *peer, u32 request,
|
2022-09-14 15:20:12 +08:00
|
|
|
struct apparmor_audit_data *ad)
|
2017-07-19 13:56:22 +08:00
|
|
|
{
|
2022-09-06 11:47:36 +08:00
|
|
|
struct aa_ruleset *rules = list_first_entry(&profile->rules,
|
|
|
|
typeof(*rules), list);
|
2017-07-19 13:56:22 +08:00
|
|
|
struct aa_perms perms;
|
2022-01-18 05:43:49 +08:00
|
|
|
aa_state_t state;
|
2017-07-19 13:56:22 +08:00
|
|
|
|
|
|
|
if (profile_unconfined(profile) ||
|
2022-09-06 11:47:36 +08:00
|
|
|
!ANY_RULE_MEDIATES(&profile->rules, AA_CLASS_SIGNAL))
|
2017-07-19 13:56:22 +08:00
|
|
|
return 0;
|
|
|
|
|
2022-09-20 11:48:48 +08:00
|
|
|
ad->subj_cred = cred;
|
2022-09-14 15:20:12 +08:00
|
|
|
ad->peer = peer;
|
2017-12-12 17:02:13 +08:00
|
|
|
/* TODO: secondary cache check <profile, profile, perm> */
|
2023-04-28 20:32:52 +08:00
|
|
|
state = aa_dfa_next(rules->policy->dfa,
|
|
|
|
rules->policy->start[AA_CLASS_SIGNAL],
|
2022-09-14 15:20:12 +08:00
|
|
|
ad->signal);
|
2022-07-30 08:17:31 +08:00
|
|
|
aa_label_match(profile, rules, peer, state, false, request, &perms);
|
2017-07-19 13:56:22 +08:00
|
|
|
aa_apply_modes_to_perms(profile, &perms);
|
2022-09-14 15:20:12 +08:00
|
|
|
return aa_check_perms(profile, &perms, request, ad, audit_signal_cb);
|
2017-07-19 13:56:22 +08:00
|
|
|
}
|
|
|
|
|
2022-09-20 11:48:48 +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)
|
2017-07-19 13:56:22 +08:00
|
|
|
{
|
2017-12-12 17:02:13 +08:00
|
|
|
struct aa_profile *profile;
|
2022-09-14 15:20:12 +08:00
|
|
|
DEFINE_AUDIT_DATA(ad, LSM_AUDIT_DATA_NONE, AA_CLASS_SIGNAL, OP_SIGNAL);
|
2017-07-19 13:56:22 +08:00
|
|
|
|
2022-09-14 15:20:12 +08:00
|
|
|
ad.signal = map_signal_num(sig);
|
|
|
|
ad.unmappedsig = sig;
|
2017-12-12 17:02:13 +08:00
|
|
|
return xcheck_labels(sender, target, profile,
|
2022-09-20 11:48:48 +08:00
|
|
|
profile_signal_perm(subj_cred, profile, target,
|
|
|
|
MAY_WRITE, &ad),
|
|
|
|
profile_signal_perm(target_cred, profile, sender,
|
|
|
|
MAY_READ, &ad));
|
2017-07-19 13:56:22 +08:00
|
|
|
}
|