Linux Audio

Check our new training course

Loading...
v4.6
 
  1/*
  2 * AppArmor security module
  3 *
  4 * This file contains AppArmor capability mediation functions
  5 *
  6 * Copyright (C) 1998-2008 Novell/SUSE
  7 * Copyright 2009-2010 Canonical Ltd.
  8 *
  9 * This program is free software; you can redistribute it and/or
 10 * modify it under the terms of the GNU General Public License as
 11 * published by the Free Software Foundation, version 2 of the
 12 * License.
 13 */
 14
 15#include <linux/capability.h>
 16#include <linux/errno.h>
 17#include <linux/gfp.h>
 
 
 18
 19#include "include/apparmor.h"
 20#include "include/capability.h"
 21#include "include/context.h"
 22#include "include/policy.h"
 23#include "include/audit.h"
 24
 25/*
 26 * Table of capability names: we generate it from capabilities.h.
 27 */
 28#include "capability_names.h"
 29
 30struct aa_fs_entry aa_fs_entry_caps[] = {
 31	AA_FS_FILE_STRING("mask", AA_FS_CAPS_MASK),
 32	{ }
 33};
 34
 35struct audit_cache {
 36	struct aa_profile *profile;
 37	kernel_cap_t caps;
 
 38};
 39
 40static DEFINE_PER_CPU(struct audit_cache, audit_cache);
 41
 42/**
 43 * audit_cb - call back for capability components of audit struct
 44 * @ab - audit buffer   (NOT NULL)
 45 * @va - audit struct to audit data from  (NOT NULL)
 46 */
 47static void audit_cb(struct audit_buffer *ab, void *va)
 48{
 49	struct common_audit_data *sa = va;
 
 50	audit_log_format(ab, " capname=");
 51	audit_log_untrustedstring(ab, capability_names[sa->u.cap]);
 52}
 53
 54/**
 55 * audit_caps - audit a capability
 
 56 * @profile: profile being tested for confinement (NOT NULL)
 57 * @cap: capability tested
 58 * @error: error code returned by test
 59 *
 60 * Do auditing of capability and handle, audit/complain/kill modes switching
 61 * and duplicate message elimination.
 62 *
 63 * Returns: 0 or sa->error on success,  error code on failure
 64 */
 65static int audit_caps(struct aa_profile *profile, int cap, int error)
 
 66{
 
 
 
 
 67	struct audit_cache *ent;
 68	int type = AUDIT_APPARMOR_AUTO;
 69	struct common_audit_data sa;
 70	struct apparmor_audit_data aad = {0,};
 71	sa.type = LSM_AUDIT_DATA_CAP;
 72	sa.aad = &aad;
 73	sa.u.cap = cap;
 74	sa.aad->op = OP_CAPABLE;
 75	sa.aad->error = error;
 76
 77	if (likely(!error)) {
 78		/* test if auditing is being forced */
 79		if (likely((AUDIT_MODE(profile) != AUDIT_ALL) &&
 80			   !cap_raised(profile->caps.audit, cap)))
 81			return 0;
 82		type = AUDIT_APPARMOR_AUDIT;
 83	} else if (KILL_MODE(profile) ||
 84		   cap_raised(profile->caps.kill, cap)) {
 85		type = AUDIT_APPARMOR_KILL;
 86	} else if (cap_raised(profile->caps.quiet, cap) &&
 87		   AUDIT_MODE(profile) != AUDIT_NOQUIET &&
 88		   AUDIT_MODE(profile) != AUDIT_ALL) {
 89		/* quiet auditing */
 90		return error;
 91	}
 92
 93	/* Do simple duplicate message elimination */
 94	ent = &get_cpu_var(audit_cache);
 95	if (profile == ent->profile && cap_raised(ent->caps, cap)) {
 
 96		put_cpu_var(audit_cache);
 97		if (COMPLAIN_MODE(profile))
 98			return complain_error(error);
 99		return error;
100	} else {
101		aa_put_profile(ent->profile);
102		ent->profile = aa_get_profile(profile);
103		cap_raise(ent->caps, cap);
104	}
105	put_cpu_var(audit_cache);
106
107	return aa_audit(type, profile, GFP_ATOMIC, &sa, audit_cb);
108}
109
110/**
111 * profile_capable - test if profile allows use of capability @cap
112 * @profile: profile being enforced    (NOT NULL, NOT unconfined)
113 * @cap: capability to test if allowed
 
 
114 *
115 * Returns: 0 if allowed else -EPERM
116 */
117static int profile_capable(struct aa_profile *profile, int cap)
 
