blob: 0a99e5324da07bc9c81d81ec410c2fd319c845e7 [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>
Ingo Molnar5b825c32017-02-02 17:54:15 +010079#include <linux/cred.h>
Ingo Molnarb2d09102017-02-04 01:27:20 +010080#include <linux/rculist.h>
John Johansen2bd8dbb2017-01-16 00:42:50 -080081#include <linux/user_namespace.h>
John Johansenc88d4c72010-07-29 14:48:00 -070082
83#include "include/apparmor.h"
84#include "include/capability.h"
85#include "include/context.h"
86#include "include/file.h"
87#include "include/ipc.h"
88#include "include/match.h"
89#include "include/path.h"
90#include "include/policy.h"
John Johansencff281f2017-01-16 00:42:15 -080091#include "include/policy_ns.h"
John Johansenc88d4c72010-07-29 14:48:00 -070092#include "include/policy_unpack.h"
93#include "include/resource.h"
John Johansenc88d4c72010-07-29 14:48:00 -070094
John Johansen2bd8dbb2017-01-16 00:42:50 -080095int unprivileged_userns_apparmor_policy = 1;
John Johansenc88d4c72010-07-29 14:48:00 -070096
John Johansen0d259f02013-07-10 21:13:43 -070097const char *const aa_profile_mode_names[] = {
John Johansenc88d4c72010-07-29 14:48:00 -070098 "enforce",
99 "complain",
100 "kill",
John Johansen03816502013-07-10 21:12:43 -0700101 "unconfined",
John Johansenc88d4c72010-07-29 14:48:00 -0700102};
103
John Johansencff281f2017-01-16 00:42:15 -0800104/* requires profile list write lock held */
John Johansen83995882017-01-16 00:42:19 -0800105void __aa_update_proxy(struct aa_profile *orig, struct aa_profile *new)
John Johansenc88d4c72010-07-29 14:48:00 -0700106{
John Johansencff281f2017-01-16 00:42:15 -0800107 struct aa_profile *tmp;
John Johansenc88d4c72010-07-29 14:48:00 -0700108
John Johansen83995882017-01-16 00:42:19 -0800109 tmp = rcu_dereference_protected(orig->proxy->profile,
John Johansencff281f2017-01-16 00:42:15 -0800110 mutex_is_locked(&orig->ns->lock));
John Johansen83995882017-01-16 00:42:19 -0800111 rcu_assign_pointer(orig->proxy->profile, aa_get_profile(new));
John Johansend97d51d2017-01-16 00:42:18 -0800112 orig->flags |= PFLAG_STALE;
John Johansencff281f2017-01-16 00:42:15 -0800113 aa_put_profile(tmp);
John Johansenc88d4c72010-07-29 14:48:00 -0700114}
115
116/**
117 * __list_add_profile - add a profile to a list
118 * @list: list to add it to (NOT NULL)
119 * @profile: the profile to add (NOT NULL)
120 *
121 * refcount @profile, should be put by __list_remove_profile
122 *
123 * Requires: namespace lock be held, or list not be shared
124 */
125static void __list_add_profile(struct list_head *list,
126 struct aa_profile *profile)
127{
John Johansen01e2b672013-07-10 21:06:43 -0700128 list_add_rcu(&profile->base.list, list);
John Johansenc88d4c72010-07-29 14:48:00 -0700129 /* get list reference */
130 aa_get_profile(profile);
131}
132
133/**
134 * __list_remove_profile - remove a profile from the list it is on
135 * @profile: the profile to remove (NOT NULL)
136 *
137 * remove a profile from the list, warning generally removal should
138 * be done with __replace_profile as most profile removals are
139 * replacements to the unconfined profile.
140 *
141 * put @profile list refcount
142 *
143 * Requires: namespace lock be held, or list not have been live
144 */
145static void __list_remove_profile(struct aa_profile *profile)
146{
John Johansen01e2b672013-07-10 21:06:43 -0700147 list_del_rcu(&profile->base.list);
148 aa_put_profile(profile);
John Johansenc88d4c72010-07-29 14:48:00 -0700149}
150
John Johansenc88d4c72010-07-29 14:48:00 -0700151/**
152 * __remove_profile - remove old profile, and children
153 * @profile: profile to be replaced (NOT NULL)
154 *
155 * Requires: namespace list lock be held, or list not be shared
156 */
157static void __remove_profile(struct aa_profile *profile)
158{
159 /* release any children lists first */
John Johansencff281f2017-01-16 00:42:15 -0800160 __aa_profile_list_release(&profile->base.profiles);
John Johansenc88d4c72010-07-29 14:48:00 -0700161 /* released by free_profile */
John Johansen83995882017-01-16 00:42:19 -0800162 __aa_update_proxy(profile, profile->ns->unconfined);
John Johansenc97204b2017-05-25 06:23:42 -0700163 __aafs_profile_rmdir(profile);
John Johansenc88d4c72010-07-29 14:48:00 -0700164 __list_remove_profile(profile);
165}
166
167/**
John Johansencff281f2017-01-16 00:42:15 -0800168 * __aa_profile_list_release - remove all profiles on the list and put refs
John Johansenc88d4c72010-07-29 14:48:00 -0700169 * @head: list of profiles (NOT NULL)
170 *
171 * Requires: namespace lock be held
172 */
John Johansencff281f2017-01-16 00:42:15 -0800173void __aa_profile_list_release(struct list_head *head)
John Johansenc88d4c72010-07-29 14:48:00 -0700174{
175 struct aa_profile *profile, *tmp;
176 list_for_each_entry_safe(profile, tmp, head, base.list)
177 __remove_profile(profile);
178}
179
John Johansen77b071b2013-07-10 21:07:43 -0700180
John Johansen83995882017-01-16 00:42:19 -0800181static void free_proxy(struct aa_proxy *p)
John Johansen77b071b2013-07-10 21:07:43 -0700182{
John Johansen83995882017-01-16 00:42:19 -0800183 if (p) {
John Johansen4cd4fc72013-09-29 08:39:22 -0700184 /* r->profile will not be updated any more as r is dead */
John Johansen83995882017-01-16 00:42:19 -0800185 aa_put_profile(rcu_dereference_protected(p->profile, true));
186 kzfree(p);
John Johansen77b071b2013-07-10 21:07:43 -0700187 }
188}
189
190
John Johansen83995882017-01-16 00:42:19 -0800191void aa_free_proxy_kref(struct kref *kref)
John Johansen77b071b2013-07-10 21:07:43 -0700192{
John Johansen83995882017-01-16 00:42:19 -0800193 struct aa_proxy *p = container_of(kref, struct aa_proxy, count);
194
195 free_proxy(p);
John Johansen77b071b2013-07-10 21:07:43 -0700196}
197
John Johansenc88d4c72010-07-29 14:48:00 -0700198/**
William Huae025be02017-01-15 16:49:28 -0800199 * aa_free_data - free a data blob
200 * @ptr: data to free
201 * @arg: unused
202 */
203static void aa_free_data(void *ptr, void *arg)
204{
205 struct aa_data *data = ptr;
206
207 kzfree(data->data);
208 kzfree(data->key);
209 kzfree(data);
210}
211
212/**
John Johansen8651e1d62013-07-10 21:11:43 -0700213 * aa_free_profile - free a profile
John Johansenc88d4c72010-07-29 14:48:00 -0700214 * @profile: the profile to free (MAYBE NULL)
215 *
216 * Free a profile, its hats and null_profile. All references to the profile,
217 * its hats and null_profile must have been put.
218 *
219 * If the profile was referenced from a task context, free_profile() will
220 * be called from an rcu callback routine, so we must not sleep here.
221 */
John Johansen8651e1d62013-07-10 21:11:43 -0700222void aa_free_profile(struct aa_profile *profile)
John Johansenc88d4c72010-07-29 14:48:00 -0700223{
William Huae025be02017-01-15 16:49:28 -0800224 struct rhashtable *rht;
225
John Johansenc88d4c72010-07-29 14:48:00 -0700226 AA_DEBUG("%s(%p)\n", __func__, profile);
227
228 if (!profile)
229 return;
230
John Johansenc88d4c72010-07-29 14:48:00 -0700231 /* free children profiles */
John Johansenfe6bb312017-01-16 00:42:14 -0800232 aa_policy_destroy(&profile->base);
John Johansen01e2b672013-07-10 21:06:43 -0700233 aa_put_profile(rcu_access_pointer(profile->parent));
John Johansenc88d4c72010-07-29 14:48:00 -0700234
John Johansen98849df2017-01-16 00:42:16 -0800235 aa_put_ns(profile->ns);
John Johansenc88d4c72010-07-29 14:48:00 -0700236 kzfree(profile->rename);
237
238 aa_free_file_rules(&profile->file);
239 aa_free_cap_rules(&profile->caps);
240 aa_free_rlimit_rules(&profile->rlimits);
241
John Johansen0d259f02013-07-10 21:13:43 -0700242 kzfree(profile->dirname);
John Johansenc88d4c72010-07-29 14:48:00 -0700243 aa_put_dfa(profile->xmatch);
John Johansenad5ff3d2012-02-16 07:07:53 -0800244 aa_put_dfa(profile->policy.dfa);
John Johansen83995882017-01-16 00:42:19 -0800245 aa_put_proxy(profile->proxy);
John Johansenc88d4c72010-07-29 14:48:00 -0700246
William Huae025be02017-01-15 16:49:28 -0800247 if (profile->data) {
248 rht = profile->data;
249 profile->data = NULL;
250 rhashtable_free_and_destroy(rht, aa_free_data, NULL);
251 kzfree(rht);
252 }
253
John Johansen5cb3e912013-10-14 11:44:34 -0700254 kzfree(profile->hash);
John Johansen5ac8c352017-01-16 00:42:55 -0800255 aa_put_loaddata(profile->rawdata);
John Johansenc88d4c72010-07-29 14:48:00 -0700256 kzfree(profile);
257}
258
259/**
John Johansen01e2b672013-07-10 21:06:43 -0700260 * aa_free_profile_rcu - free aa_profile by rcu (called by aa_free_profile_kref)
261 * @head: rcu_head callback for freeing of a profile (NOT NULL)
262 */
263static void aa_free_profile_rcu(struct rcu_head *head)
264{
John Johansen742058b2013-07-10 21:10:43 -0700265 struct aa_profile *p = container_of(head, struct aa_profile, rcu);
266 if (p->flags & PFLAG_NS_COUNT)
John Johansen98849df2017-01-16 00:42:16 -0800267 aa_free_ns(p->ns);
John Johansen742058b2013-07-10 21:10:43 -0700268 else
John Johansen8651e1d62013-07-10 21:11:43 -0700269 aa_free_profile(p);
John Johansen01e2b672013-07-10 21:06:43 -0700270}
271
272/**
John Johansenc88d4c72010-07-29 14:48:00 -0700273 * aa_free_profile_kref - free aa_profile by kref (called by aa_put_profile)
274 * @kr: kref callback for freeing of a profile (NOT NULL)
275 */
276void aa_free_profile_kref(struct kref *kref)
277{
John Johansenfa2ac462013-07-10 21:08:43 -0700278 struct aa_profile *p = container_of(kref, struct aa_profile, count);
John Johansen742058b2013-07-10 21:10:43 -0700279 call_rcu(&p->rcu, aa_free_profile_rcu);
John Johansenc88d4c72010-07-29 14:48:00 -0700280}
281
John Johansen4da05cc2013-02-18 16:11:34 -0800282/**
283 * aa_alloc_profile - allocate, initialize and return a new profile
284 * @hname: name of the profile (NOT NULL)
John Johansen30b026a2017-01-16 00:42:35 -0800285 * @gfp: allocation type
John Johansen4da05cc2013-02-18 16:11:34 -0800286 *
287 * Returns: refcount profile or NULL on failure
288 */
John Johansen30b026a2017-01-16 00:42:35 -0800289struct aa_profile *aa_alloc_profile(const char *hname, gfp_t gfp)
John Johansen4da05cc2013-02-18 16:11:34 -0800290{
291 struct aa_profile *profile;
292
293 /* freed by free_profile - usually through aa_put_profile */
John Johansen30b026a2017-01-16 00:42:35 -0800294 profile = kzalloc(sizeof(*profile), gfp);
John Johansen4da05cc2013-02-18 16:11:34 -0800295 if (!profile)
296 return NULL;
297
John Johansen30b026a2017-01-16 00:42:35 -0800298 profile->proxy = kzalloc(sizeof(struct aa_proxy), gfp);
John Johansen83995882017-01-16 00:42:19 -0800299 if (!profile->proxy)
John Johansen77b071b2013-07-10 21:07:43 -0700300 goto fail;
John Johansen83995882017-01-16 00:42:19 -0800301 kref_init(&profile->proxy->count);
John Johansen77b071b2013-07-10 21:07:43 -0700302
John Johansen30b026a2017-01-16 00:42:35 -0800303 if (!aa_policy_init(&profile->base, NULL, hname, gfp))
John Johansen77b071b2013-07-10 21:07:43 -0700304 goto fail;
John Johansenfa2ac462013-07-10 21:08:43 -0700305 kref_init(&profile->count);
John Johansen4da05cc2013-02-18 16:11:34 -0800306
307 /* refcount released by caller */
308 return profile;
John Johansen77b071b2013-07-10 21:07:43 -0700309
310fail:
John Johansen83995882017-01-16 00:42:19 -0800311 kzfree(profile->proxy);
John Johansen77b071b2013-07-10 21:07:43 -0700312 kzfree(profile);
313
314 return NULL;
John Johansen4da05cc2013-02-18 16:11:34 -0800315}
316
317/**
John Johansen181f7c92017-01-16 00:42:36 -0800318 * aa_new_null_profile - create or find a null-X learning profile
John Johansen4da05cc2013-02-18 16:11:34 -0800319 * @parent: profile that caused this profile to be created (NOT NULL)
320 * @hat: true if the null- learning profile is a hat
John Johansen181f7c92017-01-16 00:42:36 -0800321 * @base: name to base the null profile off of
322 * @gfp: type of allocation
John Johansen4da05cc2013-02-18 16:11:34 -0800323 *
John Johansen181f7c92017-01-16 00:42:36 -0800324 * Find/Create a null- complain mode profile used in learning mode. The
325 * name of the profile is unique and follows the format of parent//null-XXX.
326 * where XXX is based on the @name or if that fails or is not supplied
327 * a unique number
John Johansen4da05cc2013-02-18 16:11:34 -0800328 *
329 * null profiles are added to the profile list but the list does not
330 * hold a count on them so that they are automatically released when
331 * not in use.
332 *
333 * Returns: new refcounted profile else NULL on failure
334 */
John Johansen181f7c92017-01-16 00:42:36 -0800335struct aa_profile *aa_new_null_profile(struct aa_profile *parent, bool hat,
336 const char *base, gfp_t gfp)
John Johansen4da05cc2013-02-18 16:11:34 -0800337{
John Johansen181f7c92017-01-16 00:42:36 -0800338 struct aa_profile *profile;
John Johansen4da05cc2013-02-18 16:11:34 -0800339 char *name;
John Johansen4da05cc2013-02-18 16:11:34 -0800340
John Johansen181f7c92017-01-16 00:42:36 -0800341 AA_BUG(!parent);
342
343 if (base) {
344 name = kmalloc(strlen(parent->base.hname) + 8 + strlen(base),
345 gfp);
346 if (name) {
347 sprintf(name, "%s//null-%s", parent->base.hname, base);
348 goto name;
349 }
350 /* fall through to try shorter uniq */
351 }
352
353 name = kmalloc(strlen(parent->base.hname) + 2 + 7 + 8, gfp);
John Johansen4da05cc2013-02-18 16:11:34 -0800354 if (!name)
John Johansen181f7c92017-01-16 00:42:36 -0800355 return NULL;
356 sprintf(name, "%s//null-%x", parent->base.hname,
357 atomic_inc_return(&parent->ns->uniq_null));
John Johansen4da05cc2013-02-18 16:11:34 -0800358
John Johansen181f7c92017-01-16 00:42:36 -0800359name:
360 /* lookup to see if this is a dup creation */
361 profile = aa_find_child(parent, basename(name));
362 if (profile)
363 goto out;
364
365 profile = aa_alloc_profile(name, gfp);
John Johansen4da05cc2013-02-18 16:11:34 -0800366 if (!profile)
367 goto fail;
368
369 profile->mode = APPARMOR_COMPLAIN;
John Johansen181f7c92017-01-16 00:42:36 -0800370 profile->flags |= PFLAG_NULL;
John Johansen4da05cc2013-02-18 16:11:34 -0800371 if (hat)
372 profile->flags |= PFLAG_HAT;
John Johansen181f7c92017-01-16 00:42:36 -0800373 profile->path_flags = parent->path_flags;
John Johansen4da05cc2013-02-18 16:11:34 -0800374
375 /* released on free_profile */
John Johansen01e2b672013-07-10 21:06:43 -0700376 rcu_assign_pointer(profile->parent, aa_get_profile(parent));
John Johansen98849df2017-01-16 00:42:16 -0800377 profile->ns = aa_get_ns(parent->ns);
John Johansen11c236b2017-01-16 00:42:42 -0800378 profile->file.dfa = aa_get_dfa(nulldfa);
379 profile->policy.dfa = aa_get_dfa(nulldfa);
John Johansen4da05cc2013-02-18 16:11:34 -0800380
John Johansen01e2b672013-07-10 21:06:43 -0700381 mutex_lock(&profile->ns->lock);
John Johansen4da05cc2013-02-18 16:11:34 -0800382 __list_add_profile(&parent->base.profiles, profile);
John Johansen01e2b672013-07-10 21:06:43 -0700383 mutex_unlock(&profile->ns->lock);
John Johansen4da05cc2013-02-18 16:11:34 -0800384
385 /* refcount released by caller */
John Johansen181f7c92017-01-16 00:42:36 -0800386out:
387 kfree(name);
388
John Johansen4da05cc2013-02-18 16:11:34 -0800389 return profile;
390
391fail:
John Johansen181f7c92017-01-16 00:42:36 -0800392 kfree(name);
393 aa_free_profile(profile);
John Johansen4da05cc2013-02-18 16:11:34 -0800394 return NULL;
395}
396
John Johansenc88d4c72010-07-29 14:48:00 -0700397/* TODO: profile accounting - setup in remove */
398
399/**
John Johansenc88d4c72010-07-29 14:48:00 -0700400 * __strn_find_child - find a profile on @head list using substring of @name
401 * @head: list to search (NOT NULL)
402 * @name: name of profile (NOT NULL)
403 * @len: length of @name substring to match
404 *
John Johansen01e2b672013-07-10 21:06:43 -0700405 * Requires: rcu_read_lock be held
John Johansenc88d4c72010-07-29 14:48:00 -0700406 *
407 * Returns: unrefcounted profile ptr, or NULL if not found
408 */
409static struct aa_profile *__strn_find_child(struct list_head *head,
410 const char *name, int len)
411{
412 return (struct aa_profile *)__policy_strn_find(head, name, len);
413}
414
415/**
John Johansenae3b3162017-06-02 13:50:22 -0700416 * __find_child - find a profile on @head list with a name matching @name
417 * @head: list to search (NOT NULL)
418 * @name: name of profile (NOT NULL)
419 *
420 * Requires: rcu_read_lock be held
421 *
422 * Returns: unrefcounted profile ptr, or NULL if not found
423 */
424static struct aa_profile *__find_child(struct list_head *head, const char *name)
425{
426 return __strn_find_child(head, name, strlen(name));
427}
428
429/**
John Johansenc88d4c72010-07-29 14:48:00 -0700430 * aa_find_child - find a profile by @name in @parent
431 * @parent: profile to search (NOT NULL)
432 * @name: profile name to search for (NOT NULL)
433 *
434 * Returns: a refcounted profile or NULL if not found
435 */
436struct aa_profile *aa_find_child(struct aa_profile *parent, const char *name)
437{
438 struct aa_profile *profile;
439
John Johansen01e2b672013-07-10 21:06:43 -0700440 rcu_read_lock();
John Johansende7c4cc2015-12-16 18:09:10 -0800441 do {
442 profile = __find_child(&parent->base.profiles, name);
443 } while (profile && !aa_get_profile_not0(profile));
John Johansen01e2b672013-07-10 21:06:43 -0700444 rcu_read_unlock();
John Johansenc88d4c72010-07-29 14:48:00 -0700445
446 /* refcount released by caller */
447 return profile;
448}
449
450/**
451 * __lookup_parent - lookup the parent of a profile of name @hname
452 * @ns: namespace to lookup profile in (NOT NULL)
453 * @hname: hierarchical profile name to find parent of (NOT NULL)
454 *
455 * Lookups up the parent of a fully qualified profile name, the profile
456 * that matches hname does not need to exist, in general this
457 * is used to load a new profile.
458 *
John Johansen01e2b672013-07-10 21:06:43 -0700459 * Requires: rcu_read_lock be held
John Johansenc88d4c72010-07-29 14:48:00 -0700460 *
461 * Returns: unrefcounted policy or NULL if not found
462 */
John Johansen98849df2017-01-16 00:42:16 -0800463static struct aa_policy *__lookup_parent(struct aa_ns *ns,
John Johansenc88d4c72010-07-29 14:48:00 -0700464 const char *hname)
465{
466 struct aa_policy *policy;
467 struct aa_profile *profile = NULL;
468 char *split;
469
470 policy = &ns->base;
471
472 for (split = strstr(hname, "//"); split;) {
473 profile = __strn_find_child(&policy->profiles, hname,
474 split - hname);
475 if (!profile)
476 return NULL;
477 policy = &profile->base;
478 hname = split + 2;
479 split = strstr(hname, "//");
480 }
481 if (!profile)
482 return &ns->base;
483 return &profile->base;
484}
485
486/**
John Johansen1741e9e2017-01-16 00:42:21 -0800487 * __lookupn_profile - lookup the profile matching @hname
John Johansenc88d4c72010-07-29 14:48:00 -0700488 * @base: base list to start looking up profile name from (NOT NULL)
489 * @hname: hierarchical profile name (NOT NULL)
John Johansen1741e9e2017-01-16 00:42:21 -0800490 * @n: length of @hname
John Johansenc88d4c72010-07-29 14:48:00 -0700491 *
John Johansen01e2b672013-07-10 21:06:43 -0700492 * Requires: rcu_read_lock be held
John Johansenc88d4c72010-07-29 14:48:00 -0700493 *
494 * Returns: unrefcounted profile pointer or NULL if not found
495 *
496 * Do a relative name lookup, recursing through profile tree.
497 */
John Johansen1741e9e2017-01-16 00:42:21 -0800498static struct aa_profile *__lookupn_profile(struct aa_policy *base,
499 const char *hname, size_t n)
John Johansenc88d4c72010-07-29 14:48:00 -0700500{
501 struct aa_profile *profile = NULL;
John Johansen1741e9e2017-01-16 00:42:21 -0800502 const char *split;
John Johansenc88d4c72010-07-29 14:48:00 -0700503
John Johansen1741e9e2017-01-16 00:42:21 -0800504 for (split = strnstr(hname, "//", n); split;
505 split = strnstr(hname, "//", n)) {
John Johansenc88d4c72010-07-29 14:48:00 -0700506 profile = __strn_find_child(&base->profiles, hname,
507 split - hname);
508 if (!profile)
509 return NULL;
510
511 base = &profile->base;
John Johansen1741e9e2017-01-16 00:42:21 -0800512 n -= split + 2 - hname;
John Johansenc88d4c72010-07-29 14:48:00 -0700513 hname = split + 2;
John Johansenc88d4c72010-07-29 14:48:00 -0700514 }
515
John Johansen1741e9e2017-01-16 00:42:21 -0800516 if (n)
517 return __strn_find_child(&base->profiles, hname, n);
518 return NULL;
519}
John Johansenc88d4c72010-07-29 14:48:00 -0700520
John Johansen1741e9e2017-01-16 00:42:21 -0800521static struct aa_profile *__lookup_profile(struct aa_policy *base,
522 const char *hname)
523{
524 return __lookupn_profile(base, hname, strlen(hname));
John Johansenc88d4c72010-07-29 14:48:00 -0700525}
526
527/**
528 * aa_lookup_profile - find a profile by its full or partial name
529 * @ns: the namespace to start from (NOT NULL)
530 * @hname: name to do lookup on. Does not contain namespace prefix (NOT NULL)
John Johansen1741e9e2017-01-16 00:42:21 -0800531 * @n: size of @hname
John Johansenc88d4c72010-07-29 14:48:00 -0700532 *
533 * Returns: refcounted profile or NULL if not found
534 */
John Johansen1741e9e2017-01-16 00:42:21 -0800535struct aa_profile *aa_lookupn_profile(struct aa_ns *ns, const char *hname,
536 size_t n)
John Johansenc88d4c72010-07-29 14:48:00 -0700537{
538 struct aa_profile *profile;
539
John Johansen01e2b672013-07-10 21:06:43 -0700540 rcu_read_lock();
541 do {
John Johansen1741e9e2017-01-16 00:42:21 -0800542 profile = __lookupn_profile(&ns->base, hname, n);
John Johansen01e2b672013-07-10 21:06:43 -0700543 } while (profile && !aa_get_profile_not0(profile));
544 rcu_read_unlock();
John Johansenc88d4c72010-07-29 14:48:00 -0700545
John Johansenbf832082012-05-16 11:00:05 -0700546 /* the unconfined profile is not in the regular profile list */
John Johansen1741e9e2017-01-16 00:42:21 -0800547 if (!profile && strncmp(hname, "unconfined", n) == 0)
John Johansenfa2ac462013-07-10 21:08:43 -0700548 profile = aa_get_newest_profile(ns->unconfined);
John Johansenbf832082012-05-16 11:00:05 -0700549
John Johansenc88d4c72010-07-29 14:48:00 -0700550 /* refcount released by caller */
551 return profile;
552}
553
John Johansen1741e9e2017-01-16 00:42:21 -0800554struct aa_profile *aa_lookup_profile(struct aa_ns *ns, const char *hname)
555{
556 return aa_lookupn_profile(ns, hname, strlen(hname));
557}
John Johansen31617dd2017-01-16 00:42:24 -0800558
559struct aa_profile *aa_fqlookupn_profile(struct aa_profile *base,
560 const char *fqname, size_t n)
561{
562 struct aa_profile *profile;
563 struct aa_ns *ns;
564 const char *name, *ns_name;
565 size_t ns_len;
566
567 name = aa_splitn_fqname(fqname, n, &ns_name, &ns_len);
568 if (ns_name) {
569 ns = aa_findn_ns(base->ns, ns_name, ns_len);
570 if (!ns)
571 return NULL;
572 } else
573 ns = aa_get_ns(base->ns);
574
575 if (name)
576 profile = aa_lookupn_profile(ns, name, n - (name - fqname));
577 else if (ns)
578 /* default profile for ns, currently unconfined */
579 profile = aa_get_newest_profile(ns->unconfined);
580 else
581 profile = NULL;
582 aa_put_ns(ns);
583
584 return profile;
585}
586
John Johansenc88d4c72010-07-29 14:48:00 -0700587/**
588 * replacement_allowed - test to see if replacement is allowed
589 * @profile: profile to test if it can be replaced (MAYBE NULL)
590 * @noreplace: true if replacement shouldn't be allowed but addition is okay
591 * @info: Returns - info about why replacement failed (NOT NULL)
592 *
593 * Returns: %0 if replacement allowed else error code
594 */
595static int replacement_allowed(struct aa_profile *profile, int noreplace,
596 const char **info)
597{
598 if (profile) {
599 if (profile->flags & PFLAG_IMMUTABLE) {
600 *info = "cannot replace immutible profile";
601 return -EPERM;
602 } else if (noreplace) {
603 *info = "profile already exists";
604 return -EEXIST;
605 }
606 }
607 return 0;
608}
609
John Johansenfc1c9fd2017-01-16 00:42:54 -0800610/* audit callback for net specific fields */
611static void audit_cb(struct audit_buffer *ab, void *va)
612{
613 struct common_audit_data *sa = va;
614
John Johansenef88a7a2017-01-16 00:43:02 -0800615 if (aad(sa)->iface.ns) {
John Johansenfc1c9fd2017-01-16 00:42:54 -0800616 audit_log_format(ab, " ns=");
John Johansenef88a7a2017-01-16 00:43:02 -0800617 audit_log_untrustedstring(ab, aad(sa)->iface.ns);
John Johansenfc1c9fd2017-01-16 00:42:54 -0800618 }
619}
620
John Johansenc88d4c72010-07-29 14:48:00 -0700621/**
John Johansenc88d4c72010-07-29 14:48:00 -0700622 * aa_audit_policy - Do auditing of policy changes
John Johansena6f23302017-01-16 00:42:49 -0800623 * @profile: profile to check if it can manage policy
John Johansenc88d4c72010-07-29 14:48:00 -0700624 * @op: policy operation being performed
625 * @gfp: memory allocation flags
John Johansenfc1c9fd2017-01-16 00:42:54 -0800626 * @nsname: name of the ns being manipulated (MAY BE NULL)
John Johansenc88d4c72010-07-29 14:48:00 -0700627 * @name: name of profile being manipulated (NOT NULL)
628 * @info: any extra information to be audited (MAYBE NULL)
629 * @error: error code
630 *
631 * Returns: the error to be returned after audit is done
632 */
John Johansenef88a7a2017-01-16 00:43:02 -0800633static int audit_policy(struct aa_profile *profile, const char *op,
John Johansenfc1c9fd2017-01-16 00:42:54 -0800634 const char *nsname, const char *name,
635 const char *info, int error)
John Johansenc88d4c72010-07-29 14:48:00 -0700636{
John Johansenef88a7a2017-01-16 00:43:02 -0800637 DEFINE_AUDIT_DATA(sa, LSM_AUDIT_DATA_NONE, op);
John Johansenc88d4c72010-07-29 14:48:00 -0700638
John Johansenef88a7a2017-01-16 00:43:02 -0800639 aad(&sa)->iface.ns = nsname;
640 aad(&sa)->name = name;
641 aad(&sa)->info = info;
642 aad(&sa)->error = error;
643
644 return aa_audit(AUDIT_APPARMOR_STATUS, profile, &sa, audit_cb);
John Johansenc88d4c72010-07-29 14:48:00 -0700645}
646
John Johansen2bd8dbb2017-01-16 00:42:50 -0800647/**
648 * policy_view_capable - check if viewing policy in at @ns is allowed
649 * ns: namespace being viewed by current task (may be NULL)
650 * Returns: true if viewing policy is allowed
651 *
652 * If @ns is NULL then the namespace being viewed is assumed to be the
653 * tasks current namespace.
654 */
655bool policy_view_capable(struct aa_ns *ns)
John Johansen58acf9d2016-06-22 18:01:08 -0700656{
657 struct user_namespace *user_ns = current_user_ns();
John Johansen2bd8dbb2017-01-16 00:42:50 -0800658 struct aa_ns *view_ns = aa_get_current_ns();
659 bool root_in_user_ns = uid_eq(current_euid(), make_kuid(user_ns, 0)) ||
660 in_egroup_p(make_kgid(user_ns, 0));
John Johansen58acf9d2016-06-22 18:01:08 -0700661 bool response = false;
John Johansen2bd8dbb2017-01-16 00:42:50 -0800662 if (!ns)
663 ns = view_ns;
John Johansen58acf9d2016-06-22 18:01:08 -0700664
John Johansen2bd8dbb2017-01-16 00:42:50 -0800665 if (root_in_user_ns && aa_ns_visible(view_ns, ns, true) &&
666 (user_ns == &init_user_ns ||
667 (unprivileged_userns_apparmor_policy != 0 &&
668 user_ns->level == view_ns->level)))
John Johansen58acf9d2016-06-22 18:01:08 -0700669 response = true;
John Johansen2bd8dbb2017-01-16 00:42:50 -0800670 aa_put_ns(view_ns);
John Johansen58acf9d2016-06-22 18:01:08 -0700671
672 return response;
673}
674
John Johansenfd2a8042017-01-16 00:42:51 -0800675bool policy_admin_capable(struct aa_ns *ns)
John Johansen58acf9d2016-06-22 18:01:08 -0700676{
John Johansenfd2a8042017-01-16 00:42:51 -0800677 struct user_namespace *user_ns = current_user_ns();
678 bool capable = ns_capable(user_ns, CAP_MAC_ADMIN);
679
680 AA_DEBUG("cap_mac_admin? %d\n", capable);
681 AA_DEBUG("policy locked? %d\n", aa_g_lock_policy);
682
683 return policy_view_capable(ns) && capable && !aa_g_lock_policy;
John Johansen58acf9d2016-06-22 18:01:08 -0700684}
685
John Johansenc88d4c72010-07-29 14:48:00 -0700686/**
687 * aa_may_manage_policy - can the current task manage policy
John Johansen078c73c62017-01-16 00:42:52 -0800688 * @profile: profile to check if it can manage policy
John Johansenc88d4c72010-07-29 14:48:00 -0700689 * @op: the policy manipulation operation being done
690 *
John Johansen078c73c62017-01-16 00:42:52 -0800691 * Returns: 0 if the task is allowed to manipulate policy else error
John Johansenc88d4c72010-07-29 14:48:00 -0700692 */
John Johansen18e99f12017-05-26 01:45:08 -0700693int aa_may_manage_policy(struct aa_profile *profile, struct aa_ns *ns, u32 mask)
John Johansenc88d4c72010-07-29 14:48:00 -0700694{
John Johansen18e99f12017-05-26 01:45:08 -0700695 const char *op;
696
697 if (mask & AA_MAY_REMOVE_POLICY)
698 op = OP_PROF_RM;
699 else if (mask & AA_MAY_REPLACE_POLICY)
700 op = OP_PROF_REPL;
701 else
702 op = OP_PROF_LOAD;
703
John Johansenc88d4c72010-07-29 14:48:00 -0700704 /* check if loading policy is locked out */
John Johansen078c73c62017-01-16 00:42:52 -0800705 if (aa_g_lock_policy)
John Johansen18e99f12017-05-26 01:45:08 -0700706 return audit_policy(profile, op, NULL, NULL, "policy_locked",
707 -EACCES);
John Johansenc88d4c72010-07-29 14:48:00 -0700708
John Johansen078c73c62017-01-16 00:42:52 -0800709 if (!policy_admin_capable(ns))
John Johansen18e99f12017-05-26 01:45:08 -0700710 return audit_policy(profile, op, NULL, NULL, "not policy admin",
711 -EACCES);
John Johansenc88d4c72010-07-29 14:48:00 -0700712
John Johansen078c73c62017-01-16 00:42:52 -0800713 /* TODO: add fine grained mediation of policy loads */
714 return 0;
John Johansenc88d4c72010-07-29 14:48:00 -0700715}
716
John Johansendd51c8482013-07-10 21:05:43 -0700717static struct aa_profile *__list_lookup_parent(struct list_head *lh,
718 struct aa_profile *profile)
719{
John Johansen6e474e32017-01-16 00:42:29 -0800720 const char *base = basename(profile->base.hname);
John Johansendd51c8482013-07-10 21:05:43 -0700721 long len = base - profile->base.hname;
722 struct aa_load_ent *ent;
723
724 /* parent won't have trailing // so remove from len */
725 if (len <= 2)
726 return NULL;
727 len -= 2;
728
729 list_for_each_entry(ent, lh, list) {
730 if (ent->new == profile)
731 continue;
732 if (strncmp(ent->new->base.hname, profile->base.hname, len) ==
733 0 && ent->new->base.hname[len] == 0)
734 return ent->new;
735 }
736
737 return NULL;
738}
739
740/**
741 * __replace_profile - replace @old with @new on a list
742 * @old: profile to be replaced (NOT NULL)
743 * @new: profile to replace @old with (NOT NULL)
John Johansen83995882017-01-16 00:42:19 -0800744 * @share_proxy: transfer @old->proxy to @new
John Johansendd51c8482013-07-10 21:05:43 -0700745 *
746 * Will duplicate and refcount elements that @new inherits from @old
747 * and will inherit @old children.
748 *
749 * refcount @new for list, put @old list refcount
750 *
751 * Requires: namespace list lock be held, or list not be shared
752 */
John Johansen77b071b2013-07-10 21:07:43 -0700753static void __replace_profile(struct aa_profile *old, struct aa_profile *new,
John Johansen83995882017-01-16 00:42:19 -0800754 bool share_proxy)
John Johansendd51c8482013-07-10 21:05:43 -0700755{
756 struct aa_profile *child, *tmp;
757
758 if (!list_empty(&old->base.profiles)) {
759 LIST_HEAD(lh);
John Johansen01e2b672013-07-10 21:06:43 -0700760 list_splice_init_rcu(&old->base.profiles, &lh, synchronize_rcu);
John Johansendd51c8482013-07-10 21:05:43 -0700761
762 list_for_each_entry_safe(child, tmp, &lh, base.list) {
763 struct aa_profile *p;
764
765 list_del_init(&child->base.list);
766 p = __find_child(&new->base.profiles, child->base.name);
767 if (p) {
768 /* @p replaces @child */
John Johansen83995882017-01-16 00:42:19 -0800769 __replace_profile(child, p, share_proxy);
John Johansendd51c8482013-07-10 21:05:43 -0700770 continue;
771 }
772
773 /* inherit @child and its children */
774 /* TODO: update hname of inherited children */
775 /* list refcount transferred to @new */
John Johansen0d259f02013-07-10 21:13:43 -0700776 p = aa_deref_parent(child);
John Johansen01e2b672013-07-10 21:06:43 -0700777 rcu_assign_pointer(child->parent, aa_get_profile(new));
778 list_add_rcu(&child->base.list, &new->base.profiles);
779 aa_put_profile(p);
John Johansendd51c8482013-07-10 21:05:43 -0700780 }
781 }
782
John Johansen01e2b672013-07-10 21:06:43 -0700783 if (!rcu_access_pointer(new->parent)) {
John Johansen0d259f02013-07-10 21:13:43 -0700784 struct aa_profile *parent = aa_deref_parent(old);
John Johansen01e2b672013-07-10 21:06:43 -0700785 rcu_assign_pointer(new->parent, aa_get_profile(parent));
786 }
John Johansen83995882017-01-16 00:42:19 -0800787 __aa_update_proxy(old, new);
788 if (share_proxy) {
789 aa_put_proxy(new->proxy);
790 new->proxy = aa_get_proxy(old->proxy);
791 } else if (!rcu_access_pointer(new->proxy->profile))
792 /* aafs interface uses proxy */
793 rcu_assign_pointer(new->proxy->profile,
John Johansen0d259f02013-07-10 21:13:43 -0700794 aa_get_profile(new));
John Johansenc97204b2017-05-25 06:23:42 -0700795 __aafs_profile_migrate_dents(old, new);
John Johansendd51c8482013-07-10 21:05:43 -0700796
797 if (list_empty(&new->base.list)) {
798 /* new is not on a list already */
John Johansen01e2b672013-07-10 21:06:43 -0700799 list_replace_rcu(&old->base.list, &new->base.list);
John Johansendd51c8482013-07-10 21:05:43 -0700800 aa_get_profile(new);
801 aa_put_profile(old);
802 } else
803 __list_remove_profile(old);
804}
805
806/**
807 * __lookup_replace - lookup replacement information for a profile
808 * @ns - namespace the lookup occurs in
809 * @hname - name of profile to lookup
810 * @noreplace - true if not replacing an existing profile
811 * @p - Returns: profile to be replaced
812 * @info - Returns: info string on why lookup failed
813 *
814 * Returns: profile to replace (no ref) on success else ptr error
815 */
John Johansen98849df2017-01-16 00:42:16 -0800816static int __lookup_replace(struct aa_ns *ns, const char *hname,
John Johansendd51c8482013-07-10 21:05:43 -0700817 bool noreplace, struct aa_profile **p,
818 const char **info)
819{
820 *p = aa_get_profile(__lookup_profile(&ns->base, hname));
821 if (*p) {
822 int error = replacement_allowed(*p, noreplace, info);
823 if (error) {
824 *info = "profile can not be replaced";
825 return error;
826 }
827 }
828
829 return 0;
830}
831
John Johansenc88d4c72010-07-29 14:48:00 -0700832/**
833 * aa_replace_profiles - replace profile(s) on the profile list
John Johansen73688d12017-01-16 00:42:34 -0800834 * @view: namespace load is viewed from
John Johansen12dd7172017-01-16 00:42:57 -0800835 * @label: label that is attempting to load/replace policy
John Johansen18e99f12017-05-26 01:45:08 -0700836 * @mask: permission mask
John Johansen5ac8c352017-01-16 00:42:55 -0800837 * @udata: serialized data stream (NOT NULL)
John Johansenc88d4c72010-07-29 14:48:00 -0700838 *
839 * unpack and replace a profile on the profile list and uses of that profile
John Johansen55a26eb2017-01-16 00:43:00 -0800840 * by any aa_task_ctx. If the profile does not exist on the profile list
John Johansenc88d4c72010-07-29 14:48:00 -0700841 * it is added.
842 *
843 * Returns: size of data consumed else error code on failure.
844 */
John Johansen12dd7172017-01-16 00:42:57 -0800845ssize_t aa_replace_profiles(struct aa_ns *view, struct aa_profile *profile,
John Johansen18e99f12017-05-26 01:45:08 -0700846 u32 mask, struct aa_loaddata *udata)
John Johansenc88d4c72010-07-29 14:48:00 -0700847{
John Johansenbf15cf02016-04-16 14:16:50 -0700848 const char *ns_name, *info = NULL;
John Johansen98849df2017-01-16 00:42:16 -0800849 struct aa_ns *ns = NULL;
John Johansendd51c8482013-07-10 21:05:43 -0700850 struct aa_load_ent *ent, *tmp;
John Johansen5d5182ca2017-05-09 00:08:41 -0700851 struct aa_loaddata *rawdata_ent;
John Johansen18e99f12017-05-26 01:45:08 -0700852 const char *op;
John Johansen04dc7152017-01-16 00:42:56 -0800853 ssize_t count, error;
John Johansendd51c8482013-07-10 21:05:43 -0700854 LIST_HEAD(lh);
John Johansenc88d4c72010-07-29 14:48:00 -0700855
John Johansen18e99f12017-05-26 01:45:08 -0700856 op = mask & AA_MAY_REPLACE_POLICY ? OP_PROF_REPL : OP_PROF_LOAD;
John Johansen5d5182ca2017-05-09 00:08:41 -0700857 aa_get_loaddata(udata);
John Johansenc88d4c72010-07-29 14:48:00 -0700858 /* released below */
John Johansen5ac8c352017-01-16 00:42:55 -0800859 error = aa_unpack(udata, &lh, &ns_name);
John Johansendd51c8482013-07-10 21:05:43 -0700860 if (error)
861 goto out;
John Johansenc88d4c72010-07-29 14:48:00 -0700862
John Johansen04dc7152017-01-16 00:42:56 -0800863 /* ensure that profiles are all for the same ns
864 * TODO: update locking to remove this constaint. All profiles in
865 * the load set must succeed as a set or the load will
866 * fail. Sort ent list and take ns locks in hierarchy order
867 */
868 count = 0;
869 list_for_each_entry(ent, &lh, list) {
870 if (ns_name) {
871 if (ent->ns_name &&
872 strcmp(ent->ns_name, ns_name) != 0) {
873 info = "policy load has mixed namespaces";
874 error = -EACCES;
875 goto fail;
876 }
877 } else if (ent->ns_name) {
878 if (count) {
879 info = "policy load has mixed namespaces";
880 error = -EACCES;
881 goto fail;
882 }
883 ns_name = ent->ns_name;
884 } else
885 count++;
John Johansenc88d4c72010-07-29 14:48:00 -0700886 }
John Johansen04dc7152017-01-16 00:42:56 -0800887 if (ns_name) {
888 ns = aa_prepare_ns(view, ns_name);
889 if (IS_ERR(ns)) {
John Johansenb9b144b2017-04-06 06:55:22 -0700890 op = OP_PROF_LOAD;
John Johansen04dc7152017-01-16 00:42:56 -0800891 info = "failed to prepare namespace";
892 error = PTR_ERR(ns);
893 ns = NULL;
John Johansenb9b144b2017-04-06 06:55:22 -0700894 ent = NULL;
John Johansen04dc7152017-01-16 00:42:56 -0800895 goto fail;
896 }
897 } else
898 ns = aa_get_ns(view);
John Johansenc88d4c72010-07-29 14:48:00 -0700899
John Johansen01e2b672013-07-10 21:06:43 -0700900 mutex_lock(&ns->lock);
John Johansen5d5182ca2017-05-09 00:08:41 -0700901 /* check for duplicate rawdata blobs: space and file dedup */
902 list_for_each_entry(rawdata_ent, &ns->rawdata_list, list) {
903 if (aa_rawdata_eq(rawdata_ent, udata)) {
904 struct aa_loaddata *tmp;
905
906 tmp = __aa_get_loaddata(rawdata_ent);
907 /* check we didn't fail the race */
908 if (tmp) {
909 aa_put_loaddata(udata);
910 udata = tmp;
911 break;
912 }
913 }
914 }
John Johansendd51c8482013-07-10 21:05:43 -0700915 /* setup parent and ns info */
916 list_for_each_entry(ent, &lh, list) {
917 struct aa_policy *policy;
John Johansen5d5182ca2017-05-09 00:08:41 -0700918
John Johansen5ac8c352017-01-16 00:42:55 -0800919 ent->new->rawdata = aa_get_loaddata(udata);
John Johansen18e99f12017-05-26 01:45:08 -0700920 error = __lookup_replace(ns, ent->new->base.hname,
921 !(mask & AA_MAY_REPLACE_POLICY),
John Johansendd51c8482013-07-10 21:05:43 -0700922 &ent->old, &info);
923 if (error)
924 goto fail_lock;
John Johansenc88d4c72010-07-29 14:48:00 -0700925
John Johansendd51c8482013-07-10 21:05:43 -0700926 if (ent->new->rename) {
927 error = __lookup_replace(ns, ent->new->rename,
John Johansen18e99f12017-05-26 01:45:08 -0700928 !(mask & AA_MAY_REPLACE_POLICY),
929 &ent->rename, &info);
John Johansendd51c8482013-07-10 21:05:43 -0700930 if (error)
931 goto fail_lock;
John Johansenc88d4c72010-07-29 14:48:00 -0700932 }
John Johansendd51c8482013-07-10 21:05:43 -0700933
934 /* released when @new is freed */
John Johansen98849df2017-01-16 00:42:16 -0800935 ent->new->ns = aa_get_ns(ns);
John Johansendd51c8482013-07-10 21:05:43 -0700936
937 if (ent->old || ent->rename)
938 continue;
939
940 /* no ref on policy only use inside lock */
941 policy = __lookup_parent(ns, ent->new->base.hname);
942 if (!policy) {
943 struct aa_profile *p;
944 p = __list_lookup_parent(&lh, ent->new);
945 if (!p) {
946 error = -ENOENT;
947 info = "parent does not exist";
John Johansendd51c8482013-07-10 21:05:43 -0700948 goto fail_lock;
949 }
John Johansen01e2b672013-07-10 21:06:43 -0700950 rcu_assign_pointer(ent->new->parent, aa_get_profile(p));
951 } else if (policy != &ns->base) {
John Johansendd51c8482013-07-10 21:05:43 -0700952 /* released on profile replacement or free_profile */
John Johansen01e2b672013-07-10 21:06:43 -0700953 struct aa_profile *p = (struct aa_profile *) policy;
954 rcu_assign_pointer(ent->new->parent, aa_get_profile(p));
955 }
John Johansenc88d4c72010-07-29 14:48:00 -0700956 }
957
John Johansen0d259f02013-07-10 21:13:43 -0700958 /* create new fs entries for introspection if needed */
John Johansen5d5182ca2017-05-09 00:08:41 -0700959 if (!udata->dents[AAFS_LOADDATA_DIR]) {
960 error = __aa_fs_create_rawdata(ns, udata);
961 if (error) {
962 info = "failed to create raw_data dir and files";
963 ent = NULL;
964 goto fail_lock;
965 }
966 }
John Johansen0d259f02013-07-10 21:13:43 -0700967 list_for_each_entry(ent, &lh, list) {
968 if (ent->old) {
969 /* inherit old interface files */
970
971 /* if (ent->rename)
972 TODO: support rename */
973 /* } else if (ent->rename) {
974 TODO: support rename */
975 } else {
976 struct dentry *parent;
977 if (rcu_access_pointer(ent->new->parent)) {
978 struct aa_profile *p;
979 p = aa_deref_parent(ent->new);
980 parent = prof_child_dir(p);
981 } else
982 parent = ns_subprofs_dir(ent->new->ns);
John Johansenc97204b2017-05-25 06:23:42 -0700983 error = __aafs_profile_mkdir(ent->new, parent);
John Johansen0d259f02013-07-10 21:13:43 -0700984 }
985
986 if (error) {
987 info = "failed to create ";
988 goto fail_lock;
989 }
990 }
991
992 /* Done with checks that may fail - do actual replacement */
John Johansen5d5182ca2017-05-09 00:08:41 -0700993 __aa_bump_ns_revision(ns);
994 __aa_loaddata_update(udata, ns->revision);
John Johansendd51c8482013-07-10 21:05:43 -0700995 list_for_each_entry_safe(ent, tmp, &lh, list) {
996 list_del_init(&ent->list);
997 op = (!ent->old && !ent->rename) ? OP_PROF_LOAD : OP_PROF_REPL;
John Johansenc88d4c72010-07-29 14:48:00 -0700998
John Johansen5d5182ca2017-05-09 00:08:41 -0700999 if (ent->old && ent->old->rawdata == ent->new->rawdata) {
1000 /* dedup actual profile replacement */
1001 audit_policy(profile, op, ns_name, ent->new->base.hname,
1002 "same as current profile, skipping",
1003 error);
1004 goto skip;
1005 }
1006
1007 /*
1008 * TODO: finer dedup based on profile range in data. Load set
1009 * can differ but profile may remain unchanged
1010 */
John Johansenef88a7a2017-01-16 00:43:02 -08001011 audit_policy(profile, op, NULL, ent->new->base.hname,
1012 NULL, error);
John Johansenc88d4c72010-07-29 14:48:00 -07001013
John Johansendd51c8482013-07-10 21:05:43 -07001014 if (ent->old) {
John Johansen77b071b2013-07-10 21:07:43 -07001015 __replace_profile(ent->old, ent->new, 1);
John Johansen0d259f02013-07-10 21:13:43 -07001016 if (ent->rename) {
John Johansen83995882017-01-16 00:42:19 -08001017 /* aafs interface uses proxy */
1018 struct aa_proxy *r = ent->new->proxy;
John Johansen0d259f02013-07-10 21:13:43 -07001019 rcu_assign_pointer(r->profile,
1020 aa_get_profile(ent->new));
John Johansen77b071b2013-07-10 21:07:43 -07001021 __replace_profile(ent->rename, ent->new, 0);
John Johansen0d259f02013-07-10 21:13:43 -07001022 }
John Johansendd51c8482013-07-10 21:05:43 -07001023 } else if (ent->rename) {
John Johansen83995882017-01-16 00:42:19 -08001024 /* aafs interface uses proxy */
1025 rcu_assign_pointer(ent->new->proxy->profile,
John Johansen0d259f02013-07-10 21:13:43 -07001026 aa_get_profile(ent->new));
John Johansen77b071b2013-07-10 21:07:43 -07001027 __replace_profile(ent->rename, ent->new, 0);
John Johansendd51c8482013-07-10 21:05:43 -07001028 } else if (ent->new->parent) {
John Johansen01e2b672013-07-10 21:06:43 -07001029 struct aa_profile *parent, *newest;
John Johansen0d259f02013-07-10 21:13:43 -07001030 parent = aa_deref_parent(ent->new);
John Johansen77b071b2013-07-10 21:07:43 -07001031 newest = aa_get_newest_profile(parent);
John Johansen01e2b672013-07-10 21:06:43 -07001032
John Johansendd51c8482013-07-10 21:05:43 -07001033 /* parent replaced in this atomic set? */
John Johansen01e2b672013-07-10 21:06:43 -07001034 if (newest != parent) {
1035 aa_get_profile(newest);
John Johansen01e2b672013-07-10 21:06:43 -07001036 rcu_assign_pointer(ent->new->parent, newest);
John Johansenf3518412016-04-16 13:59:02 -07001037 aa_put_profile(parent);
John Johansendcda6172016-04-11 16:55:10 -07001038 }
John Johansen83995882017-01-16 00:42:19 -08001039 /* aafs interface uses proxy */
1040 rcu_assign_pointer(ent->new->proxy->profile,
John Johansen0d259f02013-07-10 21:13:43 -07001041 aa_get_profile(ent->new));
John Johansenec34fa22016-04-11 16:57:19 -07001042 __list_add_profile(&newest->base.profiles, ent->new);
John Johansendcda6172016-04-11 16:55:10 -07001043 aa_put_profile(newest);
John Johansen0d259f02013-07-10 21:13:43 -07001044 } else {
John Johansen83995882017-01-16 00:42:19 -08001045 /* aafs interface uses proxy */
1046 rcu_assign_pointer(ent->new->proxy->profile,
John Johansen0d259f02013-07-10 21:13:43 -07001047 aa_get_profile(ent->new));
John Johansendd51c8482013-07-10 21:05:43 -07001048 __list_add_profile(&ns->base.profiles, ent->new);
John Johansen0d259f02013-07-10 21:13:43 -07001049 }
John Johansen5d5182ca2017-05-09 00:08:41 -07001050 skip:
John Johansendd51c8482013-07-10 21:05:43 -07001051 aa_load_ent_free(ent);
John Johansenc88d4c72010-07-29 14:48:00 -07001052 }
John Johansen01e2b672013-07-10 21:06:43 -07001053 mutex_unlock(&ns->lock);
John Johansenc88d4c72010-07-29 14:48:00 -07001054
1055out:
John Johansen98849df2017-01-16 00:42:16 -08001056 aa_put_ns(ns);
John Johansen5d5182ca2017-05-09 00:08:41 -07001057 aa_put_loaddata(udata);
John Johansendd51c8482013-07-10 21:05:43 -07001058
John Johansenc88d4c72010-07-29 14:48:00 -07001059 if (error)
1060 return error;
John Johansen5ac8c352017-01-16 00:42:55 -08001061 return udata->size;
John Johansenc88d4c72010-07-29 14:48:00 -07001062
John Johansendd51c8482013-07-10 21:05:43 -07001063fail_lock:
John Johansen01e2b672013-07-10 21:06:43 -07001064 mutex_unlock(&ns->lock);
John Johansendd51c8482013-07-10 21:05:43 -07001065
John Johansenbf15cf02016-04-16 14:16:50 -07001066 /* audit cause of failure */
John Johansen5d5182ca2017-05-09 00:08:41 -07001067 op = (ent && !ent->old) ? OP_PROF_LOAD : OP_PROF_REPL;
John Johansen04dc7152017-01-16 00:42:56 -08001068fail:
John Johansenb9b144b2017-04-06 06:55:22 -07001069 audit_policy(profile, op, ns_name, ent ? ent->new->base.hname : NULL,
John Johansen12dd7172017-01-16 00:42:57 -08001070 info, error);
John Johansenbf15cf02016-04-16 14:16:50 -07001071 /* audit status that rest of profiles in the atomic set failed too */
1072 info = "valid profile in failed atomic policy load";
1073 list_for_each_entry(tmp, &lh, list) {
1074 if (tmp == ent) {
1075 info = "unchecked profile in failed atomic policy load";
1076 /* skip entry that caused failure */
1077 continue;
1078 }
John Johansenb9b144b2017-04-06 06:55:22 -07001079 op = (!tmp->old) ? OP_PROF_LOAD : OP_PROF_REPL;
John Johansenef88a7a2017-01-16 00:43:02 -08001080 audit_policy(profile, op, ns_name,
John Johansena6f23302017-01-16 00:42:49 -08001081 tmp->new->base.hname, info, error);
John Johansenbf15cf02016-04-16 14:16:50 -07001082 }
John Johansendd51c8482013-07-10 21:05:43 -07001083 list_for_each_entry_safe(ent, tmp, &lh, list) {
1084 list_del_init(&ent->list);
1085 aa_load_ent_free(ent);
1086 }
1087
John Johansenc88d4c72010-07-29 14:48:00 -07001088 goto out;
1089}
1090
1091/**
1092 * aa_remove_profiles - remove profile(s) from the system
John Johansenb79473f2017-01-16 00:42:47 -08001093 * @view: namespace the remove is being done from
John Johansen12dd7172017-01-16 00:42:57 -08001094 * @subj: profile attempting to remove policy
John Johansenc88d4c72010-07-29 14:48:00 -07001095 * @fqname: name of the profile or namespace to remove (NOT NULL)
1096 * @size: size of the name
1097 *
1098 * Remove a profile or sub namespace from the current namespace, so that
1099 * they can not be found anymore and mark them as replaced by unconfined
1100 *
1101 * NOTE: removing confinement does not restore rlimits to preconfinemnet values
1102 *
1103 * Returns: size of data consume else error code if fails
1104 */
John Johansen12dd7172017-01-16 00:42:57 -08001105ssize_t aa_remove_profiles(struct aa_ns *view, struct aa_profile *subj,
1106 char *fqname, size_t size)
John Johansenc88d4c72010-07-29 14:48:00 -07001107{
John Johansenb79473f2017-01-16 00:42:47 -08001108 struct aa_ns *root = NULL, *ns = NULL;
John Johansenc88d4c72010-07-29 14:48:00 -07001109 struct aa_profile *profile = NULL;
1110 const char *name = fqname, *info = NULL;
John Johansen04dc7152017-01-16 00:42:56 -08001111 char *ns_name = NULL;
John Johansenc88d4c72010-07-29 14:48:00 -07001112 ssize_t error = 0;
1113
1114 if (*fqname == 0) {
1115 info = "no profile specified";
1116 error = -ENOENT;
1117 goto fail;
1118 }
1119
John Johansenb79473f2017-01-16 00:42:47 -08001120 root = view;
John Johansenc88d4c72010-07-29 14:48:00 -07001121
1122 if (fqname[0] == ':') {
John Johansenc88d4c72010-07-29 14:48:00 -07001123 name = aa_split_fqname(fqname, &ns_name);
John Johansen41d1b3e2013-02-21 01:14:17 -08001124 /* released below */
John Johansen98849df2017-01-16 00:42:16 -08001125 ns = aa_find_ns(root, ns_name);
John Johansen41d1b3e2013-02-21 01:14:17 -08001126 if (!ns) {
1127 info = "namespace does not exist";
1128 error = -ENOENT;
1129 goto fail;
John Johansenc88d4c72010-07-29 14:48:00 -07001130 }
1131 } else
1132 /* released below */
John Johansen98849df2017-01-16 00:42:16 -08001133 ns = aa_get_ns(root);
John Johansenc88d4c72010-07-29 14:48:00 -07001134
John Johansenc88d4c72010-07-29 14:48:00 -07001135 if (!name) {
1136 /* remove namespace - can only happen if fqname[0] == ':' */
John Johansen01e2b672013-07-10 21:06:43 -07001137 mutex_lock(&ns->parent->lock);
John Johansen98849df2017-01-16 00:42:16 -08001138 __aa_remove_ns(ns);
John Johansen5d5182ca2017-05-09 00:08:41 -07001139 __aa_bump_ns_revision(ns);
John Johansen01e2b672013-07-10 21:06:43 -07001140 mutex_unlock(&ns->parent->lock);
John Johansenc88d4c72010-07-29 14:48:00 -07001141 } else {
1142 /* remove profile */
John Johansen01e2b672013-07-10 21:06:43 -07001143 mutex_lock(&ns->lock);
John Johansenc88d4c72010-07-29 14:48:00 -07001144 profile = aa_get_profile(__lookup_profile(&ns->base, name));
1145 if (!profile) {
1146 error = -ENOENT;
1147 info = "profile does not exist";
1148 goto fail_ns_lock;
1149 }
1150 name = profile->base.hname;
1151 __remove_profile(profile);
John Johansen5d5182ca2017-05-09 00:08:41 -07001152 __aa_bump_ns_revision(ns);
John Johansen01e2b672013-07-10 21:06:43 -07001153 mutex_unlock(&ns->lock);
John Johansenc88d4c72010-07-29 14:48:00 -07001154 }
John Johansenc88d4c72010-07-29 14:48:00 -07001155
1156 /* don't fail removal if audit fails */
John Johansenef88a7a2017-01-16 00:43:02 -08001157 (void) audit_policy(subj, OP_PROF_RM, ns_name, name, info,
John Johansen12dd7172017-01-16 00:42:57 -08001158 error);
John Johansen98849df2017-01-16 00:42:16 -08001159 aa_put_ns(ns);
John Johansenc88d4c72010-07-29 14:48:00 -07001160 aa_put_profile(profile);
1161 return size;
1162
1163fail_ns_lock:
John Johansen01e2b672013-07-10 21:06:43 -07001164 mutex_unlock(&ns->lock);
John Johansen98849df2017-01-16 00:42:16 -08001165 aa_put_ns(ns);
John Johansenc88d4c72010-07-29 14:48:00 -07001166
1167fail:
John Johansenef88a7a2017-01-16 00:43:02 -08001168 (void) audit_policy(subj, OP_PROF_RM, ns_name, name, info,
John Johansen12dd7172017-01-16 00:42:57 -08001169 error);
John Johansenc88d4c72010-07-29 14:48:00 -07001170 return error;
1171}