blob: e310f3b63fbed4e2848fbe86eee5549ad2d162db [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>
79
80#include "include/apparmor.h"
81#include "include/capability.h"
82#include "include/context.h"
83#include "include/file.h"
84#include "include/ipc.h"
85#include "include/match.h"
86#include "include/path.h"
87#include "include/policy.h"
John Johansencff281f2017-01-16 00:42:15 -080088#include "include/policy_ns.h"
John Johansenc88d4c72010-07-29 14:48:00 -070089#include "include/policy_unpack.h"
90#include "include/resource.h"
John Johansenc88d4c72010-07-29 14:48:00 -070091
92
John Johansen0d259f02013-07-10 21:13:43 -070093const char *const aa_profile_mode_names[] = {
John Johansenc88d4c72010-07-29 14:48:00 -070094 "enforce",
95 "complain",
96 "kill",
John Johansen03816502013-07-10 21:12:43 -070097 "unconfined",
John Johansenc88d4c72010-07-29 14:48:00 -070098};
99
John Johansenc88d4c72010-07-29 14:48:00 -0700100
John Johansencff281f2017-01-16 00:42:15 -0800101/* requires profile list write lock held */
John Johansen83995882017-01-16 00:42:19 -0800102void __aa_update_proxy(struct aa_profile *orig, struct aa_profile *new)
John Johansenc88d4c72010-07-29 14:48:00 -0700103{
John Johansencff281f2017-01-16 00:42:15 -0800104 struct aa_profile *tmp;
John Johansenc88d4c72010-07-29 14:48:00 -0700105
John Johansen83995882017-01-16 00:42:19 -0800106 tmp = rcu_dereference_protected(orig->proxy->profile,
John Johansencff281f2017-01-16 00:42:15 -0800107 mutex_is_locked(&orig->ns->lock));
John Johansen83995882017-01-16 00:42:19 -0800108 rcu_assign_pointer(orig->proxy->profile, aa_get_profile(new));
John Johansend97d51d2017-01-16 00:42:18 -0800109 orig->flags |= PFLAG_STALE;
John Johansencff281f2017-01-16 00:42:15 -0800110 aa_put_profile(tmp);
John Johansenc88d4c72010-07-29 14:48:00 -0700111}
112
113/**
114 * __list_add_profile - add a profile to a list
115 * @list: list to add it to (NOT NULL)
116 * @profile: the profile to add (NOT NULL)
117 *
118 * refcount @profile, should be put by __list_remove_profile
119 *
120 * Requires: namespace lock be held, or list not be shared
121 */
122static void __list_add_profile(struct list_head *list,
123 struct aa_profile *profile)
124{
John Johansen01e2b672013-07-10 21:06:43 -0700125 list_add_rcu(&profile->base.list, list);
John Johansenc88d4c72010-07-29 14:48:00 -0700126 /* get list reference */
127 aa_get_profile(profile);
128}
129
130/**
131 * __list_remove_profile - remove a profile from the list it is on
132 * @profile: the profile to remove (NOT NULL)
133 *
134 * remove a profile from the list, warning generally removal should
135 * be done with __replace_profile as most profile removals are
136 * replacements to the unconfined profile.
137 *
138 * put @profile list refcount
139 *
140 * Requires: namespace lock be held, or list not have been live
141 */
142static void __list_remove_profile(struct aa_profile *profile)
143{
John Johansen01e2b672013-07-10 21:06:43 -0700144 list_del_rcu(&profile->base.list);
145 aa_put_profile(profile);
John Johansenc88d4c72010-07-29 14:48:00 -0700146}
147
John Johansenc88d4c72010-07-29 14:48:00 -0700148/**
149 * __remove_profile - remove old profile, and children
150 * @profile: profile to be replaced (NOT NULL)
151 *
152 * Requires: namespace list lock be held, or list not be shared
153 */
154static void __remove_profile(struct aa_profile *profile)
155{
156 /* release any children lists first */
John Johansencff281f2017-01-16 00:42:15 -0800157 __aa_profile_list_release(&profile->base.profiles);
John Johansenc88d4c72010-07-29 14:48:00 -0700158 /* released by free_profile */
John Johansen83995882017-01-16 00:42:19 -0800159 __aa_update_proxy(profile, profile->ns->unconfined);
John Johansen0d259f02013-07-10 21:13:43 -0700160 __aa_fs_profile_rmdir(profile);
John Johansenc88d4c72010-07-29 14:48:00 -0700161 __list_remove_profile(profile);
162}
163
164/**
John Johansencff281f2017-01-16 00:42:15 -0800165 * __aa_profile_list_release - remove all profiles on the list and put refs
John Johansenc88d4c72010-07-29 14:48:00 -0700166 * @head: list of profiles (NOT NULL)
167 *
168 * Requires: namespace lock be held
169 */
John Johansencff281f2017-01-16 00:42:15 -0800170void __aa_profile_list_release(struct list_head *head)
John Johansenc88d4c72010-07-29 14:48:00 -0700171{
172 struct aa_profile *profile, *tmp;
173 list_for_each_entry_safe(profile, tmp, head, base.list)
174 __remove_profile(profile);
175}
176
John Johansen77b071b2013-07-10 21:07:43 -0700177
John Johansen83995882017-01-16 00:42:19 -0800178static void free_proxy(struct aa_proxy *p)
John Johansen77b071b2013-07-10 21:07:43 -0700179{
John Johansen83995882017-01-16 00:42:19 -0800180 if (p) {
John Johansen4cd4fc72013-09-29 08:39:22 -0700181 /* r->profile will not be updated any more as r is dead */
John Johansen83995882017-01-16 00:42:19 -0800182 aa_put_profile(rcu_dereference_protected(p->profile, true));
183 kzfree(p);
John Johansen77b071b2013-07-10 21:07:43 -0700184 }
185}
186
187
John Johansen83995882017-01-16 00:42:19 -0800188void aa_free_proxy_kref(struct kref *kref)
John Johansen77b071b2013-07-10 21:07:43 -0700189{
John Johansen83995882017-01-16 00:42:19 -0800190 struct aa_proxy *p = container_of(kref, struct aa_proxy, count);
191
192 free_proxy(p);
John Johansen77b071b2013-07-10 21:07:43 -0700193}
194
John Johansenc88d4c72010-07-29 14:48:00 -0700195/**
John Johansen8651e1d62013-07-10 21:11:43 -0700196 * aa_free_profile - free a profile
John Johansenc88d4c72010-07-29 14:48:00 -0700197 * @profile: the profile to free (MAYBE NULL)
198 *
199 * Free a profile, its hats and null_profile. All references to the profile,
200 * its hats and null_profile must have been put.
201 *
202 * If the profile was referenced from a task context, free_profile() will
203 * be called from an rcu callback routine, so we must not sleep here.
204 */
John Johansen8651e1d62013-07-10 21:11:43 -0700205void aa_free_profile(struct aa_profile *profile)
John Johansenc88d4c72010-07-29 14:48:00 -0700206{
207 AA_DEBUG("%s(%p)\n", __func__, profile);
208
209 if (!profile)
210 return;
211
John Johansenc88d4c72010-07-29 14:48:00 -0700212 /* free children profiles */
John Johansenfe6bb312017-01-16 00:42:14 -0800213 aa_policy_destroy(&profile->base);
John Johansen01e2b672013-07-10 21:06:43 -0700214 aa_put_profile(rcu_access_pointer(profile->parent));
John Johansenc88d4c72010-07-29 14:48:00 -0700215
John Johansen98849df2017-01-16 00:42:16 -0800216 aa_put_ns(profile->ns);
John Johansenc88d4c72010-07-29 14:48:00 -0700217 kzfree(profile->rename);
218
219 aa_free_file_rules(&profile->file);
220 aa_free_cap_rules(&profile->caps);
221 aa_free_rlimit_rules(&profile->rlimits);
222
John Johansen0d259f02013-07-10 21:13:43 -0700223 kzfree(profile->dirname);
John Johansenc88d4c72010-07-29 14:48:00 -0700224 aa_put_dfa(profile->xmatch);
John Johansenad5ff3d2012-02-16 07:07:53 -0800225 aa_put_dfa(profile->policy.dfa);
John Johansen83995882017-01-16 00:42:19 -0800226 aa_put_proxy(profile->proxy);
John Johansenc88d4c72010-07-29 14:48:00 -0700227
John Johansen5cb3e912013-10-14 11:44:34 -0700228 kzfree(profile->hash);
John Johansenc88d4c72010-07-29 14:48:00 -0700229 kzfree(profile);
230}
231
232/**
John Johansen01e2b672013-07-10 21:06:43 -0700233 * aa_free_profile_rcu - free aa_profile by rcu (called by aa_free_profile_kref)
234 * @head: rcu_head callback for freeing of a profile (NOT NULL)
235 */
236static void aa_free_profile_rcu(struct rcu_head *head)
237{
John Johansen742058b2013-07-10 21:10:43 -0700238 struct aa_profile *p = container_of(head, struct aa_profile, rcu);
239 if (p->flags & PFLAG_NS_COUNT)
John Johansen98849df2017-01-16 00:42:16 -0800240 aa_free_ns(p->ns);
John Johansen742058b2013-07-10 21:10:43 -0700241 else
John Johansen8651e1d62013-07-10 21:11:43 -0700242 aa_free_profile(p);
John Johansen01e2b672013-07-10 21:06:43 -0700243}
244
245/**
John Johansenc88d4c72010-07-29 14:48:00 -0700246 * aa_free_profile_kref - free aa_profile by kref (called by aa_put_profile)
247 * @kr: kref callback for freeing of a profile (NOT NULL)
248 */
249void aa_free_profile_kref(struct kref *kref)
250{
John Johansenfa2ac462013-07-10 21:08:43 -0700251 struct aa_profile *p = container_of(kref, struct aa_profile, count);
John Johansen742058b2013-07-10 21:10:43 -0700252 call_rcu(&p->rcu, aa_free_profile_rcu);
John Johansenc88d4c72010-07-29 14:48:00 -0700253}
254
John Johansen4da05cc2013-02-18 16:11:34 -0800255/**
256 * aa_alloc_profile - allocate, initialize and return a new profile
257 * @hname: name of the profile (NOT NULL)
John Johansen30b026a2017-01-16 00:42:35 -0800258 * @gfp: allocation type
John Johansen4da05cc2013-02-18 16:11:34 -0800259 *
260 * Returns: refcount profile or NULL on failure
261 */
John Johansen30b026a2017-01-16 00:42:35 -0800262struct aa_profile *aa_alloc_profile(const char *hname, gfp_t gfp)
John Johansen4da05cc2013-02-18 16:11:34 -0800263{
264 struct aa_profile *profile;
265
266 /* freed by free_profile - usually through aa_put_profile */
John Johansen30b026a2017-01-16 00:42:35 -0800267 profile = kzalloc(sizeof(*profile), gfp);
John Johansen4da05cc2013-02-18 16:11:34 -0800268 if (!profile)
269 return NULL;
270
John Johansen30b026a2017-01-16 00:42:35 -0800271 profile->proxy = kzalloc(sizeof(struct aa_proxy), gfp);
John Johansen83995882017-01-16 00:42:19 -0800272 if (!profile->proxy)
John Johansen77b071b2013-07-10 21:07:43 -0700273 goto fail;
John Johansen83995882017-01-16 00:42:19 -0800274 kref_init(&profile->proxy->count);
John Johansen77b071b2013-07-10 21:07:43 -0700275
John Johansen30b026a2017-01-16 00:42:35 -0800276 if (!aa_policy_init(&profile->base, NULL, hname, gfp))
John Johansen77b071b2013-07-10 21:07:43 -0700277 goto fail;
John Johansenfa2ac462013-07-10 21:08:43 -0700278 kref_init(&profile->count);
John Johansen4da05cc2013-02-18 16:11:34 -0800279
280 /* refcount released by caller */
281 return profile;
John Johansen77b071b2013-07-10 21:07:43 -0700282
283fail:
John Johansen83995882017-01-16 00:42:19 -0800284 kzfree(profile->proxy);
John Johansen77b071b2013-07-10 21:07:43 -0700285 kzfree(profile);
286
287 return NULL;
John Johansen4da05cc2013-02-18 16:11:34 -0800288}
289
290/**
291 * aa_new_null_profile - create a new null-X learning profile
292 * @parent: profile that caused this profile to be created (NOT NULL)
293 * @hat: true if the null- learning profile is a hat
294 *
295 * Create a null- complain mode profile used in learning mode. The name of
296 * the profile is unique and follows the format of parent//null-<uniq>.
297 *
298 * null profiles are added to the profile list but the list does not
299 * hold a count on them so that they are automatically released when
300 * not in use.
301 *
302 * Returns: new refcounted profile else NULL on failure
303 */
304struct aa_profile *aa_new_null_profile(struct aa_profile *parent, int hat)
305{
306 struct aa_profile *profile = NULL;
307 char *name;
308 int uniq = atomic_inc_return(&parent->ns->uniq_null);
309
310 /* freed below */
311 name = kmalloc(strlen(parent->base.hname) + 2 + 7 + 8, GFP_KERNEL);
312 if (!name)
313 goto fail;
314 sprintf(name, "%s//null-%x", parent->base.hname, uniq);
315
John Johansen30b026a2017-01-16 00:42:35 -0800316 profile = aa_alloc_profile(name, GFP_KERNEL);
John Johansen4da05cc2013-02-18 16:11:34 -0800317 kfree(name);
318 if (!profile)
319 goto fail;
320
321 profile->mode = APPARMOR_COMPLAIN;
322 profile->flags = PFLAG_NULL;
323 if (hat)
324 profile->flags |= PFLAG_HAT;
325
326 /* released on free_profile */
John Johansen01e2b672013-07-10 21:06:43 -0700327 rcu_assign_pointer(profile->parent, aa_get_profile(parent));
John Johansen98849df2017-01-16 00:42:16 -0800328 profile->ns = aa_get_ns(parent->ns);
John Johansen4da05cc2013-02-18 16:11:34 -0800329
John Johansen01e2b672013-07-10 21:06:43 -0700330 mutex_lock(&profile->ns->lock);
John Johansen4da05cc2013-02-18 16:11:34 -0800331 __list_add_profile(&parent->base.profiles, profile);
John Johansen01e2b672013-07-10 21:06:43 -0700332 mutex_unlock(&profile->ns->lock);
John Johansen4da05cc2013-02-18 16:11:34 -0800333
334 /* refcount released by caller */
335 return profile;
336
337fail:
338 return NULL;
339}
340
John Johansenc88d4c72010-07-29 14:48:00 -0700341/* TODO: profile accounting - setup in remove */
342
343/**
344 * __find_child - find a profile on @head list with a name matching @name
345 * @head: list to search (NOT NULL)
346 * @name: name of profile (NOT NULL)
347 *
John Johansen01e2b672013-07-10 21:06:43 -0700348 * Requires: rcu_read_lock be held
John Johansenc88d4c72010-07-29 14:48:00 -0700349 *
350 * Returns: unrefcounted profile ptr, or NULL if not found
351 */
352static struct aa_profile *__find_child(struct list_head *head, const char *name)
353{
354 return (struct aa_profile *)__policy_find(head, name);
355}
356
357/**
358 * __strn_find_child - find a profile on @head list using substring of @name
359 * @head: list to search (NOT NULL)
360 * @name: name of profile (NOT NULL)
361 * @len: length of @name substring to match
362 *
John Johansen01e2b672013-07-10 21:06:43 -0700363 * Requires: rcu_read_lock be held
John Johansenc88d4c72010-07-29 14:48:00 -0700364 *
365 * Returns: unrefcounted profile ptr, or NULL if not found
366 */
367static struct aa_profile *__strn_find_child(struct list_head *head,
368 const char *name, int len)
369{
370 return (struct aa_profile *)__policy_strn_find(head, name, len);
371}
372
373/**
374 * aa_find_child - find a profile by @name in @parent
375 * @parent: profile to search (NOT NULL)
376 * @name: profile name to search for (NOT NULL)
377 *
378 * Returns: a refcounted profile or NULL if not found
379 */
380struct aa_profile *aa_find_child(struct aa_profile *parent, const char *name)
381{
382 struct aa_profile *profile;
383
John Johansen01e2b672013-07-10 21:06:43 -0700384 rcu_read_lock();
John Johansende7c4cc2015-12-16 18:09:10 -0800385 do {
386 profile = __find_child(&parent->base.profiles, name);
387 } while (profile && !aa_get_profile_not0(profile));
John Johansen01e2b672013-07-10 21:06:43 -0700388 rcu_read_unlock();
John Johansenc88d4c72010-07-29 14:48:00 -0700389
390 /* refcount released by caller */
391 return profile;
392}
393
394/**
395 * __lookup_parent - lookup the parent of a profile of name @hname
396 * @ns: namespace to lookup profile in (NOT NULL)
397 * @hname: hierarchical profile name to find parent of (NOT NULL)
398 *
399 * Lookups up the parent of a fully qualified profile name, the profile
400 * that matches hname does not need to exist, in general this
401 * is used to load a new profile.
402 *
John Johansen01e2b672013-07-10 21:06:43 -0700403 * Requires: rcu_read_lock be held
John Johansenc88d4c72010-07-29 14:48:00 -0700404 *
405 * Returns: unrefcounted policy or NULL if not found
406 */
John Johansen98849df2017-01-16 00:42:16 -0800407static struct aa_policy *__lookup_parent(struct aa_ns *ns,
John Johansenc88d4c72010-07-29 14:48:00 -0700408 const char *hname)
409{
410 struct aa_policy *policy;
411 struct aa_profile *profile = NULL;
412 char *split;
413
414 policy = &ns->base;
415
416 for (split = strstr(hname, "//"); split;) {
417 profile = __strn_find_child(&policy->profiles, hname,
418 split - hname);
419 if (!profile)
420 return NULL;
421 policy = &profile->base;
422 hname = split + 2;
423 split = strstr(hname, "//");
424 }
425 if (!profile)
426 return &ns->base;
427 return &profile->base;
428}
429
430/**
John Johansen1741e9e2017-01-16 00:42:21 -0800431 * __lookupn_profile - lookup the profile matching @hname
John Johansenc88d4c72010-07-29 14:48:00 -0700432 * @base: base list to start looking up profile name from (NOT NULL)
433 * @hname: hierarchical profile name (NOT NULL)
John Johansen1741e9e2017-01-16 00:42:21 -0800434 * @n: length of @hname
John Johansenc88d4c72010-07-29 14:48:00 -0700435 *
John Johansen01e2b672013-07-10 21:06:43 -0700436 * Requires: rcu_read_lock be held
John Johansenc88d4c72010-07-29 14:48:00 -0700437 *
438 * Returns: unrefcounted profile pointer or NULL if not found
439 *
440 * Do a relative name lookup, recursing through profile tree.
441 */
John Johansen1741e9e2017-01-16 00:42:21 -0800442static struct aa_profile *__lookupn_profile(struct aa_policy *base,
443 const char *hname, size_t n)
John Johansenc88d4c72010-07-29 14:48:00 -0700444{
445 struct aa_profile *profile = NULL;
John Johansen1741e9e2017-01-16 00:42:21 -0800446 const char *split;
John Johansenc88d4c72010-07-29 14:48:00 -0700447
John Johansen1741e9e2017-01-16 00:42:21 -0800448 for (split = strnstr(hname, "//", n); split;
449 split = strnstr(hname, "//", n)) {
John Johansenc88d4c72010-07-29 14:48:00 -0700450 profile = __strn_find_child(&base->profiles, hname,
451 split - hname);
452 if (!profile)
453 return NULL;
454
455 base = &profile->base;
John Johansen1741e9e2017-01-16 00:42:21 -0800456 n -= split + 2 - hname;
John Johansenc88d4c72010-07-29 14:48:00 -0700457 hname = split + 2;
John Johansenc88d4c72010-07-29 14:48:00 -0700458 }
459
John Johansen1741e9e2017-01-16 00:42:21 -0800460 if (n)
461 return __strn_find_child(&base->profiles, hname, n);
462 return NULL;
463}
John Johansenc88d4c72010-07-29 14:48:00 -0700464
John Johansen1741e9e2017-01-16 00:42:21 -0800465static struct aa_profile *__lookup_profile(struct aa_policy *base,
466 const char *hname)
467{
468 return __lookupn_profile(base, hname, strlen(hname));
John Johansenc88d4c72010-07-29 14:48:00 -0700469}
470
471/**
472 * aa_lookup_profile - find a profile by its full or partial name
473 * @ns: the namespace to start from (NOT NULL)
474 * @hname: name to do lookup on. Does not contain namespace prefix (NOT NULL)
John Johansen1741e9e2017-01-16 00:42:21 -0800475 * @n: size of @hname
John Johansenc88d4c72010-07-29 14:48:00 -0700476 *
477 * Returns: refcounted profile or NULL if not found
478 */
John Johansen1741e9e2017-01-16 00:42:21 -0800479struct aa_profile *aa_lookupn_profile(struct aa_ns *ns, const char *hname,
480 size_t n)
John Johansenc88d4c72010-07-29 14:48:00 -0700481{
482 struct aa_profile *profile;
483
John Johansen01e2b672013-07-10 21:06:43 -0700484 rcu_read_lock();
485 do {
John Johansen1741e9e2017-01-16 00:42:21 -0800486 profile = __lookupn_profile(&ns->base, hname, n);
John Johansen01e2b672013-07-10 21:06:43 -0700487 } while (profile && !aa_get_profile_not0(profile));
488 rcu_read_unlock();
John Johansenc88d4c72010-07-29 14:48:00 -0700489
John Johansenbf832082012-05-16 11:00:05 -0700490 /* the unconfined profile is not in the regular profile list */
John Johansen1741e9e2017-01-16 00:42:21 -0800491 if (!profile && strncmp(hname, "unconfined", n) == 0)
John Johansenfa2ac462013-07-10 21:08:43 -0700492 profile = aa_get_newest_profile(ns->unconfined);
John Johansenbf832082012-05-16 11:00:05 -0700493
John Johansenc88d4c72010-07-29 14:48:00 -0700494 /* refcount released by caller */
495 return profile;
496}
497
John Johansen1741e9e2017-01-16 00:42:21 -0800498struct aa_profile *aa_lookup_profile(struct aa_ns *ns, const char *hname)
499{
500 return aa_lookupn_profile(ns, hname, strlen(hname));
501}
John Johansen31617dd2017-01-16 00:42:24 -0800502
503struct aa_profile *aa_fqlookupn_profile(struct aa_profile *base,
504 const char *fqname, size_t n)
505{
506 struct aa_profile *profile;
507 struct aa_ns *ns;
508 const char *name, *ns_name;
509 size_t ns_len;
510
511 name = aa_splitn_fqname(fqname, n, &ns_name, &ns_len);
512 if (ns_name) {
513 ns = aa_findn_ns(base->ns, ns_name, ns_len);
514 if (!ns)
515 return NULL;
516 } else
517 ns = aa_get_ns(base->ns);
518
519 if (name)
520 profile = aa_lookupn_profile(ns, name, n - (name - fqname));
521 else if (ns)
522 /* default profile for ns, currently unconfined */
523 profile = aa_get_newest_profile(ns->unconfined);
524 else
525 profile = NULL;
526 aa_put_ns(ns);
527
528 return profile;
529}
530
John Johansenc88d4c72010-07-29 14:48:00 -0700531/**
532 * replacement_allowed - test to see if replacement is allowed
533 * @profile: profile to test if it can be replaced (MAYBE NULL)
534 * @noreplace: true if replacement shouldn't be allowed but addition is okay
535 * @info: Returns - info about why replacement failed (NOT NULL)
536 *
537 * Returns: %0 if replacement allowed else error code
538 */
539static int replacement_allowed(struct aa_profile *profile, int noreplace,
540 const char **info)
541{
542 if (profile) {
543 if (profile->flags & PFLAG_IMMUTABLE) {
544 *info = "cannot replace immutible profile";
545 return -EPERM;
546 } else if (noreplace) {
547 *info = "profile already exists";
548 return -EEXIST;
549 }
550 }
551 return 0;
552}
553
554/**
John Johansenc88d4c72010-07-29 14:48:00 -0700555 * aa_audit_policy - Do auditing of policy changes
556 * @op: policy operation being performed
557 * @gfp: memory allocation flags
558 * @name: name of profile being manipulated (NOT NULL)
559 * @info: any extra information to be audited (MAYBE NULL)
560 * @error: error code
561 *
562 * Returns: the error to be returned after audit is done
563 */
564static int audit_policy(int op, gfp_t gfp, const char *name, const char *info,
565 int error)
566{
567 struct common_audit_data sa;
Eric Paris3b3b0e42012-04-03 09:37:02 -0700568 struct apparmor_audit_data aad = {0,};
Eric Paris50c205f2012-04-04 15:01:43 -0400569 sa.type = LSM_AUDIT_DATA_NONE;
Eric Paris3b3b0e42012-04-03 09:37:02 -0700570 sa.aad = &aad;
571 aad.op = op;
572 aad.name = name;
573 aad.info = info;
574 aad.error = error;
John Johansenc88d4c72010-07-29 14:48:00 -0700575
576 return aa_audit(AUDIT_APPARMOR_STATUS, __aa_current_profile(), gfp,
577 &sa, NULL);
578}
579
John Johansen58acf9d2016-06-22 18:01:08 -0700580bool policy_view_capable(void)
581{
582 struct user_namespace *user_ns = current_user_ns();
583 bool response = false;
584
585 if (ns_capable(user_ns, CAP_MAC_ADMIN))
586 response = true;
587
588 return response;
589}
590
591bool policy_admin_capable(void)
592{
593 return policy_view_capable() && !aa_g_lock_policy;
594}
595
John Johansenc88d4c72010-07-29 14:48:00 -0700596/**
597 * aa_may_manage_policy - can the current task manage policy
598 * @op: the policy manipulation operation being done
599 *
600 * Returns: true if the task is allowed to manipulate policy
601 */
602bool aa_may_manage_policy(int op)
603{
604 /* check if loading policy is locked out */
605 if (aa_g_lock_policy) {
606 audit_policy(op, GFP_KERNEL, NULL, "policy_locked", -EACCES);
607 return 0;
608 }
609
John Johansen58acf9d2016-06-22 18:01:08 -0700610 if (!policy_admin_capable()) {
John Johansenc88d4c72010-07-29 14:48:00 -0700611 audit_policy(op, GFP_KERNEL, NULL, "not policy admin", -EACCES);
612 return 0;
613 }
614
615 return 1;
616}
617
John Johansendd51c8482013-07-10 21:05:43 -0700618static struct aa_profile *__list_lookup_parent(struct list_head *lh,
619 struct aa_profile *profile)
620{
John Johansen6e474e32017-01-16 00:42:29 -0800621 const char *base = basename(profile->base.hname);
John Johansendd51c8482013-07-10 21:05:43 -0700622 long len = base - profile->base.hname;
623 struct aa_load_ent *ent;
624
625 /* parent won't have trailing // so remove from len */
626 if (len <= 2)
627 return NULL;
628 len -= 2;
629
630 list_for_each_entry(ent, lh, list) {
631 if (ent->new == profile)
632 continue;
633 if (strncmp(ent->new->base.hname, profile->base.hname, len) ==
634 0 && ent->new->base.hname[len] == 0)
635 return ent->new;
636 }
637
638 return NULL;
639}
640
641/**
642 * __replace_profile - replace @old with @new on a list
643 * @old: profile to be replaced (NOT NULL)
644 * @new: profile to replace @old with (NOT NULL)
John Johansen83995882017-01-16 00:42:19 -0800645 * @share_proxy: transfer @old->proxy to @new
John Johansendd51c8482013-07-10 21:05:43 -0700646 *
647 * Will duplicate and refcount elements that @new inherits from @old
648 * and will inherit @old children.
649 *
650 * refcount @new for list, put @old list refcount
651 *
652 * Requires: namespace list lock be held, or list not be shared
653 */
John Johansen77b071b2013-07-10 21:07:43 -0700654static void __replace_profile(struct aa_profile *old, struct aa_profile *new,
John Johansen83995882017-01-16 00:42:19 -0800655 bool share_proxy)
John Johansendd51c8482013-07-10 21:05:43 -0700656{
657 struct aa_profile *child, *tmp;
658
659 if (!list_empty(&old->base.profiles)) {
660 LIST_HEAD(lh);
John Johansen01e2b672013-07-10 21:06:43 -0700661 list_splice_init_rcu(&old->base.profiles, &lh, synchronize_rcu);
John Johansendd51c8482013-07-10 21:05:43 -0700662
663 list_for_each_entry_safe(child, tmp, &lh, base.list) {
664 struct aa_profile *p;
665
666 list_del_init(&child->base.list);
667 p = __find_child(&new->base.profiles, child->base.name);
668 if (p) {
669 /* @p replaces @child */
John Johansen83995882017-01-16 00:42:19 -0800670 __replace_profile(child, p, share_proxy);
John Johansendd51c8482013-07-10 21:05:43 -0700671 continue;
672 }
673
674 /* inherit @child and its children */
675 /* TODO: update hname of inherited children */
676 /* list refcount transferred to @new */
John Johansen0d259f02013-07-10 21:13:43 -0700677 p = aa_deref_parent(child);
John Johansen01e2b672013-07-10 21:06:43 -0700678 rcu_assign_pointer(child->parent, aa_get_profile(new));
679 list_add_rcu(&child->base.list, &new->base.profiles);
680 aa_put_profile(p);
John Johansendd51c8482013-07-10 21:05:43 -0700681 }
682 }
683
John Johansen01e2b672013-07-10 21:06:43 -0700684 if (!rcu_access_pointer(new->parent)) {
John Johansen0d259f02013-07-10 21:13:43 -0700685 struct aa_profile *parent = aa_deref_parent(old);
John Johansen01e2b672013-07-10 21:06:43 -0700686 rcu_assign_pointer(new->parent, aa_get_profile(parent));
687 }
John Johansen83995882017-01-16 00:42:19 -0800688 __aa_update_proxy(old, new);
689 if (share_proxy) {
690 aa_put_proxy(new->proxy);
691 new->proxy = aa_get_proxy(old->proxy);
692 } else if (!rcu_access_pointer(new->proxy->profile))
693 /* aafs interface uses proxy */
694 rcu_assign_pointer(new->proxy->profile,
John Johansen0d259f02013-07-10 21:13:43 -0700695 aa_get_profile(new));
696 __aa_fs_profile_migrate_dents(old, new);
John Johansendd51c8482013-07-10 21:05:43 -0700697
698 if (list_empty(&new->base.list)) {
699 /* new is not on a list already */
John Johansen01e2b672013-07-10 21:06:43 -0700700 list_replace_rcu(&old->base.list, &new->base.list);
John Johansendd51c8482013-07-10 21:05:43 -0700701 aa_get_profile(new);
702 aa_put_profile(old);
703 } else
704 __list_remove_profile(old);
705}
706
707/**
708 * __lookup_replace - lookup replacement information for a profile
709 * @ns - namespace the lookup occurs in
710 * @hname - name of profile to lookup
711 * @noreplace - true if not replacing an existing profile
712 * @p - Returns: profile to be replaced
713 * @info - Returns: info string on why lookup failed
714 *
715 * Returns: profile to replace (no ref) on success else ptr error
716 */
John Johansen98849df2017-01-16 00:42:16 -0800717static int __lookup_replace(struct aa_ns *ns, const char *hname,
John Johansendd51c8482013-07-10 21:05:43 -0700718 bool noreplace, struct aa_profile **p,
719 const char **info)
720{
721 *p = aa_get_profile(__lookup_profile(&ns->base, hname));
722 if (*p) {
723 int error = replacement_allowed(*p, noreplace, info);
724 if (error) {
725 *info = "profile can not be replaced";
726 return error;
727 }
728 }
729
730 return 0;
731}
732
John Johansenc88d4c72010-07-29 14:48:00 -0700733/**
734 * aa_replace_profiles - replace profile(s) on the profile list
John Johansen73688d12017-01-16 00:42:34 -0800735 * @view: namespace load is viewed from
John Johansenc88d4c72010-07-29 14:48:00 -0700736 * @udata: serialized data stream (NOT NULL)
737 * @size: size of the serialized data stream
738 * @noreplace: true if only doing addition, no replacement allowed
739 *
740 * unpack and replace a profile on the profile list and uses of that profile
741 * by any aa_task_cxt. If the profile does not exist on the profile list
742 * it is added.
743 *
744 * Returns: size of data consumed else error code on failure.
745 */
John Johansen73688d12017-01-16 00:42:34 -0800746ssize_t aa_replace_profiles(struct aa_ns *view, void *udata, size_t size,
747 bool noreplace)
John Johansenc88d4c72010-07-29 14:48:00 -0700748{
John Johansenbf15cf02016-04-16 14:16:50 -0700749 const char *ns_name, *info = NULL;
John Johansen98849df2017-01-16 00:42:16 -0800750 struct aa_ns *ns = NULL;
John Johansendd51c8482013-07-10 21:05:43 -0700751 struct aa_load_ent *ent, *tmp;
John Johansenc88d4c72010-07-29 14:48:00 -0700752 int op = OP_PROF_REPL;
753 ssize_t error;
John Johansendd51c8482013-07-10 21:05:43 -0700754 LIST_HEAD(lh);
John Johansenc88d4c72010-07-29 14:48:00 -0700755
756 /* released below */
John Johansendd51c8482013-07-10 21:05:43 -0700757 error = aa_unpack(udata, size, &lh, &ns_name);
758 if (error)
759 goto out;
John Johansenc88d4c72010-07-29 14:48:00 -0700760
761 /* released below */
John Johansen73688d12017-01-16 00:42:34 -0800762 ns = aa_prepare_ns(view, ns_name);
John Johansenc88d4c72010-07-29 14:48:00 -0700763 if (!ns) {
John Johansenbf15cf02016-04-16 14:16:50 -0700764 error = audit_policy(op, GFP_KERNEL, ns_name,
765 "failed to prepare namespace", -ENOMEM);
766 goto free;
John Johansenc88d4c72010-07-29 14:48:00 -0700767 }
768
John Johansen01e2b672013-07-10 21:06:43 -0700769 mutex_lock(&ns->lock);
John Johansendd51c8482013-07-10 21:05:43 -0700770 /* setup parent and ns info */
771 list_for_each_entry(ent, &lh, list) {
772 struct aa_policy *policy;
John Johansendd51c8482013-07-10 21:05:43 -0700773 error = __lookup_replace(ns, ent->new->base.hname, noreplace,
774 &ent->old, &info);
775 if (error)
776 goto fail_lock;
John Johansenc88d4c72010-07-29 14:48:00 -0700777
John Johansendd51c8482013-07-10 21:05:43 -0700778 if (ent->new->rename) {
779 error = __lookup_replace(ns, ent->new->rename,
780 noreplace, &ent->rename,
781 &info);
782 if (error)
783 goto fail_lock;
John Johansenc88d4c72010-07-29 14:48:00 -0700784 }
John Johansendd51c8482013-07-10 21:05:43 -0700785
786 /* released when @new is freed */
John Johansen98849df2017-01-16 00:42:16 -0800787 ent->new->ns = aa_get_ns(ns);
John Johansendd51c8482013-07-10 21:05:43 -0700788
789 if (ent->old || ent->rename)
790 continue;
791
792 /* no ref on policy only use inside lock */
793 policy = __lookup_parent(ns, ent->new->base.hname);
794 if (!policy) {
795 struct aa_profile *p;
796 p = __list_lookup_parent(&lh, ent->new);
797 if (!p) {
798 error = -ENOENT;
799 info = "parent does not exist";
John Johansendd51c8482013-07-10 21:05:43 -0700800 goto fail_lock;
801 }
John Johansen01e2b672013-07-10 21:06:43 -0700802 rcu_assign_pointer(ent->new->parent, aa_get_profile(p));
803 } else if (policy != &ns->base) {
John Johansendd51c8482013-07-10 21:05:43 -0700804 /* released on profile replacement or free_profile */
John Johansen01e2b672013-07-10 21:06:43 -0700805 struct aa_profile *p = (struct aa_profile *) policy;
806 rcu_assign_pointer(ent->new->parent, aa_get_profile(p));
807 }
John Johansenc88d4c72010-07-29 14:48:00 -0700808 }
809
John Johansen0d259f02013-07-10 21:13:43 -0700810 /* create new fs entries for introspection if needed */
811 list_for_each_entry(ent, &lh, list) {
812 if (ent->old) {
813 /* inherit old interface files */
814
815 /* if (ent->rename)
816 TODO: support rename */
817 /* } else if (ent->rename) {
818 TODO: support rename */
819 } else {
820 struct dentry *parent;
821 if (rcu_access_pointer(ent->new->parent)) {
822 struct aa_profile *p;
823 p = aa_deref_parent(ent->new);
824 parent = prof_child_dir(p);
825 } else
826 parent = ns_subprofs_dir(ent->new->ns);
827 error = __aa_fs_profile_mkdir(ent->new, parent);
828 }
829
830 if (error) {
831 info = "failed to create ";
832 goto fail_lock;
833 }
834 }
835
836 /* Done with checks that may fail - do actual replacement */
John Johansendd51c8482013-07-10 21:05:43 -0700837 list_for_each_entry_safe(ent, tmp, &lh, list) {
838 list_del_init(&ent->list);
839 op = (!ent->old && !ent->rename) ? OP_PROF_LOAD : OP_PROF_REPL;
John Johansenc88d4c72010-07-29 14:48:00 -0700840
John Johansen7ee6da22016-04-16 14:19:38 -0700841 audit_policy(op, GFP_ATOMIC, ent->new->base.hname, NULL, error);
John Johansenc88d4c72010-07-29 14:48:00 -0700842
John Johansendd51c8482013-07-10 21:05:43 -0700843 if (ent->old) {
John Johansen77b071b2013-07-10 21:07:43 -0700844 __replace_profile(ent->old, ent->new, 1);
John Johansen0d259f02013-07-10 21:13:43 -0700845 if (ent->rename) {
John Johansen83995882017-01-16 00:42:19 -0800846 /* aafs interface uses proxy */
847 struct aa_proxy *r = ent->new->proxy;
John Johansen0d259f02013-07-10 21:13:43 -0700848 rcu_assign_pointer(r->profile,
849 aa_get_profile(ent->new));
John Johansen77b071b2013-07-10 21:07:43 -0700850 __replace_profile(ent->rename, ent->new, 0);
John Johansen0d259f02013-07-10 21:13:43 -0700851 }
John Johansendd51c8482013-07-10 21:05:43 -0700852 } else if (ent->rename) {
John Johansen83995882017-01-16 00:42:19 -0800853 /* aafs interface uses proxy */
854 rcu_assign_pointer(ent->new->proxy->profile,
John Johansen0d259f02013-07-10 21:13:43 -0700855 aa_get_profile(ent->new));
John Johansen77b071b2013-07-10 21:07:43 -0700856 __replace_profile(ent->rename, ent->new, 0);
John Johansendd51c8482013-07-10 21:05:43 -0700857 } else if (ent->new->parent) {
John Johansen01e2b672013-07-10 21:06:43 -0700858 struct aa_profile *parent, *newest;
John Johansen0d259f02013-07-10 21:13:43 -0700859 parent = aa_deref_parent(ent->new);
John Johansen77b071b2013-07-10 21:07:43 -0700860 newest = aa_get_newest_profile(parent);
John Johansen01e2b672013-07-10 21:06:43 -0700861
John Johansendd51c8482013-07-10 21:05:43 -0700862 /* parent replaced in this atomic set? */
John Johansen01e2b672013-07-10 21:06:43 -0700863 if (newest != parent) {
864 aa_get_profile(newest);
John Johansen01e2b672013-07-10 21:06:43 -0700865 rcu_assign_pointer(ent->new->parent, newest);
John Johansenf3518412016-04-16 13:59:02 -0700866 aa_put_profile(parent);
John Johansendcda6172016-04-11 16:55:10 -0700867 }
John Johansen83995882017-01-16 00:42:19 -0800868 /* aafs interface uses proxy */
869 rcu_assign_pointer(ent->new->proxy->profile,
John Johansen0d259f02013-07-10 21:13:43 -0700870 aa_get_profile(ent->new));
John Johansenec34fa22016-04-11 16:57:19 -0700871 __list_add_profile(&newest->base.profiles, ent->new);
John Johansendcda6172016-04-11 16:55:10 -0700872 aa_put_profile(newest);
John Johansen0d259f02013-07-10 21:13:43 -0700873 } else {
John Johansen83995882017-01-16 00:42:19 -0800874 /* aafs interface uses proxy */
875 rcu_assign_pointer(ent->new->proxy->profile,
John Johansen0d259f02013-07-10 21:13:43 -0700876 aa_get_profile(ent->new));
John Johansendd51c8482013-07-10 21:05:43 -0700877 __list_add_profile(&ns->base.profiles, ent->new);
John Johansen0d259f02013-07-10 21:13:43 -0700878 }
John Johansendd51c8482013-07-10 21:05:43 -0700879 aa_load_ent_free(ent);
John Johansenc88d4c72010-07-29 14:48:00 -0700880 }
John Johansen01e2b672013-07-10 21:06:43 -0700881 mutex_unlock(&ns->lock);
John Johansenc88d4c72010-07-29 14:48:00 -0700882
883out:
John Johansen98849df2017-01-16 00:42:16 -0800884 aa_put_ns(ns);
John Johansendd51c8482013-07-10 21:05:43 -0700885
John Johansenc88d4c72010-07-29 14:48:00 -0700886 if (error)
887 return error;
888 return size;
889
John Johansendd51c8482013-07-10 21:05:43 -0700890fail_lock:
John Johansen01e2b672013-07-10 21:06:43 -0700891 mutex_unlock(&ns->lock);
John Johansendd51c8482013-07-10 21:05:43 -0700892
John Johansenbf15cf02016-04-16 14:16:50 -0700893 /* audit cause of failure */
894 op = (!ent->old) ? OP_PROF_LOAD : OP_PROF_REPL;
895 audit_policy(op, GFP_KERNEL, ent->new->base.hname, info, error);
896 /* audit status that rest of profiles in the atomic set failed too */
897 info = "valid profile in failed atomic policy load";
898 list_for_each_entry(tmp, &lh, list) {
899 if (tmp == ent) {
900 info = "unchecked profile in failed atomic policy load";
901 /* skip entry that caused failure */
902 continue;
903 }
904 op = (!ent->old) ? OP_PROF_LOAD : OP_PROF_REPL;
905 audit_policy(op, GFP_KERNEL, tmp->new->base.hname, info, error);
906 }
907free:
John Johansendd51c8482013-07-10 21:05:43 -0700908 list_for_each_entry_safe(ent, tmp, &lh, list) {
909 list_del_init(&ent->list);
910 aa_load_ent_free(ent);
911 }
912
John Johansenc88d4c72010-07-29 14:48:00 -0700913 goto out;
914}
915
916/**
917 * aa_remove_profiles - remove profile(s) from the system
918 * @fqname: name of the profile or namespace to remove (NOT NULL)
919 * @size: size of the name
920 *
921 * Remove a profile or sub namespace from the current namespace, so that
922 * they can not be found anymore and mark them as replaced by unconfined
923 *
924 * NOTE: removing confinement does not restore rlimits to preconfinemnet values
925 *
926 * Returns: size of data consume else error code if fails
927 */
928ssize_t aa_remove_profiles(char *fqname, size_t size)
929{
John Johansen98849df2017-01-16 00:42:16 -0800930 struct aa_ns *root, *ns = NULL;
John Johansenc88d4c72010-07-29 14:48:00 -0700931 struct aa_profile *profile = NULL;
932 const char *name = fqname, *info = NULL;
933 ssize_t error = 0;
934
935 if (*fqname == 0) {
936 info = "no profile specified";
937 error = -ENOENT;
938 goto fail;
939 }
940
941 root = aa_current_profile()->ns;
942
943 if (fqname[0] == ':') {
944 char *ns_name;
945 name = aa_split_fqname(fqname, &ns_name);
John Johansen41d1b3e2013-02-21 01:14:17 -0800946 /* released below */
John Johansen98849df2017-01-16 00:42:16 -0800947 ns = aa_find_ns(root, ns_name);
John Johansen41d1b3e2013-02-21 01:14:17 -0800948 if (!ns) {
949 info = "namespace does not exist";
950 error = -ENOENT;
951 goto fail;
John Johansenc88d4c72010-07-29 14:48:00 -0700952 }
953 } else
954 /* released below */
John Johansen98849df2017-01-16 00:42:16 -0800955 ns = aa_get_ns(root);
John Johansenc88d4c72010-07-29 14:48:00 -0700956
John Johansenc88d4c72010-07-29 14:48:00 -0700957 if (!name) {
958 /* remove namespace - can only happen if fqname[0] == ':' */
John Johansen01e2b672013-07-10 21:06:43 -0700959 mutex_lock(&ns->parent->lock);
John Johansen98849df2017-01-16 00:42:16 -0800960 __aa_remove_ns(ns);
John Johansen01e2b672013-07-10 21:06:43 -0700961 mutex_unlock(&ns->parent->lock);
John Johansenc88d4c72010-07-29 14:48:00 -0700962 } else {
963 /* remove profile */
John Johansen01e2b672013-07-10 21:06:43 -0700964 mutex_lock(&ns->lock);
John Johansenc88d4c72010-07-29 14:48:00 -0700965 profile = aa_get_profile(__lookup_profile(&ns->base, name));
966 if (!profile) {
967 error = -ENOENT;
968 info = "profile does not exist";
969 goto fail_ns_lock;
970 }
971 name = profile->base.hname;
972 __remove_profile(profile);
John Johansen01e2b672013-07-10 21:06:43 -0700973 mutex_unlock(&ns->lock);
John Johansenc88d4c72010-07-29 14:48:00 -0700974 }
John Johansenc88d4c72010-07-29 14:48:00 -0700975
976 /* don't fail removal if audit fails */
977 (void) audit_policy(OP_PROF_RM, GFP_KERNEL, name, info, error);
John Johansen98849df2017-01-16 00:42:16 -0800978 aa_put_ns(ns);
John Johansenc88d4c72010-07-29 14:48:00 -0700979 aa_put_profile(profile);
980 return size;
981
982fail_ns_lock:
John Johansen01e2b672013-07-10 21:06:43 -0700983 mutex_unlock(&ns->lock);
John Johansen98849df2017-01-16 00:42:16 -0800984 aa_put_ns(ns);
John Johansenc88d4c72010-07-29 14:48:00 -0700985
986fail:
987 (void) audit_policy(OP_PROF_RM, GFP_KERNEL, name, info, error);
988 return error;
989}