blob: eb1ccd17178984fb8d2df404056ac3b7737dc86f [file] [log] [blame]
John Johansenc88d4c72010-07-29 14:48:00 -07001/*
2 * AppArmor security module
3 *
4 * This file contains AppArmor policy manipulation 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 * AppArmor policy is based around profiles, which contain the rules a
16 * task is confined by. Every task in the system has a profile attached
17 * to it determined either by matching "unconfined" tasks against the
18 * visible set of profiles or by following a profiles attachment rules.
19 *
20 * Each profile exists in a profile namespace which is a container of
21 * visible profiles. Each namespace contains a special "unconfined" profile,
22 * which doesn't enforce any confinement on a task beyond DAC.
23 *
24 * Namespace and profile names can be written together in either
25 * of two syntaxes.
26 * :namespace:profile - used by kernel interfaces for easy detection
27 * namespace://profile - used by policy
28 *
29 * Profile names can not start with : or @ or ^ and may not contain \0
30 *
31 * Reserved profile names
32 * unconfined - special automatically generated unconfined profile
33 * inherit - special name to indicate profile inheritance
34 * null-XXXX-YYYY - special automatically generated learning profiles
35 *
36 * Namespace names may not start with / or @ and may not contain \0 or :
37 * Reserved namespace names
38 * user-XXXX - user defined profiles
39 *
40 * a // in a profile or namespace name indicates a hierarchical name with the
41 * name before the // being the parent and the name after the child.
42 *
43 * Profile and namespace hierarchies serve two different but similar purposes.
44 * The namespace contains the set of visible profiles that are considered
45 * for attachment. The hierarchy of namespaces allows for virtualizing
46 * the namespace so that for example a chroot can have its own set of profiles
47 * which may define some local user namespaces.
48 * The profile hierarchy severs two distinct purposes,
49 * - it allows for sub profiles or hats, which allows an application to run
50 * subprograms under its own profile with different restriction than it
51 * self, and not have it use the system profile.
52 * eg. if a mail program starts an editor, the policy might make the
53 * restrictions tighter on the editor tighter than the mail program,
54 * and definitely different than general editor restrictions
55 * - it allows for binary hierarchy of profiles, so that execution history
56 * is preserved. This feature isn't exploited by AppArmor reference policy
57 * but is allowed. NOTE: this is currently suboptimal because profile
58 * aliasing is not currently implemented so that a profile for each
59 * level must be defined.
60 * eg. /bin/bash///bin/ls as a name would indicate /bin/ls was started
61 * from /bin/bash
62 *
63 * A profile or namespace name that can contain one or more // separators
64 * is referred to as an hname (hierarchical).
65 * eg. /bin/bash//bin/ls
66 *
67 * An fqname is a name that may contain both namespace and profile hnames.
68 * eg. :ns:/bin/bash//bin/ls
69 *
70 * NOTES:
71 * - locking of profile lists is currently fairly coarse. All profile
72 * lists within a namespace use the namespace lock.
73 * FIXME: move profile lists to using rcu_lists
74 */
75
76#include <linux/slab.h>
77#include <linux/spinlock.h>
78#include <linux/string.h>
John Johansen2bd8dbb2017-01-16 00:42:50 -080079#include <linux/user_namespace.h>
John Johansenc88d4c72010-07-29 14:48:00 -070080
81#include "include/apparmor.h"
82#include "include/capability.h"
83#include "include/context.h"
84#include "include/file.h"
85#include "include/ipc.h"
86#include "include/match.h"
87#include "include/path.h"
88#include "include/policy.h"
John Johansencff281f2017-01-16 00:42:15 -080089#include "include/policy_ns.h"
John Johansenc88d4c72010-07-29 14:48:00 -070090#include "include/policy_unpack.h"
91#include "include/resource.h"
John Johansenc88d4c72010-07-29 14:48:00 -070092
John Johansen2bd8dbb2017-01-16 00:42:50 -080093int unprivileged_userns_apparmor_policy = 1;
John Johansenc88d4c72010-07-29 14:48:00 -070094
John Johansen0d259f02013-07-10 21:13:43 -070095const char *const aa_profile_mode_names[] = {
John Johansenc88d4c72010-07-29 14:48:00 -070096 "enforce",
97 "complain",
98 "kill",
John Johansen03816502013-07-10 21:12:43 -070099 "unconfined",
John Johansenc88d4c72010-07-29 14:48:00 -0700100};
101
John Johansenc88d4c72010-07-29 14:48:00 -0700102
John Johansencff281f2017-01-16 00:42:15 -0800103/* requires profile list write lock held */
John Johansen83995882017-01-16 00:42:19 -0800104void __aa_update_proxy(struct aa_profile *orig, struct aa_profile *new)
John Johansenc88d4c72010-07-29 14:48:00 -0700105{
John Johansencff281f2017-01-16 00:42:15 -0800106 struct aa_profile *tmp;
John Johansenc88d4c72010-07-29 14:48:00 -0700107
John Johansen83995882017-01-16 00:42:19 -0800108 tmp = rcu_dereference_protected(orig->proxy->profile,
John Johansencff281f2017-01-16 00:42:15 -0800109 mutex_is_locked(&orig->ns->lock));
John Johansen83995882017-01-16 00:42:19 -0800110 rcu_assign_pointer(orig->proxy->profile, aa_get_profile(new));
John Johansend97d51d2017-01-16 00:42:18 -0800111 orig->flags |= PFLAG_STALE;
John Johansencff281f2017-01-16 00:42:15 -0800112 aa_put_profile(tmp);
John Johansenc88d4c72010-07-29 14:48:00 -0700113}
114
115/**
116 * __list_add_profile - add a profile to a list
117 * @list: list to add it to (NOT NULL)
118 * @profile: the profile to add (NOT NULL)
119 *
120 * refcount @profile, should be put by __list_remove_profile
121 *
122 * Requires: namespace lock be held, or list not be shared
123 */
124static void __list_add_profile(struct list_head *list,
125 struct aa_profile *profile)
126{
John Johansen01e2b672013-07-10 21:06:43 -0700127 list_add_rcu(&profile->base.list, list);
John Johansenc88d4c72010-07-29 14:48:00 -0700128 /* get list reference */
129 aa_get_profile(profile);
130}
131
132/**
133 * __list_remove_profile - remove a profile from the list it is on
134 * @profile: the profile to remove (NOT NULL)
135 *
136 * remove a profile from the list, warning generally removal should
137 * be done with __replace_profile as most profile removals are
138 * replacements to the unconfined profile.
139 *
140 * put @profile list refcount
141 *
142 * Requires: namespace lock be held, or list not have been live
143 */
144static void __list_remove_profile(struct aa_profile *profile)
145{
John Johansen01e2b672013-07-10 21:06:43 -0700146 list_del_rcu(&profile->base.list);
147 aa_put_profile(profile);
John Johansenc88d4c72010-07-29 14:48:00 -0700148}
149
John Johansenc88d4c72010-07-29 14:48:00 -0700150/**
151 * __remove_profile - remove old profile, and children
152 * @profile: profile to be replaced (NOT NULL)
153 *
154 * Requires: namespace list lock be held, or list not be shared
155 */
156static void __remove_profile(struct aa_profile *profile)
157{
158 /* release any children lists first */
John Johansencff281f2017-01-16 00:42:15 -0800159 __aa_profile_list_release(&profile->base.profiles);
John Johansenc88d4c72010-07-29 14:48:00 -0700160 /* released by free_profile */
John Johansen83995882017-01-16 00:42:19 -0800161 __aa_update_proxy(profile, profile->ns->unconfined);
John Johansen0d259f02013-07-10 21:13:43 -0700162 __aa_fs_profile_rmdir(profile);
John Johansenc88d4c72010-07-29 14:48:00 -0700163 __list_remove_profile(profile);
164}
165
166/**
John Johansencff281f2017-01-16 00:42:15 -0800167 * __aa_profile_list_release - remove all profiles on the list and put refs
John Johansenc88d4c72010-07-29 14:48:00 -0700168 * @head: list of profiles (NOT NULL)
169 *
170 * Requires: namespace lock be held
171 */
John Johansencff281f2017-01-16 00:42:15 -0800172void __aa_profile_list_release(struct list_head *head)
John Johansenc88d4c72010-07-29 14:48:00 -0700173{
174 struct aa_profile *profile, *tmp;
175 list_for_each_entry_safe(profile, tmp, head, base.list)
176 __remove_profile(profile);
177}
178
John Johansen77b071b2013-07-10 21:07:43 -0700179
John Johansen83995882017-01-16 00:42:19 -0800180static void free_proxy(struct aa_proxy *p)
John Johansen77b071b2013-07-10 21:07:43 -0700181{
John Johansen83995882017-01-16 00:42:19 -0800182 if (p) {
John Johansen4cd4fc72013-09-29 08:39:22 -0700183 /* r->profile will not be updated any more as r is dead */
John Johansen83995882017-01-16 00:42:19 -0800184 aa_put_profile(rcu_dereference_protected(p->profile, true));
185 kzfree(p);
John Johansen77b071b2013-07-10 21:07:43 -0700186 }
187}
188
189
John Johansen83995882017-01-16 00:42:19 -0800190void aa_free_proxy_kref(struct kref *kref)
John Johansen77b071b2013-07-10 21:07:43 -0700191{
John Johansen83995882017-01-16 00:42:19 -0800192 struct aa_proxy *p = container_of(kref, struct aa_proxy, count);
193
194 free_proxy(p);
John Johansen77b071b2013-07-10 21:07:43 -0700195}
196
John Johansenc88d4c72010-07-29 14:48:00 -0700197/**
John Johansen8651e1d62013-07-10 21:11:43 -0700198 * aa_free_profile - free a profile
John Johansenc88d4c72010-07-29 14:48:00 -0700199 * @profile: the profile to free (MAYBE NULL)
200 *
201 * Free a profile, its hats and null_profile. All references to the profile,
202 * its hats and null_profile must have been put.
203 *
204 * If the profile was referenced from a task context, free_profile() will
205 * be called from an rcu callback routine, so we must not sleep here.
206 */
John Johansen8651e1d62013-07-10 21:11:43 -0700207void aa_free_profile(struct aa_profile *profile)
John Johansenc88d4c72010-07-29 14:48:00 -0700208{
209 AA_DEBUG("%s(%p)\n", __func__, profile);
210
211 if (!profile)
212 return;
213
John Johansenc88d4c72010-07-29 14:48:00 -0700214 /* free children profiles */
John Johansenfe6bb312017-01-16 00:42:14 -0800215 aa_policy_destroy(&profile->base);
John Johansen01e2b672013-07-10 21:06:43 -0700216 aa_put_profile(rcu_access_pointer(profile->parent));
John Johansenc88d4c72010-07-29 14:48:00 -0700217
John Johansen98849df2017-01-16 00:42:16 -0800218 aa_put_ns(profile->ns);
John Johansenc88d4c72010-07-29 14:48:00 -0700219 kzfree(profile->rename);
220
221 aa_free_file_rules(&profile->file);
222 aa_free_cap_rules(&profile->caps);
223 aa_free_rlimit_rules(&profile->rlimits);
224
John Johansen0d259f02013-07-10 21:13:43 -0700225 kzfree(profile->dirname);
John Johansenc88d4c72010-07-29 14:48:00 -0700226 aa_put_dfa(profile->xmatch);
John Johansenad5ff3d2012-02-16 07:07:53 -0800227 aa_put_dfa(profile->policy.dfa);
John Johansen83995882017-01-16 00:42:19 -0800228 aa_put_proxy(profile->proxy);
John Johansenc88d4c72010-07-29 14:48:00 -0700229
John Johansen5cb3e912013-10-14 11:44:34 -0700230 kzfree(profile->hash);
John Johansen5ac8c352017-01-16 00:42:55 -0800231 aa_put_loaddata(profile->rawdata);
John Johansenc88d4c72010-07-29 14:48:00 -0700232 kzfree(profile);
233}
234
235/**
John Johansen01e2b672013-07-10 21:06:43 -0700236 * aa_free_profile_rcu - free aa_profile by rcu (called by aa_free_profile_kref)
237 * @head: rcu_head callback for freeing of a profile (NOT NULL)
238 */
239static void aa_free_profile_rcu(struct rcu_head *head)
240{
John Johansen742058b2013-07-10 21:10:43 -0700241 struct aa_profile *p = container_of(head, struct aa_profile, rcu);
242 if (p->flags & PFLAG_NS_COUNT)
John Johansen98849df2017-01-16 00:42:16 -0800243 aa_free_ns(p->ns);
John Johansen742058b2013-07-10 21:10:43 -0700244 else
John Johansen8651e1d62013-07-10 21:11:43 -0700245 aa_free_profile(p);
John Johansen01e2b672013-07-10 21:06:43 -0700246}
247
248/**
John Johansenc88d4c72010-07-29 14:48:00 -0700249 * aa_free_profile_kref - free aa_profile by kref (called by aa_put_profile)
250 * @kr: kref callback for freeing of a profile (NOT NULL)
251 */
252void aa_free_profile_kref(struct kref *kref)
253{
John Johansenfa2ac462013-07-10 21:08:43 -0700254 struct aa_profile *p = container_of(kref, struct aa_profile, count);
John Johansen742058b2013-07-10 21:10:43 -0700255 call_rcu(&p->rcu, aa_free_profile_rcu);
John Johansenc88d4c72010-07-29 14:48:00 -0700256}
257
John Johansen4da05cc2013-02-18 16:11:34 -0800258/**
259 * aa_alloc_profile - allocate, initialize and return a new profile
260 * @hname: name of the profile (NOT NULL)
John Johansen30b026a2017-01-16 00:42:35 -0800261 * @gfp: allocation type
John Johansen4da05cc2013-02-18 16:11:34 -0800262 *
263 * Returns: refcount profile or NULL on failure
264 */
John Johansen30b026a2017-01-16 00:42:35 -0800265struct aa_profile *aa_alloc_profile(const char *hname, gfp_t gfp)
John Johansen4da05cc2013-02-18 16:11:34 -0800266{
267 struct aa_profile *profile;
268
269 /* freed by free_profile - usually through aa_put_profile */
John Johansen30b026a2017-01-16 00:42:35 -0800270 profile = kzalloc(sizeof(*profile), gfp);
John Johansen4da05cc2013-02-18 16:11:34 -0800271 if (!profile)
272 return NULL;
273
John Johansen30b026a2017-01-16 00:42:35 -0800274 profile->proxy = kzalloc(sizeof(struct aa_proxy), gfp);
John Johansen83995882017-01-16 00:42:19 -0800275 if (!profile->proxy)
John Johansen77b071b2013-07-10 21:07:43 -0700276 goto fail;
John Johansen83995882017-01-16 00:42:19 -0800277 kref_init(&profile->proxy->count);
John Johansen77b071b2013-07-10 21:07:43 -0700278
John Johansen30b026a2017-01-16 00:42:35 -0800279 if (!aa_policy_init(&profile->base, NULL, hname, gfp))
John Johansen77b071b2013-07-10 21:07:43 -0700280 goto fail;
John Johansenfa2ac462013-07-10 21:08:43 -0700281 kref_init(&profile->count);
John Johansen4da05cc2013-02-18 16:11:34 -0800282
283 /* refcount released by caller */
284 return profile;
John Johansen77b071b2013-07-10 21:07:43 -0700285
286fail:
John Johansen83995882017-01-16 00:42:19 -0800287 kzfree(profile->proxy);
John Johansen77b071b2013-07-10 21:07:43 -0700288 kzfree(profile);
289
290 return NULL;
John Johansen4da05cc2013-02-18 16:11:34 -0800291}
292
293/**
John Johansen181f7c92017-01-16 00:42:36 -0800294 * aa_new_null_profile - create or find a null-X learning profile
John Johansen4da05cc2013-02-18 16:11:34 -0800295 * @parent: profile that caused this profile to be created (NOT NULL)
296 * @hat: true if the null- learning profile is a hat
John Johansen181f7c92017-01-16 00:42:36 -0800297 * @base: name to base the null profile off of
298 * @gfp: type of allocation
John Johansen4da05cc2013-02-18 16:11:34 -0800299 *
John Johansen181f7c92017-01-16 00:42:36 -0800300 * Find/Create a null- complain mode profile used in learning mode. The
301 * name of the profile is unique and follows the format of parent//null-XXX.
302 * where XXX is based on the @name or if that fails or is not supplied
303 * a unique number
John Johansen4da05cc2013-02-18 16:11:34 -0800304 *
305 * null profiles are added to the profile list but the list does not
306 * hold a count on them so that they are automatically released when
307 * not in use.
308 *
309 * Returns: new refcounted profile else NULL on failure
310 */
John Johansen181f7c92017-01-16 00:42:36 -0800311struct aa_profile *aa_new_null_profile(struct aa_profile *parent, bool hat,
312 const char *base, gfp_t gfp)
John Johansen4da05cc2013-02-18 16:11:34 -0800313{
John Johansen181f7c92017-01-16 00:42:36 -0800314 struct aa_profile *profile;
John Johansen4da05cc2013-02-18 16:11:34 -0800315 char *name;
John Johansen4da05cc2013-02-18 16:11:34 -0800316
John Johansen181f7c92017-01-16 00:42:36 -0800317 AA_BUG(!parent);
318
319 if (base) {
320 name = kmalloc(strlen(parent->base.hname) + 8 + strlen(base),
321 gfp);
322 if (name) {
323 sprintf(name, "%s//null-%s", parent->base.hname, base);
324 goto name;
325 }
326 /* fall through to try shorter uniq */
327 }
328
329 name = kmalloc(strlen(parent->base.hname) + 2 + 7 + 8, gfp);
John Johansen4da05cc2013-02-18 16:11:34 -0800330 if (!name)
John Johansen181f7c92017-01-16 00:42:36 -0800331 return NULL;
332 sprintf(name, "%s//null-%x", parent->base.hname,
333 atomic_inc_return(&parent->ns->uniq_null));
John Johansen4da05cc2013-02-18 16:11:34 -0800334
John Johansen181f7c92017-01-16 00:42:36 -0800335name:
336 /* lookup to see if this is a dup creation */
337 profile = aa_find_child(parent, basename(name));
338 if (profile)
339 goto out;
340
341 profile = aa_alloc_profile(name, gfp);
John Johansen4da05cc2013-02-18 16:11:34 -0800342 if (!profile)
343 goto fail;
344
345 profile->mode = APPARMOR_COMPLAIN;
John Johansen181f7c92017-01-16 00:42:36 -0800346 profile->flags |= PFLAG_NULL;
John Johansen4da05cc2013-02-18 16:11:34 -0800347 if (hat)
348 profile->flags |= PFLAG_HAT;
John Johansen181f7c92017-01-16 00:42:36 -0800349 profile->path_flags = parent->path_flags;
John Johansen4da05cc2013-02-18 16:11:34 -0800350
351 /* released on free_profile */
John Johansen01e2b672013-07-10 21:06:43 -0700352 rcu_assign_pointer(profile->parent, aa_get_profile(parent));
John Johansen98849df2017-01-16 00:42:16 -0800353 profile->ns = aa_get_ns(parent->ns);
John Johansen11c236b2017-01-16 00:42:42 -0800354 profile->file.dfa = aa_get_dfa(nulldfa);
355 profile->policy.dfa = aa_get_dfa(nulldfa);
John Johansen4da05cc2013-02-18 16:11:34 -0800356
John Johansen01e2b672013-07-10 21:06:43 -0700357 mutex_lock(&profile->ns->lock);
John Johansen4da05cc2013-02-18 16:11:34 -0800358 __list_add_profile(&parent->base.profiles, profile);
John Johansen01e2b672013-07-10 21:06:43 -0700359 mutex_unlock(&profile->ns->lock);
John Johansen4da05cc2013-02-18 16:11:34 -0800360
361 /* refcount released by caller */
John Johansen181f7c92017-01-16 00:42:36 -0800362out:
363 kfree(name);
364
John Johansen4da05cc2013-02-18 16:11:34 -0800365 return profile;
366
367fail:
John Johansen181f7c92017-01-16 00:42:36 -0800368 kfree(name);
369 aa_free_profile(profile);
John Johansen4da05cc2013-02-18 16:11:34 -0800370 return NULL;
371}
372
John Johansenc88d4c72010-07-29 14:48:00 -0700373/* TODO: profile accounting - setup in remove */
374
375/**
376 * __find_child - find a profile on @head list with a name matching @name
377 * @head: list to search (NOT NULL)
378 * @name: name of profile (NOT NULL)
379 *
John Johansen01e2b672013-07-10 21:06:43 -0700380 * Requires: rcu_read_lock be held
John Johansenc88d4c72010-07-29 14:48:00 -0700381 *
382 * Returns: unrefcounted profile ptr, or NULL if not found
383 */
384static struct aa_profile *__find_child(struct list_head *head, const char *name)
385{
386 return (struct aa_profile *)__policy_find(head, name);
387}
388
389/**
390 * __strn_find_child - find a profile on @head list using substring of @name
391 * @head: list to search (NOT NULL)
392 * @name: name of profile (NOT NULL)
393 * @len: length of @name substring to match
394 *
John Johansen01e2b672013-07-10 21:06:43 -0700395 * Requires: rcu_read_lock be held
John Johansenc88d4c72010-07-29 14:48:00 -0700396 *
397 * Returns: unrefcounted profile ptr, or NULL if not found
398 */
399static struct aa_profile *__strn_find_child(struct list_head *head,
400 const char *name, int len)
401{
402 return (struct aa_profile *)__policy_strn_find(head, name, len);
403}
404
405/**
406 * aa_find_child - find a profile by @name in @parent
407 * @parent: profile to search (NOT NULL)
408 * @name: profile name to search for (NOT NULL)
409 *
410 * Returns: a refcounted profile or NULL if not found
411 */
412struct aa_profile *aa_find_child(struct aa_profile *parent, const char *name)
413{
414 struct aa_profile *profile;
415
John Johansen01e2b672013-07-10 21:06:43 -0700416 rcu_read_lock();
John Johansende7c4cc2015-12-16 18:09:10 -0800417 do {
418 profile = __find_child(&parent->base.profiles, name);
419 } while (profile && !aa_get_profile_not0(profile));
John Johansen01e2b672013-07-10 21:06:43 -0700420 rcu_read_unlock();
John Johansenc88d4c72010-07-29 14:48:00 -0700421
422 /* refcount released by caller */
423 return profile;
424}
425
426/**
427 * __lookup_parent - lookup the parent of a profile of name @hname
428 * @ns: namespace to lookup profile in (NOT NULL)
429 * @hname: hierarchical profile name to find parent of (NOT NULL)
430 *
431 * Lookups up the parent of a fully qualified profile name, the profile
432 * that matches hname does not need to exist, in general this
433 * is used to load a new profile.
434 *
John Johansen01e2b672013-07-10 21:06:43 -0700435 * Requires: rcu_read_lock be held
John Johansenc88d4c72010-07-29 14:48:00 -0700436 *
437 * Returns: unrefcounted policy or NULL if not found
438 */
John Johansen98849df2017-01-16 00:42:16 -0800439static struct aa_policy *__lookup_parent(struct aa_ns *ns,
John Johansenc88d4c72010-07-29 14:48:00 -0700440 const char *hname)
441{
442 struct aa_policy *policy;
443 struct aa_profile *profile = NULL;
444 char *split;
445
446 policy = &ns->base;
447
448 for (split = strstr(hname, "//"); split;) {
449 profile = __strn_find_child(&policy->profiles, hname,
450 split - hname);
451 if (!profile)
452 return NULL;
453 policy = &profile->base;
454 hname = split + 2;
455 split = strstr(hname, "//");
456 }
457 if (!profile)
458 return &ns->base;
459 return &profile->base;
460}
461
462/**
John Johansen1741e9e2017-01-16 00:42:21 -0800463 * __lookupn_profile - lookup the profile matching @hname
John Johansenc88d4c72010-07-29 14:48:00 -0700464 * @base: base list to start looking up profile name from (NOT NULL)
465 * @hname: hierarchical profile name (NOT NULL)
John Johansen1741e9e2017-01-16 00:42:21 -0800466 * @n: length of @hname
John Johansenc88d4c72010-07-29 14:48:00 -0700467 *
John Johansen01e2b672013-07-10 21:06:43 -0700468 * Requires: rcu_read_lock be held
John Johansenc88d4c72010-07-29 14:48:00 -0700469 *
470 * Returns: unrefcounted profile pointer or NULL if not found
471 *
472 * Do a relative name lookup, recursing through profile tree.
473 */
John Johansen1741e9e2017-01-16 00:42:21 -0800474static struct aa_profile *__lookupn_profile(struct aa_policy *base,
475 const char *hname, size_t n)
John Johansenc88d4c72010-07-29 14:48:00 -0700476{
477 struct aa_profile *profile = NULL;
John Johansen1741e9e2017-01-16 00:42:21 -0800478 const char *split;
John Johansenc88d4c72010-07-29 14:48:00 -0700479
John Johansen1741e9e2017-01-16 00:42:21 -0800480 for (split = strnstr(hname, "//", n); split;
481 split = strnstr(hname, "//", n)) {
John Johansenc88d4c72010-07-29 14:48:00 -0700482 profile = __strn_find_child(&base->profiles, hname,
483 split - hname);
484 if (!profile)
485 return NULL;
486
487 base = &profile->base;
John Johansen1741e9e2017-01-16 00:42:21 -0800488 n -= split + 2 - hname;
John Johansenc88d4c72010-07-29 14:48:00 -0700489 hname = split + 2;
John Johansenc88d4c72010-07-29 14:48:00 -0700490 }
491
John Johansen1741e9e2017-01-16 00:42:21 -0800492 if (n)
493 return __strn_find_child(&base->profiles, hname, n);
494 return NULL;
495}
John Johansenc88d4c72010-07-29 14:48:00 -0700496
John Johansen1741e9e2017-01-16 00:42:21 -0800497static struct aa_profile *__lookup_profile(struct aa_policy *base,
498 const char *hname)
499{
500 return __lookupn_profile(base, hname, strlen(hname));
John Johansenc88d4c72010-07-29 14:48:00 -0700501}
502
503/**
504 * aa_lookup_profile - find a profile by its full or partial name
505 * @ns: the namespace to start from (NOT NULL)
506 * @hname: name to do lookup on. Does not contain namespace prefix (NOT NULL)
John Johansen1741e9e2017-01-16 00:42:21 -0800507 * @n: size of @hname
John Johansenc88d4c72010-07-29 14:48:00 -0700508 *
509 * Returns: refcounted profile or NULL if not found
510 */
John Johansen1741e9e2017-01-16 00:42:21 -0800511struct aa_profile *aa_lookupn_profile(struct aa_ns *ns, const char *hname,
512 size_t n)
John Johansenc88d4c72010-07-29 14:48:00 -0700513{
514 struct aa_profile *profile;
515
John Johansen01e2b672013-07-10 21:06:43 -0700516 rcu_read_lock();
517 do {
John Johansen1741e9e2017-01-16 00:42:21 -0800518 profile = __lookupn_profile(&ns->base, hname, n);
John Johansen01e2b672013-07-10 21:06:43 -0700519 } while (profile && !aa_get_profile_not0(profile));
520 rcu_read_unlock();
John Johansenc88d4c72010-07-29 14:48:00 -0700521
John Johansenbf832082012-05-16 11:00:05 -0700522 /* the unconfined profile is not in the regular profile list */
John Johansen1741e9e2017-01-16 00:42:21 -0800523 if (!profile && strncmp(hname, "unconfined", n) == 0)
John Johansenfa2ac462013-07-10 21:08:43 -0700524 profile = aa_get_newest_profile(ns->unconfined);
John Johansenbf832082012-05-16 11:00:05 -0700525
John Johansenc88d4c72010-07-29 14:48:00 -0700526 /* refcount released by caller */
527 return profile;
528}
529
John Johansen1741e9e2017-01-16 00:42:21 -0800530struct aa_profile *aa_lookup_profile(struct aa_ns *ns, const char *hname)
531{
532 return aa_lookupn_profile(ns, hname, strlen(hname));
533}
John Johansen31617dd2017-01-16 00:42:24 -0800534
535struct aa_profile *aa_fqlookupn_profile(struct aa_profile *base,
536 const char *fqname, size_t n)
537{
538 struct aa_profile *profile;
539 struct aa_ns *ns;
540 const char *name, *ns_name;
541 size_t ns_len;
542
543 name = aa_splitn_fqname(fqname, n, &ns_name, &ns_len);
544 if (ns_name) {
545 ns = aa_findn_ns(base->ns, ns_name, ns_len);
546 if (!ns)
547 return NULL;
548 } else
549 ns = aa_get_ns(base->ns);
550
551 if (name)
552 profile = aa_lookupn_profile(ns, name, n - (name - fqname));
553 else if (ns)
554 /* default profile for ns, currently unconfined */
555 profile = aa_get_newest_profile(ns->unconfined);
556 else
557 profile = NULL;
558 aa_put_ns(ns);
559
560 return profile;
561}
562
John Johansenc88d4c72010-07-29 14:48:00 -0700563/**
564 * replacement_allowed - test to see if replacement is allowed
565 * @profile: profile to test if it can be replaced (MAYBE NULL)
566 * @noreplace: true if replacement shouldn't be allowed but addition is okay
567 * @info: Returns - info about why replacement failed (NOT NULL)
568 *
569 * Returns: %0 if replacement allowed else error code
570 */
571static int replacement_allowed(struct aa_profile *profile, int noreplace,
572 const char **info)
573{
574 if (profile) {
575 if (profile->flags & PFLAG_IMMUTABLE) {
576 *info = "cannot replace immutible profile";
577 return -EPERM;
578 } else if (noreplace) {
579 *info = "profile already exists";
580 return -EEXIST;
581 }
582 }
583 return 0;
584}
585
John Johansenfc1c9fd2017-01-16 00:42:54 -0800586/* audit callback for net specific fields */
587static void audit_cb(struct audit_buffer *ab, void *va)
588{
589 struct common_audit_data *sa = va;
590
591 if (sa->aad->iface.ns) {
592 audit_log_format(ab, " ns=");
593 audit_log_untrustedstring(ab, sa->aad->iface.ns);
594 }
595}
596
John Johansenc88d4c72010-07-29 14:48:00 -0700597/**
John Johansenc88d4c72010-07-29 14:48:00 -0700598 * aa_audit_policy - Do auditing of policy changes
John Johansena6f23302017-01-16 00:42:49 -0800599 * @profile: profile to check if it can manage policy
John Johansenc88d4c72010-07-29 14:48:00 -0700600 * @op: policy operation being performed
601 * @gfp: memory allocation flags
John Johansenfc1c9fd2017-01-16 00:42:54 -0800602 * @nsname: name of the ns being manipulated (MAY BE NULL)
John Johansenc88d4c72010-07-29 14:48:00 -0700603 * @name: name of profile being manipulated (NOT NULL)
604 * @info: any extra information to be audited (MAYBE NULL)
605 * @error: error code
606 *
607 * Returns: the error to be returned after audit is done
608 */
John Johansena6f23302017-01-16 00:42:49 -0800609static int audit_policy(struct aa_profile *profile, int op, gfp_t gfp,
John Johansenfc1c9fd2017-01-16 00:42:54 -0800610 const char *nsname, const char *name,
611 const char *info, int error)
John Johansenc88d4c72010-07-29 14:48:00 -0700612{
613 struct common_audit_data sa;
Eric Paris3b3b0e42012-04-03 09:37:02 -0700614 struct apparmor_audit_data aad = {0,};
Eric Paris50c205f2012-04-04 15:01:43 -0400615 sa.type = LSM_AUDIT_DATA_NONE;
Eric Paris3b3b0e42012-04-03 09:37:02 -0700616 sa.aad = &aad;
617 aad.op = op;
John Johansenfc1c9fd2017-01-16 00:42:54 -0800618 aad.iface.ns = nsname;
Eric Paris3b3b0e42012-04-03 09:37:02 -0700619 aad.name = name;
620 aad.info = info;
621 aad.error = error;
John Johansenc88d4c72010-07-29 14:48:00 -0700622
John Johansena6f23302017-01-16 00:42:49 -0800623 return aa_audit(AUDIT_APPARMOR_STATUS, profile, gfp,
John Johansenfc1c9fd2017-01-16 00:42:54 -0800624 &sa, audit_cb);
John Johansenc88d4c72010-07-29 14:48:00 -0700625}
626
John Johansen2bd8dbb2017-01-16 00:42:50 -0800627/**
628 * policy_view_capable - check if viewing policy in at @ns is allowed
629 * ns: namespace being viewed by current task (may be NULL)
630 * Returns: true if viewing policy is allowed
631 *
632 * If @ns is NULL then the namespace being viewed is assumed to be the
633 * tasks current namespace.
634 */
635bool policy_view_capable(struct aa_ns *ns)
John Johansen58acf9d2016-06-22 18:01:08 -0700636{
637 struct user_namespace *user_ns = current_user_ns();
John Johansen2bd8dbb2017-01-16 00:42:50 -0800638 struct aa_ns *view_ns = aa_get_current_ns();
639 bool root_in_user_ns = uid_eq(current_euid(), make_kuid(user_ns, 0)) ||
640 in_egroup_p(make_kgid(user_ns, 0));
John Johansen58acf9d2016-06-22 18:01:08 -0700641 bool response = false;
John Johansen2bd8dbb2017-01-16 00:42:50 -0800642 if (!ns)
643 ns = view_ns;
John Johansen58acf9d2016-06-22 18:01:08 -0700644
John Johansen2bd8dbb2017-01-16 00:42:50 -0800645 if (root_in_user_ns && aa_ns_visible(view_ns, ns, true) &&
646 (user_ns == &init_user_ns ||
647 (unprivileged_userns_apparmor_policy != 0 &&
648 user_ns->level == view_ns->level)))
John Johansen58acf9d2016-06-22 18:01:08 -0700649 response = true;
John Johansen2bd8dbb2017-01-16 00:42:50 -0800650 aa_put_ns(view_ns);
John Johansen58acf9d2016-06-22 18:01:08 -0700651
652 return response;
653}
654
John Johansenfd2a8042017-01-16 00:42:51 -0800655bool policy_admin_capable(struct aa_ns *ns)
John Johansen58acf9d2016-06-22 18:01:08 -0700656{
John Johansenfd2a8042017-01-16 00:42:51 -0800657 struct user_namespace *user_ns = current_user_ns();
658 bool capable = ns_capable(user_ns, CAP_MAC_ADMIN);
659
660 AA_DEBUG("cap_mac_admin? %d\n", capable);
661 AA_DEBUG("policy locked? %d\n", aa_g_lock_policy);
662
663 return policy_view_capable(ns) && capable && !aa_g_lock_policy;
John Johansen58acf9d2016-06-22 18:01:08 -0700664}
665
John Johansenc88d4c72010-07-29 14:48:00 -0700666/**
667 * aa_may_manage_policy - can the current task manage policy
John Johansen078c73c62017-01-16 00:42:52 -0800668 * @profile: profile to check if it can manage policy
John Johansenc88d4c72010-07-29 14:48:00 -0700669 * @op: the policy manipulation operation being done
670 *
John Johansen078c73c62017-01-16 00:42:52 -0800671 * Returns: 0 if the task is allowed to manipulate policy else error
John Johansenc88d4c72010-07-29 14:48:00 -0700672 */
John Johansen078c73c62017-01-16 00:42:52 -0800673int aa_may_manage_policy(struct aa_profile *profile, struct aa_ns *ns, int op)
John Johansenc88d4c72010-07-29 14:48:00 -0700674{
675 /* check if loading policy is locked out */
John Johansen078c73c62017-01-16 00:42:52 -0800676 if (aa_g_lock_policy)
John Johansenfc1c9fd2017-01-16 00:42:54 -0800677 return audit_policy(profile, op, GFP_KERNEL, NULL, NULL,
John Johansena6f23302017-01-16 00:42:49 -0800678 "policy_locked", -EACCES);
John Johansenc88d4c72010-07-29 14:48:00 -0700679
John Johansen078c73c62017-01-16 00:42:52 -0800680 if (!policy_admin_capable(ns))
John Johansenfc1c9fd2017-01-16 00:42:54 -0800681 return audit_policy(profile, op, GFP_KERNEL, NULL, NULL,
John Johansen078c73c62017-01-16 00:42:52 -0800682 "not policy admin", -EACCES);
John Johansenc88d4c72010-07-29 14:48:00 -0700683
John Johansen078c73c62017-01-16 00:42:52 -0800684 /* TODO: add fine grained mediation of policy loads */
685 return 0;
John Johansenc88d4c72010-07-29 14:48:00 -0700686}
687
John Johansendd51c8482013-07-10 21:05:43 -0700688static struct aa_profile *__list_lookup_parent(struct list_head *lh,
689 struct aa_profile *profile)
690{
John Johansen6e474e32017-01-16 00:42:29 -0800691 const char *base = basename(profile->base.hname);
John Johansendd51c8482013-07-10 21:05:43 -0700692 long len = base - profile->base.hname;
693 struct aa_load_ent *ent;
694
695 /* parent won't have trailing // so remove from len */
696 if (len <= 2)
697 return NULL;
698 len -= 2;
699
700 list_for_each_entry(ent, lh, list) {
701 if (ent->new == profile)
702 continue;
703 if (strncmp(ent->new->base.hname, profile->base.hname, len) ==
704 0 && ent->new->base.hname[len] == 0)
705 return ent->new;
706 }
707
708 return NULL;
709}
710
711/**
712 * __replace_profile - replace @old with @new on a list
713 * @old: profile to be replaced (NOT NULL)
714 * @new: profile to replace @old with (NOT NULL)
John Johansen83995882017-01-16 00:42:19 -0800715 * @share_proxy: transfer @old->proxy to @new
John Johansendd51c8482013-07-10 21:05:43 -0700716 *
717 * Will duplicate and refcount elements that @new inherits from @old
718 * and will inherit @old children.
719 *
720 * refcount @new for list, put @old list refcount
721 *
722 * Requires: namespace list lock be held, or list not be shared
723 */
John Johansen77b071b2013-07-10 21:07:43 -0700724static void __replace_profile(struct aa_profile *old, struct aa_profile *new,
John Johansen83995882017-01-16 00:42:19 -0800725 bool share_proxy)
John Johansendd51c8482013-07-10 21:05:43 -0700726{
727 struct aa_profile *child, *tmp;
728
729 if (!list_empty(&old->base.profiles)) {
730 LIST_HEAD(lh);
John Johansen01e2b672013-07-10 21:06:43 -0700731 list_splice_init_rcu(&old->base.profiles, &lh, synchronize_rcu);
John Johansendd51c8482013-07-10 21:05:43 -0700732
733 list_for_each_entry_safe(child, tmp, &lh, base.list) {
734 struct aa_profile *p;
735
736 list_del_init(&child->base.list);
737 p = __find_child(&new->base.profiles, child->base.name);
738 if (p) {
739 /* @p replaces @child */
John Johansen83995882017-01-16 00:42:19 -0800740 __replace_profile(child, p, share_proxy);
John Johansendd51c8482013-07-10 21:05:43 -0700741 continue;
742 }
743
744 /* inherit @child and its children */
745 /* TODO: update hname of inherited children */
746 /* list refcount transferred to @new */
John Johansen0d259f02013-07-10 21:13:43 -0700747 p = aa_deref_parent(child);
John Johansen01e2b672013-07-10 21:06:43 -0700748 rcu_assign_pointer(child->parent, aa_get_profile(new));
749 list_add_rcu(&child->base.list, &new->base.profiles);
750 aa_put_profile(p);
John Johansendd51c8482013-07-10 21:05:43 -0700751 }
752 }
753
John Johansen01e2b672013-07-10 21:06:43 -0700754 if (!rcu_access_pointer(new->parent)) {
John Johansen0d259f02013-07-10 21:13:43 -0700755 struct aa_profile *parent = aa_deref_parent(old);
John Johansen01e2b672013-07-10 21:06:43 -0700756 rcu_assign_pointer(new->parent, aa_get_profile(parent));
757 }
John Johansen83995882017-01-16 00:42:19 -0800758 __aa_update_proxy(old, new);
759 if (share_proxy) {
760 aa_put_proxy(new->proxy);
761 new->proxy = aa_get_proxy(old->proxy);
762 } else if (!rcu_access_pointer(new->proxy->profile))
763 /* aafs interface uses proxy */
764 rcu_assign_pointer(new->proxy->profile,
John Johansen0d259f02013-07-10 21:13:43 -0700765 aa_get_profile(new));
766 __aa_fs_profile_migrate_dents(old, new);
John Johansendd51c8482013-07-10 21:05:43 -0700767
768 if (list_empty(&new->base.list)) {
769 /* new is not on a list already */
John Johansen01e2b672013-07-10 21:06:43 -0700770 list_replace_rcu(&old->base.list, &new->base.list);
John Johansendd51c8482013-07-10 21:05:43 -0700771 aa_get_profile(new);
772 aa_put_profile(old);
773 } else
774 __list_remove_profile(old);
775}
776
777/**
778 * __lookup_replace - lookup replacement information for a profile
779 * @ns - namespace the lookup occurs in
780 * @hname - name of profile to lookup
781 * @noreplace - true if not replacing an existing profile
782 * @p - Returns: profile to be replaced
783 * @info - Returns: info string on why lookup failed
784 *
785 * Returns: profile to replace (no ref) on success else ptr error
786 */
John Johansen98849df2017-01-16 00:42:16 -0800787static int __lookup_replace(struct aa_ns *ns, const char *hname,
John Johansendd51c8482013-07-10 21:05:43 -0700788 bool noreplace, struct aa_profile **p,
789 const char **info)
790{
791 *p = aa_get_profile(__lookup_profile(&ns->base, hname));
792 if (*p) {
793 int error = replacement_allowed(*p, noreplace, info);
794 if (error) {
795 *info = "profile can not be replaced";
796 return error;
797 }
798 }
799
800 return 0;
801}
802
John Johansenc88d4c72010-07-29 14:48:00 -0700803/**
804 * aa_replace_profiles - replace profile(s) on the profile list
John Johansen73688d12017-01-16 00:42:34 -0800805 * @view: namespace load is viewed from
John Johansenc88d4c72010-07-29 14:48:00 -0700806 * @noreplace: true if only doing addition, no replacement allowed
John Johansen5ac8c352017-01-16 00:42:55 -0800807 * @udata: serialized data stream (NOT NULL)
John Johansenc88d4c72010-07-29 14:48:00 -0700808 *
809 * unpack and replace a profile on the profile list and uses of that profile
810 * by any aa_task_cxt. If the profile does not exist on the profile list
811 * it is added.
812 *
813 * Returns: size of data consumed else error code on failure.
814 */
John Johansen5ac8c352017-01-16 00:42:55 -0800815ssize_t aa_replace_profiles(struct aa_ns *view, bool noreplace,
816 struct aa_loaddata *udata)
John Johansenc88d4c72010-07-29 14:48:00 -0700817{
John Johansenbf15cf02016-04-16 14:16:50 -0700818 const char *ns_name, *info = NULL;
John Johansen98849df2017-01-16 00:42:16 -0800819 struct aa_ns *ns = NULL;
John Johansendd51c8482013-07-10 21:05:43 -0700820 struct aa_load_ent *ent, *tmp;
John Johansenc88d4c72010-07-29 14:48:00 -0700821 int op = OP_PROF_REPL;
John Johansen04dc7152017-01-16 00:42:56 -0800822 ssize_t count, error;
John Johansendd51c8482013-07-10 21:05:43 -0700823 LIST_HEAD(lh);
John Johansenc88d4c72010-07-29 14:48:00 -0700824
825 /* released below */
John Johansen5ac8c352017-01-16 00:42:55 -0800826 error = aa_unpack(udata, &lh, &ns_name);
John Johansendd51c8482013-07-10 21:05:43 -0700827 if (error)
828 goto out;
John Johansenc88d4c72010-07-29 14:48:00 -0700829
John Johansen04dc7152017-01-16 00:42:56 -0800830 /* ensure that profiles are all for the same ns
831 * TODO: update locking to remove this constaint. All profiles in
832 * the load set must succeed as a set or the load will
833 * fail. Sort ent list and take ns locks in hierarchy order
834 */
835 count = 0;
836 list_for_each_entry(ent, &lh, list) {
837 if (ns_name) {
838 if (ent->ns_name &&
839 strcmp(ent->ns_name, ns_name) != 0) {
840 info = "policy load has mixed namespaces";
841 error = -EACCES;
842 goto fail;
843 }
844 } else if (ent->ns_name) {
845 if (count) {
846 info = "policy load has mixed namespaces";
847 error = -EACCES;
848 goto fail;
849 }
850 ns_name = ent->ns_name;
851 } else
852 count++;
John Johansenc88d4c72010-07-29 14:48:00 -0700853 }
John Johansen04dc7152017-01-16 00:42:56 -0800854 if (ns_name) {
855 ns = aa_prepare_ns(view, ns_name);
856 if (IS_ERR(ns)) {
857 info = "failed to prepare namespace";
858 error = PTR_ERR(ns);
859 ns = NULL;
860 goto fail;
861 }
862 } else
863 ns = aa_get_ns(view);
John Johansenc88d4c72010-07-29 14:48:00 -0700864
John Johansen01e2b672013-07-10 21:06:43 -0700865 mutex_lock(&ns->lock);
John Johansendd51c8482013-07-10 21:05:43 -0700866 /* setup parent and ns info */
867 list_for_each_entry(ent, &lh, list) {
868 struct aa_policy *policy;
John Johansen5ac8c352017-01-16 00:42:55 -0800869 ent->new->rawdata = aa_get_loaddata(udata);
John Johansendd51c8482013-07-10 21:05:43 -0700870 error = __lookup_replace(ns, ent->new->base.hname, noreplace,
871 &ent->old, &info);
872 if (error)
873 goto fail_lock;
John Johansenc88d4c72010-07-29 14:48:00 -0700874
John Johansendd51c8482013-07-10 21:05:43 -0700875 if (ent->new->rename) {
876 error = __lookup_replace(ns, ent->new->rename,
877 noreplace, &ent->rename,
878 &info);
879 if (error)
880 goto fail_lock;
John Johansenc88d4c72010-07-29 14:48:00 -0700881 }
John Johansendd51c8482013-07-10 21:05:43 -0700882
883 /* released when @new is freed */
John Johansen98849df2017-01-16 00:42:16 -0800884 ent->new->ns = aa_get_ns(ns);
John Johansendd51c8482013-07-10 21:05:43 -0700885
886 if (ent->old || ent->rename)
887 continue;
888
889 /* no ref on policy only use inside lock */
890 policy = __lookup_parent(ns, ent->new->base.hname);
891 if (!policy) {
892 struct aa_profile *p;
893 p = __list_lookup_parent(&lh, ent->new);
894 if (!p) {
895 error = -ENOENT;
896 info = "parent does not exist";
John Johansendd51c8482013-07-10 21:05:43 -0700897 goto fail_lock;
898 }
John Johansen01e2b672013-07-10 21:06:43 -0700899 rcu_assign_pointer(ent->new->parent, aa_get_profile(p));
900 } else if (policy != &ns->base) {
John Johansendd51c8482013-07-10 21:05:43 -0700901 /* released on profile replacement or free_profile */
John Johansen01e2b672013-07-10 21:06:43 -0700902 struct aa_profile *p = (struct aa_profile *) policy;
903 rcu_assign_pointer(ent->new->parent, aa_get_profile(p));
904 }
John Johansenc88d4c72010-07-29 14:48:00 -0700905 }
906
John Johansen0d259f02013-07-10 21:13:43 -0700907 /* create new fs entries for introspection if needed */
908 list_for_each_entry(ent, &lh, list) {
909 if (ent->old) {
910 /* inherit old interface files */
911
912 /* if (ent->rename)
913 TODO: support rename */
914 /* } else if (ent->rename) {
915 TODO: support rename */
916 } else {
917 struct dentry *parent;
918 if (rcu_access_pointer(ent->new->parent)) {
919 struct aa_profile *p;
920 p = aa_deref_parent(ent->new);
921 parent = prof_child_dir(p);
922 } else
923 parent = ns_subprofs_dir(ent->new->ns);
924 error = __aa_fs_profile_mkdir(ent->new, parent);
925 }
926
927 if (error) {
928 info = "failed to create ";
929 goto fail_lock;
930 }
931 }
932
933 /* Done with checks that may fail - do actual replacement */
John Johansendd51c8482013-07-10 21:05:43 -0700934 list_for_each_entry_safe(ent, tmp, &lh, list) {
935 list_del_init(&ent->list);
936 op = (!ent->old && !ent->rename) ? OP_PROF_LOAD : OP_PROF_REPL;
John Johansenc88d4c72010-07-29 14:48:00 -0700937
John Johansenfc1c9fd2017-01-16 00:42:54 -0800938 audit_policy(__aa_current_profile(), op, GFP_ATOMIC, NULL,
John Johansena6f23302017-01-16 00:42:49 -0800939 ent->new->base.hname, NULL, error);
John Johansenc88d4c72010-07-29 14:48:00 -0700940
John Johansendd51c8482013-07-10 21:05:43 -0700941 if (ent->old) {
John Johansen77b071b2013-07-10 21:07:43 -0700942 __replace_profile(ent->old, ent->new, 1);
John Johansen0d259f02013-07-10 21:13:43 -0700943 if (ent->rename) {
John Johansen83995882017-01-16 00:42:19 -0800944 /* aafs interface uses proxy */
945 struct aa_proxy *r = ent->new->proxy;
John Johansen0d259f02013-07-10 21:13:43 -0700946 rcu_assign_pointer(r->profile,
947 aa_get_profile(ent->new));
John Johansen77b071b2013-07-10 21:07:43 -0700948 __replace_profile(ent->rename, ent->new, 0);
John Johansen0d259f02013-07-10 21:13:43 -0700949 }
John Johansendd51c8482013-07-10 21:05:43 -0700950 } else if (ent->rename) {
John Johansen83995882017-01-16 00:42:19 -0800951 /* aafs interface uses proxy */
952 rcu_assign_pointer(ent->new->proxy->profile,
John Johansen0d259f02013-07-10 21:13:43 -0700953 aa_get_profile(ent->new));
John Johansen77b071b2013-07-10 21:07:43 -0700954 __replace_profile(ent->rename, ent->new, 0);
John Johansendd51c8482013-07-10 21:05:43 -0700955 } else if (ent->new->parent) {
John Johansen01e2b672013-07-10 21:06:43 -0700956 struct aa_profile *parent, *newest;
John Johansen0d259f02013-07-10 21:13:43 -0700957 parent = aa_deref_parent(ent->new);
John Johansen77b071b2013-07-10 21:07:43 -0700958 newest = aa_get_newest_profile(parent);
John Johansen01e2b672013-07-10 21:06:43 -0700959
John Johansendd51c8482013-07-10 21:05:43 -0700960 /* parent replaced in this atomic set? */
John Johansen01e2b672013-07-10 21:06:43 -0700961 if (newest != parent) {
962 aa_get_profile(newest);
John Johansen01e2b672013-07-10 21:06:43 -0700963 rcu_assign_pointer(ent->new->parent, newest);
John Johansenf3518412016-04-16 13:59:02 -0700964 aa_put_profile(parent);
John Johansendcda6172016-04-11 16:55:10 -0700965 }
John Johansen83995882017-01-16 00:42:19 -0800966 /* aafs interface uses proxy */
967 rcu_assign_pointer(ent->new->proxy->profile,
John Johansen0d259f02013-07-10 21:13:43 -0700968 aa_get_profile(ent->new));
John Johansenec34fa22016-04-11 16:57:19 -0700969 __list_add_profile(&newest->base.profiles, ent->new);
John Johansendcda6172016-04-11 16:55:10 -0700970 aa_put_profile(newest);
John Johansen0d259f02013-07-10 21:13:43 -0700971 } else {
John Johansen83995882017-01-16 00:42:19 -0800972 /* aafs interface uses proxy */
973 rcu_assign_pointer(ent->new->proxy->profile,
John Johansen0d259f02013-07-10 21:13:43 -0700974 aa_get_profile(ent->new));
John Johansendd51c8482013-07-10 21:05:43 -0700975 __list_add_profile(&ns->base.profiles, ent->new);
John Johansen0d259f02013-07-10 21:13:43 -0700976 }
John Johansendd51c8482013-07-10 21:05:43 -0700977 aa_load_ent_free(ent);
John Johansenc88d4c72010-07-29 14:48:00 -0700978 }
John Johansen01e2b672013-07-10 21:06:43 -0700979 mutex_unlock(&ns->lock);
John Johansenc88d4c72010-07-29 14:48:00 -0700980
981out:
John Johansen98849df2017-01-16 00:42:16 -0800982 aa_put_ns(ns);
John Johansendd51c8482013-07-10 21:05:43 -0700983
John Johansenc88d4c72010-07-29 14:48:00 -0700984 if (error)
985 return error;
John Johansen5ac8c352017-01-16 00:42:55 -0800986 return udata->size;
John Johansenc88d4c72010-07-29 14:48:00 -0700987
John Johansendd51c8482013-07-10 21:05:43 -0700988fail_lock:
John Johansen01e2b672013-07-10 21:06:43 -0700989 mutex_unlock(&ns->lock);
John Johansendd51c8482013-07-10 21:05:43 -0700990
John Johansenbf15cf02016-04-16 14:16:50 -0700991 /* audit cause of failure */
992 op = (!ent->old) ? OP_PROF_LOAD : OP_PROF_REPL;
John Johansen04dc7152017-01-16 00:42:56 -0800993fail:
994 audit_policy(__aa_current_profile(), op, GFP_KERNEL, ns_name,
John Johansena6f23302017-01-16 00:42:49 -0800995 ent->new->base.hname, info, error);
John Johansenbf15cf02016-04-16 14:16:50 -0700996 /* audit status that rest of profiles in the atomic set failed too */
997 info = "valid profile in failed atomic policy load";
998 list_for_each_entry(tmp, &lh, list) {
999 if (tmp == ent) {
1000 info = "unchecked profile in failed atomic policy load";
1001 /* skip entry that caused failure */
1002 continue;
1003 }
1004 op = (!ent->old) ? OP_PROF_LOAD : OP_PROF_REPL;
John Johansen04dc7152017-01-16 00:42:56 -08001005 audit_policy(__aa_current_profile(), op, GFP_KERNEL, ns_name,
John Johansena6f23302017-01-16 00:42:49 -08001006 tmp->new->base.hname, info, error);
John Johansenbf15cf02016-04-16 14:16:50 -07001007 }
John Johansendd51c8482013-07-10 21:05:43 -07001008 list_for_each_entry_safe(ent, tmp, &lh, list) {
1009 list_del_init(&ent->list);
1010 aa_load_ent_free(ent);
1011 }
1012
John Johansenc88d4c72010-07-29 14:48:00 -07001013 goto out;
1014}
1015
1016/**
1017 * aa_remove_profiles - remove profile(s) from the system
John Johansenb79473f2017-01-16 00:42:47 -08001018 * @view: namespace the remove is being done from
John Johansenc88d4c72010-07-29 14:48:00 -07001019 * @fqname: name of the profile or namespace to remove (NOT NULL)
1020 * @size: size of the name
1021 *
1022 * Remove a profile or sub namespace from the current namespace, so that
1023 * they can not be found anymore and mark them as replaced by unconfined
1024 *
1025 * NOTE: removing confinement does not restore rlimits to preconfinemnet values
1026 *
1027 * Returns: size of data consume else error code if fails
1028 */
John Johansenb79473f2017-01-16 00:42:47 -08001029ssize_t aa_remove_profiles(struct aa_ns *view, char *fqname, size_t size)
John Johansenc88d4c72010-07-29 14:48:00 -07001030{
John Johansenb79473f2017-01-16 00:42:47 -08001031 struct aa_ns *root = NULL, *ns = NULL;
John Johansenc88d4c72010-07-29 14:48:00 -07001032 struct aa_profile *profile = NULL;
1033 const char *name = fqname, *info = NULL;
John Johansen04dc7152017-01-16 00:42:56 -08001034 char *ns_name = NULL;
John Johansenc88d4c72010-07-29 14:48:00 -07001035 ssize_t error = 0;
1036
1037 if (*fqname == 0) {
1038 info = "no profile specified";
1039 error = -ENOENT;
1040 goto fail;
1041 }
1042
John Johansenb79473f2017-01-16 00:42:47 -08001043 root = view;
John Johansenc88d4c72010-07-29 14:48:00 -07001044
1045 if (fqname[0] == ':') {
John Johansenc88d4c72010-07-29 14:48:00 -07001046 name = aa_split_fqname(fqname, &ns_name);
John Johansen41d1b3e2013-02-21 01:14:17 -08001047 /* released below */
John Johansen98849df2017-01-16 00:42:16 -08001048 ns = aa_find_ns(root, ns_name);
John Johansen41d1b3e2013-02-21 01:14:17 -08001049 if (!ns) {
1050 info = "namespace does not exist";
1051 error = -ENOENT;
1052 goto fail;
John Johansenc88d4c72010-07-29 14:48:00 -07001053 }
1054 } else
1055 /* released below */
John Johansen98849df2017-01-16 00:42:16 -08001056 ns = aa_get_ns(root);
John Johansenc88d4c72010-07-29 14:48:00 -07001057
John Johansenc88d4c72010-07-29 14:48:00 -07001058 if (!name) {
1059 /* remove namespace - can only happen if fqname[0] == ':' */
John Johansen01e2b672013-07-10 21:06:43 -07001060 mutex_lock(&ns->parent->lock);
John Johansen98849df2017-01-16 00:42:16 -08001061 __aa_remove_ns(ns);
John Johansen01e2b672013-07-10 21:06:43 -07001062 mutex_unlock(&ns->parent->lock);
John Johansenc88d4c72010-07-29 14:48:00 -07001063 } else {
1064 /* remove profile */
John Johansen01e2b672013-07-10 21:06:43 -07001065 mutex_lock(&ns->lock);
John Johansenc88d4c72010-07-29 14:48:00 -07001066 profile = aa_get_profile(__lookup_profile(&ns->base, name));
1067 if (!profile) {
1068 error = -ENOENT;
1069 info = "profile does not exist";
1070 goto fail_ns_lock;
1071 }
1072 name = profile->base.hname;
1073 __remove_profile(profile);
John Johansen01e2b672013-07-10 21:06:43 -07001074 mutex_unlock(&ns->lock);
John Johansenc88d4c72010-07-29 14:48:00 -07001075 }
John Johansenc88d4c72010-07-29 14:48:00 -07001076
1077 /* don't fail removal if audit fails */
John Johansena6f23302017-01-16 00:42:49 -08001078 (void) audit_policy(__aa_current_profile(), OP_PROF_RM, GFP_KERNEL,
John Johansen04dc7152017-01-16 00:42:56 -08001079 ns_name, name, info, error);
John Johansen98849df2017-01-16 00:42:16 -08001080 aa_put_ns(ns);
John Johansenc88d4c72010-07-29 14:48:00 -07001081 aa_put_profile(profile);
1082 return size;
1083
1084fail_ns_lock:
John Johansen01e2b672013-07-10 21:06:43 -07001085 mutex_unlock(&ns->lock);
John Johansen98849df2017-01-16 00:42:16 -08001086 aa_put_ns(ns);
John Johansenc88d4c72010-07-29 14:48:00 -07001087
1088fail:
John Johansena6f23302017-01-16 00:42:49 -08001089 (void) audit_policy(__aa_current_profile(), OP_PROF_RM, GFP_KERNEL,
John Johansen04dc7152017-01-16 00:42:56 -08001090 ns_name, name, info, error);
John Johansenc88d4c72010-07-29 14:48:00 -07001091 return error;
1092}