118{
119	return cap_raised(profile->caps.allow, cap) ? 0 : -EPERM;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
120}
121
122/**
123 * aa_capable - test permission to use capability
124 * @profile: profile being tested against (NOT NULL)
 
125 * @cap: capability to be tested
126 * @audit: whether an audit record should be generated
127 *
128 * Look up capability in profile capability set.
129 *
130 * Returns: 0 on success, or else an error code.
131 */
132int aa_capable(struct aa_profile *profile, int cap, int audit)
 
133{
134	int error = profile_capable(profile, cap);
 
 
135
136	if (!audit) {
137		if (COMPLAIN_MODE(profile))
138			return complain_error(error);
139		return error;
140	}
141
142	return audit_caps(profile, cap, error);
143}
v6.13.7
  1// SPDX-License-Identifier: GPL-2.0-only
  2/*
  3 * AppArmor security module
  4 *
  5 * This file contains AppArmor capability mediation functions
  6 *
  7 * Copyright (C) 1998-2008 Novell/SUSE
  8 * Copyright 2009-2010 Canonical Ltd.
 
 
 
 
 
  9 */
 10
 11#include <linux/capability.h>
 12#include <linux/errno.h>
 13#include <linux/gfp.h>
 14#include <linux/security.h>
 15#include <linux/timekeeping.h>
 16
 17#include "include/apparmor.h"
 18#include "include/capability.h"
 19#include "include/cred.h"
 20#include "include/policy.h"
 21#include "include/audit.h"
 22
 23/*
 24 * Table of capability names: we generate it from capabilities.h.
 25 */
 26#include "capability_names.h"
 27
 28struct aa_sfs_entry aa_sfs_entry_caps[] = {
 29	AA_SFS_FILE_STRING("mask", AA_SFS_CAPS_MASK),
 30	{ }
 31};
 32
 33struct audit_cache {
 34	const struct cred *ad_subj_cred;
 35	/* Capabilities go from 0 to CAP_LAST_CAP */
 36	u64 ktime_ns_expiration[CAP_LAST_CAP+1];
 37};
 38
 39static DEFINE_PER_CPU(struct audit_cache, audit_cache);
 40
 41/**
 42 * audit_cb - call back for capability components of audit struct
 43 * @ab: audit buffer   (NOT NULL)
 44 * @va: audit struct to audit data from  (NOT NULL)
 45 */
 46static void audit_cb(struct audit_buffer *ab, void *va)
 47{
 48	struct common_audit_data *sa = va;
 49
 50	audit_log_format(ab, " capname=");
 51	audit_log_untrustedstring(ab, capability_names[sa->u.cap]);
 52}
 53
 54/**
 55 * audit_caps - audit a capability
 56 * @ad: audit data
 57 * @profile: profile being tested for confinement (NOT NULL)
 58 * @cap: capability tested
 59 * @error: error code returned by test
 60 *
 61 * Do auditing of capability and handle, audit/complain/kill modes switching
 62 * and duplicate message elimination.
 63 *
 64 * Returns: 0 or ad->error on success,  error code on failure
 65 */
 66static int audit_caps(struct apparmor_audit_data *ad, struct aa_profile *profile,
 67		      int cap, int error)
 68{
 69	const u64 AUDIT_CACHE_TIMEOUT_NS = 1000*1000*1000; /* 1 second */
 70
 71	struct aa_ruleset *rules = list_first_entry(&profile->rules,
 72						    typeof(*rules), list);
 73	struct audit_cache *ent;
 74	int type = AUDIT_APPARMOR_AUTO;
 75
 76	ad->error = error;
 
 
 
 
 
 77
 78	if (likely(!error)) {
 79		/* test if auditing is being forced */
 80		if (likely((AUDIT_MODE(profile) != AUDIT_ALL) &&
 81			   !cap_raised(rules->caps.audit, cap)))
 82			return 0;
 83		type = AUDIT_APPARMOR_AUDIT;
 84	} else if (KILL_MODE(profile) ||
 85		   cap_raised(rules->caps.kill, cap)) {
 86		type = AUDIT_APPARMOR_KILL;
 87	} else if (cap_raised(rules->caps.quiet, cap) &&
 88		   AUDIT_MODE(profile) != AUDIT_NOQUIET &&
 89		   AUDIT_MODE(profile) != AUDIT_ALL) {
 90		/* quiet auditing */
 91		return error;
 92	}
 93
 94	/* Do simple duplicate message elimination */
 95	ent = &get_cpu_var(audit_cache);
 96	/* If the capability was never raised the timestamp check would also catch that */
 97	if (ad->subj_cred == ent->ad_subj_cred && ktime_get_ns() <= ent->ktime_ns_expiration[cap]) {
 98		put_cpu_var(audit_cache);
 99		if (COMPLAIN_MODE(profile))
100			return complain_error(error);
101		return error;
102	} else {
103		put_cred(ent->ad_subj_cred);
104		ent->ad_subj_cred = get_cred(ad->subj_cred);
105		ent->ktime_ns_expiration[cap] = ktime_get_ns() + AUDIT_CACHE_TIMEOUT_NS;
106	}
107	put_cpu_var(audit_cache);
108
109	return aa_audit(type, profile, ad, audit_cb);
110}
111
112/**
113 * profile_capable - test if profile allows use of capability @cap
114 * @profile: profile being enforced    (NOT NULL, NOT unconfined)
115 * @cap: capability to test if allowed
116 * @opts: CAP_OPT_NOAUDIT bit determines whether audit record is generated
117 * @ad: audit data (NOT NULL)
118 *
119 * Returns: 0 if allowed else -EPERM
120 */
121static int profile_capable(struct aa_profile *profile, int cap,
122			   unsigned int opts, struct apparmor_audit_data *ad)
123{
124	struct aa_ruleset *rules = list_first_entry(&profile->rules,
125						    typeof(*rules), list);
126	int error;
127
128	if (cap_raised(rules->caps.allow, cap) &&
129	    !cap_raised(rules->caps.denied, cap))
130		error = 0;
131	else
132		error = -EPERM;
133
134	if (opts & CAP_OPT_NOAUDIT) {
135		if (!COMPLAIN_MODE(profile))
136			return error;
137		/* audit the cap request in complain mode but note that it
138		 * should be optional.
139		 */
140		ad->info = "optional: no audit";
141	}
142
143	return audit_caps(ad, profile, cap, error);
144}
145
146/**
147 * aa_capable - test permission to use capability
148 * @subj_cred: cred we are testing capability against
149 * @label: label being tested for capability (NOT NULL)
150 * @cap: capability to be tested
151 * @opts: CAP_OPT_NOAUDIT bit determines whether audit record is generated
152 *
153 * Look up capability in profile capability set.
154 *
155 * Returns: 0 on success, or else an error code.
156 */
157int aa_capable(const struct cred *subj_cred, struct aa_label *label,
158	       int cap, unsigned int opts)
159{
160	struct aa_profile *profile;
161	int error = 0;
162	DEFINE_AUDIT_DATA(ad, LSM_AUDIT_DATA_CAP, AA_CLASS_CAP, OP_CAPABLE);
163
164	ad.subj_cred = subj_cred;
165	ad.common.u.cap = cap;
166	error = fn_for_each_confined(label, profile,
167			profile_capable(profile, cap, opts, &ad));
 
168
169	return error;
170}