blob: f092c04c7c4e7dc8b29930abde6bc155f6b735e3 [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 Johansenc88d4c72010-07-29 14:48:00 -0700231 kzfree(profile);
232}
233
234/**
John Johansen01e2b672013-07-10 21:06:43 -0700235 * aa_free_profile_rcu - free aa_profile by rcu (called by aa_free_profile_kref)
236 * @head: rcu_head callback for freeing of a profile (NOT NULL)
237 */
238static void aa_free_profile_rcu(struct rcu_head *head)
239{
John Johansen742058b2013-07-10 21:10:43 -0700240 struct aa_profile *p = container_of(head, struct aa_profile, rcu);
241 if (p->flags & PFLAG_NS_COUNT)
John Johansen98849df2017-01-16 00:42:16 -0800242 aa_free_ns(p->ns);
John Johansen742058b2013-07-10 21:10:43 -0700243 else
John Johansen8651e1d62013-07-10 21:11:43 -0700244 aa_free_profile(p);
John Johansen01e2b672013-07-10 21:06:43 -0700245}
246
247/**
John Johansenc88d4c72010-07-29 14:48:00 -0700248 * aa_free_profile_kref - free aa_profile by kref (called by aa_put_profile)
249 * @kr: kref callback for freeing of a profile (NOT NULL)
250 */
251void aa_free_profile_kref(struct kref *kref)
252{
John Johansenfa2ac462013-07-10 21:08:43 -0700253 struct aa_profile *p = container_of(kref, struct aa_profile, count);
John Johansen742058b2013-07-10 21:10:43 -0700254 call_rcu(&p->rcu, aa_free_profile_rcu);
John Johansenc88d4c72010-07-29 14:48:00 -0700255}
256
John Johansen4da05cc2013-02-18 16:11:34 -0800257/**
258 * aa_alloc_profile - allocate, initialize and return a new profile
259 * @hname: name of the profile (NOT NULL)
John Johansen30b026a2017-01-16 00:42:35 -0800260 * @gfp: allocation type
John Johansen4da05cc2013-02-18 16:11:34 -0800261 *
262 * Returns: refcount profile or NULL on failure
263 */
John Johansen30b026a2017-01-16 00:42:35 -0800264struct aa_profile *aa_alloc_profile(const char *hname, gfp_t gfp)
John Johansen4da05cc2013-02-18 16:11:34 -0800265{
266 struct aa_profile *profile;
267
268 /* freed by free_profile - usually through aa_put_profile */
John Johansen30b026a2017-01-16 00:42:35 -0800269 profile = kzalloc(sizeof(*profile), gfp);
John Johansen4da05cc2013-02-18 16:11:34 -0800270 if (!profile)
271 return NULL;
272
John Johansen30b026a2017-01-16 00:42:35 -0800273 profile->proxy = kzalloc(sizeof(struct aa_proxy), gfp);
John Johansen83995882017-01-16 00:42:19 -0800274 if (!profile->proxy)
John Johansen77b071b2013-07-10 21:07:43 -0700275 goto fail;
John Johansen83995882017-01-16 00:42:19 -0800276 kref_init(&profile->proxy->count);
John Johansen77b071b2013-07-10 21:07:43 -0700277
John Johansen30b026a2017-01-16 00:42:35 -0800278 if (!aa_policy_init(&profile->base, NULL, hname, gfp))
John Johansen77b071b2013-07-10 21:07:43 -0700279 goto fail;
John Johansenfa2ac462013-07-10 21:08:43 -0700280 kref_init(&profile->count);
John Johansen4da05cc2013-02-18 16:11:34 -0800281
282 /* refcount released by caller */
283 return profile;
John Johansen77b071b2013-07-10 21:07:43 -0700284
285fail:
John Johansen83995882017-01-16 00:42:19 -0800286 kzfree(profile->proxy);
John Johansen77b071b2013-07-10 21:07:43 -0700287 kzfree(profile);
288
289 return NULL;
John Johansen4da05cc2013-02-18 16:11:34 -0800290}
291
292/**
John Johansen181f7c92017-01-16 00:42:36 -0800293 * aa_new_null_profile - create or find a null-X learning profile
John Johansen4da05cc2013-02-18 16:11:34 -0800294 * @parent: profile that caused this profile to be created (NOT NULL)
295 * @hat: true if the null- learning profile is a hat
John Johansen181f7c92017-01-16 00:42:36 -0800296 * @base: name to base the null profile off of
297 * @gfp: type of allocation
John Johansen4da05cc2013-02-18 16:11:34 -0800298 *
John Johansen181f7c92017-01-16 00:42:36 -0800299 * Find/Create a null- complain mode profile used in learning mode. The
300 * name of the profile is unique and follows the format of parent//null-XXX.
301 * where XXX is based on the @name or if that fails or is not supplied
302 * a unique number
John Johansen4da05cc2013-02-18 16:11:34 -0800303 *
304 * null profiles are added to the profile list but the list does not
305 * hold a count on them so that they are automatically released when
306 * not in use.
307 *
308 * Returns: new refcounted profile else NULL on failure
309 */
John Johansen181f7c92017-01-16 00:42:36 -0800310struct aa_profile *aa_new_null_profile(struct aa_profile *parent, bool hat,
311 const char *base, gfp_t gfp)
John Johansen4da05cc2013-02-18 16:11:34 -0800312{
John Johansen181f7c92017-01-16 00:42:36 -0800313 struct aa_profile *profile;
John Johansen4da05cc2013-02-18 16:11:34 -0800314 char *name;
John Johansen4da05cc2013-02-18 16:11:34 -0800315
John Johansen181f7c92017-01-16 00:42:36 -0800316 AA_BUG(!parent);
317
318 if (base) {
319 name = kmalloc(strlen(parent->base.hname) + 8 + strlen(base),
320 gfp);
321 if (name) {
322 sprintf(name, "%s//null-%s", parent->base.hname, base);
323 goto name;
324 }
325 /* fall through to try shorter uniq */
326 }
327
328 name = kmalloc(strlen(parent->base.hname) + 2 + 7 + 8, gfp);
John Johansen4da05cc2013-02-18 16:11:34 -0800329 if (!name)
John Johansen181f7c92017-01-16 00:42:36 -0800330 return NULL;
331 sprintf(name, "%s//null-%x", parent->base.hname,
332 atomic_inc_return(&parent->ns->uniq_null));
John Johansen4da05cc2013-02-18 16:11:34 -0800333
John Johansen181f7c92017-01-16 00:42:36 -0800334name:
335 /* lookup to see if this is a dup creation */
336 profile = aa_find_child(parent, basename(name));
337 if (profile)
338 goto out;
339
340 profile = aa_alloc_profile(name, gfp);
John Johansen4da05cc2013-02-18 16:11:34 -0800341 if (!profile)
342 goto fail;
343
344 profile->mode = APPARMOR_COMPLAIN;
John Johansen181f7c92017-01-16 00:42:36 -0800345 profile->flags |= PFLAG_NULL;
John Johansen4da05cc2013-02-18 16:11:34 -0800346 if (hat)
347 profile->flags |= PFLAG_HAT;
John Johansen181f7c92017-01-16 00:42:36 -0800348 profile->path_flags = parent->path_flags;
John Johansen4da05cc2013-02-18 16:11:34 -0800349
350 /* released on free_profile */
John Johansen01e2b672013-07-10 21:06:43 -0700351 rcu_assign_pointer(profile->parent, aa_get_profile(parent));
John Johansen98849df2017-01-16 00:42:16 -0800352 profile->ns = aa_get_ns(parent->ns);
John Johansen11c236b2017-01-16 00:42:42 -0800353 profile->file.dfa = aa_get_dfa(nulldfa);
354 profile->policy.dfa = aa_get_dfa(nulldfa);
John Johansen4da05cc2013-02-18 16:11:34 -0800355
John Johansen01e2b672013-07-10 21:06:43 -0700356 mutex_lock(&profile->ns->lock);
John Johansen4da05cc2013-02-18 16:11:34 -0800357 __list_add_profile(&parent->base.profiles, profile);
John Johansen01e2b672013-07-10 21:06:43 -0700358 mutex_unlock(&profile->ns->lock);
John Johansen4da05cc2013-02-18 16:11:34 -0800359
360 /* refcount released by caller */
John Johansen181f7c92017-01-16 00:42:36 -0800361out:
362 kfree(name);
363
John Johansen4da05cc2013-02-18 16:11:34 -0800364 return profile;
365
366fail:
John Johansen181f7c92017-01-16 00:42:36 -0800367 kfree(name);
368 aa_free_profile(profile);
John Johansen4da05cc2013-02-18 16:11:34 -0800369 return NULL;
370}
371
John Johansenc88d4c72010-07-29 14:48:00 -0700372/* TODO: profile accounting - setup in remove */
373
374/**
375 * __find_child - find a profile on @head list with a name matching @name
376 * @head: list to search (NOT NULL)
377 * @name: name of profile (NOT NULL)
378 *
John Johansen01e2b672013-07-10 21:06:43 -0700379 * Requires: rcu_read_lock be held
John Johansenc88d4c72010-07-29 14:48:00 -0700380 *
381 * Returns: unrefcounted profile ptr, or NULL if not found
382 */
383static struct aa_profile *__find_child(struct list_head *head, const char *name)
384{
385 return (struct aa_profile *)__policy_find(head, name);
386}
387
388/**
389 * __strn_find_child - find a profile on @head list using substring of @name
390 * @head: list to search (NOT NULL)
391 * @name: name of profile (NOT NULL)
392 * @len: length of @name substring to match
393 *
John Johansen01e2b672013-07-10 21:06:43 -0700394 * Requires: rcu_read_lock be held
John Johansenc88d4c72010-07-29 14:48:00 -0700395 *
396 * Returns: unrefcounted profile ptr, or NULL if not found
397 */
398static struct aa_profile *__strn_find_child(struct list_head *head,
399 const char *name, int len)
400{
401 return (struct aa_profile *)__policy_strn_find(head, name, len);
402}
403
404/**
405 * aa_find_child - find a profile by @name in @parent
406 * @parent: profile to search (NOT NULL)
407 * @name: profile name to search for (NOT NULL)
408 *
409 * Returns: a refcounted profile or NULL if not found
410 */
411struct aa_profile *aa_find_child(struct aa_profile *parent, const char *name)
412{
413 struct aa_profile *profile;
414
John Johansen01e2b672013-07-10 21:06:43 -0700415 rcu_read_lock();
John Johansende7c4cc2015-12-16 18:09:10 -0800416 do {
417 profile = __find_child(&parent->base.profiles, name);
418 } while (profile && !aa_get_profile_not0(profile));
John Johansen01e2b672013-07-10 21:06:43 -0700419 rcu_read_unlock();
John Johansenc88d4c72010-07-29 14:48:00 -0700420
421 /* refcount released by caller */
422 return profile;
423}
424
425/**
426 * __lookup_parent - lookup the parent of a profile of name @hname
427 * @ns: namespace to lookup profile in (NOT NULL)
428 * @hname: hierarchical profile name to find parent of (NOT NULL)
429 *
430 * Lookups up the parent of a fully qualified profile name, the profile
431 * that matches hname does not need to exist, in general this
432 * is used to load a new profile.
433 *
John Johansen01e2b672013-07-10 21:06:43 -0700434 * Requires: rcu_read_lock be held
John Johansenc88d4c72010-07-29 14:48:00 -0700435 *
436 * Returns: unrefcounted policy or NULL if not found
437 */
John Johansen98849df2017-01-16 00:42:16 -0800438static struct aa_policy *__lookup_parent(struct aa_ns *ns,
John Johansenc88d4c72010-07-29 14:48:00 -0700439 const char *hname)
440{
441 struct aa_policy *policy;
442 struct aa_profile *profile = NULL;
443 char *split;
444
445 policy = &ns->base;
446
447 for (split = strstr(hname, "//"); split;) {
448 profile = __strn_find_child(&policy->profiles, hname,
449 split - hname);
450 if (!profile)
451 return NULL;
452 policy = &profile->base;
453 hname = split + 2;
454 split = strstr(hname, "//");
455 }
456 if (!profile)
457 return &ns->base;
458 return &profile->base;
459}
460
461/**
John Johansen1741e9e2017-01-16 00:42:21 -0800462 * __lookupn_profile - lookup the profile matching @hname
John Johansenc88d4c72010-07-29 14:48:00 -0700463 * @base: base list to start looking up profile name from (NOT NULL)
464 * @hname: hierarchical profile name (NOT NULL)
John Johansen1741e9e2017-01-16 00:42:21 -0800465 * @n: length of @hname
John Johansenc88d4c72010-07-29 14:48:00 -0700466 *
John Johansen01e2b672013-07-10 21:06:43 -0700467 * Requires: rcu_read_lock be held
John Johansenc88d4c72010-07-29 14:48:00 -0700468 *
469 * Returns: unrefcounted profile pointer or NULL if not found
470 *
471 * Do a relative name lookup, recursing through profile tree.
472 */
John Johansen1741e9e2017-01-16 00:42:21 -0800473static struct aa_profile *__lookupn_profile(struct aa_policy *base,
474 const char *hname, size_t n)
John Johansenc88d4c72010-07-29 14:48:00 -0700475{
476 struct aa_profile *profile = NULL;
John Johansen1741e9e2017-01-16 00:42:21 -0800477 const char *split;
John Johansenc88d4c72010-07-29 14:48:00 -0700478
John Johansen1741e9e2017-01-16 00:42:21 -0800479 for (split = strnstr(hname, "//", n); split;
480 split = strnstr(hname, "//", n)) {
John Johansenc88d4c72010-07-29 14:48:00 -0700481 profile = __strn_find_child(&base->profiles, hname,
482 split - hname);
483 if (!profile)
484 return NULL;
485
486 base = &profile->base;
John Johansen1741e9e2017-01-16 00:42:21 -0800487 n -= split + 2 - hname;
John Johansenc88d4c72010-07-29 14:48:00 -0700488 hname = split + 2;
John Johansenc88d4c72010-07-29 14:48:00 -0700489 }
490
John Johansen1741e9e2017-01-16 00:42:21 -0800491 if (n)
492 return __strn_find_child(&base->profiles, hname, n);
493 return NULL;
494}
John Johansenc88d4c72010-07-29 14:48:00 -0700495
John Johansen1741e9e2017-01-16 00:42:21 -0800496static struct aa_profile *__lookup_profile(struct aa_policy *base,
497 const char *hname)
498{
499 return __lookupn_profile(base, hname, strlen(hname));
John Johansenc88d4c72010-07-29 14:48:00 -0700500}
501
502/**
503 * aa_lookup_profile - find a profile by its full or partial name
504 * @ns: the namespace to start from (NOT NULL)
505 * @hname: name to do lookup on. Does not contain namespace prefix (NOT NULL)
John Johansen1741e9e2017-01-16 00:42:21 -0800506 * @n: size of @hname
John Johansenc88d4c72010-07-29 14:48:00 -0700507 *
508 * Returns: refcounted profile or NULL if not found
509 */
John Johansen1741e9e2017-01-16 00:42:21 -0800510struct aa_profile *aa_lookupn_profile(struct aa_ns *ns, const char *hname,
511 size_t n)
John Johansenc88d4c72010-07-29 14:48:00 -0700512{
513 struct aa_profile *profile;
514
John Johansen01e2b672013-07-10 21:06:43 -0700515 rcu_read_lock();
516 do {
John Johansen1741e9e2017-01-16 00:42:21 -0800517 profile = __lookupn_profile(&ns->base, hname, n);
John Johansen01e2b672013-07-10 21:06:43 -0700518 } while (profile && !aa_get_profile_not0(profile));
519 rcu_read_unlock();
John Johansenc88d4c72010-07-29 14:48:00 -0700520
John Johansenbf832082012-05-16 11:00:05 -0700521 /* the unconfined profile is not in the regular profile list */
John Johansen1741e9e2017-01-16 00:42:21 -0800522 if (!profile && strncmp(hname, "unconfined", n) == 0)
John Johansenfa2ac462013-07-10 21:08:43 -0700523 profile = aa_get_newest_profile(ns->unconfined);
John Johansenbf832082012-05-16 11:00:05 -0700524
John Johansenc88d4c72010-07-29 14:48:00 -0700525 /* refcount released by caller */
526 return profile;
527}
528
John Johansen1741e9e2017-01-16 00:42:21 -0800529struct aa_profile *aa_lookup_profile(struct aa_ns *ns, const char *hname)
530{
531 return aa_lookupn_profile(ns, hname, strlen(hname));
532}
John Johansen31617dd2017-01-16 00:42:24 -0800533
534struct aa_profile *aa_fqlookupn_profile(struct aa_profile *base,
535 const char *fqname, size_t n)
536{
537 struct aa_profile *profile;
538 struct aa_ns *ns;
539 const char *name, *ns_name;
540 size_t ns_len;
541
542 name = aa_splitn_fqname(fqname, n, &ns_name, &ns_len);
543 if (ns_name) {
544 ns = aa_findn_ns(base->ns, ns_name, ns_len);
545 if (!ns)
546 return NULL;
547 } else
548 ns = aa_get_ns(base->ns);
549
550 if (name)
551 profile = aa_lookupn_profile(ns, name, n - (name - fqname));
552 else if (ns)
553 /* default profile for ns, currently unconfined */
554 profile = aa_get_newest_profile(ns->unconfined);
555 else
556 profile = NULL;
557 aa_put_ns(ns);
558
559 return profile;
560}
561
John Johansenc88d4c72010-07-29 14:48:00 -0700562/**
563 * replacement_allowed - test to see if replacement is allowed
564 * @profile: profile to test if it can be replaced (MAYBE NULL)
565 * @noreplace: true if replacement shouldn't be allowed but addition is okay
566 * @info: Returns - info about why replacement failed (NOT NULL)
567 *
568 * Returns: %0 if replacement allowed else error code
569 */
570static int replacement_allowed(struct aa_profile *profile, int noreplace,
571 const char **info)
572{
573 if (profile) {
574 if (profile->flags & PFLAG_IMMUTABLE) {
575 *info = "cannot replace immutible profile";
576 return -EPERM;
577 } else if (noreplace) {
578 *info = "profile already exists";
579 return -EEXIST;
580 }
581 }
582 return 0;
583}
584
585/**
John Johansenc88d4c72010-07-29 14:48:00 -0700586 * aa_audit_policy - Do auditing of policy changes
John Johansena6f23302017-01-16 00:42:49 -0800587 * @profile: profile to check if it can manage policy
John Johansenc88d4c72010-07-29 14:48:00 -0700588 * @op: policy operation being performed
589 * @gfp: memory allocation flags
590 * @name: name of profile being manipulated (NOT NULL)
591 * @info: any extra information to be audited (MAYBE NULL)
592 * @error: error code
593 *
594 * Returns: the error to be returned after audit is done
595 */
John Johansena6f23302017-01-16 00:42:49 -0800596static int audit_policy(struct aa_profile *profile, int op, gfp_t gfp,
597 const char *name, const char *info, int error)
John Johansenc88d4c72010-07-29 14:48:00 -0700598{
599 struct common_audit_data sa;
Eric Paris3b3b0e42012-04-03 09:37:02 -0700600 struct apparmor_audit_data aad = {0,};
Eric Paris50c205f2012-04-04 15:01:43 -0400601 sa.type = LSM_AUDIT_DATA_NONE;
Eric Paris3b3b0e42012-04-03 09:37:02 -0700602 sa.aad = &aad;
603 aad.op = op;
604 aad.name = name;
605 aad.info = info;
606 aad.error = error;
John Johansenc88d4c72010-07-29 14:48:00 -0700607
John Johansena6f23302017-01-16 00:42:49 -0800608 return aa_audit(AUDIT_APPARMOR_STATUS, profile, gfp,
John Johansenc88d4c72010-07-29 14:48:00 -0700609 &sa, NULL);
610}
611
John Johansen2bd8dbb2017-01-16 00:42:50 -0800612/**
613 * policy_view_capable - check if viewing policy in at @ns is allowed
614 * ns: namespace being viewed by current task (may be NULL)
615 * Returns: true if viewing policy is allowed
616 *
617 * If @ns is NULL then the namespace being viewed is assumed to be the
618 * tasks current namespace.
619 */
620bool policy_view_capable(struct aa_ns *ns)
John Johansen58acf9d2016-06-22 18:01:08 -0700621{
622 struct user_namespace *user_ns = current_user_ns();
John Johansen2bd8dbb2017-01-16 00:42:50 -0800623 struct aa_ns *view_ns = aa_get_current_ns();
624 bool root_in_user_ns = uid_eq(current_euid(), make_kuid(user_ns, 0)) ||
625 in_egroup_p(make_kgid(user_ns, 0));
John Johansen58acf9d2016-06-22 18:01:08 -0700626 bool response = false;
John Johansen2bd8dbb2017-01-16 00:42:50 -0800627 if (!ns)
628 ns = view_ns;
John Johansen58acf9d2016-06-22 18:01:08 -0700629
John Johansen2bd8dbb2017-01-16 00:42:50 -0800630 if (root_in_user_ns && aa_ns_visible(view_ns, ns, true) &&
631 (user_ns == &init_user_ns ||
632 (unprivileged_userns_apparmor_policy != 0 &&
633 user_ns->level == view_ns->level)))
John Johansen58acf9d2016-06-22 18:01:08 -0700634 response = true;
John Johansen2bd8dbb2017-01-16 00:42:50 -0800635 aa_put_ns(view_ns);
John Johansen58acf9d2016-06-22 18:01:08 -0700636
637 return response;
638}
639
640bool policy_admin_capable(void)
641{
John Johansen2bd8dbb2017-01-16 00:42:50 -0800642 return policy_view_capable(NULL) && !aa_g_lock_policy;
John Johansen58acf9d2016-06-22 18:01:08 -0700643}
644
John Johansenc88d4c72010-07-29 14:48:00 -0700645/**
646 * aa_may_manage_policy - can the current task manage policy
647 * @op: the policy manipulation operation being done
648 *
649 * Returns: true if the task is allowed to manipulate policy
650 */
651bool aa_may_manage_policy(int op)
652{
653 /* check if loading policy is locked out */
654 if (aa_g_lock_policy) {
John Johansena6f23302017-01-16 00:42:49 -0800655 audit_policy(__aa_current_profile(), op, GFP_KERNEL, NULL,
656 "policy_locked", -EACCES);
John Johansenc88d4c72010-07-29 14:48:00 -0700657 return 0;
658 }
659
John Johansen58acf9d2016-06-22 18:01:08 -0700660 if (!policy_admin_capable()) {
John Johansena6f23302017-01-16 00:42:49 -0800661 audit_policy(__aa_current_profile(), op, GFP_KERNEL, NULL,
662 "not policy admin", -EACCES);
John Johansenc88d4c72010-07-29 14:48:00 -0700663 return 0;
664 }
665
666 return 1;
667}
668
John Johansendd51c8482013-07-10 21:05:43 -0700669static struct aa_profile *__list_lookup_parent(struct list_head *lh,
670 struct aa_profile *profile)
671{
John Johansen6e474e32017-01-16 00:42:29 -0800672 const char *base = basename(profile->base.hname);
John Johansendd51c8482013-07-10 21:05:43 -0700673 long len = base - profile->base.hname;
674 struct aa_load_ent *ent;
675
676 /* parent won't have trailing // so remove from len */
677 if (len <= 2)
678 return NULL;
679 len -= 2;
680
681 list_for_each_entry(ent, lh, list) {
682 if (ent->new == profile)
683 continue;
684 if (strncmp(ent->new->base.hname, profile->base.hname, len) ==
685 0 && ent->new->base.hname[len] == 0)
686 return ent->new;
687 }
688
689 return NULL;
690}
691
692/**
693 * __replace_profile - replace @old with @new on a list
694 * @old: profile to be replaced (NOT NULL)
695 * @new: profile to replace @old with (NOT NULL)
John Johansen83995882017-01-16 00:42:19 -0800696 * @share_proxy: transfer @old->proxy to @new
John Johansendd51c8482013-07-10 21:05:43 -0700697 *
698 * Will duplicate and refcount elements that @new inherits from @old
699 * and will inherit @old children.
700 *
701 * refcount @new for list, put @old list refcount
702 *
703 * Requires: namespace list lock be held, or list not be shared
704 */
John Johansen77b071b2013-07-10 21:07:43 -0700705static void __replace_profile(struct aa_profile *old, struct aa_profile *new,
John Johansen83995882017-01-16 00:42:19 -0800706 bool share_proxy)
John Johansendd51c8482013-07-10 21:05:43 -0700707{
708 struct aa_profile *child, *tmp;
709
710 if (!list_empty(&old->base.profiles)) {
711 LIST_HEAD(lh);
John Johansen01e2b672013-07-10 21:06:43 -0700712 list_splice_init_rcu(&old->base.profiles, &lh, synchronize_rcu);
John Johansendd51c8482013-07-10 21:05:43 -0700713
714 list_for_each_entry_safe(child, tmp, &lh, base.list) {
715 struct aa_profile *p;
716
717 list_del_init(&child->base.list);
718 p = __find_child(&new->base.profiles, child->base.name);
719 if (p) {
720 /* @p replaces @child */
John Johansen83995882017-01-16 00:42:19 -0800721 __replace_profile(child, p, share_proxy);
John Johansendd51c8482013-07-10 21:05:43 -0700722 continue;
723 }
724
725 /* inherit @child and its children */
726 /* TODO: update hname of inherited children */
727 /* list refcount transferred to @new */
John Johansen0d259f02013-07-10 21:13:43 -0700728 p = aa_deref_parent(child);
John Johansen01e2b672013-07-10 21:06:43 -0700729 rcu_assign_pointer(child->parent, aa_get_profile(new));
730 list_add_rcu(&child->base.list, &new->base.profiles);
731 aa_put_profile(p);
John Johansendd51c8482013-07-10 21:05:43 -0700732 }
733 }
734
John Johansen01e2b672013-07-10 21:06:43 -0700735 if (!rcu_access_pointer(new->parent)) {
John Johansen0d259f02013-07-10 21:13:43 -0700736 struct aa_profile *parent = aa_deref_parent(old);
John Johansen01e2b672013-07-10 21:06:43 -0700737 rcu_assign_pointer(new->parent, aa_get_profile(parent));
738 }
John Johansen83995882017-01-16 00:42:19 -0800739 __aa_update_proxy(old, new);
740 if (share_proxy) {
741 aa_put_proxy(new->proxy);
742 new->proxy = aa_get_proxy(old->proxy);
743 } else if (!rcu_access_pointer(new->proxy->profile))
744 /* aafs interface uses proxy */
745 rcu_assign_pointer(new->proxy->profile,
John Johansen0d259f02013-07-10 21:13:43 -0700746 aa_get_profile(new));
747 __aa_fs_profile_migrate_dents(old, new);
John Johansendd51c8482013-07-10 21:05:43 -0700748
749 if (list_empty(&new->base.list)) {
750 /* new is not on a list already */
John Johansen01e2b672013-07-10 21:06:43 -0700751 list_replace_rcu(&old->base.list, &new->base.list);
John Johansendd51c8482013-07-10 21:05:43 -0700752 aa_get_profile(new);
753 aa_put_profile(old);
754 } else
755 __list_remove_profile(old);
756}
757
758/**
759 * __lookup_replace - lookup replacement information for a profile
760 * @ns - namespace the lookup occurs in
761 * @hname - name of profile to lookup
762 * @noreplace - true if not replacing an existing profile
763 * @p - Returns: profile to be replaced
764 * @info - Returns: info string on why lookup failed
765 *
766 * Returns: profile to replace (no ref) on success else ptr error
767 */
John Johansen98849df2017-01-16 00:42:16 -0800768static int __lookup_replace(struct aa_ns *ns, const char *hname,
John Johansendd51c8482013-07-10 21:05:43 -0700769 bool noreplace, struct aa_profile **p,
770 const char **info)
771{
772 *p = aa_get_profile(__lookup_profile(&ns->base, hname));
773 if (*p) {
774 int error = replacement_allowed(*p, noreplace, info);
775 if (error) {
776 *info = "profile can not be replaced";
777 return error;
778 }
779 }
780
781 return 0;
782}
783
John Johansenc88d4c72010-07-29 14:48:00 -0700784/**
785 * aa_replace_profiles - replace profile(s) on the profile list
John Johansen73688d12017-01-16 00:42:34 -0800786 * @view: namespace load is viewed from
John Johansena6f23302017-01-16 00:42:49 -0800787 * @profile: profile that is attempting to load/replace policy
John Johansenc88d4c72010-07-29 14:48:00 -0700788 * @udata: serialized data stream (NOT NULL)
789 * @size: size of the serialized data stream
790 * @noreplace: true if only doing addition, no replacement allowed
791 *
792 * unpack and replace a profile on the profile list and uses of that profile
793 * by any aa_task_cxt. If the profile does not exist on the profile list
794 * it is added.
795 *
796 * Returns: size of data consumed else error code on failure.
797 */
John Johansen73688d12017-01-16 00:42:34 -0800798ssize_t aa_replace_profiles(struct aa_ns *view, void *udata, size_t size,
799 bool noreplace)
John Johansenc88d4c72010-07-29 14:48:00 -0700800{
John Johansenbf15cf02016-04-16 14:16:50 -0700801 const char *ns_name, *info = NULL;
John Johansen98849df2017-01-16 00:42:16 -0800802 struct aa_ns *ns = NULL;
John Johansendd51c8482013-07-10 21:05:43 -0700803 struct aa_load_ent *ent, *tmp;
John Johansenc88d4c72010-07-29 14:48:00 -0700804 int op = OP_PROF_REPL;
805 ssize_t error;
John Johansendd51c8482013-07-10 21:05:43 -0700806 LIST_HEAD(lh);
John Johansenc88d4c72010-07-29 14:48:00 -0700807
808 /* released below */
John Johansendd51c8482013-07-10 21:05:43 -0700809 error = aa_unpack(udata, size, &lh, &ns_name);
810 if (error)
811 goto out;
John Johansenc88d4c72010-07-29 14:48:00 -0700812
813 /* released below */
John Johansen73688d12017-01-16 00:42:34 -0800814 ns = aa_prepare_ns(view, ns_name);
John Johansenc88d4c72010-07-29 14:48:00 -0700815 if (!ns) {
John Johansena6f23302017-01-16 00:42:49 -0800816 error = audit_policy(__aa_current_profile(), op, GFP_KERNEL,
817 ns_name,
John Johansenbf15cf02016-04-16 14:16:50 -0700818 "failed to prepare namespace", -ENOMEM);
819 goto free;
John Johansenc88d4c72010-07-29 14:48:00 -0700820 }
821
John Johansen01e2b672013-07-10 21:06:43 -0700822 mutex_lock(&ns->lock);
John Johansendd51c8482013-07-10 21:05:43 -0700823 /* setup parent and ns info */
824 list_for_each_entry(ent, &lh, list) {
825 struct aa_policy *policy;
John Johansendd51c8482013-07-10 21:05:43 -0700826 error = __lookup_replace(ns, ent->new->base.hname, noreplace,
827 &ent->old, &info);
828 if (error)
829 goto fail_lock;
John Johansenc88d4c72010-07-29 14:48:00 -0700830
John Johansendd51c8482013-07-10 21:05:43 -0700831 if (ent->new->rename) {
832 error = __lookup_replace(ns, ent->new->rename,
833 noreplace, &ent->rename,
834 &info);
835 if (error)
836 goto fail_lock;
John Johansenc88d4c72010-07-29 14:48:00 -0700837 }
John Johansendd51c8482013-07-10 21:05:43 -0700838
839 /* released when @new is freed */
John Johansen98849df2017-01-16 00:42:16 -0800840 ent->new->ns = aa_get_ns(ns);
John Johansendd51c8482013-07-10 21:05:43 -0700841
842 if (ent->old || ent->rename)
843 continue;
844
845 /* no ref on policy only use inside lock */
846 policy = __lookup_parent(ns, ent->new->base.hname);
847 if (!policy) {
848 struct aa_profile *p;
849 p = __list_lookup_parent(&lh, ent->new);
850 if (!p) {
851 error = -ENOENT;
852 info = "parent does not exist";
John Johansendd51c8482013-07-10 21:05:43 -0700853 goto fail_lock;
854 }
John Johansen01e2b672013-07-10 21:06:43 -0700855 rcu_assign_pointer(ent->new->parent, aa_get_profile(p));
856 } else if (policy != &ns->base) {
John Johansendd51c8482013-07-10 21:05:43 -0700857 /* released on profile replacement or free_profile */
John Johansen01e2b672013-07-10 21:06:43 -0700858 struct aa_profile *p = (struct aa_profile *) policy;
859 rcu_assign_pointer(ent->new->parent, aa_get_profile(p));
860 }
John Johansenc88d4c72010-07-29 14:48:00 -0700861 }
862
John Johansen0d259f02013-07-10 21:13:43 -0700863 /* create new fs entries for introspection if needed */
864 list_for_each_entry(ent, &lh, list) {
865 if (ent->old) {
866 /* inherit old interface files */
867
868 /* if (ent->rename)
869 TODO: support rename */
870 /* } else if (ent->rename) {
871 TODO: support rename */
872 } else {
873 struct dentry *parent;
874 if (rcu_access_pointer(ent->new->parent)) {
875 struct aa_profile *p;
876 p = aa_deref_parent(ent->new);
877 parent = prof_child_dir(p);
878 } else
879 parent = ns_subprofs_dir(ent->new->ns);
880 error = __aa_fs_profile_mkdir(ent->new, parent);
881 }
882
883 if (error) {
884 info = "failed to create ";
885 goto fail_lock;
886 }
887 }
888
889 /* Done with checks that may fail - do actual replacement */
John Johansendd51c8482013-07-10 21:05:43 -0700890 list_for_each_entry_safe(ent, tmp, &lh, list) {
891 list_del_init(&ent->list);
892 op = (!ent->old && !ent->rename) ? OP_PROF_LOAD : OP_PROF_REPL;
John Johansenc88d4c72010-07-29 14:48:00 -0700893
John Johansena6f23302017-01-16 00:42:49 -0800894 audit_policy(__aa_current_profile(), op, GFP_ATOMIC,
895 ent->new->base.hname, NULL, error);
John Johansenc88d4c72010-07-29 14:48:00 -0700896
John Johansendd51c8482013-07-10 21:05:43 -0700897 if (ent->old) {
John Johansen77b071b2013-07-10 21:07:43 -0700898 __replace_profile(ent->old, ent->new, 1);
John Johansen0d259f02013-07-10 21:13:43 -0700899 if (ent->rename) {
John Johansen83995882017-01-16 00:42:19 -0800900 /* aafs interface uses proxy */
901 struct aa_proxy *r = ent->new->proxy;
John Johansen0d259f02013-07-10 21:13:43 -0700902 rcu_assign_pointer(r->profile,
903 aa_get_profile(ent->new));
John Johansen77b071b2013-07-10 21:07:43 -0700904 __replace_profile(ent->rename, ent->new, 0);
John Johansen0d259f02013-07-10 21:13:43 -0700905 }
John Johansendd51c8482013-07-10 21:05:43 -0700906 } else if (ent->rename) {
John Johansen83995882017-01-16 00:42:19 -0800907 /* aafs interface uses proxy */
908 rcu_assign_pointer(ent->new->proxy->profile,
John Johansen0d259f02013-07-10 21:13:43 -0700909 aa_get_profile(ent->new));
John Johansen77b071b2013-07-10 21:07:43 -0700910 __replace_profile(ent->rename, ent->new, 0);
John Johansendd51c8482013-07-10 21:05:43 -0700911 } else if (ent->new->parent) {
John Johansen01e2b672013-07-10 21:06:43 -0700912 struct aa_profile *parent, *newest;
John Johansen0d259f02013-07-10 21:13:43 -0700913 parent = aa_deref_parent(ent->new);
John Johansen77b071b2013-07-10 21:07:43 -0700914 newest = aa_get_newest_profile(parent);
John Johansen01e2b672013-07-10 21:06:43 -0700915
John Johansendd51c8482013-07-10 21:05:43 -0700916 /* parent replaced in this atomic set? */
John Johansen01e2b672013-07-10 21:06:43 -0700917 if (newest != parent) {
918 aa_get_profile(newest);
John Johansen01e2b672013-07-10 21:06:43 -0700919 rcu_assign_pointer(ent->new->parent, newest);
John Johansenf3518412016-04-16 13:59:02 -0700920 aa_put_profile(parent);
John Johansendcda6172016-04-11 16:55:10 -0700921 }
John Johansen83995882017-01-16 00:42:19 -0800922 /* aafs interface uses proxy */
923 rcu_assign_pointer(ent->new->proxy->profile,
John Johansen0d259f02013-07-10 21:13:43 -0700924 aa_get_profile(ent->new));
John Johansenec34fa22016-04-11 16:57:19 -0700925 __list_add_profile(&newest->base.profiles, ent->new);
John Johansendcda6172016-04-11 16:55:10 -0700926 aa_put_profile(newest);
John Johansen0d259f02013-07-10 21:13:43 -0700927 } else {
John Johansen83995882017-01-16 00:42:19 -0800928 /* aafs interface uses proxy */
929 rcu_assign_pointer(ent->new->proxy->profile,
John Johansen0d259f02013-07-10 21:13:43 -0700930 aa_get_profile(ent->new));
John Johansendd51c8482013-07-10 21:05:43 -0700931 __list_add_profile(&ns->base.profiles, ent->new);
John Johansen0d259f02013-07-10 21:13:43 -0700932 }
John Johansendd51c8482013-07-10 21:05:43 -0700933 aa_load_ent_free(ent);
John Johansenc88d4c72010-07-29 14:48:00 -0700934 }
John Johansen01e2b672013-07-10 21:06:43 -0700935 mutex_unlock(&ns->lock);
John Johansenc88d4c72010-07-29 14:48:00 -0700936
937out:
John Johansen98849df2017-01-16 00:42:16 -0800938 aa_put_ns(ns);
John Johansendd51c8482013-07-10 21:05:43 -0700939
John Johansenc88d4c72010-07-29 14:48:00 -0700940 if (error)
941 return error;
942 return size;
943
John Johansendd51c8482013-07-10 21:05:43 -0700944fail_lock:
John Johansen01e2b672013-07-10 21:06:43 -0700945 mutex_unlock(&ns->lock);
John Johansendd51c8482013-07-10 21:05:43 -0700946
John Johansenbf15cf02016-04-16 14:16:50 -0700947 /* audit cause of failure */
948 op = (!ent->old) ? OP_PROF_LOAD : OP_PROF_REPL;
John Johansena6f23302017-01-16 00:42:49 -0800949 audit_policy(__aa_current_profile(), op, GFP_KERNEL,
950 ent->new->base.hname, info, error);
John Johansenbf15cf02016-04-16 14:16:50 -0700951 /* audit status that rest of profiles in the atomic set failed too */
952 info = "valid profile in failed atomic policy load";
953 list_for_each_entry(tmp, &lh, list) {
954 if (tmp == ent) {
955 info = "unchecked profile in failed atomic policy load";
956 /* skip entry that caused failure */
957 continue;
958 }
959 op = (!ent->old) ? OP_PROF_LOAD : OP_PROF_REPL;
John Johansena6f23302017-01-16 00:42:49 -0800960 audit_policy(__aa_current_profile(), op, GFP_KERNEL,
961 tmp->new->base.hname, info, error);
John Johansenbf15cf02016-04-16 14:16:50 -0700962 }
963free:
John Johansendd51c8482013-07-10 21:05:43 -0700964 list_for_each_entry_safe(ent, tmp, &lh, list) {
965 list_del_init(&ent->list);
966 aa_load_ent_free(ent);
967 }
968
John Johansenc88d4c72010-07-29 14:48:00 -0700969 goto out;
970}
971
972/**
973 * aa_remove_profiles - remove profile(s) from the system
John Johansenb79473f2017-01-16 00:42:47 -0800974 * @view: namespace the remove is being done from
John Johansenc88d4c72010-07-29 14:48:00 -0700975 * @fqname: name of the profile or namespace to remove (NOT NULL)
976 * @size: size of the name
977 *
978 * Remove a profile or sub namespace from the current namespace, so that
979 * they can not be found anymore and mark them as replaced by unconfined
980 *
981 * NOTE: removing confinement does not restore rlimits to preconfinemnet values
982 *
983 * Returns: size of data consume else error code if fails
984 */
John Johansenb79473f2017-01-16 00:42:47 -0800985ssize_t aa_remove_profiles(struct aa_ns *view, char *fqname, size_t size)
John Johansenc88d4c72010-07-29 14:48:00 -0700986{
John Johansenb79473f2017-01-16 00:42:47 -0800987 struct aa_ns *root = NULL, *ns = NULL;
John Johansenc88d4c72010-07-29 14:48:00 -0700988 struct aa_profile *profile = NULL;
989 const char *name = fqname, *info = NULL;
990 ssize_t error = 0;
991
992 if (*fqname == 0) {
993 info = "no profile specified";
994 error = -ENOENT;
995 goto fail;
996 }
997
John Johansenb79473f2017-01-16 00:42:47 -0800998 root = view;
John Johansenc88d4c72010-07-29 14:48:00 -0700999
1000 if (fqname[0] == ':') {
1001 char *ns_name;
1002 name = aa_split_fqname(fqname, &ns_name);
John Johansen41d1b3e2013-02-21 01:14:17 -08001003 /* released below */
John Johansen98849df2017-01-16 00:42:16 -08001004 ns = aa_find_ns(root, ns_name);
John Johansen41d1b3e2013-02-21 01:14:17 -08001005 if (!ns) {
1006 info = "namespace does not exist";
1007 error = -ENOENT;
1008 goto fail;
John Johansenc88d4c72010-07-29 14:48:00 -07001009 }
1010 } else
1011 /* released below */
John Johansen98849df2017-01-16 00:42:16 -08001012 ns = aa_get_ns(root);
John Johansenc88d4c72010-07-29 14:48:00 -07001013
John Johansenc88d4c72010-07-29 14:48:00 -07001014 if (!name) {
1015 /* remove namespace - can only happen if fqname[0] == ':' */
John Johansen01e2b672013-07-10 21:06:43 -07001016 mutex_lock(&ns->parent->lock);
John Johansen98849df2017-01-16 00:42:16 -08001017 __aa_remove_ns(ns);
John Johansen01e2b672013-07-10 21:06:43 -07001018 mutex_unlock(&ns->parent->lock);
John Johansenc88d4c72010-07-29 14:48:00 -07001019 } else {
1020 /* remove profile */
John Johansen01e2b672013-07-10 21:06:43 -07001021 mutex_lock(&ns->lock);
John Johansenc88d4c72010-07-29 14:48:00 -07001022 profile = aa_get_profile(__lookup_profile(&ns->base, name));
1023 if (!profile) {
1024 error = -ENOENT;
1025 info = "profile does not exist";
1026 goto fail_ns_lock;
1027 }
1028 name = profile->base.hname;
1029 __remove_profile(profile);
John Johansen01e2b672013-07-10 21:06:43 -07001030 mutex_unlock(&ns->lock);
John Johansenc88d4c72010-07-29 14:48:00 -07001031 }
John Johansenc88d4c72010-07-29 14:48:00 -07001032
1033 /* don't fail removal if audit fails */
John Johansena6f23302017-01-16 00:42:49 -08001034 (void) audit_policy(__aa_current_profile(), OP_PROF_RM, GFP_KERNEL,
1035 name, info, error);
John Johansen98849df2017-01-16 00:42:16 -08001036 aa_put_ns(ns);
John Johansenc88d4c72010-07-29 14:48:00 -07001037 aa_put_profile(profile);
1038 return size;
1039
1040fail_ns_lock:
John Johansen01e2b672013-07-10 21:06:43 -07001041 mutex_unlock(&ns->lock);
John Johansen98849df2017-01-16 00:42:16 -08001042 aa_put_ns(ns);
John Johansenc88d4c72010-07-29 14:48:00 -07001043
1044fail:
John Johansena6f23302017-01-16 00:42:49 -08001045 (void) audit_policy(__aa_current_profile(), OP_PROF_RM, GFP_KERNEL,
1046 name, info, error);
John Johansenc88d4c72010-07-29 14:48:00 -07001047 return error;
1048}