blob: dcc94c3153d5113a44969bd712b1c7692bf55b93 [file] [log] [blame]
Thomas Gleixnerb886d83c2019-06-01 10:08:55 +02001// SPDX-License-Identifier: GPL-2.0-only
John Johansen0ed3b282010-07-29 14:48:05 -07002/*
3 * AppArmor security module
4 *
5 * This file contains AppArmor resource mediation and attachment
6 *
7 * Copyright (C) 1998-2008 Novell/SUSE
8 * Copyright 2009-2010 Canonical Ltd.
John Johansen0ed3b282010-07-29 14:48:05 -07009 */
10
11#include <linux/audit.h>
John Johansen86b92cb2017-06-09 14:15:20 -070012#include <linux/security.h>
John Johansen0ed3b282010-07-29 14:48:05 -070013
14#include "include/audit.h"
John Johansend8889d42017-10-11 01:04:48 -070015#include "include/cred.h"
John Johansen0ed3b282010-07-29 14:48:05 -070016#include "include/resource.h"
17#include "include/policy.h"
18
19/*
20 * Table of rlimit names: we generate it from resource.h.
21 */
22#include "rlim_names.h"
23
John Johansenc97204b2017-05-25 06:23:42 -070024struct aa_sfs_entry aa_sfs_entry_rlimit[] = {
25 AA_SFS_FILE_STRING("mask", AA_SFS_RLIMIT_MASK),
Kees Cookd384b0a2012-01-26 16:29:23 -080026 { }
27};
28
John Johansen0ed3b282010-07-29 14:48:05 -070029/* audit callback for resource specific fields */
30static void audit_cb(struct audit_buffer *ab, void *va)
31{
32 struct common_audit_data *sa = va;
John Johansenbd7bd202022-09-14 00:20:12 -070033 struct apparmor_audit_data *ad = aad(sa);
John Johansen0ed3b282010-07-29 14:48:05 -070034
35 audit_log_format(ab, " rlimit=%s value=%lu",
John Johansenbd7bd202022-09-14 00:20:12 -070036 rlim_names[ad->rlim.rlim], ad->rlim.max);
37 if (ad->peer) {
John Johansen86b92cb2017-06-09 14:15:20 -070038 audit_log_format(ab, " peer=");
John Johansend20f5a12022-09-19 00:46:09 -070039 aa_label_xaudit(ab, labels_ns(ad->subj_label), ad->peer,
John Johansen86b92cb2017-06-09 14:15:20 -070040 FLAGS_NONE, GFP_ATOMIC);
41 }
John Johansen0ed3b282010-07-29 14:48:05 -070042}
43
44/**
45 * audit_resource - audit setting resource limit
John Johansen90c436a2022-09-19 20:48:48 -070046 * @subj_cred: cred setting the resource
John Johansen0ed3b282010-07-29 14:48:05 -070047 * @profile: profile being enforced (NOT NULL)
Colin Ian King5933a622017-08-24 09:31:45 +010048 * @resource: rlimit being auditing
John Johansen0ed3b282010-07-29 14:48:05 -070049 * @value: value being set
Gaosheng Cui1f2bc062022-09-26 19:48:38 +080050 * @peer: aa_albel of the task being set
51 * @info: info being auditing
John Johansen0ed3b282010-07-29 14:48:05 -070052 * @error: error value
53 *
John Johansenbd7bd202022-09-14 00:20:12 -070054 * Returns: 0 or ad->error else other error code on failure
John Johansen0ed3b282010-07-29 14:48:05 -070055 */
John Johansen90c436a2022-09-19 20:48:48 -070056static int audit_resource(const struct cred *subj_cred,
57 struct aa_profile *profile, unsigned int resource,
John Johansen86b92cb2017-06-09 14:15:20 -070058 unsigned long value, struct aa_label *peer,
59 const char *info, int error)
John Johansen0ed3b282010-07-29 14:48:05 -070060{
John Johansenbd7bd202022-09-14 00:20:12 -070061 DEFINE_AUDIT_DATA(ad, LSM_AUDIT_DATA_NONE, AA_CLASS_RLIMITS,
John Johansen8c4b7852022-04-19 16:25:55 -070062 OP_SETRLIMIT);
John Johansen0ed3b282010-07-29 14:48:05 -070063
John Johansen90c436a2022-09-19 20:48:48 -070064 ad.subj_cred = subj_cred;
John Johansenbd7bd202022-09-14 00:20:12 -070065 ad.rlim.rlim = resource;
66 ad.rlim.max = value;
67 ad.peer = peer;
68 ad.info = info;
69 ad.error = error;
John Johansen86b92cb2017-06-09 14:15:20 -070070
John Johansenbd7bd202022-09-14 00:20:12 -070071 return aa_audit(AUDIT_APPARMOR_AUTO, profile, &ad, audit_cb);
John Johansen0ed3b282010-07-29 14:48:05 -070072}
73
74/**
Yang Lid44c6922022-10-14 16:42:55 +080075 * aa_map_resource - map compiled policy resource to internal #
John Johansen0ed3b282010-07-29 14:48:05 -070076 * @resource: flattened policy resource number
77 *
78 * Returns: resource # for the current architecture.
79 *
80 * rlimit resource can vary based on architecture, map the compiled policy
81 * resource # to the internal representation for the architecture.
82 */
83int aa_map_resource(int resource)
84{
85 return rlim_map[resource];
86}
87
John Johansen90c436a2022-09-19 20:48:48 -070088static int profile_setrlimit(const struct cred *subj_cred,
89 struct aa_profile *profile, unsigned int resource,
John Johansen86b92cb2017-06-09 14:15:20 -070090 struct rlimit *new_rlim)
91{
John Johansen1ad22fc2022-09-05 20:47:36 -070092 struct aa_ruleset *rules = list_first_entry(&profile->rules,
93 typeof(*rules), list);
John Johansen86b92cb2017-06-09 14:15:20 -070094 int e = 0;
95
John Johansen217af7e2022-07-29 17:17:31 -070096 if (rules->rlimits.mask & (1 << resource) && new_rlim->rlim_max >
97 rules->rlimits.limits[resource].rlim_max)
John Johansen86b92cb2017-06-09 14:15:20 -070098 e = -EACCES;
John Johansen90c436a2022-09-19 20:48:48 -070099 return audit_resource(subj_cred, profile, resource, new_rlim->rlim_max,
100 NULL, NULL, e);
John Johansen86b92cb2017-06-09 14:15:20 -0700101}
102
John Johansen0ed3b282010-07-29 14:48:05 -0700103/**
104 * aa_task_setrlimit - test permission to set an rlimit
John Johansen90c436a2022-09-19 20:48:48 -0700105 * @subj_cred: cred setting the limit
Gaosheng Cui13c17482023-06-25 09:13:46 +0800106 * @label: label confining the task (NOT NULL)
107 * @task: task the resource is being set on
108 * @resource: the resource being set
109 * @new_rlim: the new resource limit (NOT NULL)
John Johansen0ed3b282010-07-29 14:48:05 -0700110 *
111 * Control raising the processes hard limit.
112 *
113 * Returns: 0 or error code if setting resource failed
114 */
John Johansen90c436a2022-09-19 20:48:48 -0700115int aa_task_setrlimit(const struct cred *subj_cred, struct aa_label *label,
116 struct task_struct *task,
John Johansen3a2dc832010-09-06 10:10:20 -0700117 unsigned int resource, struct rlimit *new_rlim)
John Johansen0ed3b282010-07-29 14:48:05 -0700118{
John Johansen86b92cb2017-06-09 14:15:20 -0700119 struct aa_profile *profile;
120 struct aa_label *peer;
John Johansen0ed3b282010-07-29 14:48:05 -0700121 int error = 0;
122
John Johansencf47aed2013-02-18 16:07:34 -0800123 rcu_read_lock();
John Johansen86b92cb2017-06-09 14:15:20 -0700124 peer = aa_get_newest_cred_label(__task_cred(task));
John Johansencf47aed2013-02-18 16:07:34 -0800125 rcu_read_unlock();
126
John Johansen3a2dc832010-09-06 10:10:20 -0700127 /* TODO: extend resource control to handle other (non current)
John Johansencf47aed2013-02-18 16:07:34 -0800128 * profiles. AppArmor rules currently have the implicit assumption
129 * that the task is setting the resource of a task confined with
Jeff Mahoneyff118472015-11-06 15:17:30 -0500130 * the same profile or that the task setting the resource of another
131 * task has CAP_SYS_RESOURCE.
John Johansen3a2dc832010-09-06 10:10:20 -0700132 */
John Johansen0ed3b282010-07-29 14:48:05 -0700133
John Johansen86b92cb2017-06-09 14:15:20 -0700134 if (label != peer &&
John Johansen90c436a2022-09-19 20:48:48 -0700135 aa_capable(subj_cred, label, CAP_SYS_RESOURCE, CAP_OPT_NOAUDIT) != 0)
John Johansen86b92cb2017-06-09 14:15:20 -0700136 error = fn_for_each(label, profile,
John Johansen90c436a2022-09-19 20:48:48 -0700137 audit_resource(subj_cred, profile, resource,
John Johansen86b92cb2017-06-09 14:15:20 -0700138 new_rlim->rlim_max, peer,
Colin Ian King5933a622017-08-24 09:31:45 +0100139 "cap_sys_resource", -EACCES));
John Johansen86b92cb2017-06-09 14:15:20 -0700140 else
141 error = fn_for_each_confined(label, profile,
John Johansen90c436a2022-09-19 20:48:48 -0700142 profile_setrlimit(subj_cred, profile, resource,
143 new_rlim));
John Johansen86b92cb2017-06-09 14:15:20 -0700144 aa_put_label(peer);
John Johansencf47aed2013-02-18 16:07:34 -0800145
John Johansen86b92cb2017-06-09 14:15:20 -0700146 return error;
John Johansen0ed3b282010-07-29 14:48:05 -0700147}
148
149/**
150 * __aa_transition_rlimits - apply new profile rlimits
John Johansen86b92cb2017-06-09 14:15:20 -0700151 * @old_l: old label on task (NOT NULL)
152 * @new_l: new label with rlimits to apply (NOT NULL)
John Johansen0ed3b282010-07-29 14:48:05 -0700153 */
John Johansen86b92cb2017-06-09 14:15:20 -0700154void __aa_transition_rlimits(struct aa_label *old_l, struct aa_label *new_l)
John Johansen0ed3b282010-07-29 14:48:05 -0700155{
156 unsigned int mask = 0;
157 struct rlimit *rlim, *initrlim;
John Johansen86b92cb2017-06-09 14:15:20 -0700158 struct aa_profile *old, *new;
159 struct label_it i;
John Johansen0ed3b282010-07-29 14:48:05 -0700160
John Johansen86b92cb2017-06-09 14:15:20 -0700161 old = labels_profile(old_l);
162 new = labels_profile(new_l);
163
164 /* for any rlimits the profile controlled, reset the soft limit
165 * to the lesser of the tasks hard limit and the init tasks soft limit
John Johansen0ed3b282010-07-29 14:48:05 -0700166 */
John Johansen86b92cb2017-06-09 14:15:20 -0700167 label_for_each_confined(i, old_l, old) {
John Johansen1ad22fc2022-09-05 20:47:36 -0700168 struct aa_ruleset *rules = list_first_entry(&old->rules,
169 typeof(*rules),
170 list);
171 if (rules->rlimits.mask) {
John Johansen86b92cb2017-06-09 14:15:20 -0700172 int j;
173
174 for (j = 0, mask = 1; j < RLIM_NLIMITS; j++,
175 mask <<= 1) {
John Johansen1ad22fc2022-09-05 20:47:36 -0700176 if (rules->rlimits.mask & mask) {
John Johansen86b92cb2017-06-09 14:15:20 -0700177 rlim = current->signal->rlim + j;
178 initrlim = init_task.signal->rlim + j;
179 rlim->rlim_cur = min(rlim->rlim_max,
180 initrlim->rlim_cur);
181 }
John Johansen0ed3b282010-07-29 14:48:05 -0700182 }
183 }
184 }
185
186 /* set any new hard limits as dictated by the new profile */
John Johansen86b92cb2017-06-09 14:15:20 -0700187 label_for_each_confined(i, new_l, new) {
John Johansen1ad22fc2022-09-05 20:47:36 -0700188 struct aa_ruleset *rules = list_first_entry(&new->rules,
189 typeof(*rules),
190 list);
John Johansen86b92cb2017-06-09 14:15:20 -0700191 int j;
John Johansen0ed3b282010-07-29 14:48:05 -0700192
John Johansen1ad22fc2022-09-05 20:47:36 -0700193 if (!rules->rlimits.mask)
John Johansen86b92cb2017-06-09 14:15:20 -0700194 continue;
195 for (j = 0, mask = 1; j < RLIM_NLIMITS; j++, mask <<= 1) {
John Johansen1ad22fc2022-09-05 20:47:36 -0700196 if (!(rules->rlimits.mask & mask))
John Johansen86b92cb2017-06-09 14:15:20 -0700197 continue;
198
199 rlim = current->signal->rlim + j;
200 rlim->rlim_max = min(rlim->rlim_max,
John Johansen1ad22fc2022-09-05 20:47:36 -0700201 rules->rlimits.limits[j].rlim_max);
John Johansen86b92cb2017-06-09 14:15:20 -0700202 /* soft limit should not exceed hard limit */
203 rlim->rlim_cur = min(rlim->rlim_cur, rlim->rlim_max);
204 }
John Johansen0ed3b282010-07-29 14:48:05 -0700205 }
206}