John Johansen | c88d4c7 | 2010-07-29 14:48:00 -0700 | [diff] [blame] | 1 | /* |
| 2 | * AppArmor security module |
| 3 | * |
| 4 | * This file contains AppArmor policy manipulation functions |
| 5 | * |
| 6 | * Copyright (C) 1998-2008 Novell/SUSE |
| 7 | * Copyright 2009-2010 Canonical Ltd. |
| 8 | * |
| 9 | * This program is free software; you can redistribute it and/or |
| 10 | * modify it under the terms of the GNU General Public License as |
| 11 | * published by the Free Software Foundation, version 2 of the |
| 12 | * License. |
| 13 | * |
| 14 | * |
| 15 | * AppArmor policy is based around profiles, which contain the rules a |
| 16 | * task is confined by. Every task in the system has a profile attached |
| 17 | * to it determined either by matching "unconfined" tasks against the |
| 18 | * visible set of profiles or by following a profiles attachment rules. |
| 19 | * |
| 20 | * Each profile exists in a profile namespace which is a container of |
| 21 | * visible profiles. Each namespace contains a special "unconfined" profile, |
| 22 | * which doesn't enforce any confinement on a task beyond DAC. |
| 23 | * |
| 24 | * Namespace and profile names can be written together in either |
| 25 | * of two syntaxes. |
| 26 | * :namespace:profile - used by kernel interfaces for easy detection |
| 27 | * namespace://profile - used by policy |
| 28 | * |
| 29 | * Profile names can not start with : or @ or ^ and may not contain \0 |
| 30 | * |
| 31 | * Reserved profile names |
| 32 | * unconfined - special automatically generated unconfined profile |
| 33 | * inherit - special name to indicate profile inheritance |
| 34 | * null-XXXX-YYYY - special automatically generated learning profiles |
| 35 | * |
| 36 | * Namespace names may not start with / or @ and may not contain \0 or : |
| 37 | * Reserved namespace names |
| 38 | * user-XXXX - user defined profiles |
| 39 | * |
| 40 | * a // in a profile or namespace name indicates a hierarchical name with the |
| 41 | * name before the // being the parent and the name after the child. |
| 42 | * |
| 43 | * Profile and namespace hierarchies serve two different but similar purposes. |
| 44 | * The namespace contains the set of visible profiles that are considered |
| 45 | * for attachment. The hierarchy of namespaces allows for virtualizing |
| 46 | * the namespace so that for example a chroot can have its own set of profiles |
| 47 | * which may define some local user namespaces. |
| 48 | * The profile hierarchy severs two distinct purposes, |
| 49 | * - it allows for sub profiles or hats, which allows an application to run |
| 50 | * subprograms under its own profile with different restriction than it |
| 51 | * self, and not have it use the system profile. |
| 52 | * eg. if a mail program starts an editor, the policy might make the |
| 53 | * restrictions tighter on the editor tighter than the mail program, |
| 54 | * and definitely different than general editor restrictions |
| 55 | * - it allows for binary hierarchy of profiles, so that execution history |
| 56 | * is preserved. This feature isn't exploited by AppArmor reference policy |
| 57 | * but is allowed. NOTE: this is currently suboptimal because profile |
| 58 | * aliasing is not currently implemented so that a profile for each |
| 59 | * level must be defined. |
| 60 | * eg. /bin/bash///bin/ls as a name would indicate /bin/ls was started |
| 61 | * from /bin/bash |
| 62 | * |
| 63 | * A profile or namespace name that can contain one or more // separators |
| 64 | * is referred to as an hname (hierarchical). |
| 65 | * eg. /bin/bash//bin/ls |
| 66 | * |
| 67 | * An fqname is a name that may contain both namespace and profile hnames. |
| 68 | * eg. :ns:/bin/bash//bin/ls |
| 69 | * |
| 70 | * NOTES: |
| 71 | * - locking of profile lists is currently fairly coarse. All profile |
| 72 | * lists within a namespace use the namespace lock. |
| 73 | * FIXME: move profile lists to using rcu_lists |
| 74 | */ |
| 75 | |
| 76 | #include <linux/slab.h> |
| 77 | #include <linux/spinlock.h> |
| 78 | #include <linux/string.h> |
John Johansen | 2bd8dbb | 2017-01-16 00:42:50 -0800 | [diff] [blame] | 79 | #include <linux/user_namespace.h> |
John Johansen | c88d4c7 | 2010-07-29 14:48:00 -0700 | [diff] [blame] | 80 | |
| 81 | #include "include/apparmor.h" |
| 82 | #include "include/capability.h" |
| 83 | #include "include/context.h" |
| 84 | #include "include/file.h" |
| 85 | #include "include/ipc.h" |
| 86 | #include "include/match.h" |
| 87 | #include "include/path.h" |
| 88 | #include "include/policy.h" |
John Johansen | cff281f | 2017-01-16 00:42:15 -0800 | [diff] [blame] | 89 | #include "include/policy_ns.h" |
John Johansen | c88d4c7 | 2010-07-29 14:48:00 -0700 | [diff] [blame] | 90 | #include "include/policy_unpack.h" |
| 91 | #include "include/resource.h" |
John Johansen | c88d4c7 | 2010-07-29 14:48:00 -0700 | [diff] [blame] | 92 | |
John Johansen | 2bd8dbb | 2017-01-16 00:42:50 -0800 | [diff] [blame] | 93 | int unprivileged_userns_apparmor_policy = 1; |
John Johansen | c88d4c7 | 2010-07-29 14:48:00 -0700 | [diff] [blame] | 94 | |
John Johansen | 0d259f0 | 2013-07-10 21:13:43 -0700 | [diff] [blame] | 95 | const char *const aa_profile_mode_names[] = { |
John Johansen | c88d4c7 | 2010-07-29 14:48:00 -0700 | [diff] [blame] | 96 | "enforce", |
| 97 | "complain", |
| 98 | "kill", |
John Johansen | 0381650 | 2013-07-10 21:12:43 -0700 | [diff] [blame] | 99 | "unconfined", |
John Johansen | c88d4c7 | 2010-07-29 14:48:00 -0700 | [diff] [blame] | 100 | }; |
| 101 | |
John Johansen | c88d4c7 | 2010-07-29 14:48:00 -0700 | [diff] [blame] | 102 | |
John Johansen | cff281f | 2017-01-16 00:42:15 -0800 | [diff] [blame] | 103 | /* requires profile list write lock held */ |
John Johansen | 8399588 | 2017-01-16 00:42:19 -0800 | [diff] [blame] | 104 | void __aa_update_proxy(struct aa_profile *orig, struct aa_profile *new) |
John Johansen | c88d4c7 | 2010-07-29 14:48:00 -0700 | [diff] [blame] | 105 | { |
John Johansen | cff281f | 2017-01-16 00:42:15 -0800 | [diff] [blame] | 106 | struct aa_profile *tmp; |
John Johansen | c88d4c7 | 2010-07-29 14:48:00 -0700 | [diff] [blame] | 107 | |
John Johansen | 8399588 | 2017-01-16 00:42:19 -0800 | [diff] [blame] | 108 | tmp = rcu_dereference_protected(orig->proxy->profile, |
John Johansen | cff281f | 2017-01-16 00:42:15 -0800 | [diff] [blame] | 109 | mutex_is_locked(&orig->ns->lock)); |
John Johansen | 8399588 | 2017-01-16 00:42:19 -0800 | [diff] [blame] | 110 | rcu_assign_pointer(orig->proxy->profile, aa_get_profile(new)); |
John Johansen | d97d51d | 2017-01-16 00:42:18 -0800 | [diff] [blame] | 111 | orig->flags |= PFLAG_STALE; |
John Johansen | cff281f | 2017-01-16 00:42:15 -0800 | [diff] [blame] | 112 | aa_put_profile(tmp); |
John Johansen | c88d4c7 | 2010-07-29 14:48:00 -0700 | [diff] [blame] | 113 | } |
| 114 | |
| 115 | /** |
| 116 | * __list_add_profile - add a profile to a list |
| 117 | * @list: list to add it to (NOT NULL) |
| 118 | * @profile: the profile to add (NOT NULL) |
| 119 | * |
| 120 | * refcount @profile, should be put by __list_remove_profile |
| 121 | * |
| 122 | * Requires: namespace lock be held, or list not be shared |
| 123 | */ |
| 124 | static void __list_add_profile(struct list_head *list, |
| 125 | struct aa_profile *profile) |
| 126 | { |
John Johansen | 01e2b67 | 2013-07-10 21:06:43 -0700 | [diff] [blame] | 127 | list_add_rcu(&profile->base.list, list); |
John Johansen | c88d4c7 | 2010-07-29 14:48:00 -0700 | [diff] [blame] | 128 | /* get list reference */ |
| 129 | aa_get_profile(profile); |
| 130 | } |
| 131 | |
| 132 | /** |
| 133 | * __list_remove_profile - remove a profile from the list it is on |
| 134 | * @profile: the profile to remove (NOT NULL) |
| 135 | * |
| 136 | * remove a profile from the list, warning generally removal should |
| 137 | * be done with __replace_profile as most profile removals are |
| 138 | * replacements to the unconfined profile. |
| 139 | * |
| 140 | * put @profile list refcount |
| 141 | * |
| 142 | * Requires: namespace lock be held, or list not have been live |
| 143 | */ |
| 144 | static void __list_remove_profile(struct aa_profile *profile) |
| 145 | { |
John Johansen | 01e2b67 | 2013-07-10 21:06:43 -0700 | [diff] [blame] | 146 | list_del_rcu(&profile->base.list); |
| 147 | aa_put_profile(profile); |
John Johansen | c88d4c7 | 2010-07-29 14:48:00 -0700 | [diff] [blame] | 148 | } |
| 149 | |
John Johansen | c88d4c7 | 2010-07-29 14:48:00 -0700 | [diff] [blame] | 150 | /** |
| 151 | * __remove_profile - remove old profile, and children |
| 152 | * @profile: profile to be replaced (NOT NULL) |
| 153 | * |
| 154 | * Requires: namespace list lock be held, or list not be shared |
| 155 | */ |
| 156 | static void __remove_profile(struct aa_profile *profile) |
| 157 | { |
| 158 | /* release any children lists first */ |
John Johansen | cff281f | 2017-01-16 00:42:15 -0800 | [diff] [blame] | 159 | __aa_profile_list_release(&profile->base.profiles); |
John Johansen | c88d4c7 | 2010-07-29 14:48:00 -0700 | [diff] [blame] | 160 | /* released by free_profile */ |
John Johansen | 8399588 | 2017-01-16 00:42:19 -0800 | [diff] [blame] | 161 | __aa_update_proxy(profile, profile->ns->unconfined); |
John Johansen | 0d259f0 | 2013-07-10 21:13:43 -0700 | [diff] [blame] | 162 | __aa_fs_profile_rmdir(profile); |
John Johansen | c88d4c7 | 2010-07-29 14:48:00 -0700 | [diff] [blame] | 163 | __list_remove_profile(profile); |
| 164 | } |
| 165 | |
| 166 | /** |
John Johansen | cff281f | 2017-01-16 00:42:15 -0800 | [diff] [blame] | 167 | * __aa_profile_list_release - remove all profiles on the list and put refs |
John Johansen | c88d4c7 | 2010-07-29 14:48:00 -0700 | [diff] [blame] | 168 | * @head: list of profiles (NOT NULL) |
| 169 | * |
| 170 | * Requires: namespace lock be held |
| 171 | */ |
John Johansen | cff281f | 2017-01-16 00:42:15 -0800 | [diff] [blame] | 172 | void __aa_profile_list_release(struct list_head *head) |
John Johansen | c88d4c7 | 2010-07-29 14:48:00 -0700 | [diff] [blame] | 173 | { |
| 174 | struct aa_profile *profile, *tmp; |
| 175 | list_for_each_entry_safe(profile, tmp, head, base.list) |
| 176 | __remove_profile(profile); |
| 177 | } |
| 178 | |
John Johansen | 77b071b | 2013-07-10 21:07:43 -0700 | [diff] [blame] | 179 | |
John Johansen | 8399588 | 2017-01-16 00:42:19 -0800 | [diff] [blame] | 180 | static void free_proxy(struct aa_proxy *p) |
John Johansen | 77b071b | 2013-07-10 21:07:43 -0700 | [diff] [blame] | 181 | { |
John Johansen | 8399588 | 2017-01-16 00:42:19 -0800 | [diff] [blame] | 182 | if (p) { |
John Johansen | 4cd4fc7 | 2013-09-29 08:39:22 -0700 | [diff] [blame] | 183 | /* r->profile will not be updated any more as r is dead */ |
John Johansen | 8399588 | 2017-01-16 00:42:19 -0800 | [diff] [blame] | 184 | aa_put_profile(rcu_dereference_protected(p->profile, true)); |
| 185 | kzfree(p); |
John Johansen | 77b071b | 2013-07-10 21:07:43 -0700 | [diff] [blame] | 186 | } |
| 187 | } |
| 188 | |
| 189 | |
John Johansen | 8399588 | 2017-01-16 00:42:19 -0800 | [diff] [blame] | 190 | void aa_free_proxy_kref(struct kref *kref) |
John Johansen | 77b071b | 2013-07-10 21:07:43 -0700 | [diff] [blame] | 191 | { |
John Johansen | 8399588 | 2017-01-16 00:42:19 -0800 | [diff] [blame] | 192 | struct aa_proxy *p = container_of(kref, struct aa_proxy, count); |
| 193 | |
| 194 | free_proxy(p); |
John Johansen | 77b071b | 2013-07-10 21:07:43 -0700 | [diff] [blame] | 195 | } |
| 196 | |
John Johansen | c88d4c7 | 2010-07-29 14:48:00 -0700 | [diff] [blame] | 197 | /** |
John Johansen | 8651e1d6 | 2013-07-10 21:11:43 -0700 | [diff] [blame] | 198 | * aa_free_profile - free a profile |
John Johansen | c88d4c7 | 2010-07-29 14:48:00 -0700 | [diff] [blame] | 199 | * @profile: the profile to free (MAYBE NULL) |
| 200 | * |
| 201 | * Free a profile, its hats and null_profile. All references to the profile, |
| 202 | * its hats and null_profile must have been put. |
| 203 | * |
| 204 | * If the profile was referenced from a task context, free_profile() will |
| 205 | * be called from an rcu callback routine, so we must not sleep here. |
| 206 | */ |
John Johansen | 8651e1d6 | 2013-07-10 21:11:43 -0700 | [diff] [blame] | 207 | void aa_free_profile(struct aa_profile *profile) |
John Johansen | c88d4c7 | 2010-07-29 14:48:00 -0700 | [diff] [blame] | 208 | { |
| 209 | AA_DEBUG("%s(%p)\n", __func__, profile); |
| 210 | |
| 211 | if (!profile) |
| 212 | return; |
| 213 | |
John Johansen | c88d4c7 | 2010-07-29 14:48:00 -0700 | [diff] [blame] | 214 | /* free children profiles */ |
John Johansen | fe6bb31 | 2017-01-16 00:42:14 -0800 | [diff] [blame] | 215 | aa_policy_destroy(&profile->base); |
John Johansen | 01e2b67 | 2013-07-10 21:06:43 -0700 | [diff] [blame] | 216 | aa_put_profile(rcu_access_pointer(profile->parent)); |
John Johansen | c88d4c7 | 2010-07-29 14:48:00 -0700 | [diff] [blame] | 217 | |
John Johansen | 98849df | 2017-01-16 00:42:16 -0800 | [diff] [blame] | 218 | aa_put_ns(profile->ns); |
John Johansen | c88d4c7 | 2010-07-29 14:48:00 -0700 | [diff] [blame] | 219 | kzfree(profile->rename); |
| 220 | |
| 221 | aa_free_file_rules(&profile->file); |
| 222 | aa_free_cap_rules(&profile->caps); |
| 223 | aa_free_rlimit_rules(&profile->rlimits); |
| 224 | |
John Johansen | 0d259f0 | 2013-07-10 21:13:43 -0700 | [diff] [blame] | 225 | kzfree(profile->dirname); |
John Johansen | c88d4c7 | 2010-07-29 14:48:00 -0700 | [diff] [blame] | 226 | aa_put_dfa(profile->xmatch); |
John Johansen | ad5ff3d | 2012-02-16 07:07:53 -0800 | [diff] [blame] | 227 | aa_put_dfa(profile->policy.dfa); |
John Johansen | 8399588 | 2017-01-16 00:42:19 -0800 | [diff] [blame] | 228 | aa_put_proxy(profile->proxy); |
John Johansen | c88d4c7 | 2010-07-29 14:48:00 -0700 | [diff] [blame] | 229 | |
John Johansen | 5cb3e91 | 2013-10-14 11:44:34 -0700 | [diff] [blame] | 230 | kzfree(profile->hash); |
John Johansen | c88d4c7 | 2010-07-29 14:48:00 -0700 | [diff] [blame] | 231 | kzfree(profile); |
| 232 | } |
| 233 | |
| 234 | /** |
John Johansen | 01e2b67 | 2013-07-10 21:06:43 -0700 | [diff] [blame] | 235 | * aa_free_profile_rcu - free aa_profile by rcu (called by aa_free_profile_kref) |
| 236 | * @head: rcu_head callback for freeing of a profile (NOT NULL) |
| 237 | */ |
| 238 | static void aa_free_profile_rcu(struct rcu_head *head) |
| 239 | { |
John Johansen | 742058b | 2013-07-10 21:10:43 -0700 | [diff] [blame] | 240 | struct aa_profile *p = container_of(head, struct aa_profile, rcu); |
| 241 | if (p->flags & PFLAG_NS_COUNT) |
John Johansen | 98849df | 2017-01-16 00:42:16 -0800 | [diff] [blame] | 242 | aa_free_ns(p->ns); |
John Johansen | 742058b | 2013-07-10 21:10:43 -0700 | [diff] [blame] | 243 | else |
John Johansen | 8651e1d6 | 2013-07-10 21:11:43 -0700 | [diff] [blame] | 244 | aa_free_profile(p); |
John Johansen | 01e2b67 | 2013-07-10 21:06:43 -0700 | [diff] [blame] | 245 | } |
| 246 | |
| 247 | /** |
John Johansen | c88d4c7 | 2010-07-29 14:48:00 -0700 | [diff] [blame] | 248 | * aa_free_profile_kref - free aa_profile by kref (called by aa_put_profile) |
| 249 | * @kr: kref callback for freeing of a profile (NOT NULL) |
| 250 | */ |
| 251 | void aa_free_profile_kref(struct kref *kref) |
| 252 | { |
John Johansen | fa2ac46 | 2013-07-10 21:08:43 -0700 | [diff] [blame] | 253 | struct aa_profile *p = container_of(kref, struct aa_profile, count); |
John Johansen | 742058b | 2013-07-10 21:10:43 -0700 | [diff] [blame] | 254 | call_rcu(&p->rcu, aa_free_profile_rcu); |
John Johansen | c88d4c7 | 2010-07-29 14:48:00 -0700 | [diff] [blame] | 255 | } |
| 256 | |
John Johansen | 4da05cc | 2013-02-18 16:11:34 -0800 | [diff] [blame] | 257 | /** |
| 258 | * aa_alloc_profile - allocate, initialize and return a new profile |
| 259 | * @hname: name of the profile (NOT NULL) |
John Johansen | 30b026a | 2017-01-16 00:42:35 -0800 | [diff] [blame] | 260 | * @gfp: allocation type |
John Johansen | 4da05cc | 2013-02-18 16:11:34 -0800 | [diff] [blame] | 261 | * |
| 262 | * Returns: refcount profile or NULL on failure |
| 263 | */ |
John Johansen | 30b026a | 2017-01-16 00:42:35 -0800 | [diff] [blame] | 264 | struct aa_profile *aa_alloc_profile(const char *hname, gfp_t gfp) |
John Johansen | 4da05cc | 2013-02-18 16:11:34 -0800 | [diff] [blame] | 265 | { |
| 266 | struct aa_profile *profile; |
| 267 | |
| 268 | /* freed by free_profile - usually through aa_put_profile */ |
John Johansen | 30b026a | 2017-01-16 00:42:35 -0800 | [diff] [blame] | 269 | profile = kzalloc(sizeof(*profile), gfp); |
John Johansen | 4da05cc | 2013-02-18 16:11:34 -0800 | [diff] [blame] | 270 | if (!profile) |
| 271 | return NULL; |
| 272 | |
John Johansen | 30b026a | 2017-01-16 00:42:35 -0800 | [diff] [blame] | 273 | profile->proxy = kzalloc(sizeof(struct aa_proxy), gfp); |
John Johansen | 8399588 | 2017-01-16 00:42:19 -0800 | [diff] [blame] | 274 | if (!profile->proxy) |
John Johansen | 77b071b | 2013-07-10 21:07:43 -0700 | [diff] [blame] | 275 | goto fail; |
John Johansen | 8399588 | 2017-01-16 00:42:19 -0800 | [diff] [blame] | 276 | kref_init(&profile->proxy->count); |
John Johansen | 77b071b | 2013-07-10 21:07:43 -0700 | [diff] [blame] | 277 | |
John Johansen | 30b026a | 2017-01-16 00:42:35 -0800 | [diff] [blame] | 278 | if (!aa_policy_init(&profile->base, NULL, hname, gfp)) |
John Johansen | 77b071b | 2013-07-10 21:07:43 -0700 | [diff] [blame] | 279 | goto fail; |
John Johansen | fa2ac46 | 2013-07-10 21:08:43 -0700 | [diff] [blame] | 280 | kref_init(&profile->count); |
John Johansen | 4da05cc | 2013-02-18 16:11:34 -0800 | [diff] [blame] | 281 | |
| 282 | /* refcount released by caller */ |
| 283 | return profile; |
John Johansen | 77b071b | 2013-07-10 21:07:43 -0700 | [diff] [blame] | 284 | |
| 285 | fail: |
John Johansen | 8399588 | 2017-01-16 00:42:19 -0800 | [diff] [blame] | 286 | kzfree(profile->proxy); |
John Johansen | 77b071b | 2013-07-10 21:07:43 -0700 | [diff] [blame] | 287 | kzfree(profile); |
| 288 | |
| 289 | return NULL; |
John Johansen | 4da05cc | 2013-02-18 16:11:34 -0800 | [diff] [blame] | 290 | } |
| 291 | |
| 292 | /** |
John Johansen | 181f7c9 | 2017-01-16 00:42:36 -0800 | [diff] [blame] | 293 | * aa_new_null_profile - create or find a null-X learning profile |
John Johansen | 4da05cc | 2013-02-18 16:11:34 -0800 | [diff] [blame] | 294 | * @parent: profile that caused this profile to be created (NOT NULL) |
| 295 | * @hat: true if the null- learning profile is a hat |
John Johansen | 181f7c9 | 2017-01-16 00:42:36 -0800 | [diff] [blame] | 296 | * @base: name to base the null profile off of |
| 297 | * @gfp: type of allocation |
John Johansen | 4da05cc | 2013-02-18 16:11:34 -0800 | [diff] [blame] | 298 | * |
John Johansen | 181f7c9 | 2017-01-16 00:42:36 -0800 | [diff] [blame] | 299 | * Find/Create a null- complain mode profile used in learning mode. The |
| 300 | * name of the profile is unique and follows the format of parent//null-XXX. |
| 301 | * where XXX is based on the @name or if that fails or is not supplied |
| 302 | * a unique number |
John Johansen | 4da05cc | 2013-02-18 16:11:34 -0800 | [diff] [blame] | 303 | * |
| 304 | * null profiles are added to the profile list but the list does not |
| 305 | * hold a count on them so that they are automatically released when |
| 306 | * not in use. |
| 307 | * |
| 308 | * Returns: new refcounted profile else NULL on failure |
| 309 | */ |
John Johansen | 181f7c9 | 2017-01-16 00:42:36 -0800 | [diff] [blame] | 310 | struct aa_profile *aa_new_null_profile(struct aa_profile *parent, bool hat, |
| 311 | const char *base, gfp_t gfp) |
John Johansen | 4da05cc | 2013-02-18 16:11:34 -0800 | [diff] [blame] | 312 | { |
John Johansen | 181f7c9 | 2017-01-16 00:42:36 -0800 | [diff] [blame] | 313 | struct aa_profile *profile; |
John Johansen | 4da05cc | 2013-02-18 16:11:34 -0800 | [diff] [blame] | 314 | char *name; |
John Johansen | 4da05cc | 2013-02-18 16:11:34 -0800 | [diff] [blame] | 315 | |
John Johansen | 181f7c9 | 2017-01-16 00:42:36 -0800 | [diff] [blame] | 316 | AA_BUG(!parent); |
| 317 | |
| 318 | if (base) { |
| 319 | name = kmalloc(strlen(parent->base.hname) + 8 + strlen(base), |
| 320 | gfp); |
| 321 | if (name) { |
| 322 | sprintf(name, "%s//null-%s", parent->base.hname, base); |
| 323 | goto name; |
| 324 | } |
| 325 | /* fall through to try shorter uniq */ |
| 326 | } |
| 327 | |
| 328 | name = kmalloc(strlen(parent->base.hname) + 2 + 7 + 8, gfp); |
John Johansen | 4da05cc | 2013-02-18 16:11:34 -0800 | [diff] [blame] | 329 | if (!name) |
John Johansen | 181f7c9 | 2017-01-16 00:42:36 -0800 | [diff] [blame] | 330 | return NULL; |
| 331 | sprintf(name, "%s//null-%x", parent->base.hname, |
| 332 | atomic_inc_return(&parent->ns->uniq_null)); |
John Johansen | 4da05cc | 2013-02-18 16:11:34 -0800 | [diff] [blame] | 333 | |
John Johansen | 181f7c9 | 2017-01-16 00:42:36 -0800 | [diff] [blame] | 334 | name: |
| 335 | /* lookup to see if this is a dup creation */ |
| 336 | profile = aa_find_child(parent, basename(name)); |
| 337 | if (profile) |
| 338 | goto out; |
| 339 | |
| 340 | profile = aa_alloc_profile(name, gfp); |
John Johansen | 4da05cc | 2013-02-18 16:11:34 -0800 | [diff] [blame] | 341 | if (!profile) |
| 342 | goto fail; |
| 343 | |
| 344 | profile->mode = APPARMOR_COMPLAIN; |
John Johansen | 181f7c9 | 2017-01-16 00:42:36 -0800 | [diff] [blame] | 345 | profile->flags |= PFLAG_NULL; |
John Johansen | 4da05cc | 2013-02-18 16:11:34 -0800 | [diff] [blame] | 346 | if (hat) |
| 347 | profile->flags |= PFLAG_HAT; |
John Johansen | 181f7c9 | 2017-01-16 00:42:36 -0800 | [diff] [blame] | 348 | profile->path_flags = parent->path_flags; |
John Johansen | 4da05cc | 2013-02-18 16:11:34 -0800 | [diff] [blame] | 349 | |
| 350 | /* released on free_profile */ |
John Johansen | 01e2b67 | 2013-07-10 21:06:43 -0700 | [diff] [blame] | 351 | rcu_assign_pointer(profile->parent, aa_get_profile(parent)); |
John Johansen | 98849df | 2017-01-16 00:42:16 -0800 | [diff] [blame] | 352 | profile->ns = aa_get_ns(parent->ns); |
John Johansen | 11c236b | 2017-01-16 00:42:42 -0800 | [diff] [blame] | 353 | profile->file.dfa = aa_get_dfa(nulldfa); |
| 354 | profile->policy.dfa = aa_get_dfa(nulldfa); |
John Johansen | 4da05cc | 2013-02-18 16:11:34 -0800 | [diff] [blame] | 355 | |
John Johansen | 01e2b67 | 2013-07-10 21:06:43 -0700 | [diff] [blame] | 356 | mutex_lock(&profile->ns->lock); |
John Johansen | 4da05cc | 2013-02-18 16:11:34 -0800 | [diff] [blame] | 357 | __list_add_profile(&parent->base.profiles, profile); |
John Johansen | 01e2b67 | 2013-07-10 21:06:43 -0700 | [diff] [blame] | 358 | mutex_unlock(&profile->ns->lock); |
John Johansen | 4da05cc | 2013-02-18 16:11:34 -0800 | [diff] [blame] | 359 | |
| 360 | /* refcount released by caller */ |
John Johansen | 181f7c9 | 2017-01-16 00:42:36 -0800 | [diff] [blame] | 361 | out: |
| 362 | kfree(name); |
| 363 | |
John Johansen | 4da05cc | 2013-02-18 16:11:34 -0800 | [diff] [blame] | 364 | return profile; |
| 365 | |
| 366 | fail: |
John Johansen | 181f7c9 | 2017-01-16 00:42:36 -0800 | [diff] [blame] | 367 | kfree(name); |
| 368 | aa_free_profile(profile); |
John Johansen | 4da05cc | 2013-02-18 16:11:34 -0800 | [diff] [blame] | 369 | return NULL; |
| 370 | } |
| 371 | |
John Johansen | c88d4c7 | 2010-07-29 14:48:00 -0700 | [diff] [blame] | 372 | /* TODO: profile accounting - setup in remove */ |
| 373 | |
| 374 | /** |
| 375 | * __find_child - find a profile on @head list with a name matching @name |
| 376 | * @head: list to search (NOT NULL) |
| 377 | * @name: name of profile (NOT NULL) |
| 378 | * |
John Johansen | 01e2b67 | 2013-07-10 21:06:43 -0700 | [diff] [blame] | 379 | * Requires: rcu_read_lock be held |
John Johansen | c88d4c7 | 2010-07-29 14:48:00 -0700 | [diff] [blame] | 380 | * |
| 381 | * Returns: unrefcounted profile ptr, or NULL if not found |
| 382 | */ |
| 383 | static struct aa_profile *__find_child(struct list_head *head, const char *name) |
| 384 | { |
| 385 | return (struct aa_profile *)__policy_find(head, name); |
| 386 | } |
| 387 | |
| 388 | /** |
| 389 | * __strn_find_child - find a profile on @head list using substring of @name |
| 390 | * @head: list to search (NOT NULL) |
| 391 | * @name: name of profile (NOT NULL) |
| 392 | * @len: length of @name substring to match |
| 393 | * |
John Johansen | 01e2b67 | 2013-07-10 21:06:43 -0700 | [diff] [blame] | 394 | * Requires: rcu_read_lock be held |
John Johansen | c88d4c7 | 2010-07-29 14:48:00 -0700 | [diff] [blame] | 395 | * |
| 396 | * Returns: unrefcounted profile ptr, or NULL if not found |
| 397 | */ |
| 398 | static struct aa_profile *__strn_find_child(struct list_head *head, |
| 399 | const char *name, int len) |
| 400 | { |
| 401 | return (struct aa_profile *)__policy_strn_find(head, name, len); |
| 402 | } |
| 403 | |
| 404 | /** |
| 405 | * aa_find_child - find a profile by @name in @parent |
| 406 | * @parent: profile to search (NOT NULL) |
| 407 | * @name: profile name to search for (NOT NULL) |
| 408 | * |
| 409 | * Returns: a refcounted profile or NULL if not found |
| 410 | */ |
| 411 | struct aa_profile *aa_find_child(struct aa_profile *parent, const char *name) |
| 412 | { |
| 413 | struct aa_profile *profile; |
| 414 | |
John Johansen | 01e2b67 | 2013-07-10 21:06:43 -0700 | [diff] [blame] | 415 | rcu_read_lock(); |
John Johansen | de7c4cc | 2015-12-16 18:09:10 -0800 | [diff] [blame] | 416 | do { |
| 417 | profile = __find_child(&parent->base.profiles, name); |
| 418 | } while (profile && !aa_get_profile_not0(profile)); |
John Johansen | 01e2b67 | 2013-07-10 21:06:43 -0700 | [diff] [blame] | 419 | rcu_read_unlock(); |
John Johansen | c88d4c7 | 2010-07-29 14:48:00 -0700 | [diff] [blame] | 420 | |
| 421 | /* refcount released by caller */ |
| 422 | return profile; |
| 423 | } |
| 424 | |
| 425 | /** |
| 426 | * __lookup_parent - lookup the parent of a profile of name @hname |
| 427 | * @ns: namespace to lookup profile in (NOT NULL) |
| 428 | * @hname: hierarchical profile name to find parent of (NOT NULL) |
| 429 | * |
| 430 | * Lookups up the parent of a fully qualified profile name, the profile |
| 431 | * that matches hname does not need to exist, in general this |
| 432 | * is used to load a new profile. |
| 433 | * |
John Johansen | 01e2b67 | 2013-07-10 21:06:43 -0700 | [diff] [blame] | 434 | * Requires: rcu_read_lock be held |
John Johansen | c88d4c7 | 2010-07-29 14:48:00 -0700 | [diff] [blame] | 435 | * |
| 436 | * Returns: unrefcounted policy or NULL if not found |
| 437 | */ |
John Johansen | 98849df | 2017-01-16 00:42:16 -0800 | [diff] [blame] | 438 | static struct aa_policy *__lookup_parent(struct aa_ns *ns, |
John Johansen | c88d4c7 | 2010-07-29 14:48:00 -0700 | [diff] [blame] | 439 | const char *hname) |
| 440 | { |
| 441 | struct aa_policy *policy; |
| 442 | struct aa_profile *profile = NULL; |
| 443 | char *split; |
| 444 | |
| 445 | policy = &ns->base; |
| 446 | |
| 447 | for (split = strstr(hname, "//"); split;) { |
| 448 | profile = __strn_find_child(&policy->profiles, hname, |
| 449 | split - hname); |
| 450 | if (!profile) |
| 451 | return NULL; |
| 452 | policy = &profile->base; |
| 453 | hname = split + 2; |
| 454 | split = strstr(hname, "//"); |
| 455 | } |
| 456 | if (!profile) |
| 457 | return &ns->base; |
| 458 | return &profile->base; |
| 459 | } |
| 460 | |
| 461 | /** |
John Johansen | 1741e9e | 2017-01-16 00:42:21 -0800 | [diff] [blame] | 462 | * __lookupn_profile - lookup the profile matching @hname |
John Johansen | c88d4c7 | 2010-07-29 14:48:00 -0700 | [diff] [blame] | 463 | * @base: base list to start looking up profile name from (NOT NULL) |
| 464 | * @hname: hierarchical profile name (NOT NULL) |
John Johansen | 1741e9e | 2017-01-16 00:42:21 -0800 | [diff] [blame] | 465 | * @n: length of @hname |
John Johansen | c88d4c7 | 2010-07-29 14:48:00 -0700 | [diff] [blame] | 466 | * |
John Johansen | 01e2b67 | 2013-07-10 21:06:43 -0700 | [diff] [blame] | 467 | * Requires: rcu_read_lock be held |
John Johansen | c88d4c7 | 2010-07-29 14:48:00 -0700 | [diff] [blame] | 468 | * |
| 469 | * Returns: unrefcounted profile pointer or NULL if not found |
| 470 | * |
| 471 | * Do a relative name lookup, recursing through profile tree. |
| 472 | */ |
John Johansen | 1741e9e | 2017-01-16 00:42:21 -0800 | [diff] [blame] | 473 | static struct aa_profile *__lookupn_profile(struct aa_policy *base, |
| 474 | const char *hname, size_t n) |
John Johansen | c88d4c7 | 2010-07-29 14:48:00 -0700 | [diff] [blame] | 475 | { |
| 476 | struct aa_profile *profile = NULL; |
John Johansen | 1741e9e | 2017-01-16 00:42:21 -0800 | [diff] [blame] | 477 | const char *split; |
John Johansen | c88d4c7 | 2010-07-29 14:48:00 -0700 | [diff] [blame] | 478 | |
John Johansen | 1741e9e | 2017-01-16 00:42:21 -0800 | [diff] [blame] | 479 | for (split = strnstr(hname, "//", n); split; |
| 480 | split = strnstr(hname, "//", n)) { |
John Johansen | c88d4c7 | 2010-07-29 14:48:00 -0700 | [diff] [blame] | 481 | profile = __strn_find_child(&base->profiles, hname, |
| 482 | split - hname); |
| 483 | if (!profile) |
| 484 | return NULL; |
| 485 | |
| 486 | base = &profile->base; |
John Johansen | 1741e9e | 2017-01-16 00:42:21 -0800 | [diff] [blame] | 487 | n -= split + 2 - hname; |
John Johansen | c88d4c7 | 2010-07-29 14:48:00 -0700 | [diff] [blame] | 488 | hname = split + 2; |
John Johansen | c88d4c7 | 2010-07-29 14:48:00 -0700 | [diff] [blame] | 489 | } |
| 490 | |
John Johansen | 1741e9e | 2017-01-16 00:42:21 -0800 | [diff] [blame] | 491 | if (n) |
| 492 | return __strn_find_child(&base->profiles, hname, n); |
| 493 | return NULL; |
| 494 | } |
John Johansen | c88d4c7 | 2010-07-29 14:48:00 -0700 | [diff] [blame] | 495 | |
John Johansen | 1741e9e | 2017-01-16 00:42:21 -0800 | [diff] [blame] | 496 | static struct aa_profile *__lookup_profile(struct aa_policy *base, |
| 497 | const char *hname) |
| 498 | { |
| 499 | return __lookupn_profile(base, hname, strlen(hname)); |
John Johansen | c88d4c7 | 2010-07-29 14:48:00 -0700 | [diff] [blame] | 500 | } |
| 501 | |
| 502 | /** |
| 503 | * aa_lookup_profile - find a profile by its full or partial name |
| 504 | * @ns: the namespace to start from (NOT NULL) |
| 505 | * @hname: name to do lookup on. Does not contain namespace prefix (NOT NULL) |
John Johansen | 1741e9e | 2017-01-16 00:42:21 -0800 | [diff] [blame] | 506 | * @n: size of @hname |
John Johansen | c88d4c7 | 2010-07-29 14:48:00 -0700 | [diff] [blame] | 507 | * |
| 508 | * Returns: refcounted profile or NULL if not found |
| 509 | */ |
John Johansen | 1741e9e | 2017-01-16 00:42:21 -0800 | [diff] [blame] | 510 | struct aa_profile *aa_lookupn_profile(struct aa_ns *ns, const char *hname, |
| 511 | size_t n) |
John Johansen | c88d4c7 | 2010-07-29 14:48:00 -0700 | [diff] [blame] | 512 | { |
| 513 | struct aa_profile *profile; |
| 514 | |
John Johansen | 01e2b67 | 2013-07-10 21:06:43 -0700 | [diff] [blame] | 515 | rcu_read_lock(); |
| 516 | do { |
John Johansen | 1741e9e | 2017-01-16 00:42:21 -0800 | [diff] [blame] | 517 | profile = __lookupn_profile(&ns->base, hname, n); |
John Johansen | 01e2b67 | 2013-07-10 21:06:43 -0700 | [diff] [blame] | 518 | } while (profile && !aa_get_profile_not0(profile)); |
| 519 | rcu_read_unlock(); |
John Johansen | c88d4c7 | 2010-07-29 14:48:00 -0700 | [diff] [blame] | 520 | |
John Johansen | bf83208 | 2012-05-16 11:00:05 -0700 | [diff] [blame] | 521 | /* the unconfined profile is not in the regular profile list */ |
John Johansen | 1741e9e | 2017-01-16 00:42:21 -0800 | [diff] [blame] | 522 | if (!profile && strncmp(hname, "unconfined", n) == 0) |
John Johansen | fa2ac46 | 2013-07-10 21:08:43 -0700 | [diff] [blame] | 523 | profile = aa_get_newest_profile(ns->unconfined); |
John Johansen | bf83208 | 2012-05-16 11:00:05 -0700 | [diff] [blame] | 524 | |
John Johansen | c88d4c7 | 2010-07-29 14:48:00 -0700 | [diff] [blame] | 525 | /* refcount released by caller */ |
| 526 | return profile; |
| 527 | } |
| 528 | |
John Johansen | 1741e9e | 2017-01-16 00:42:21 -0800 | [diff] [blame] | 529 | struct aa_profile *aa_lookup_profile(struct aa_ns *ns, const char *hname) |
| 530 | { |
| 531 | return aa_lookupn_profile(ns, hname, strlen(hname)); |
| 532 | } |
John Johansen | 31617dd | 2017-01-16 00:42:24 -0800 | [diff] [blame] | 533 | |
| 534 | struct aa_profile *aa_fqlookupn_profile(struct aa_profile *base, |
| 535 | const char *fqname, size_t n) |
| 536 | { |
| 537 | struct aa_profile *profile; |
| 538 | struct aa_ns *ns; |
| 539 | const char *name, *ns_name; |
| 540 | size_t ns_len; |
| 541 | |
| 542 | name = aa_splitn_fqname(fqname, n, &ns_name, &ns_len); |
| 543 | if (ns_name) { |
| 544 | ns = aa_findn_ns(base->ns, ns_name, ns_len); |
| 545 | if (!ns) |
| 546 | return NULL; |
| 547 | } else |
| 548 | ns = aa_get_ns(base->ns); |
| 549 | |
| 550 | if (name) |
| 551 | profile = aa_lookupn_profile(ns, name, n - (name - fqname)); |
| 552 | else if (ns) |
| 553 | /* default profile for ns, currently unconfined */ |
| 554 | profile = aa_get_newest_profile(ns->unconfined); |
| 555 | else |
| 556 | profile = NULL; |
| 557 | aa_put_ns(ns); |
| 558 | |
| 559 | return profile; |
| 560 | } |
| 561 | |
John Johansen | c88d4c7 | 2010-07-29 14:48:00 -0700 | [diff] [blame] | 562 | /** |
| 563 | * replacement_allowed - test to see if replacement is allowed |
| 564 | * @profile: profile to test if it can be replaced (MAYBE NULL) |
| 565 | * @noreplace: true if replacement shouldn't be allowed but addition is okay |
| 566 | * @info: Returns - info about why replacement failed (NOT NULL) |
| 567 | * |
| 568 | * Returns: %0 if replacement allowed else error code |
| 569 | */ |
| 570 | static int replacement_allowed(struct aa_profile *profile, int noreplace, |
| 571 | const char **info) |
| 572 | { |
| 573 | if (profile) { |
| 574 | if (profile->flags & PFLAG_IMMUTABLE) { |
| 575 | *info = "cannot replace immutible profile"; |
| 576 | return -EPERM; |
| 577 | } else if (noreplace) { |
| 578 | *info = "profile already exists"; |
| 579 | return -EEXIST; |
| 580 | } |
| 581 | } |
| 582 | return 0; |
| 583 | } |
| 584 | |
| 585 | /** |
John Johansen | c88d4c7 | 2010-07-29 14:48:00 -0700 | [diff] [blame] | 586 | * aa_audit_policy - Do auditing of policy changes |
John Johansen | a6f2330 | 2017-01-16 00:42:49 -0800 | [diff] [blame] | 587 | * @profile: profile to check if it can manage policy |
John Johansen | c88d4c7 | 2010-07-29 14:48:00 -0700 | [diff] [blame] | 588 | * @op: policy operation being performed |
| 589 | * @gfp: memory allocation flags |
| 590 | * @name: name of profile being manipulated (NOT NULL) |
| 591 | * @info: any extra information to be audited (MAYBE NULL) |
| 592 | * @error: error code |
| 593 | * |
| 594 | * Returns: the error to be returned after audit is done |
| 595 | */ |
John Johansen | a6f2330 | 2017-01-16 00:42:49 -0800 | [diff] [blame] | 596 | static int audit_policy(struct aa_profile *profile, int op, gfp_t gfp, |
| 597 | const char *name, const char *info, int error) |
John Johansen | c88d4c7 | 2010-07-29 14:48:00 -0700 | [diff] [blame] | 598 | { |
| 599 | struct common_audit_data sa; |
Eric Paris | 3b3b0e4 | 2012-04-03 09:37:02 -0700 | [diff] [blame] | 600 | struct apparmor_audit_data aad = {0,}; |
Eric Paris | 50c205f | 2012-04-04 15:01:43 -0400 | [diff] [blame] | 601 | sa.type = LSM_AUDIT_DATA_NONE; |
Eric Paris | 3b3b0e4 | 2012-04-03 09:37:02 -0700 | [diff] [blame] | 602 | sa.aad = &aad; |
| 603 | aad.op = op; |
| 604 | aad.name = name; |
| 605 | aad.info = info; |
| 606 | aad.error = error; |
John Johansen | c88d4c7 | 2010-07-29 14:48:00 -0700 | [diff] [blame] | 607 | |
John Johansen | a6f2330 | 2017-01-16 00:42:49 -0800 | [diff] [blame] | 608 | return aa_audit(AUDIT_APPARMOR_STATUS, profile, gfp, |
John Johansen | c88d4c7 | 2010-07-29 14:48:00 -0700 | [diff] [blame] | 609 | &sa, NULL); |
| 610 | } |
| 611 | |
John Johansen | 2bd8dbb | 2017-01-16 00:42:50 -0800 | [diff] [blame] | 612 | /** |
| 613 | * policy_view_capable - check if viewing policy in at @ns is allowed |
| 614 | * ns: namespace being viewed by current task (may be NULL) |
| 615 | * Returns: true if viewing policy is allowed |
| 616 | * |
| 617 | * If @ns is NULL then the namespace being viewed is assumed to be the |
| 618 | * tasks current namespace. |
| 619 | */ |
| 620 | bool policy_view_capable(struct aa_ns *ns) |
John Johansen | 58acf9d | 2016-06-22 18:01:08 -0700 | [diff] [blame] | 621 | { |
| 622 | struct user_namespace *user_ns = current_user_ns(); |
John Johansen | 2bd8dbb | 2017-01-16 00:42:50 -0800 | [diff] [blame] | 623 | struct aa_ns *view_ns = aa_get_current_ns(); |
| 624 | bool root_in_user_ns = uid_eq(current_euid(), make_kuid(user_ns, 0)) || |
| 625 | in_egroup_p(make_kgid(user_ns, 0)); |
John Johansen | 58acf9d | 2016-06-22 18:01:08 -0700 | [diff] [blame] | 626 | bool response = false; |
John Johansen | 2bd8dbb | 2017-01-16 00:42:50 -0800 | [diff] [blame] | 627 | if (!ns) |
| 628 | ns = view_ns; |
John Johansen | 58acf9d | 2016-06-22 18:01:08 -0700 | [diff] [blame] | 629 | |
John Johansen | 2bd8dbb | 2017-01-16 00:42:50 -0800 | [diff] [blame] | 630 | if (root_in_user_ns && aa_ns_visible(view_ns, ns, true) && |
| 631 | (user_ns == &init_user_ns || |
| 632 | (unprivileged_userns_apparmor_policy != 0 && |
| 633 | user_ns->level == view_ns->level))) |
John Johansen | 58acf9d | 2016-06-22 18:01:08 -0700 | [diff] [blame] | 634 | response = true; |
John Johansen | 2bd8dbb | 2017-01-16 00:42:50 -0800 | [diff] [blame] | 635 | aa_put_ns(view_ns); |
John Johansen | 58acf9d | 2016-06-22 18:01:08 -0700 | [diff] [blame] | 636 | |
| 637 | return response; |
| 638 | } |
| 639 | |
John Johansen | fd2a804 | 2017-01-16 00:42:51 -0800 | [diff] [blame^] | 640 | bool policy_admin_capable(struct aa_ns *ns) |
John Johansen | 58acf9d | 2016-06-22 18:01:08 -0700 | [diff] [blame] | 641 | { |
John Johansen | fd2a804 | 2017-01-16 00:42:51 -0800 | [diff] [blame^] | 642 | struct user_namespace *user_ns = current_user_ns(); |
| 643 | bool capable = ns_capable(user_ns, CAP_MAC_ADMIN); |
| 644 | |
| 645 | AA_DEBUG("cap_mac_admin? %d\n", capable); |
| 646 | AA_DEBUG("policy locked? %d\n", aa_g_lock_policy); |
| 647 | |
| 648 | return policy_view_capable(ns) && capable && !aa_g_lock_policy; |
John Johansen | 58acf9d | 2016-06-22 18:01:08 -0700 | [diff] [blame] | 649 | } |
| 650 | |
John Johansen | c88d4c7 | 2010-07-29 14:48:00 -0700 | [diff] [blame] | 651 | /** |
| 652 | * aa_may_manage_policy - can the current task manage policy |
| 653 | * @op: the policy manipulation operation being done |
| 654 | * |
| 655 | * Returns: true if the task is allowed to manipulate policy |
| 656 | */ |
| 657 | bool aa_may_manage_policy(int op) |
| 658 | { |
| 659 | /* check if loading policy is locked out */ |
| 660 | if (aa_g_lock_policy) { |
John Johansen | a6f2330 | 2017-01-16 00:42:49 -0800 | [diff] [blame] | 661 | audit_policy(__aa_current_profile(), op, GFP_KERNEL, NULL, |
| 662 | "policy_locked", -EACCES); |
John Johansen | c88d4c7 | 2010-07-29 14:48:00 -0700 | [diff] [blame] | 663 | return 0; |
| 664 | } |
| 665 | |
John Johansen | fd2a804 | 2017-01-16 00:42:51 -0800 | [diff] [blame^] | 666 | if (!policy_admin_capable(NULL)) { |
John Johansen | a6f2330 | 2017-01-16 00:42:49 -0800 | [diff] [blame] | 667 | audit_policy(__aa_current_profile(), op, GFP_KERNEL, NULL, |
| 668 | "not policy admin", -EACCES); |
John Johansen | c88d4c7 | 2010-07-29 14:48:00 -0700 | [diff] [blame] | 669 | return 0; |
| 670 | } |
| 671 | |
| 672 | return 1; |
| 673 | } |
| 674 | |
John Johansen | dd51c848 | 2013-07-10 21:05:43 -0700 | [diff] [blame] | 675 | static struct aa_profile *__list_lookup_parent(struct list_head *lh, |
| 676 | struct aa_profile *profile) |
| 677 | { |
John Johansen | 6e474e3 | 2017-01-16 00:42:29 -0800 | [diff] [blame] | 678 | const char *base = basename(profile->base.hname); |
John Johansen | dd51c848 | 2013-07-10 21:05:43 -0700 | [diff] [blame] | 679 | long len = base - profile->base.hname; |
| 680 | struct aa_load_ent *ent; |
| 681 | |
| 682 | /* parent won't have trailing // so remove from len */ |
| 683 | if (len <= 2) |
| 684 | return NULL; |
| 685 | len -= 2; |
| 686 | |
| 687 | list_for_each_entry(ent, lh, list) { |
| 688 | if (ent->new == profile) |
| 689 | continue; |
| 690 | if (strncmp(ent->new->base.hname, profile->base.hname, len) == |
| 691 | 0 && ent->new->base.hname[len] == 0) |
| 692 | return ent->new; |
| 693 | } |
| 694 | |
| 695 | return NULL; |
| 696 | } |
| 697 | |
| 698 | /** |
| 699 | * __replace_profile - replace @old with @new on a list |
| 700 | * @old: profile to be replaced (NOT NULL) |
| 701 | * @new: profile to replace @old with (NOT NULL) |
John Johansen | 8399588 | 2017-01-16 00:42:19 -0800 | [diff] [blame] | 702 | * @share_proxy: transfer @old->proxy to @new |
John Johansen | dd51c848 | 2013-07-10 21:05:43 -0700 | [diff] [blame] | 703 | * |
| 704 | * Will duplicate and refcount elements that @new inherits from @old |
| 705 | * and will inherit @old children. |
| 706 | * |
| 707 | * refcount @new for list, put @old list refcount |
| 708 | * |
| 709 | * Requires: namespace list lock be held, or list not be shared |
| 710 | */ |
John Johansen | 77b071b | 2013-07-10 21:07:43 -0700 | [diff] [blame] | 711 | static void __replace_profile(struct aa_profile *old, struct aa_profile *new, |
John Johansen | 8399588 | 2017-01-16 00:42:19 -0800 | [diff] [blame] | 712 | bool share_proxy) |
John Johansen | dd51c848 | 2013-07-10 21:05:43 -0700 | [diff] [blame] | 713 | { |
| 714 | struct aa_profile *child, *tmp; |
| 715 | |
| 716 | if (!list_empty(&old->base.profiles)) { |
| 717 | LIST_HEAD(lh); |
John Johansen | 01e2b67 | 2013-07-10 21:06:43 -0700 | [diff] [blame] | 718 | list_splice_init_rcu(&old->base.profiles, &lh, synchronize_rcu); |
John Johansen | dd51c848 | 2013-07-10 21:05:43 -0700 | [diff] [blame] | 719 | |
| 720 | list_for_each_entry_safe(child, tmp, &lh, base.list) { |
| 721 | struct aa_profile *p; |
| 722 | |
| 723 | list_del_init(&child->base.list); |
| 724 | p = __find_child(&new->base.profiles, child->base.name); |
| 725 | if (p) { |
| 726 | /* @p replaces @child */ |
John Johansen | 8399588 | 2017-01-16 00:42:19 -0800 | [diff] [blame] | 727 | __replace_profile(child, p, share_proxy); |
John Johansen | dd51c848 | 2013-07-10 21:05:43 -0700 | [diff] [blame] | 728 | continue; |
| 729 | } |
| 730 | |
| 731 | /* inherit @child and its children */ |
| 732 | /* TODO: update hname of inherited children */ |
| 733 | /* list refcount transferred to @new */ |
John Johansen | 0d259f0 | 2013-07-10 21:13:43 -0700 | [diff] [blame] | 734 | p = aa_deref_parent(child); |
John Johansen | 01e2b67 | 2013-07-10 21:06:43 -0700 | [diff] [blame] | 735 | rcu_assign_pointer(child->parent, aa_get_profile(new)); |
| 736 | list_add_rcu(&child->base.list, &new->base.profiles); |
| 737 | aa_put_profile(p); |
John Johansen | dd51c848 | 2013-07-10 21:05:43 -0700 | [diff] [blame] | 738 | } |
| 739 | } |
| 740 | |
John Johansen | 01e2b67 | 2013-07-10 21:06:43 -0700 | [diff] [blame] | 741 | if (!rcu_access_pointer(new->parent)) { |
John Johansen | 0d259f0 | 2013-07-10 21:13:43 -0700 | [diff] [blame] | 742 | struct aa_profile *parent = aa_deref_parent(old); |
John Johansen | 01e2b67 | 2013-07-10 21:06:43 -0700 | [diff] [blame] | 743 | rcu_assign_pointer(new->parent, aa_get_profile(parent)); |
| 744 | } |
John Johansen | 8399588 | 2017-01-16 00:42:19 -0800 | [diff] [blame] | 745 | __aa_update_proxy(old, new); |
| 746 | if (share_proxy) { |
| 747 | aa_put_proxy(new->proxy); |
| 748 | new->proxy = aa_get_proxy(old->proxy); |
| 749 | } else if (!rcu_access_pointer(new->proxy->profile)) |
| 750 | /* aafs interface uses proxy */ |
| 751 | rcu_assign_pointer(new->proxy->profile, |
John Johansen | 0d259f0 | 2013-07-10 21:13:43 -0700 | [diff] [blame] | 752 | aa_get_profile(new)); |
| 753 | __aa_fs_profile_migrate_dents(old, new); |
John Johansen | dd51c848 | 2013-07-10 21:05:43 -0700 | [diff] [blame] | 754 | |
| 755 | if (list_empty(&new->base.list)) { |
| 756 | /* new is not on a list already */ |
John Johansen | 01e2b67 | 2013-07-10 21:06:43 -0700 | [diff] [blame] | 757 | list_replace_rcu(&old->base.list, &new->base.list); |
John Johansen | dd51c848 | 2013-07-10 21:05:43 -0700 | [diff] [blame] | 758 | aa_get_profile(new); |
| 759 | aa_put_profile(old); |
| 760 | } else |
| 761 | __list_remove_profile(old); |
| 762 | } |
| 763 | |
| 764 | /** |
| 765 | * __lookup_replace - lookup replacement information for a profile |
| 766 | * @ns - namespace the lookup occurs in |
| 767 | * @hname - name of profile to lookup |
| 768 | * @noreplace - true if not replacing an existing profile |
| 769 | * @p - Returns: profile to be replaced |
| 770 | * @info - Returns: info string on why lookup failed |
| 771 | * |
| 772 | * Returns: profile to replace (no ref) on success else ptr error |
| 773 | */ |
John Johansen | 98849df | 2017-01-16 00:42:16 -0800 | [diff] [blame] | 774 | static int __lookup_replace(struct aa_ns *ns, const char *hname, |
John Johansen | dd51c848 | 2013-07-10 21:05:43 -0700 | [diff] [blame] | 775 | bool noreplace, struct aa_profile **p, |
| 776 | const char **info) |
| 777 | { |
| 778 | *p = aa_get_profile(__lookup_profile(&ns->base, hname)); |
| 779 | if (*p) { |
| 780 | int error = replacement_allowed(*p, noreplace, info); |
| 781 | if (error) { |
| 782 | *info = "profile can not be replaced"; |
| 783 | return error; |
| 784 | } |
| 785 | } |
| 786 | |
| 787 | return 0; |
| 788 | } |
| 789 | |
John Johansen | c88d4c7 | 2010-07-29 14:48:00 -0700 | [diff] [blame] | 790 | /** |
| 791 | * aa_replace_profiles - replace profile(s) on the profile list |
John Johansen | 73688d1 | 2017-01-16 00:42:34 -0800 | [diff] [blame] | 792 | * @view: namespace load is viewed from |
John Johansen | a6f2330 | 2017-01-16 00:42:49 -0800 | [diff] [blame] | 793 | * @profile: profile that is attempting to load/replace policy |
John Johansen | c88d4c7 | 2010-07-29 14:48:00 -0700 | [diff] [blame] | 794 | * @udata: serialized data stream (NOT NULL) |
| 795 | * @size: size of the serialized data stream |
| 796 | * @noreplace: true if only doing addition, no replacement allowed |
| 797 | * |
| 798 | * unpack and replace a profile on the profile list and uses of that profile |
| 799 | * by any aa_task_cxt. If the profile does not exist on the profile list |
| 800 | * it is added. |
| 801 | * |
| 802 | * Returns: size of data consumed else error code on failure. |
| 803 | */ |
John Johansen | 73688d1 | 2017-01-16 00:42:34 -0800 | [diff] [blame] | 804 | ssize_t aa_replace_profiles(struct aa_ns *view, void *udata, size_t size, |
| 805 | bool noreplace) |
John Johansen | c88d4c7 | 2010-07-29 14:48:00 -0700 | [diff] [blame] | 806 | { |
John Johansen | bf15cf0 | 2016-04-16 14:16:50 -0700 | [diff] [blame] | 807 | const char *ns_name, *info = NULL; |
John Johansen | 98849df | 2017-01-16 00:42:16 -0800 | [diff] [blame] | 808 | struct aa_ns *ns = NULL; |
John Johansen | dd51c848 | 2013-07-10 21:05:43 -0700 | [diff] [blame] | 809 | struct aa_load_ent *ent, *tmp; |
John Johansen | c88d4c7 | 2010-07-29 14:48:00 -0700 | [diff] [blame] | 810 | int op = OP_PROF_REPL; |
| 811 | ssize_t error; |
John Johansen | dd51c848 | 2013-07-10 21:05:43 -0700 | [diff] [blame] | 812 | LIST_HEAD(lh); |
John Johansen | c88d4c7 | 2010-07-29 14:48:00 -0700 | [diff] [blame] | 813 | |
| 814 | /* released below */ |
John Johansen | dd51c848 | 2013-07-10 21:05:43 -0700 | [diff] [blame] | 815 | error = aa_unpack(udata, size, &lh, &ns_name); |
| 816 | if (error) |
| 817 | goto out; |
John Johansen | c88d4c7 | 2010-07-29 14:48:00 -0700 | [diff] [blame] | 818 | |
| 819 | /* released below */ |
John Johansen | 73688d1 | 2017-01-16 00:42:34 -0800 | [diff] [blame] | 820 | ns = aa_prepare_ns(view, ns_name); |
John Johansen | c88d4c7 | 2010-07-29 14:48:00 -0700 | [diff] [blame] | 821 | if (!ns) { |
John Johansen | a6f2330 | 2017-01-16 00:42:49 -0800 | [diff] [blame] | 822 | error = audit_policy(__aa_current_profile(), op, GFP_KERNEL, |
| 823 | ns_name, |
John Johansen | bf15cf0 | 2016-04-16 14:16:50 -0700 | [diff] [blame] | 824 | "failed to prepare namespace", -ENOMEM); |
| 825 | goto free; |
John Johansen | c88d4c7 | 2010-07-29 14:48:00 -0700 | [diff] [blame] | 826 | } |
| 827 | |
John Johansen | 01e2b67 | 2013-07-10 21:06:43 -0700 | [diff] [blame] | 828 | mutex_lock(&ns->lock); |
John Johansen | dd51c848 | 2013-07-10 21:05:43 -0700 | [diff] [blame] | 829 | /* setup parent and ns info */ |
| 830 | list_for_each_entry(ent, &lh, list) { |
| 831 | struct aa_policy *policy; |
John Johansen | dd51c848 | 2013-07-10 21:05:43 -0700 | [diff] [blame] | 832 | error = __lookup_replace(ns, ent->new->base.hname, noreplace, |
| 833 | &ent->old, &info); |
| 834 | if (error) |
| 835 | goto fail_lock; |
John Johansen | c88d4c7 | 2010-07-29 14:48:00 -0700 | [diff] [blame] | 836 | |
John Johansen | dd51c848 | 2013-07-10 21:05:43 -0700 | [diff] [blame] | 837 | if (ent->new->rename) { |
| 838 | error = __lookup_replace(ns, ent->new->rename, |
| 839 | noreplace, &ent->rename, |
| 840 | &info); |
| 841 | if (error) |
| 842 | goto fail_lock; |
John Johansen | c88d4c7 | 2010-07-29 14:48:00 -0700 | [diff] [blame] | 843 | } |
John Johansen | dd51c848 | 2013-07-10 21:05:43 -0700 | [diff] [blame] | 844 | |
| 845 | /* released when @new is freed */ |
John Johansen | 98849df | 2017-01-16 00:42:16 -0800 | [diff] [blame] | 846 | ent->new->ns = aa_get_ns(ns); |
John Johansen | dd51c848 | 2013-07-10 21:05:43 -0700 | [diff] [blame] | 847 | |
| 848 | if (ent->old || ent->rename) |
| 849 | continue; |
| 850 | |
| 851 | /* no ref on policy only use inside lock */ |
| 852 | policy = __lookup_parent(ns, ent->new->base.hname); |
| 853 | if (!policy) { |
| 854 | struct aa_profile *p; |
| 855 | p = __list_lookup_parent(&lh, ent->new); |
| 856 | if (!p) { |
| 857 | error = -ENOENT; |
| 858 | info = "parent does not exist"; |
John Johansen | dd51c848 | 2013-07-10 21:05:43 -0700 | [diff] [blame] | 859 | goto fail_lock; |
| 860 | } |
John Johansen | 01e2b67 | 2013-07-10 21:06:43 -0700 | [diff] [blame] | 861 | rcu_assign_pointer(ent->new->parent, aa_get_profile(p)); |
| 862 | } else if (policy != &ns->base) { |
John Johansen | dd51c848 | 2013-07-10 21:05:43 -0700 | [diff] [blame] | 863 | /* released on profile replacement or free_profile */ |
John Johansen | 01e2b67 | 2013-07-10 21:06:43 -0700 | [diff] [blame] | 864 | struct aa_profile *p = (struct aa_profile *) policy; |
| 865 | rcu_assign_pointer(ent->new->parent, aa_get_profile(p)); |
| 866 | } |
John Johansen | c88d4c7 | 2010-07-29 14:48:00 -0700 | [diff] [blame] | 867 | } |
| 868 | |
John Johansen | 0d259f0 | 2013-07-10 21:13:43 -0700 | [diff] [blame] | 869 | /* create new fs entries for introspection if needed */ |
| 870 | list_for_each_entry(ent, &lh, list) { |
| 871 | if (ent->old) { |
| 872 | /* inherit old interface files */ |
| 873 | |
| 874 | /* if (ent->rename) |
| 875 | TODO: support rename */ |
| 876 | /* } else if (ent->rename) { |
| 877 | TODO: support rename */ |
| 878 | } else { |
| 879 | struct dentry *parent; |
| 880 | if (rcu_access_pointer(ent->new->parent)) { |
| 881 | struct aa_profile *p; |
| 882 | p = aa_deref_parent(ent->new); |
| 883 | parent = prof_child_dir(p); |
| 884 | } else |
| 885 | parent = ns_subprofs_dir(ent->new->ns); |
| 886 | error = __aa_fs_profile_mkdir(ent->new, parent); |
| 887 | } |
| 888 | |
| 889 | if (error) { |
| 890 | info = "failed to create "; |
| 891 | goto fail_lock; |
| 892 | } |
| 893 | } |
| 894 | |
| 895 | /* Done with checks that may fail - do actual replacement */ |
John Johansen | dd51c848 | 2013-07-10 21:05:43 -0700 | [diff] [blame] | 896 | list_for_each_entry_safe(ent, tmp, &lh, list) { |
| 897 | list_del_init(&ent->list); |
| 898 | op = (!ent->old && !ent->rename) ? OP_PROF_LOAD : OP_PROF_REPL; |
John Johansen | c88d4c7 | 2010-07-29 14:48:00 -0700 | [diff] [blame] | 899 | |
John Johansen | a6f2330 | 2017-01-16 00:42:49 -0800 | [diff] [blame] | 900 | audit_policy(__aa_current_profile(), op, GFP_ATOMIC, |
| 901 | ent->new->base.hname, NULL, error); |
John Johansen | c88d4c7 | 2010-07-29 14:48:00 -0700 | [diff] [blame] | 902 | |
John Johansen | dd51c848 | 2013-07-10 21:05:43 -0700 | [diff] [blame] | 903 | if (ent->old) { |
John Johansen | 77b071b | 2013-07-10 21:07:43 -0700 | [diff] [blame] | 904 | __replace_profile(ent->old, ent->new, 1); |
John Johansen | 0d259f0 | 2013-07-10 21:13:43 -0700 | [diff] [blame] | 905 | if (ent->rename) { |
John Johansen | 8399588 | 2017-01-16 00:42:19 -0800 | [diff] [blame] | 906 | /* aafs interface uses proxy */ |
| 907 | struct aa_proxy *r = ent->new->proxy; |
John Johansen | 0d259f0 | 2013-07-10 21:13:43 -0700 | [diff] [blame] | 908 | rcu_assign_pointer(r->profile, |
| 909 | aa_get_profile(ent->new)); |
John Johansen | 77b071b | 2013-07-10 21:07:43 -0700 | [diff] [blame] | 910 | __replace_profile(ent->rename, ent->new, 0); |
John Johansen | 0d259f0 | 2013-07-10 21:13:43 -0700 | [diff] [blame] | 911 | } |
John Johansen | dd51c848 | 2013-07-10 21:05:43 -0700 | [diff] [blame] | 912 | } else if (ent->rename) { |
John Johansen | 8399588 | 2017-01-16 00:42:19 -0800 | [diff] [blame] | 913 | /* aafs interface uses proxy */ |
| 914 | rcu_assign_pointer(ent->new->proxy->profile, |
John Johansen | 0d259f0 | 2013-07-10 21:13:43 -0700 | [diff] [blame] | 915 | aa_get_profile(ent->new)); |
John Johansen | 77b071b | 2013-07-10 21:07:43 -0700 | [diff] [blame] | 916 | __replace_profile(ent->rename, ent->new, 0); |
John Johansen | dd51c848 | 2013-07-10 21:05:43 -0700 | [diff] [blame] | 917 | } else if (ent->new->parent) { |
John Johansen | 01e2b67 | 2013-07-10 21:06:43 -0700 | [diff] [blame] | 918 | struct aa_profile *parent, *newest; |
John Johansen | 0d259f0 | 2013-07-10 21:13:43 -0700 | [diff] [blame] | 919 | parent = aa_deref_parent(ent->new); |
John Johansen | 77b071b | 2013-07-10 21:07:43 -0700 | [diff] [blame] | 920 | newest = aa_get_newest_profile(parent); |
John Johansen | 01e2b67 | 2013-07-10 21:06:43 -0700 | [diff] [blame] | 921 | |
John Johansen | dd51c848 | 2013-07-10 21:05:43 -0700 | [diff] [blame] | 922 | /* parent replaced in this atomic set? */ |
John Johansen | 01e2b67 | 2013-07-10 21:06:43 -0700 | [diff] [blame] | 923 | if (newest != parent) { |
| 924 | aa_get_profile(newest); |
John Johansen | 01e2b67 | 2013-07-10 21:06:43 -0700 | [diff] [blame] | 925 | rcu_assign_pointer(ent->new->parent, newest); |
John Johansen | f351841 | 2016-04-16 13:59:02 -0700 | [diff] [blame] | 926 | aa_put_profile(parent); |
John Johansen | dcda617 | 2016-04-11 16:55:10 -0700 | [diff] [blame] | 927 | } |
John Johansen | 8399588 | 2017-01-16 00:42:19 -0800 | [diff] [blame] | 928 | /* aafs interface uses proxy */ |
| 929 | rcu_assign_pointer(ent->new->proxy->profile, |
John Johansen | 0d259f0 | 2013-07-10 21:13:43 -0700 | [diff] [blame] | 930 | aa_get_profile(ent->new)); |
John Johansen | ec34fa2 | 2016-04-11 16:57:19 -0700 | [diff] [blame] | 931 | __list_add_profile(&newest->base.profiles, ent->new); |
John Johansen | dcda617 | 2016-04-11 16:55:10 -0700 | [diff] [blame] | 932 | aa_put_profile(newest); |
John Johansen | 0d259f0 | 2013-07-10 21:13:43 -0700 | [diff] [blame] | 933 | } else { |
John Johansen | 8399588 | 2017-01-16 00:42:19 -0800 | [diff] [blame] | 934 | /* aafs interface uses proxy */ |
| 935 | rcu_assign_pointer(ent->new->proxy->profile, |
John Johansen | 0d259f0 | 2013-07-10 21:13:43 -0700 | [diff] [blame] | 936 | aa_get_profile(ent->new)); |
John Johansen | dd51c848 | 2013-07-10 21:05:43 -0700 | [diff] [blame] | 937 | __list_add_profile(&ns->base.profiles, ent->new); |
John Johansen | 0d259f0 | 2013-07-10 21:13:43 -0700 | [diff] [blame] | 938 | } |
John Johansen | dd51c848 | 2013-07-10 21:05:43 -0700 | [diff] [blame] | 939 | aa_load_ent_free(ent); |
John Johansen | c88d4c7 | 2010-07-29 14:48:00 -0700 | [diff] [blame] | 940 | } |
John Johansen | 01e2b67 | 2013-07-10 21:06:43 -0700 | [diff] [blame] | 941 | mutex_unlock(&ns->lock); |
John Johansen | c88d4c7 | 2010-07-29 14:48:00 -0700 | [diff] [blame] | 942 | |
| 943 | out: |
John Johansen | 98849df | 2017-01-16 00:42:16 -0800 | [diff] [blame] | 944 | aa_put_ns(ns); |
John Johansen | dd51c848 | 2013-07-10 21:05:43 -0700 | [diff] [blame] | 945 | |
John Johansen | c88d4c7 | 2010-07-29 14:48:00 -0700 | [diff] [blame] | 946 | if (error) |
| 947 | return error; |
| 948 | return size; |
| 949 | |
John Johansen | dd51c848 | 2013-07-10 21:05:43 -0700 | [diff] [blame] | 950 | fail_lock: |
John Johansen | 01e2b67 | 2013-07-10 21:06:43 -0700 | [diff] [blame] | 951 | mutex_unlock(&ns->lock); |
John Johansen | dd51c848 | 2013-07-10 21:05:43 -0700 | [diff] [blame] | 952 | |
John Johansen | bf15cf0 | 2016-04-16 14:16:50 -0700 | [diff] [blame] | 953 | /* audit cause of failure */ |
| 954 | op = (!ent->old) ? OP_PROF_LOAD : OP_PROF_REPL; |
John Johansen | a6f2330 | 2017-01-16 00:42:49 -0800 | [diff] [blame] | 955 | audit_policy(__aa_current_profile(), op, GFP_KERNEL, |
| 956 | ent->new->base.hname, info, error); |
John Johansen | bf15cf0 | 2016-04-16 14:16:50 -0700 | [diff] [blame] | 957 | /* audit status that rest of profiles in the atomic set failed too */ |
| 958 | info = "valid profile in failed atomic policy load"; |
| 959 | list_for_each_entry(tmp, &lh, list) { |
| 960 | if (tmp == ent) { |
| 961 | info = "unchecked profile in failed atomic policy load"; |
| 962 | /* skip entry that caused failure */ |
| 963 | continue; |
| 964 | } |
| 965 | op = (!ent->old) ? OP_PROF_LOAD : OP_PROF_REPL; |
John Johansen | a6f2330 | 2017-01-16 00:42:49 -0800 | [diff] [blame] | 966 | audit_policy(__aa_current_profile(), op, GFP_KERNEL, |
| 967 | tmp->new->base.hname, info, error); |
John Johansen | bf15cf0 | 2016-04-16 14:16:50 -0700 | [diff] [blame] | 968 | } |
| 969 | free: |
John Johansen | dd51c848 | 2013-07-10 21:05:43 -0700 | [diff] [blame] | 970 | list_for_each_entry_safe(ent, tmp, &lh, list) { |
| 971 | list_del_init(&ent->list); |
| 972 | aa_load_ent_free(ent); |
| 973 | } |
| 974 | |
John Johansen | c88d4c7 | 2010-07-29 14:48:00 -0700 | [diff] [blame] | 975 | goto out; |
| 976 | } |
| 977 | |
| 978 | /** |
| 979 | * aa_remove_profiles - remove profile(s) from the system |
John Johansen | b79473f | 2017-01-16 00:42:47 -0800 | [diff] [blame] | 980 | * @view: namespace the remove is being done from |
John Johansen | c88d4c7 | 2010-07-29 14:48:00 -0700 | [diff] [blame] | 981 | * @fqname: name of the profile or namespace to remove (NOT NULL) |
| 982 | * @size: size of the name |
| 983 | * |
| 984 | * Remove a profile or sub namespace from the current namespace, so that |
| 985 | * they can not be found anymore and mark them as replaced by unconfined |
| 986 | * |
| 987 | * NOTE: removing confinement does not restore rlimits to preconfinemnet values |
| 988 | * |
| 989 | * Returns: size of data consume else error code if fails |
| 990 | */ |
John Johansen | b79473f | 2017-01-16 00:42:47 -0800 | [diff] [blame] | 991 | ssize_t aa_remove_profiles(struct aa_ns *view, char *fqname, size_t size) |
John Johansen | c88d4c7 | 2010-07-29 14:48:00 -0700 | [diff] [blame] | 992 | { |
John Johansen | b79473f | 2017-01-16 00:42:47 -0800 | [diff] [blame] | 993 | struct aa_ns *root = NULL, *ns = NULL; |
John Johansen | c88d4c7 | 2010-07-29 14:48:00 -0700 | [diff] [blame] | 994 | struct aa_profile *profile = NULL; |
| 995 | const char *name = fqname, *info = NULL; |
| 996 | ssize_t error = 0; |
| 997 | |
| 998 | if (*fqname == 0) { |
| 999 | info = "no profile specified"; |
| 1000 | error = -ENOENT; |
| 1001 | goto fail; |
| 1002 | } |
| 1003 | |
John Johansen | b79473f | 2017-01-16 00:42:47 -0800 | [diff] [blame] | 1004 | root = view; |
John Johansen | c88d4c7 | 2010-07-29 14:48:00 -0700 | [diff] [blame] | 1005 | |
| 1006 | if (fqname[0] == ':') { |
| 1007 | char *ns_name; |
| 1008 | name = aa_split_fqname(fqname, &ns_name); |
John Johansen | 41d1b3e | 2013-02-21 01:14:17 -0800 | [diff] [blame] | 1009 | /* released below */ |
John Johansen | 98849df | 2017-01-16 00:42:16 -0800 | [diff] [blame] | 1010 | ns = aa_find_ns(root, ns_name); |
John Johansen | 41d1b3e | 2013-02-21 01:14:17 -0800 | [diff] [blame] | 1011 | if (!ns) { |
| 1012 | info = "namespace does not exist"; |
| 1013 | error = -ENOENT; |
| 1014 | goto fail; |
John Johansen | c88d4c7 | 2010-07-29 14:48:00 -0700 | [diff] [blame] | 1015 | } |
| 1016 | } else |
| 1017 | /* released below */ |
John Johansen | 98849df | 2017-01-16 00:42:16 -0800 | [diff] [blame] | 1018 | ns = aa_get_ns(root); |
John Johansen | c88d4c7 | 2010-07-29 14:48:00 -0700 | [diff] [blame] | 1019 | |
John Johansen | c88d4c7 | 2010-07-29 14:48:00 -0700 | [diff] [blame] | 1020 | if (!name) { |
| 1021 | /* remove namespace - can only happen if fqname[0] == ':' */ |
John Johansen | 01e2b67 | 2013-07-10 21:06:43 -0700 | [diff] [blame] | 1022 | mutex_lock(&ns->parent->lock); |
John Johansen | 98849df | 2017-01-16 00:42:16 -0800 | [diff] [blame] | 1023 | __aa_remove_ns(ns); |
John Johansen | 01e2b67 | 2013-07-10 21:06:43 -0700 | [diff] [blame] | 1024 | mutex_unlock(&ns->parent->lock); |
John Johansen | c88d4c7 | 2010-07-29 14:48:00 -0700 | [diff] [blame] | 1025 | } else { |
| 1026 | /* remove profile */ |
John Johansen | 01e2b67 | 2013-07-10 21:06:43 -0700 | [diff] [blame] | 1027 | mutex_lock(&ns->lock); |
John Johansen | c88d4c7 | 2010-07-29 14:48:00 -0700 | [diff] [blame] | 1028 | profile = aa_get_profile(__lookup_profile(&ns->base, name)); |
| 1029 | if (!profile) { |
| 1030 | error = -ENOENT; |
| 1031 | info = "profile does not exist"; |
| 1032 | goto fail_ns_lock; |
| 1033 | } |
| 1034 | name = profile->base.hname; |
| 1035 | __remove_profile(profile); |
John Johansen | 01e2b67 | 2013-07-10 21:06:43 -0700 | [diff] [blame] | 1036 | mutex_unlock(&ns->lock); |
John Johansen | c88d4c7 | 2010-07-29 14:48:00 -0700 | [diff] [blame] | 1037 | } |
John Johansen | c88d4c7 | 2010-07-29 14:48:00 -0700 | [diff] [blame] | 1038 | |
| 1039 | /* don't fail removal if audit fails */ |
John Johansen | a6f2330 | 2017-01-16 00:42:49 -0800 | [diff] [blame] | 1040 | (void) audit_policy(__aa_current_profile(), OP_PROF_RM, GFP_KERNEL, |
| 1041 | name, info, error); |
John Johansen | 98849df | 2017-01-16 00:42:16 -0800 | [diff] [blame] | 1042 | aa_put_ns(ns); |
John Johansen | c88d4c7 | 2010-07-29 14:48:00 -0700 | [diff] [blame] | 1043 | aa_put_profile(profile); |
| 1044 | return size; |
| 1045 | |
| 1046 | fail_ns_lock: |
John Johansen | 01e2b67 | 2013-07-10 21:06:43 -0700 | [diff] [blame] | 1047 | mutex_unlock(&ns->lock); |
John Johansen | 98849df | 2017-01-16 00:42:16 -0800 | [diff] [blame] | 1048 | aa_put_ns(ns); |
John Johansen | c88d4c7 | 2010-07-29 14:48:00 -0700 | [diff] [blame] | 1049 | |
| 1050 | fail: |
John Johansen | a6f2330 | 2017-01-16 00:42:49 -0800 | [diff] [blame] | 1051 | (void) audit_policy(__aa_current_profile(), OP_PROF_RM, GFP_KERNEL, |
| 1052 | name, info, error); |
John Johansen | c88d4c7 | 2010-07-29 14:48:00 -0700 | [diff] [blame] | 1053 | return error; |
| 1054 | } |