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> |
Ingo Molnar | 5b825c3 | 2017-02-02 17:54:15 +0100 | [diff] [blame] | 79 | #include <linux/cred.h> |
Ingo Molnar | b2d0910 | 2017-02-04 01:27:20 +0100 | [diff] [blame] | 80 | #include <linux/rculist.h> |
John Johansen | 2bd8dbb | 2017-01-16 00:42:50 -0800 | [diff] [blame] | 81 | #include <linux/user_namespace.h> |
John Johansen | c88d4c7 | 2010-07-29 14:48:00 -0700 | [diff] [blame] | 82 | |
| 83 | #include "include/apparmor.h" |
| 84 | #include "include/capability.h" |
| 85 | #include "include/context.h" |
| 86 | #include "include/file.h" |
| 87 | #include "include/ipc.h" |
| 88 | #include "include/match.h" |
| 89 | #include "include/path.h" |
| 90 | #include "include/policy.h" |
John Johansen | cff281f | 2017-01-16 00:42:15 -0800 | [diff] [blame] | 91 | #include "include/policy_ns.h" |
John Johansen | c88d4c7 | 2010-07-29 14:48:00 -0700 | [diff] [blame] | 92 | #include "include/policy_unpack.h" |
| 93 | #include "include/resource.h" |
John Johansen | c88d4c7 | 2010-07-29 14:48:00 -0700 | [diff] [blame] | 94 | |
John Johansen | 2bd8dbb | 2017-01-16 00:42:50 -0800 | [diff] [blame] | 95 | int unprivileged_userns_apparmor_policy = 1; |
John Johansen | c88d4c7 | 2010-07-29 14:48:00 -0700 | [diff] [blame] | 96 | |
John Johansen | 0d259f0 | 2013-07-10 21:13:43 -0700 | [diff] [blame] | 97 | const char *const aa_profile_mode_names[] = { |
John Johansen | c88d4c7 | 2010-07-29 14:48:00 -0700 | [diff] [blame] | 98 | "enforce", |
| 99 | "complain", |
| 100 | "kill", |
John Johansen | 0381650 | 2013-07-10 21:12:43 -0700 | [diff] [blame] | 101 | "unconfined", |
John Johansen | c88d4c7 | 2010-07-29 14:48:00 -0700 | [diff] [blame] | 102 | }; |
| 103 | |
John Johansen | cff281f | 2017-01-16 00:42:15 -0800 | [diff] [blame] | 104 | /* requires profile list write lock held */ |
John Johansen | 8399588 | 2017-01-16 00:42:19 -0800 | [diff] [blame] | 105 | void __aa_update_proxy(struct aa_profile *orig, struct aa_profile *new) |
John Johansen | c88d4c7 | 2010-07-29 14:48:00 -0700 | [diff] [blame] | 106 | { |
John Johansen | cff281f | 2017-01-16 00:42:15 -0800 | [diff] [blame] | 107 | struct aa_profile *tmp; |
John Johansen | c88d4c7 | 2010-07-29 14:48:00 -0700 | [diff] [blame] | 108 | |
John Johansen | 8399588 | 2017-01-16 00:42:19 -0800 | [diff] [blame] | 109 | tmp = rcu_dereference_protected(orig->proxy->profile, |
John Johansen | cff281f | 2017-01-16 00:42:15 -0800 | [diff] [blame] | 110 | mutex_is_locked(&orig->ns->lock)); |
John Johansen | 8399588 | 2017-01-16 00:42:19 -0800 | [diff] [blame] | 111 | rcu_assign_pointer(orig->proxy->profile, aa_get_profile(new)); |
John Johansen | d97d51d | 2017-01-16 00:42:18 -0800 | [diff] [blame] | 112 | orig->flags |= PFLAG_STALE; |
John Johansen | cff281f | 2017-01-16 00:42:15 -0800 | [diff] [blame] | 113 | aa_put_profile(tmp); |
John Johansen | c88d4c7 | 2010-07-29 14:48:00 -0700 | [diff] [blame] | 114 | } |
| 115 | |
| 116 | /** |
| 117 | * __list_add_profile - add a profile to a list |
| 118 | * @list: list to add it to (NOT NULL) |
| 119 | * @profile: the profile to add (NOT NULL) |
| 120 | * |
| 121 | * refcount @profile, should be put by __list_remove_profile |
| 122 | * |
| 123 | * Requires: namespace lock be held, or list not be shared |
| 124 | */ |
| 125 | static void __list_add_profile(struct list_head *list, |
| 126 | struct aa_profile *profile) |
| 127 | { |
John Johansen | 01e2b67 | 2013-07-10 21:06:43 -0700 | [diff] [blame] | 128 | list_add_rcu(&profile->base.list, list); |
John Johansen | c88d4c7 | 2010-07-29 14:48:00 -0700 | [diff] [blame] | 129 | /* get list reference */ |
| 130 | aa_get_profile(profile); |
| 131 | } |
| 132 | |
| 133 | /** |
| 134 | * __list_remove_profile - remove a profile from the list it is on |
| 135 | * @profile: the profile to remove (NOT NULL) |
| 136 | * |
| 137 | * remove a profile from the list, warning generally removal should |
| 138 | * be done with __replace_profile as most profile removals are |
| 139 | * replacements to the unconfined profile. |
| 140 | * |
| 141 | * put @profile list refcount |
| 142 | * |
| 143 | * Requires: namespace lock be held, or list not have been live |
| 144 | */ |
| 145 | static void __list_remove_profile(struct aa_profile *profile) |
| 146 | { |
John Johansen | 01e2b67 | 2013-07-10 21:06:43 -0700 | [diff] [blame] | 147 | list_del_rcu(&profile->base.list); |
| 148 | aa_put_profile(profile); |
John Johansen | c88d4c7 | 2010-07-29 14:48:00 -0700 | [diff] [blame] | 149 | } |
| 150 | |
John Johansen | c88d4c7 | 2010-07-29 14:48:00 -0700 | [diff] [blame] | 151 | /** |
| 152 | * __remove_profile - remove old profile, and children |
| 153 | * @profile: profile to be replaced (NOT NULL) |
| 154 | * |
| 155 | * Requires: namespace list lock be held, or list not be shared |
| 156 | */ |
| 157 | static void __remove_profile(struct aa_profile *profile) |
| 158 | { |
| 159 | /* release any children lists first */ |
John Johansen | cff281f | 2017-01-16 00:42:15 -0800 | [diff] [blame] | 160 | __aa_profile_list_release(&profile->base.profiles); |
John Johansen | c88d4c7 | 2010-07-29 14:48:00 -0700 | [diff] [blame] | 161 | /* released by free_profile */ |
John Johansen | 8399588 | 2017-01-16 00:42:19 -0800 | [diff] [blame] | 162 | __aa_update_proxy(profile, profile->ns->unconfined); |
John Johansen | c97204b | 2017-05-25 06:23:42 -0700 | [diff] [blame] | 163 | __aafs_profile_rmdir(profile); |
John Johansen | c88d4c7 | 2010-07-29 14:48:00 -0700 | [diff] [blame] | 164 | __list_remove_profile(profile); |
| 165 | } |
| 166 | |
| 167 | /** |
John Johansen | cff281f | 2017-01-16 00:42:15 -0800 | [diff] [blame] | 168 | * __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] | 169 | * @head: list of profiles (NOT NULL) |
| 170 | * |
| 171 | * Requires: namespace lock be held |
| 172 | */ |
John Johansen | cff281f | 2017-01-16 00:42:15 -0800 | [diff] [blame] | 173 | void __aa_profile_list_release(struct list_head *head) |
John Johansen | c88d4c7 | 2010-07-29 14:48:00 -0700 | [diff] [blame] | 174 | { |
| 175 | struct aa_profile *profile, *tmp; |
| 176 | list_for_each_entry_safe(profile, tmp, head, base.list) |
| 177 | __remove_profile(profile); |
| 178 | } |
| 179 | |
John Johansen | 77b071b | 2013-07-10 21:07:43 -0700 | [diff] [blame] | 180 | |
John Johansen | 8399588 | 2017-01-16 00:42:19 -0800 | [diff] [blame] | 181 | static void free_proxy(struct aa_proxy *p) |
John Johansen | 77b071b | 2013-07-10 21:07:43 -0700 | [diff] [blame] | 182 | { |
John Johansen | 8399588 | 2017-01-16 00:42:19 -0800 | [diff] [blame] | 183 | if (p) { |
John Johansen | 4cd4fc7 | 2013-09-29 08:39:22 -0700 | [diff] [blame] | 184 | /* r->profile will not be updated any more as r is dead */ |
John Johansen | 8399588 | 2017-01-16 00:42:19 -0800 | [diff] [blame] | 185 | aa_put_profile(rcu_dereference_protected(p->profile, true)); |
| 186 | kzfree(p); |
John Johansen | 77b071b | 2013-07-10 21:07:43 -0700 | [diff] [blame] | 187 | } |
| 188 | } |
| 189 | |
| 190 | |
John Johansen | 8399588 | 2017-01-16 00:42:19 -0800 | [diff] [blame] | 191 | void aa_free_proxy_kref(struct kref *kref) |
John Johansen | 77b071b | 2013-07-10 21:07:43 -0700 | [diff] [blame] | 192 | { |
John Johansen | 8399588 | 2017-01-16 00:42:19 -0800 | [diff] [blame] | 193 | struct aa_proxy *p = container_of(kref, struct aa_proxy, count); |
| 194 | |
| 195 | free_proxy(p); |
John Johansen | 77b071b | 2013-07-10 21:07:43 -0700 | [diff] [blame] | 196 | } |
| 197 | |
John Johansen | c88d4c7 | 2010-07-29 14:48:00 -0700 | [diff] [blame] | 198 | /** |
William Hua | e025be0 | 2017-01-15 16:49:28 -0800 | [diff] [blame] | 199 | * aa_free_data - free a data blob |
| 200 | * @ptr: data to free |
| 201 | * @arg: unused |
| 202 | */ |
| 203 | static void aa_free_data(void *ptr, void *arg) |
| 204 | { |
| 205 | struct aa_data *data = ptr; |
| 206 | |
| 207 | kzfree(data->data); |
| 208 | kzfree(data->key); |
| 209 | kzfree(data); |
| 210 | } |
| 211 | |
| 212 | /** |
John Johansen | 8651e1d6 | 2013-07-10 21:11:43 -0700 | [diff] [blame] | 213 | * aa_free_profile - free a profile |
John Johansen | c88d4c7 | 2010-07-29 14:48:00 -0700 | [diff] [blame] | 214 | * @profile: the profile to free (MAYBE NULL) |
| 215 | * |
| 216 | * Free a profile, its hats and null_profile. All references to the profile, |
| 217 | * its hats and null_profile must have been put. |
| 218 | * |
| 219 | * If the profile was referenced from a task context, free_profile() will |
| 220 | * be called from an rcu callback routine, so we must not sleep here. |
| 221 | */ |
John Johansen | 8651e1d6 | 2013-07-10 21:11:43 -0700 | [diff] [blame] | 222 | void aa_free_profile(struct aa_profile *profile) |
John Johansen | c88d4c7 | 2010-07-29 14:48:00 -0700 | [diff] [blame] | 223 | { |
William Hua | e025be0 | 2017-01-15 16:49:28 -0800 | [diff] [blame] | 224 | struct rhashtable *rht; |
| 225 | |
John Johansen | c88d4c7 | 2010-07-29 14:48:00 -0700 | [diff] [blame] | 226 | AA_DEBUG("%s(%p)\n", __func__, profile); |
| 227 | |
| 228 | if (!profile) |
| 229 | return; |
| 230 | |
John Johansen | c88d4c7 | 2010-07-29 14:48:00 -0700 | [diff] [blame] | 231 | /* free children profiles */ |
John Johansen | fe6bb31 | 2017-01-16 00:42:14 -0800 | [diff] [blame] | 232 | aa_policy_destroy(&profile->base); |
John Johansen | 01e2b67 | 2013-07-10 21:06:43 -0700 | [diff] [blame] | 233 | aa_put_profile(rcu_access_pointer(profile->parent)); |
John Johansen | c88d4c7 | 2010-07-29 14:48:00 -0700 | [diff] [blame] | 234 | |
John Johansen | 98849df | 2017-01-16 00:42:16 -0800 | [diff] [blame] | 235 | aa_put_ns(profile->ns); |
John Johansen | c88d4c7 | 2010-07-29 14:48:00 -0700 | [diff] [blame] | 236 | kzfree(profile->rename); |
| 237 | |
| 238 | aa_free_file_rules(&profile->file); |
| 239 | aa_free_cap_rules(&profile->caps); |
| 240 | aa_free_rlimit_rules(&profile->rlimits); |
| 241 | |
John Johansen | 0d259f0 | 2013-07-10 21:13:43 -0700 | [diff] [blame] | 242 | kzfree(profile->dirname); |
John Johansen | c88d4c7 | 2010-07-29 14:48:00 -0700 | [diff] [blame] | 243 | aa_put_dfa(profile->xmatch); |
John Johansen | ad5ff3d | 2012-02-16 07:07:53 -0800 | [diff] [blame] | 244 | aa_put_dfa(profile->policy.dfa); |
John Johansen | 8399588 | 2017-01-16 00:42:19 -0800 | [diff] [blame] | 245 | aa_put_proxy(profile->proxy); |
John Johansen | c88d4c7 | 2010-07-29 14:48:00 -0700 | [diff] [blame] | 246 | |
William Hua | e025be0 | 2017-01-15 16:49:28 -0800 | [diff] [blame] | 247 | if (profile->data) { |
| 248 | rht = profile->data; |
| 249 | profile->data = NULL; |
| 250 | rhashtable_free_and_destroy(rht, aa_free_data, NULL); |
| 251 | kzfree(rht); |
| 252 | } |
| 253 | |
John Johansen | 5cb3e91 | 2013-10-14 11:44:34 -0700 | [diff] [blame] | 254 | kzfree(profile->hash); |
John Johansen | 5ac8c35 | 2017-01-16 00:42:55 -0800 | [diff] [blame] | 255 | aa_put_loaddata(profile->rawdata); |
John Johansen | c88d4c7 | 2010-07-29 14:48:00 -0700 | [diff] [blame] | 256 | kzfree(profile); |
| 257 | } |
| 258 | |
| 259 | /** |
John Johansen | 01e2b67 | 2013-07-10 21:06:43 -0700 | [diff] [blame] | 260 | * aa_free_profile_rcu - free aa_profile by rcu (called by aa_free_profile_kref) |
| 261 | * @head: rcu_head callback for freeing of a profile (NOT NULL) |
| 262 | */ |
| 263 | static void aa_free_profile_rcu(struct rcu_head *head) |
| 264 | { |
John Johansen | 742058b | 2013-07-10 21:10:43 -0700 | [diff] [blame] | 265 | struct aa_profile *p = container_of(head, struct aa_profile, rcu); |
| 266 | if (p->flags & PFLAG_NS_COUNT) |
John Johansen | 98849df | 2017-01-16 00:42:16 -0800 | [diff] [blame] | 267 | aa_free_ns(p->ns); |
John Johansen | 742058b | 2013-07-10 21:10:43 -0700 | [diff] [blame] | 268 | else |
John Johansen | 8651e1d6 | 2013-07-10 21:11:43 -0700 | [diff] [blame] | 269 | aa_free_profile(p); |
John Johansen | 01e2b67 | 2013-07-10 21:06:43 -0700 | [diff] [blame] | 270 | } |
| 271 | |
| 272 | /** |
John Johansen | c88d4c7 | 2010-07-29 14:48:00 -0700 | [diff] [blame] | 273 | * aa_free_profile_kref - free aa_profile by kref (called by aa_put_profile) |
| 274 | * @kr: kref callback for freeing of a profile (NOT NULL) |
| 275 | */ |
| 276 | void aa_free_profile_kref(struct kref *kref) |
| 277 | { |
John Johansen | fa2ac46 | 2013-07-10 21:08:43 -0700 | [diff] [blame] | 278 | struct aa_profile *p = container_of(kref, struct aa_profile, count); |
John Johansen | 742058b | 2013-07-10 21:10:43 -0700 | [diff] [blame] | 279 | call_rcu(&p->rcu, aa_free_profile_rcu); |
John Johansen | c88d4c7 | 2010-07-29 14:48:00 -0700 | [diff] [blame] | 280 | } |
| 281 | |
John Johansen | 4da05cc | 2013-02-18 16:11:34 -0800 | [diff] [blame] | 282 | /** |
| 283 | * aa_alloc_profile - allocate, initialize and return a new profile |
| 284 | * @hname: name of the profile (NOT NULL) |
John Johansen | 30b026a | 2017-01-16 00:42:35 -0800 | [diff] [blame] | 285 | * @gfp: allocation type |
John Johansen | 4da05cc | 2013-02-18 16:11:34 -0800 | [diff] [blame] | 286 | * |
| 287 | * Returns: refcount profile or NULL on failure |
| 288 | */ |
John Johansen | 30b026a | 2017-01-16 00:42:35 -0800 | [diff] [blame] | 289 | struct aa_profile *aa_alloc_profile(const char *hname, gfp_t gfp) |
John Johansen | 4da05cc | 2013-02-18 16:11:34 -0800 | [diff] [blame] | 290 | { |
| 291 | struct aa_profile *profile; |
| 292 | |
| 293 | /* freed by free_profile - usually through aa_put_profile */ |
John Johansen | 30b026a | 2017-01-16 00:42:35 -0800 | [diff] [blame] | 294 | profile = kzalloc(sizeof(*profile), gfp); |
John Johansen | 4da05cc | 2013-02-18 16:11:34 -0800 | [diff] [blame] | 295 | if (!profile) |
| 296 | return NULL; |
| 297 | |
John Johansen | 30b026a | 2017-01-16 00:42:35 -0800 | [diff] [blame] | 298 | profile->proxy = kzalloc(sizeof(struct aa_proxy), gfp); |
John Johansen | 8399588 | 2017-01-16 00:42:19 -0800 | [diff] [blame] | 299 | if (!profile->proxy) |
John Johansen | 77b071b | 2013-07-10 21:07:43 -0700 | [diff] [blame] | 300 | goto fail; |
John Johansen | 8399588 | 2017-01-16 00:42:19 -0800 | [diff] [blame] | 301 | kref_init(&profile->proxy->count); |
John Johansen | 77b071b | 2013-07-10 21:07:43 -0700 | [diff] [blame] | 302 | |
John Johansen | 30b026a | 2017-01-16 00:42:35 -0800 | [diff] [blame] | 303 | if (!aa_policy_init(&profile->base, NULL, hname, gfp)) |
John Johansen | 77b071b | 2013-07-10 21:07:43 -0700 | [diff] [blame] | 304 | goto fail; |
John Johansen | fa2ac46 | 2013-07-10 21:08:43 -0700 | [diff] [blame] | 305 | kref_init(&profile->count); |
John Johansen | 4da05cc | 2013-02-18 16:11:34 -0800 | [diff] [blame] | 306 | |
| 307 | /* refcount released by caller */ |
| 308 | return profile; |
John Johansen | 77b071b | 2013-07-10 21:07:43 -0700 | [diff] [blame] | 309 | |
| 310 | fail: |
John Johansen | 8399588 | 2017-01-16 00:42:19 -0800 | [diff] [blame] | 311 | kzfree(profile->proxy); |
John Johansen | 77b071b | 2013-07-10 21:07:43 -0700 | [diff] [blame] | 312 | kzfree(profile); |
| 313 | |
| 314 | return NULL; |
John Johansen | 4da05cc | 2013-02-18 16:11:34 -0800 | [diff] [blame] | 315 | } |
| 316 | |
| 317 | /** |
John Johansen | 181f7c9 | 2017-01-16 00:42:36 -0800 | [diff] [blame] | 318 | * aa_new_null_profile - create or find a null-X learning profile |
John Johansen | 4da05cc | 2013-02-18 16:11:34 -0800 | [diff] [blame] | 319 | * @parent: profile that caused this profile to be created (NOT NULL) |
| 320 | * @hat: true if the null- learning profile is a hat |
John Johansen | 181f7c9 | 2017-01-16 00:42:36 -0800 | [diff] [blame] | 321 | * @base: name to base the null profile off of |
| 322 | * @gfp: type of allocation |
John Johansen | 4da05cc | 2013-02-18 16:11:34 -0800 | [diff] [blame] | 323 | * |
John Johansen | 181f7c9 | 2017-01-16 00:42:36 -0800 | [diff] [blame] | 324 | * Find/Create a null- complain mode profile used in learning mode. The |
| 325 | * name of the profile is unique and follows the format of parent//null-XXX. |
| 326 | * where XXX is based on the @name or if that fails or is not supplied |
| 327 | * a unique number |
John Johansen | 4da05cc | 2013-02-18 16:11:34 -0800 | [diff] [blame] | 328 | * |
| 329 | * null profiles are added to the profile list but the list does not |
| 330 | * hold a count on them so that they are automatically released when |
| 331 | * not in use. |
| 332 | * |
| 333 | * Returns: new refcounted profile else NULL on failure |
| 334 | */ |
John Johansen | 181f7c9 | 2017-01-16 00:42:36 -0800 | [diff] [blame] | 335 | struct aa_profile *aa_new_null_profile(struct aa_profile *parent, bool hat, |
| 336 | const char *base, gfp_t gfp) |
John Johansen | 4da05cc | 2013-02-18 16:11:34 -0800 | [diff] [blame] | 337 | { |
John Johansen | 181f7c9 | 2017-01-16 00:42:36 -0800 | [diff] [blame] | 338 | struct aa_profile *profile; |
John Johansen | 4da05cc | 2013-02-18 16:11:34 -0800 | [diff] [blame] | 339 | char *name; |
John Johansen | 4da05cc | 2013-02-18 16:11:34 -0800 | [diff] [blame] | 340 | |
John Johansen | 181f7c9 | 2017-01-16 00:42:36 -0800 | [diff] [blame] | 341 | AA_BUG(!parent); |
| 342 | |
| 343 | if (base) { |
| 344 | name = kmalloc(strlen(parent->base.hname) + 8 + strlen(base), |
| 345 | gfp); |
| 346 | if (name) { |
| 347 | sprintf(name, "%s//null-%s", parent->base.hname, base); |
| 348 | goto name; |
| 349 | } |
| 350 | /* fall through to try shorter uniq */ |
| 351 | } |
| 352 | |
| 353 | name = kmalloc(strlen(parent->base.hname) + 2 + 7 + 8, gfp); |
John Johansen | 4da05cc | 2013-02-18 16:11:34 -0800 | [diff] [blame] | 354 | if (!name) |
John Johansen | 181f7c9 | 2017-01-16 00:42:36 -0800 | [diff] [blame] | 355 | return NULL; |
| 356 | sprintf(name, "%s//null-%x", parent->base.hname, |
| 357 | atomic_inc_return(&parent->ns->uniq_null)); |
John Johansen | 4da05cc | 2013-02-18 16:11:34 -0800 | [diff] [blame] | 358 | |
John Johansen | 181f7c9 | 2017-01-16 00:42:36 -0800 | [diff] [blame] | 359 | name: |
| 360 | /* lookup to see if this is a dup creation */ |
| 361 | profile = aa_find_child(parent, basename(name)); |
| 362 | if (profile) |
| 363 | goto out; |
| 364 | |
| 365 | profile = aa_alloc_profile(name, gfp); |
John Johansen | 4da05cc | 2013-02-18 16:11:34 -0800 | [diff] [blame] | 366 | if (!profile) |
| 367 | goto fail; |
| 368 | |
| 369 | profile->mode = APPARMOR_COMPLAIN; |
John Johansen | 181f7c9 | 2017-01-16 00:42:36 -0800 | [diff] [blame] | 370 | profile->flags |= PFLAG_NULL; |
John Johansen | 4da05cc | 2013-02-18 16:11:34 -0800 | [diff] [blame] | 371 | if (hat) |
| 372 | profile->flags |= PFLAG_HAT; |
John Johansen | 181f7c9 | 2017-01-16 00:42:36 -0800 | [diff] [blame] | 373 | profile->path_flags = parent->path_flags; |
John Johansen | 4da05cc | 2013-02-18 16:11:34 -0800 | [diff] [blame] | 374 | |
| 375 | /* released on free_profile */ |
John Johansen | 01e2b67 | 2013-07-10 21:06:43 -0700 | [diff] [blame] | 376 | rcu_assign_pointer(profile->parent, aa_get_profile(parent)); |
John Johansen | 98849df | 2017-01-16 00:42:16 -0800 | [diff] [blame] | 377 | profile->ns = aa_get_ns(parent->ns); |
John Johansen | 11c236b | 2017-01-16 00:42:42 -0800 | [diff] [blame] | 378 | profile->file.dfa = aa_get_dfa(nulldfa); |
| 379 | profile->policy.dfa = aa_get_dfa(nulldfa); |
John Johansen | 4da05cc | 2013-02-18 16:11:34 -0800 | [diff] [blame] | 380 | |
John Johansen | 01e2b67 | 2013-07-10 21:06:43 -0700 | [diff] [blame] | 381 | mutex_lock(&profile->ns->lock); |
John Johansen | 4da05cc | 2013-02-18 16:11:34 -0800 | [diff] [blame] | 382 | __list_add_profile(&parent->base.profiles, profile); |
John Johansen | 01e2b67 | 2013-07-10 21:06:43 -0700 | [diff] [blame] | 383 | mutex_unlock(&profile->ns->lock); |
John Johansen | 4da05cc | 2013-02-18 16:11:34 -0800 | [diff] [blame] | 384 | |
| 385 | /* refcount released by caller */ |
John Johansen | 181f7c9 | 2017-01-16 00:42:36 -0800 | [diff] [blame] | 386 | out: |
| 387 | kfree(name); |
| 388 | |
John Johansen | 4da05cc | 2013-02-18 16:11:34 -0800 | [diff] [blame] | 389 | return profile; |
| 390 | |
| 391 | fail: |
John Johansen | 181f7c9 | 2017-01-16 00:42:36 -0800 | [diff] [blame] | 392 | kfree(name); |
| 393 | aa_free_profile(profile); |
John Johansen | 4da05cc | 2013-02-18 16:11:34 -0800 | [diff] [blame] | 394 | return NULL; |
| 395 | } |
| 396 | |
John Johansen | c88d4c7 | 2010-07-29 14:48:00 -0700 | [diff] [blame] | 397 | /* TODO: profile accounting - setup in remove */ |
| 398 | |
| 399 | /** |
John Johansen | c88d4c7 | 2010-07-29 14:48:00 -0700 | [diff] [blame] | 400 | * __strn_find_child - find a profile on @head list using substring of @name |
| 401 | * @head: list to search (NOT NULL) |
| 402 | * @name: name of profile (NOT NULL) |
| 403 | * @len: length of @name substring to match |
| 404 | * |
John Johansen | 01e2b67 | 2013-07-10 21:06:43 -0700 | [diff] [blame] | 405 | * Requires: rcu_read_lock be held |
John Johansen | c88d4c7 | 2010-07-29 14:48:00 -0700 | [diff] [blame] | 406 | * |
| 407 | * Returns: unrefcounted profile ptr, or NULL if not found |
| 408 | */ |
| 409 | static struct aa_profile *__strn_find_child(struct list_head *head, |
| 410 | const char *name, int len) |
| 411 | { |
| 412 | return (struct aa_profile *)__policy_strn_find(head, name, len); |
| 413 | } |
| 414 | |
| 415 | /** |
John Johansen | ae3b316 | 2017-06-02 13:50:22 -0700 | [diff] [blame] | 416 | * __find_child - find a profile on @head list with a name matching @name |
| 417 | * @head: list to search (NOT NULL) |
| 418 | * @name: name of profile (NOT NULL) |
| 419 | * |
| 420 | * Requires: rcu_read_lock be held |
| 421 | * |
| 422 | * Returns: unrefcounted profile ptr, or NULL if not found |
| 423 | */ |
| 424 | static struct aa_profile *__find_child(struct list_head *head, const char *name) |
| 425 | { |
| 426 | return __strn_find_child(head, name, strlen(name)); |
| 427 | } |
| 428 | |
| 429 | /** |
John Johansen | c88d4c7 | 2010-07-29 14:48:00 -0700 | [diff] [blame] | 430 | * aa_find_child - find a profile by @name in @parent |
| 431 | * @parent: profile to search (NOT NULL) |
| 432 | * @name: profile name to search for (NOT NULL) |
| 433 | * |
| 434 | * Returns: a refcounted profile or NULL if not found |
| 435 | */ |
| 436 | struct aa_profile *aa_find_child(struct aa_profile *parent, const char *name) |
| 437 | { |
| 438 | struct aa_profile *profile; |
| 439 | |
John Johansen | 01e2b67 | 2013-07-10 21:06:43 -0700 | [diff] [blame] | 440 | rcu_read_lock(); |
John Johansen | de7c4cc | 2015-12-16 18:09:10 -0800 | [diff] [blame] | 441 | do { |
| 442 | profile = __find_child(&parent->base.profiles, name); |
| 443 | } while (profile && !aa_get_profile_not0(profile)); |
John Johansen | 01e2b67 | 2013-07-10 21:06:43 -0700 | [diff] [blame] | 444 | rcu_read_unlock(); |
John Johansen | c88d4c7 | 2010-07-29 14:48:00 -0700 | [diff] [blame] | 445 | |
| 446 | /* refcount released by caller */ |
| 447 | return profile; |
| 448 | } |
| 449 | |
| 450 | /** |
| 451 | * __lookup_parent - lookup the parent of a profile of name @hname |
| 452 | * @ns: namespace to lookup profile in (NOT NULL) |
| 453 | * @hname: hierarchical profile name to find parent of (NOT NULL) |
| 454 | * |
| 455 | * Lookups up the parent of a fully qualified profile name, the profile |
| 456 | * that matches hname does not need to exist, in general this |
| 457 | * is used to load a new profile. |
| 458 | * |
John Johansen | 01e2b67 | 2013-07-10 21:06:43 -0700 | [diff] [blame] | 459 | * Requires: rcu_read_lock be held |
John Johansen | c88d4c7 | 2010-07-29 14:48:00 -0700 | [diff] [blame] | 460 | * |
| 461 | * Returns: unrefcounted policy or NULL if not found |
| 462 | */ |
John Johansen | 98849df | 2017-01-16 00:42:16 -0800 | [diff] [blame] | 463 | static struct aa_policy *__lookup_parent(struct aa_ns *ns, |
John Johansen | c88d4c7 | 2010-07-29 14:48:00 -0700 | [diff] [blame] | 464 | const char *hname) |
| 465 | { |
| 466 | struct aa_policy *policy; |
| 467 | struct aa_profile *profile = NULL; |
| 468 | char *split; |
| 469 | |
| 470 | policy = &ns->base; |
| 471 | |
| 472 | for (split = strstr(hname, "//"); split;) { |
| 473 | profile = __strn_find_child(&policy->profiles, hname, |
| 474 | split - hname); |
| 475 | if (!profile) |
| 476 | return NULL; |
| 477 | policy = &profile->base; |
| 478 | hname = split + 2; |
| 479 | split = strstr(hname, "//"); |
| 480 | } |
| 481 | if (!profile) |
| 482 | return &ns->base; |
| 483 | return &profile->base; |
| 484 | } |
| 485 | |
| 486 | /** |
John Johansen | 1741e9e | 2017-01-16 00:42:21 -0800 | [diff] [blame] | 487 | * __lookupn_profile - lookup the profile matching @hname |
John Johansen | c88d4c7 | 2010-07-29 14:48:00 -0700 | [diff] [blame] | 488 | * @base: base list to start looking up profile name from (NOT NULL) |
| 489 | * @hname: hierarchical profile name (NOT NULL) |
John Johansen | 1741e9e | 2017-01-16 00:42:21 -0800 | [diff] [blame] | 490 | * @n: length of @hname |
John Johansen | c88d4c7 | 2010-07-29 14:48:00 -0700 | [diff] [blame] | 491 | * |
John Johansen | 01e2b67 | 2013-07-10 21:06:43 -0700 | [diff] [blame] | 492 | * Requires: rcu_read_lock be held |
John Johansen | c88d4c7 | 2010-07-29 14:48:00 -0700 | [diff] [blame] | 493 | * |
| 494 | * Returns: unrefcounted profile pointer or NULL if not found |
| 495 | * |
| 496 | * Do a relative name lookup, recursing through profile tree. |
| 497 | */ |
John Johansen | 1741e9e | 2017-01-16 00:42:21 -0800 | [diff] [blame] | 498 | static struct aa_profile *__lookupn_profile(struct aa_policy *base, |
| 499 | const char *hname, size_t n) |
John Johansen | c88d4c7 | 2010-07-29 14:48:00 -0700 | [diff] [blame] | 500 | { |
| 501 | struct aa_profile *profile = NULL; |
John Johansen | 1741e9e | 2017-01-16 00:42:21 -0800 | [diff] [blame] | 502 | const char *split; |
John Johansen | c88d4c7 | 2010-07-29 14:48:00 -0700 | [diff] [blame] | 503 | |
John Johansen | 1741e9e | 2017-01-16 00:42:21 -0800 | [diff] [blame] | 504 | for (split = strnstr(hname, "//", n); split; |
| 505 | split = strnstr(hname, "//", n)) { |
John Johansen | c88d4c7 | 2010-07-29 14:48:00 -0700 | [diff] [blame] | 506 | profile = __strn_find_child(&base->profiles, hname, |
| 507 | split - hname); |
| 508 | if (!profile) |
| 509 | return NULL; |
| 510 | |
| 511 | base = &profile->base; |
John Johansen | 1741e9e | 2017-01-16 00:42:21 -0800 | [diff] [blame] | 512 | n -= split + 2 - hname; |
John Johansen | c88d4c7 | 2010-07-29 14:48:00 -0700 | [diff] [blame] | 513 | hname = split + 2; |
John Johansen | c88d4c7 | 2010-07-29 14:48:00 -0700 | [diff] [blame] | 514 | } |
| 515 | |
John Johansen | 1741e9e | 2017-01-16 00:42:21 -0800 | [diff] [blame] | 516 | if (n) |
| 517 | return __strn_find_child(&base->profiles, hname, n); |
| 518 | return NULL; |
| 519 | } |
John Johansen | c88d4c7 | 2010-07-29 14:48:00 -0700 | [diff] [blame] | 520 | |
John Johansen | 1741e9e | 2017-01-16 00:42:21 -0800 | [diff] [blame] | 521 | static struct aa_profile *__lookup_profile(struct aa_policy *base, |
| 522 | const char *hname) |
| 523 | { |
| 524 | return __lookupn_profile(base, hname, strlen(hname)); |
John Johansen | c88d4c7 | 2010-07-29 14:48:00 -0700 | [diff] [blame] | 525 | } |
| 526 | |
| 527 | /** |
| 528 | * aa_lookup_profile - find a profile by its full or partial name |
| 529 | * @ns: the namespace to start from (NOT NULL) |
| 530 | * @hname: name to do lookup on. Does not contain namespace prefix (NOT NULL) |
John Johansen | 1741e9e | 2017-01-16 00:42:21 -0800 | [diff] [blame] | 531 | * @n: size of @hname |
John Johansen | c88d4c7 | 2010-07-29 14:48:00 -0700 | [diff] [blame] | 532 | * |
| 533 | * Returns: refcounted profile or NULL if not found |
| 534 | */ |
John Johansen | 1741e9e | 2017-01-16 00:42:21 -0800 | [diff] [blame] | 535 | struct aa_profile *aa_lookupn_profile(struct aa_ns *ns, const char *hname, |
| 536 | size_t n) |
John Johansen | c88d4c7 | 2010-07-29 14:48:00 -0700 | [diff] [blame] | 537 | { |
| 538 | struct aa_profile *profile; |
| 539 | |
John Johansen | 01e2b67 | 2013-07-10 21:06:43 -0700 | [diff] [blame] | 540 | rcu_read_lock(); |
| 541 | do { |
John Johansen | 1741e9e | 2017-01-16 00:42:21 -0800 | [diff] [blame] | 542 | profile = __lookupn_profile(&ns->base, hname, n); |
John Johansen | 01e2b67 | 2013-07-10 21:06:43 -0700 | [diff] [blame] | 543 | } while (profile && !aa_get_profile_not0(profile)); |
| 544 | rcu_read_unlock(); |
John Johansen | c88d4c7 | 2010-07-29 14:48:00 -0700 | [diff] [blame] | 545 | |
John Johansen | bf83208 | 2012-05-16 11:00:05 -0700 | [diff] [blame] | 546 | /* the unconfined profile is not in the regular profile list */ |
John Johansen | 1741e9e | 2017-01-16 00:42:21 -0800 | [diff] [blame] | 547 | if (!profile && strncmp(hname, "unconfined", n) == 0) |
John Johansen | fa2ac46 | 2013-07-10 21:08:43 -0700 | [diff] [blame] | 548 | profile = aa_get_newest_profile(ns->unconfined); |
John Johansen | bf83208 | 2012-05-16 11:00:05 -0700 | [diff] [blame] | 549 | |
John Johansen | c88d4c7 | 2010-07-29 14:48:00 -0700 | [diff] [blame] | 550 | /* refcount released by caller */ |
| 551 | return profile; |
| 552 | } |
| 553 | |
John Johansen | 1741e9e | 2017-01-16 00:42:21 -0800 | [diff] [blame] | 554 | struct aa_profile *aa_lookup_profile(struct aa_ns *ns, const char *hname) |
| 555 | { |
| 556 | return aa_lookupn_profile(ns, hname, strlen(hname)); |
| 557 | } |
John Johansen | 31617dd | 2017-01-16 00:42:24 -0800 | [diff] [blame] | 558 | |
| 559 | struct aa_profile *aa_fqlookupn_profile(struct aa_profile *base, |
| 560 | const char *fqname, size_t n) |
| 561 | { |
| 562 | struct aa_profile *profile; |
| 563 | struct aa_ns *ns; |
| 564 | const char *name, *ns_name; |
| 565 | size_t ns_len; |
| 566 | |
| 567 | name = aa_splitn_fqname(fqname, n, &ns_name, &ns_len); |
| 568 | if (ns_name) { |
John Johansen | 3664268 | 2017-06-02 17:44:27 -0700 | [diff] [blame] | 569 | ns = aa_lookupn_ns(base->ns, ns_name, ns_len); |
John Johansen | 31617dd | 2017-01-16 00:42:24 -0800 | [diff] [blame] | 570 | if (!ns) |
| 571 | return NULL; |
| 572 | } else |
| 573 | ns = aa_get_ns(base->ns); |
| 574 | |
| 575 | if (name) |
| 576 | profile = aa_lookupn_profile(ns, name, n - (name - fqname)); |
| 577 | else if (ns) |
| 578 | /* default profile for ns, currently unconfined */ |
| 579 | profile = aa_get_newest_profile(ns->unconfined); |
| 580 | else |
| 581 | profile = NULL; |
| 582 | aa_put_ns(ns); |
| 583 | |
| 584 | return profile; |
| 585 | } |
| 586 | |
John Johansen | c88d4c7 | 2010-07-29 14:48:00 -0700 | [diff] [blame] | 587 | /** |
| 588 | * replacement_allowed - test to see if replacement is allowed |
| 589 | * @profile: profile to test if it can be replaced (MAYBE NULL) |
| 590 | * @noreplace: true if replacement shouldn't be allowed but addition is okay |
| 591 | * @info: Returns - info about why replacement failed (NOT NULL) |
| 592 | * |
| 593 | * Returns: %0 if replacement allowed else error code |
| 594 | */ |
| 595 | static int replacement_allowed(struct aa_profile *profile, int noreplace, |
| 596 | const char **info) |
| 597 | { |
| 598 | if (profile) { |
| 599 | if (profile->flags & PFLAG_IMMUTABLE) { |
| 600 | *info = "cannot replace immutible profile"; |
| 601 | return -EPERM; |
| 602 | } else if (noreplace) { |
| 603 | *info = "profile already exists"; |
| 604 | return -EEXIST; |
| 605 | } |
| 606 | } |
| 607 | return 0; |
| 608 | } |
| 609 | |
John Johansen | fc1c9fd | 2017-01-16 00:42:54 -0800 | [diff] [blame] | 610 | /* audit callback for net specific fields */ |
| 611 | static void audit_cb(struct audit_buffer *ab, void *va) |
| 612 | { |
| 613 | struct common_audit_data *sa = va; |
| 614 | |
John Johansen | ef88a7a | 2017-01-16 00:43:02 -0800 | [diff] [blame] | 615 | if (aad(sa)->iface.ns) { |
John Johansen | fc1c9fd | 2017-01-16 00:42:54 -0800 | [diff] [blame] | 616 | audit_log_format(ab, " ns="); |
John Johansen | ef88a7a | 2017-01-16 00:43:02 -0800 | [diff] [blame] | 617 | audit_log_untrustedstring(ab, aad(sa)->iface.ns); |
John Johansen | fc1c9fd | 2017-01-16 00:42:54 -0800 | [diff] [blame] | 618 | } |
| 619 | } |
| 620 | |
John Johansen | c88d4c7 | 2010-07-29 14:48:00 -0700 | [diff] [blame] | 621 | /** |
John Johansen | c88d4c7 | 2010-07-29 14:48:00 -0700 | [diff] [blame] | 622 | * aa_audit_policy - Do auditing of policy changes |
John Johansen | a6f2330 | 2017-01-16 00:42:49 -0800 | [diff] [blame] | 623 | * @profile: profile to check if it can manage policy |
John Johansen | c88d4c7 | 2010-07-29 14:48:00 -0700 | [diff] [blame] | 624 | * @op: policy operation being performed |
| 625 | * @gfp: memory allocation flags |
John Johansen | fc1c9fd | 2017-01-16 00:42:54 -0800 | [diff] [blame] | 626 | * @nsname: name of the ns being manipulated (MAY BE NULL) |
John Johansen | c88d4c7 | 2010-07-29 14:48:00 -0700 | [diff] [blame] | 627 | * @name: name of profile being manipulated (NOT NULL) |
| 628 | * @info: any extra information to be audited (MAYBE NULL) |
| 629 | * @error: error code |
| 630 | * |
| 631 | * Returns: the error to be returned after audit is done |
| 632 | */ |
John Johansen | ef88a7a | 2017-01-16 00:43:02 -0800 | [diff] [blame] | 633 | static int audit_policy(struct aa_profile *profile, const char *op, |
John Johansen | fc1c9fd | 2017-01-16 00:42:54 -0800 | [diff] [blame] | 634 | const char *nsname, const char *name, |
| 635 | const char *info, int error) |
John Johansen | c88d4c7 | 2010-07-29 14:48:00 -0700 | [diff] [blame] | 636 | { |
John Johansen | ef88a7a | 2017-01-16 00:43:02 -0800 | [diff] [blame] | 637 | DEFINE_AUDIT_DATA(sa, LSM_AUDIT_DATA_NONE, op); |
John Johansen | c88d4c7 | 2010-07-29 14:48:00 -0700 | [diff] [blame] | 638 | |
John Johansen | ef88a7a | 2017-01-16 00:43:02 -0800 | [diff] [blame] | 639 | aad(&sa)->iface.ns = nsname; |
| 640 | aad(&sa)->name = name; |
| 641 | aad(&sa)->info = info; |
| 642 | aad(&sa)->error = error; |
| 643 | |
| 644 | return aa_audit(AUDIT_APPARMOR_STATUS, profile, &sa, audit_cb); |
John Johansen | c88d4c7 | 2010-07-29 14:48:00 -0700 | [diff] [blame] | 645 | } |
| 646 | |
John Johansen | 2bd8dbb | 2017-01-16 00:42:50 -0800 | [diff] [blame] | 647 | /** |
| 648 | * policy_view_capable - check if viewing policy in at @ns is allowed |
| 649 | * ns: namespace being viewed by current task (may be NULL) |
| 650 | * Returns: true if viewing policy is allowed |
| 651 | * |
| 652 | * If @ns is NULL then the namespace being viewed is assumed to be the |
| 653 | * tasks current namespace. |
| 654 | */ |
| 655 | bool policy_view_capable(struct aa_ns *ns) |
John Johansen | 58acf9d | 2016-06-22 18:01:08 -0700 | [diff] [blame] | 656 | { |
| 657 | struct user_namespace *user_ns = current_user_ns(); |
John Johansen | 2bd8dbb | 2017-01-16 00:42:50 -0800 | [diff] [blame] | 658 | struct aa_ns *view_ns = aa_get_current_ns(); |
| 659 | bool root_in_user_ns = uid_eq(current_euid(), make_kuid(user_ns, 0)) || |
| 660 | in_egroup_p(make_kgid(user_ns, 0)); |
John Johansen | 58acf9d | 2016-06-22 18:01:08 -0700 | [diff] [blame] | 661 | bool response = false; |
John Johansen | 2bd8dbb | 2017-01-16 00:42:50 -0800 | [diff] [blame] | 662 | if (!ns) |
| 663 | ns = view_ns; |
John Johansen | 58acf9d | 2016-06-22 18:01:08 -0700 | [diff] [blame] | 664 | |
John Johansen | 2bd8dbb | 2017-01-16 00:42:50 -0800 | [diff] [blame] | 665 | if (root_in_user_ns && aa_ns_visible(view_ns, ns, true) && |
| 666 | (user_ns == &init_user_ns || |
| 667 | (unprivileged_userns_apparmor_policy != 0 && |
| 668 | user_ns->level == view_ns->level))) |
John Johansen | 58acf9d | 2016-06-22 18:01:08 -0700 | [diff] [blame] | 669 | response = true; |
John Johansen | 2bd8dbb | 2017-01-16 00:42:50 -0800 | [diff] [blame] | 670 | aa_put_ns(view_ns); |
John Johansen | 58acf9d | 2016-06-22 18:01:08 -0700 | [diff] [blame] | 671 | |
| 672 | return response; |
| 673 | } |
| 674 | |
John Johansen | fd2a804 | 2017-01-16 00:42:51 -0800 | [diff] [blame] | 675 | bool policy_admin_capable(struct aa_ns *ns) |
John Johansen | 58acf9d | 2016-06-22 18:01:08 -0700 | [diff] [blame] | 676 | { |
John Johansen | fd2a804 | 2017-01-16 00:42:51 -0800 | [diff] [blame] | 677 | struct user_namespace *user_ns = current_user_ns(); |
| 678 | bool capable = ns_capable(user_ns, CAP_MAC_ADMIN); |
| 679 | |
| 680 | AA_DEBUG("cap_mac_admin? %d\n", capable); |
| 681 | AA_DEBUG("policy locked? %d\n", aa_g_lock_policy); |
| 682 | |
| 683 | return policy_view_capable(ns) && capable && !aa_g_lock_policy; |
John Johansen | 58acf9d | 2016-06-22 18:01:08 -0700 | [diff] [blame] | 684 | } |
| 685 | |
John Johansen | c88d4c7 | 2010-07-29 14:48:00 -0700 | [diff] [blame] | 686 | /** |
| 687 | * aa_may_manage_policy - can the current task manage policy |
John Johansen | 078c73c6 | 2017-01-16 00:42:52 -0800 | [diff] [blame] | 688 | * @profile: profile to check if it can manage policy |
John Johansen | c88d4c7 | 2010-07-29 14:48:00 -0700 | [diff] [blame] | 689 | * @op: the policy manipulation operation being done |
| 690 | * |
John Johansen | 078c73c6 | 2017-01-16 00:42:52 -0800 | [diff] [blame] | 691 | * Returns: 0 if the task is allowed to manipulate policy else error |
John Johansen | c88d4c7 | 2010-07-29 14:48:00 -0700 | [diff] [blame] | 692 | */ |
John Johansen | 18e99f1 | 2017-05-26 01:45:08 -0700 | [diff] [blame] | 693 | int aa_may_manage_policy(struct aa_profile *profile, struct aa_ns *ns, u32 mask) |
John Johansen | c88d4c7 | 2010-07-29 14:48:00 -0700 | [diff] [blame] | 694 | { |
John Johansen | 18e99f1 | 2017-05-26 01:45:08 -0700 | [diff] [blame] | 695 | const char *op; |
| 696 | |
| 697 | if (mask & AA_MAY_REMOVE_POLICY) |
| 698 | op = OP_PROF_RM; |
| 699 | else if (mask & AA_MAY_REPLACE_POLICY) |
| 700 | op = OP_PROF_REPL; |
| 701 | else |
| 702 | op = OP_PROF_LOAD; |
| 703 | |
John Johansen | c88d4c7 | 2010-07-29 14:48:00 -0700 | [diff] [blame] | 704 | /* check if loading policy is locked out */ |
John Johansen | 078c73c6 | 2017-01-16 00:42:52 -0800 | [diff] [blame] | 705 | if (aa_g_lock_policy) |
John Johansen | 18e99f1 | 2017-05-26 01:45:08 -0700 | [diff] [blame] | 706 | return audit_policy(profile, op, NULL, NULL, "policy_locked", |
| 707 | -EACCES); |
John Johansen | c88d4c7 | 2010-07-29 14:48:00 -0700 | [diff] [blame] | 708 | |
John Johansen | 078c73c6 | 2017-01-16 00:42:52 -0800 | [diff] [blame] | 709 | if (!policy_admin_capable(ns)) |
John Johansen | 18e99f1 | 2017-05-26 01:45:08 -0700 | [diff] [blame] | 710 | return audit_policy(profile, op, NULL, NULL, "not policy admin", |
| 711 | -EACCES); |
John Johansen | c88d4c7 | 2010-07-29 14:48:00 -0700 | [diff] [blame] | 712 | |
John Johansen | 078c73c6 | 2017-01-16 00:42:52 -0800 | [diff] [blame] | 713 | /* TODO: add fine grained mediation of policy loads */ |
| 714 | return 0; |
John Johansen | c88d4c7 | 2010-07-29 14:48:00 -0700 | [diff] [blame] | 715 | } |
| 716 | |
John Johansen | dd51c848 | 2013-07-10 21:05:43 -0700 | [diff] [blame] | 717 | static struct aa_profile *__list_lookup_parent(struct list_head *lh, |
| 718 | struct aa_profile *profile) |
| 719 | { |
John Johansen | 6e474e3 | 2017-01-16 00:42:29 -0800 | [diff] [blame] | 720 | const char *base = basename(profile->base.hname); |
John Johansen | dd51c848 | 2013-07-10 21:05:43 -0700 | [diff] [blame] | 721 | long len = base - profile->base.hname; |
| 722 | struct aa_load_ent *ent; |
| 723 | |
| 724 | /* parent won't have trailing // so remove from len */ |
| 725 | if (len <= 2) |
| 726 | return NULL; |
| 727 | len -= 2; |
| 728 | |
| 729 | list_for_each_entry(ent, lh, list) { |
| 730 | if (ent->new == profile) |
| 731 | continue; |
| 732 | if (strncmp(ent->new->base.hname, profile->base.hname, len) == |
| 733 | 0 && ent->new->base.hname[len] == 0) |
| 734 | return ent->new; |
| 735 | } |
| 736 | |
| 737 | return NULL; |
| 738 | } |
| 739 | |
| 740 | /** |
| 741 | * __replace_profile - replace @old with @new on a list |
| 742 | * @old: profile to be replaced (NOT NULL) |
| 743 | * @new: profile to replace @old with (NOT NULL) |
John Johansen | 8399588 | 2017-01-16 00:42:19 -0800 | [diff] [blame] | 744 | * @share_proxy: transfer @old->proxy to @new |
John Johansen | dd51c848 | 2013-07-10 21:05:43 -0700 | [diff] [blame] | 745 | * |
| 746 | * Will duplicate and refcount elements that @new inherits from @old |
| 747 | * and will inherit @old children. |
| 748 | * |
| 749 | * refcount @new for list, put @old list refcount |
| 750 | * |
| 751 | * Requires: namespace list lock be held, or list not be shared |
| 752 | */ |
John Johansen | 77b071b | 2013-07-10 21:07:43 -0700 | [diff] [blame] | 753 | static void __replace_profile(struct aa_profile *old, struct aa_profile *new, |
John Johansen | 8399588 | 2017-01-16 00:42:19 -0800 | [diff] [blame] | 754 | bool share_proxy) |
John Johansen | dd51c848 | 2013-07-10 21:05:43 -0700 | [diff] [blame] | 755 | { |
| 756 | struct aa_profile *child, *tmp; |
| 757 | |
| 758 | if (!list_empty(&old->base.profiles)) { |
| 759 | LIST_HEAD(lh); |
John Johansen | 01e2b67 | 2013-07-10 21:06:43 -0700 | [diff] [blame] | 760 | list_splice_init_rcu(&old->base.profiles, &lh, synchronize_rcu); |
John Johansen | dd51c848 | 2013-07-10 21:05:43 -0700 | [diff] [blame] | 761 | |
| 762 | list_for_each_entry_safe(child, tmp, &lh, base.list) { |
| 763 | struct aa_profile *p; |
| 764 | |
| 765 | list_del_init(&child->base.list); |
| 766 | p = __find_child(&new->base.profiles, child->base.name); |
| 767 | if (p) { |
| 768 | /* @p replaces @child */ |
John Johansen | 8399588 | 2017-01-16 00:42:19 -0800 | [diff] [blame] | 769 | __replace_profile(child, p, share_proxy); |
John Johansen | dd51c848 | 2013-07-10 21:05:43 -0700 | [diff] [blame] | 770 | continue; |
| 771 | } |
| 772 | |
| 773 | /* inherit @child and its children */ |
| 774 | /* TODO: update hname of inherited children */ |
| 775 | /* list refcount transferred to @new */ |
John Johansen | 0d259f0 | 2013-07-10 21:13:43 -0700 | [diff] [blame] | 776 | p = aa_deref_parent(child); |
John Johansen | 01e2b67 | 2013-07-10 21:06:43 -0700 | [diff] [blame] | 777 | rcu_assign_pointer(child->parent, aa_get_profile(new)); |
| 778 | list_add_rcu(&child->base.list, &new->base.profiles); |
| 779 | aa_put_profile(p); |
John Johansen | dd51c848 | 2013-07-10 21:05:43 -0700 | [diff] [blame] | 780 | } |
| 781 | } |
| 782 | |
John Johansen | 01e2b67 | 2013-07-10 21:06:43 -0700 | [diff] [blame] | 783 | if (!rcu_access_pointer(new->parent)) { |
John Johansen | 0d259f0 | 2013-07-10 21:13:43 -0700 | [diff] [blame] | 784 | struct aa_profile *parent = aa_deref_parent(old); |
John Johansen | 01e2b67 | 2013-07-10 21:06:43 -0700 | [diff] [blame] | 785 | rcu_assign_pointer(new->parent, aa_get_profile(parent)); |
| 786 | } |
John Johansen | 8399588 | 2017-01-16 00:42:19 -0800 | [diff] [blame] | 787 | __aa_update_proxy(old, new); |
| 788 | if (share_proxy) { |
| 789 | aa_put_proxy(new->proxy); |
| 790 | new->proxy = aa_get_proxy(old->proxy); |
| 791 | } else if (!rcu_access_pointer(new->proxy->profile)) |
| 792 | /* aafs interface uses proxy */ |
| 793 | rcu_assign_pointer(new->proxy->profile, |
John Johansen | 0d259f0 | 2013-07-10 21:13:43 -0700 | [diff] [blame] | 794 | aa_get_profile(new)); |
John Johansen | c97204b | 2017-05-25 06:23:42 -0700 | [diff] [blame] | 795 | __aafs_profile_migrate_dents(old, new); |
John Johansen | dd51c848 | 2013-07-10 21:05:43 -0700 | [diff] [blame] | 796 | |
| 797 | if (list_empty(&new->base.list)) { |
| 798 | /* new is not on a list already */ |
John Johansen | 01e2b67 | 2013-07-10 21:06:43 -0700 | [diff] [blame] | 799 | list_replace_rcu(&old->base.list, &new->base.list); |
John Johansen | dd51c848 | 2013-07-10 21:05:43 -0700 | [diff] [blame] | 800 | aa_get_profile(new); |
| 801 | aa_put_profile(old); |
| 802 | } else |
| 803 | __list_remove_profile(old); |
| 804 | } |
| 805 | |
| 806 | /** |
| 807 | * __lookup_replace - lookup replacement information for a profile |
| 808 | * @ns - namespace the lookup occurs in |
| 809 | * @hname - name of profile to lookup |
| 810 | * @noreplace - true if not replacing an existing profile |
| 811 | * @p - Returns: profile to be replaced |
| 812 | * @info - Returns: info string on why lookup failed |
| 813 | * |
| 814 | * Returns: profile to replace (no ref) on success else ptr error |
| 815 | */ |
John Johansen | 98849df | 2017-01-16 00:42:16 -0800 | [diff] [blame] | 816 | static int __lookup_replace(struct aa_ns *ns, const char *hname, |
John Johansen | dd51c848 | 2013-07-10 21:05:43 -0700 | [diff] [blame] | 817 | bool noreplace, struct aa_profile **p, |
| 818 | const char **info) |
| 819 | { |
| 820 | *p = aa_get_profile(__lookup_profile(&ns->base, hname)); |
| 821 | if (*p) { |
| 822 | int error = replacement_allowed(*p, noreplace, info); |
| 823 | if (error) { |
| 824 | *info = "profile can not be replaced"; |
| 825 | return error; |
| 826 | } |
| 827 | } |
| 828 | |
| 829 | return 0; |
| 830 | } |
| 831 | |
John Johansen | a1bd627 | 2017-06-09 07:09:05 -0700 | [diff] [blame^] | 832 | static void share_name(struct aa_profile *old, struct aa_profile *new) |
| 833 | { |
| 834 | aa_put_str(new->base.hname); |
| 835 | aa_get_str(old->base.hname); |
| 836 | new->base.hname = old->base.hname; |
| 837 | new->base.name = old->base.name; |
| 838 | } |
| 839 | |
John Johansen | c88d4c7 | 2010-07-29 14:48:00 -0700 | [diff] [blame] | 840 | /** |
| 841 | * aa_replace_profiles - replace profile(s) on the profile list |
John Johansen | 60285eb | 2017-06-04 12:22:22 -0700 | [diff] [blame] | 842 | * @policy_ns: namespace load is occurring on |
John Johansen | 12dd717 | 2017-01-16 00:42:57 -0800 | [diff] [blame] | 843 | * @label: label that is attempting to load/replace policy |
John Johansen | 18e99f1 | 2017-05-26 01:45:08 -0700 | [diff] [blame] | 844 | * @mask: permission mask |
John Johansen | 5ac8c35 | 2017-01-16 00:42:55 -0800 | [diff] [blame] | 845 | * @udata: serialized data stream (NOT NULL) |
John Johansen | c88d4c7 | 2010-07-29 14:48:00 -0700 | [diff] [blame] | 846 | * |
| 847 | * unpack and replace a profile on the profile list and uses of that profile |
John Johansen | 55a26eb | 2017-01-16 00:43:00 -0800 | [diff] [blame] | 848 | * by any aa_task_ctx. If the profile does not exist on the profile list |
John Johansen | c88d4c7 | 2010-07-29 14:48:00 -0700 | [diff] [blame] | 849 | * it is added. |
| 850 | * |
| 851 | * Returns: size of data consumed else error code on failure. |
| 852 | */ |
John Johansen | 60285eb | 2017-06-04 12:22:22 -0700 | [diff] [blame] | 853 | ssize_t aa_replace_profiles(struct aa_ns *policy_ns, struct aa_profile *profile, |
John Johansen | 18e99f1 | 2017-05-26 01:45:08 -0700 | [diff] [blame] | 854 | u32 mask, struct aa_loaddata *udata) |
John Johansen | c88d4c7 | 2010-07-29 14:48:00 -0700 | [diff] [blame] | 855 | { |
John Johansen | bf15cf0 | 2016-04-16 14:16:50 -0700 | [diff] [blame] | 856 | const char *ns_name, *info = NULL; |
John Johansen | 98849df | 2017-01-16 00:42:16 -0800 | [diff] [blame] | 857 | struct aa_ns *ns = NULL; |
John Johansen | dd51c848 | 2013-07-10 21:05:43 -0700 | [diff] [blame] | 858 | struct aa_load_ent *ent, *tmp; |
John Johansen | 5d5182ca | 2017-05-09 00:08:41 -0700 | [diff] [blame] | 859 | struct aa_loaddata *rawdata_ent; |
John Johansen | 18e99f1 | 2017-05-26 01:45:08 -0700 | [diff] [blame] | 860 | const char *op; |
John Johansen | 04dc715 | 2017-01-16 00:42:56 -0800 | [diff] [blame] | 861 | ssize_t count, error; |
John Johansen | dd51c848 | 2013-07-10 21:05:43 -0700 | [diff] [blame] | 862 | LIST_HEAD(lh); |
John Johansen | c88d4c7 | 2010-07-29 14:48:00 -0700 | [diff] [blame] | 863 | |
John Johansen | 18e99f1 | 2017-05-26 01:45:08 -0700 | [diff] [blame] | 864 | op = mask & AA_MAY_REPLACE_POLICY ? OP_PROF_REPL : OP_PROF_LOAD; |
John Johansen | 5d5182ca | 2017-05-09 00:08:41 -0700 | [diff] [blame] | 865 | aa_get_loaddata(udata); |
John Johansen | c88d4c7 | 2010-07-29 14:48:00 -0700 | [diff] [blame] | 866 | /* released below */ |
John Johansen | 5ac8c35 | 2017-01-16 00:42:55 -0800 | [diff] [blame] | 867 | error = aa_unpack(udata, &lh, &ns_name); |
John Johansen | dd51c848 | 2013-07-10 21:05:43 -0700 | [diff] [blame] | 868 | if (error) |
| 869 | goto out; |
John Johansen | c88d4c7 | 2010-07-29 14:48:00 -0700 | [diff] [blame] | 870 | |
John Johansen | 04dc715 | 2017-01-16 00:42:56 -0800 | [diff] [blame] | 871 | /* ensure that profiles are all for the same ns |
| 872 | * TODO: update locking to remove this constaint. All profiles in |
| 873 | * the load set must succeed as a set or the load will |
| 874 | * fail. Sort ent list and take ns locks in hierarchy order |
| 875 | */ |
| 876 | count = 0; |
| 877 | list_for_each_entry(ent, &lh, list) { |
| 878 | if (ns_name) { |
| 879 | if (ent->ns_name && |
| 880 | strcmp(ent->ns_name, ns_name) != 0) { |
| 881 | info = "policy load has mixed namespaces"; |
| 882 | error = -EACCES; |
| 883 | goto fail; |
| 884 | } |
| 885 | } else if (ent->ns_name) { |
| 886 | if (count) { |
| 887 | info = "policy load has mixed namespaces"; |
| 888 | error = -EACCES; |
| 889 | goto fail; |
| 890 | } |
| 891 | ns_name = ent->ns_name; |
| 892 | } else |
| 893 | count++; |
John Johansen | c88d4c7 | 2010-07-29 14:48:00 -0700 | [diff] [blame] | 894 | } |
John Johansen | 04dc715 | 2017-01-16 00:42:56 -0800 | [diff] [blame] | 895 | if (ns_name) { |
John Johansen | 60285eb | 2017-06-04 12:22:22 -0700 | [diff] [blame] | 896 | ns = aa_prepare_ns(policy_ns ? policy_ns : profile->ns, |
| 897 | ns_name); |
John Johansen | 04dc715 | 2017-01-16 00:42:56 -0800 | [diff] [blame] | 898 | if (IS_ERR(ns)) { |
John Johansen | b9b144b | 2017-04-06 06:55:22 -0700 | [diff] [blame] | 899 | op = OP_PROF_LOAD; |
John Johansen | 04dc715 | 2017-01-16 00:42:56 -0800 | [diff] [blame] | 900 | info = "failed to prepare namespace"; |
| 901 | error = PTR_ERR(ns); |
| 902 | ns = NULL; |
John Johansen | b9b144b | 2017-04-06 06:55:22 -0700 | [diff] [blame] | 903 | ent = NULL; |
John Johansen | 04dc715 | 2017-01-16 00:42:56 -0800 | [diff] [blame] | 904 | goto fail; |
| 905 | } |
| 906 | } else |
John Johansen | 60285eb | 2017-06-04 12:22:22 -0700 | [diff] [blame] | 907 | ns = aa_get_ns(policy_ns ? policy_ns : profile->ns); |
John Johansen | c88d4c7 | 2010-07-29 14:48:00 -0700 | [diff] [blame] | 908 | |
John Johansen | 01e2b67 | 2013-07-10 21:06:43 -0700 | [diff] [blame] | 909 | mutex_lock(&ns->lock); |
John Johansen | 5d5182ca | 2017-05-09 00:08:41 -0700 | [diff] [blame] | 910 | /* check for duplicate rawdata blobs: space and file dedup */ |
| 911 | list_for_each_entry(rawdata_ent, &ns->rawdata_list, list) { |
| 912 | if (aa_rawdata_eq(rawdata_ent, udata)) { |
| 913 | struct aa_loaddata *tmp; |
| 914 | |
| 915 | tmp = __aa_get_loaddata(rawdata_ent); |
| 916 | /* check we didn't fail the race */ |
| 917 | if (tmp) { |
| 918 | aa_put_loaddata(udata); |
| 919 | udata = tmp; |
| 920 | break; |
| 921 | } |
| 922 | } |
| 923 | } |
John Johansen | dd51c848 | 2013-07-10 21:05:43 -0700 | [diff] [blame] | 924 | /* setup parent and ns info */ |
| 925 | list_for_each_entry(ent, &lh, list) { |
| 926 | struct aa_policy *policy; |
John Johansen | 5d5182ca | 2017-05-09 00:08:41 -0700 | [diff] [blame] | 927 | |
John Johansen | 5ac8c35 | 2017-01-16 00:42:55 -0800 | [diff] [blame] | 928 | ent->new->rawdata = aa_get_loaddata(udata); |
John Johansen | 18e99f1 | 2017-05-26 01:45:08 -0700 | [diff] [blame] | 929 | error = __lookup_replace(ns, ent->new->base.hname, |
| 930 | !(mask & AA_MAY_REPLACE_POLICY), |
John Johansen | dd51c848 | 2013-07-10 21:05:43 -0700 | [diff] [blame] | 931 | &ent->old, &info); |
| 932 | if (error) |
| 933 | goto fail_lock; |
John Johansen | c88d4c7 | 2010-07-29 14:48:00 -0700 | [diff] [blame] | 934 | |
John Johansen | dd51c848 | 2013-07-10 21:05:43 -0700 | [diff] [blame] | 935 | if (ent->new->rename) { |
| 936 | error = __lookup_replace(ns, ent->new->rename, |
John Johansen | 18e99f1 | 2017-05-26 01:45:08 -0700 | [diff] [blame] | 937 | !(mask & AA_MAY_REPLACE_POLICY), |
| 938 | &ent->rename, &info); |
John Johansen | dd51c848 | 2013-07-10 21:05:43 -0700 | [diff] [blame] | 939 | if (error) |
| 940 | goto fail_lock; |
John Johansen | c88d4c7 | 2010-07-29 14:48:00 -0700 | [diff] [blame] | 941 | } |
John Johansen | dd51c848 | 2013-07-10 21:05:43 -0700 | [diff] [blame] | 942 | |
| 943 | /* released when @new is freed */ |
John Johansen | 98849df | 2017-01-16 00:42:16 -0800 | [diff] [blame] | 944 | ent->new->ns = aa_get_ns(ns); |
John Johansen | dd51c848 | 2013-07-10 21:05:43 -0700 | [diff] [blame] | 945 | |
| 946 | if (ent->old || ent->rename) |
| 947 | continue; |
| 948 | |
| 949 | /* no ref on policy only use inside lock */ |
| 950 | policy = __lookup_parent(ns, ent->new->base.hname); |
| 951 | if (!policy) { |
| 952 | struct aa_profile *p; |
| 953 | p = __list_lookup_parent(&lh, ent->new); |
| 954 | if (!p) { |
| 955 | error = -ENOENT; |
| 956 | info = "parent does not exist"; |
John Johansen | dd51c848 | 2013-07-10 21:05:43 -0700 | [diff] [blame] | 957 | goto fail_lock; |
| 958 | } |
John Johansen | 01e2b67 | 2013-07-10 21:06:43 -0700 | [diff] [blame] | 959 | rcu_assign_pointer(ent->new->parent, aa_get_profile(p)); |
| 960 | } else if (policy != &ns->base) { |
John Johansen | dd51c848 | 2013-07-10 21:05:43 -0700 | [diff] [blame] | 961 | /* released on profile replacement or free_profile */ |
John Johansen | 01e2b67 | 2013-07-10 21:06:43 -0700 | [diff] [blame] | 962 | struct aa_profile *p = (struct aa_profile *) policy; |
| 963 | rcu_assign_pointer(ent->new->parent, aa_get_profile(p)); |
| 964 | } |
John Johansen | c88d4c7 | 2010-07-29 14:48:00 -0700 | [diff] [blame] | 965 | } |
| 966 | |
John Johansen | 0d259f0 | 2013-07-10 21:13:43 -0700 | [diff] [blame] | 967 | /* create new fs entries for introspection if needed */ |
John Johansen | 5d5182ca | 2017-05-09 00:08:41 -0700 | [diff] [blame] | 968 | if (!udata->dents[AAFS_LOADDATA_DIR]) { |
| 969 | error = __aa_fs_create_rawdata(ns, udata); |
| 970 | if (error) { |
| 971 | info = "failed to create raw_data dir and files"; |
| 972 | ent = NULL; |
| 973 | goto fail_lock; |
| 974 | } |
| 975 | } |
John Johansen | 0d259f0 | 2013-07-10 21:13:43 -0700 | [diff] [blame] | 976 | list_for_each_entry(ent, &lh, list) { |
| 977 | if (ent->old) { |
| 978 | /* inherit old interface files */ |
| 979 | |
| 980 | /* if (ent->rename) |
| 981 | TODO: support rename */ |
| 982 | /* } else if (ent->rename) { |
| 983 | TODO: support rename */ |
| 984 | } else { |
| 985 | struct dentry *parent; |
| 986 | if (rcu_access_pointer(ent->new->parent)) { |
| 987 | struct aa_profile *p; |
| 988 | p = aa_deref_parent(ent->new); |
| 989 | parent = prof_child_dir(p); |
| 990 | } else |
| 991 | parent = ns_subprofs_dir(ent->new->ns); |
John Johansen | c97204b | 2017-05-25 06:23:42 -0700 | [diff] [blame] | 992 | error = __aafs_profile_mkdir(ent->new, parent); |
John Johansen | 0d259f0 | 2013-07-10 21:13:43 -0700 | [diff] [blame] | 993 | } |
| 994 | |
| 995 | if (error) { |
| 996 | info = "failed to create "; |
| 997 | goto fail_lock; |
| 998 | } |
| 999 | } |
| 1000 | |
| 1001 | /* Done with checks that may fail - do actual replacement */ |
John Johansen | 5d5182ca | 2017-05-09 00:08:41 -0700 | [diff] [blame] | 1002 | __aa_bump_ns_revision(ns); |
| 1003 | __aa_loaddata_update(udata, ns->revision); |
John Johansen | dd51c848 | 2013-07-10 21:05:43 -0700 | [diff] [blame] | 1004 | list_for_each_entry_safe(ent, tmp, &lh, list) { |
| 1005 | list_del_init(&ent->list); |
| 1006 | op = (!ent->old && !ent->rename) ? OP_PROF_LOAD : OP_PROF_REPL; |
John Johansen | c88d4c7 | 2010-07-29 14:48:00 -0700 | [diff] [blame] | 1007 | |
John Johansen | 5d5182ca | 2017-05-09 00:08:41 -0700 | [diff] [blame] | 1008 | if (ent->old && ent->old->rawdata == ent->new->rawdata) { |
| 1009 | /* dedup actual profile replacement */ |
| 1010 | audit_policy(profile, op, ns_name, ent->new->base.hname, |
| 1011 | "same as current profile, skipping", |
| 1012 | error); |
| 1013 | goto skip; |
| 1014 | } |
| 1015 | |
| 1016 | /* |
| 1017 | * TODO: finer dedup based on profile range in data. Load set |
| 1018 | * can differ but profile may remain unchanged |
| 1019 | */ |
John Johansen | ef88a7a | 2017-01-16 00:43:02 -0800 | [diff] [blame] | 1020 | audit_policy(profile, op, NULL, ent->new->base.hname, |
| 1021 | NULL, error); |
John Johansen | c88d4c7 | 2010-07-29 14:48:00 -0700 | [diff] [blame] | 1022 | |
John Johansen | dd51c848 | 2013-07-10 21:05:43 -0700 | [diff] [blame] | 1023 | if (ent->old) { |
John Johansen | a1bd627 | 2017-06-09 07:09:05 -0700 | [diff] [blame^] | 1024 | share_name(ent->old, ent->new); |
John Johansen | 77b071b | 2013-07-10 21:07:43 -0700 | [diff] [blame] | 1025 | __replace_profile(ent->old, ent->new, 1); |
John Johansen | 0d259f0 | 2013-07-10 21:13:43 -0700 | [diff] [blame] | 1026 | if (ent->rename) { |
John Johansen | 8399588 | 2017-01-16 00:42:19 -0800 | [diff] [blame] | 1027 | /* aafs interface uses proxy */ |
| 1028 | struct aa_proxy *r = ent->new->proxy; |
John Johansen | 0d259f0 | 2013-07-10 21:13:43 -0700 | [diff] [blame] | 1029 | rcu_assign_pointer(r->profile, |
| 1030 | aa_get_profile(ent->new)); |
John Johansen | 77b071b | 2013-07-10 21:07:43 -0700 | [diff] [blame] | 1031 | __replace_profile(ent->rename, ent->new, 0); |
John Johansen | 0d259f0 | 2013-07-10 21:13:43 -0700 | [diff] [blame] | 1032 | } |
John Johansen | dd51c848 | 2013-07-10 21:05:43 -0700 | [diff] [blame] | 1033 | } else if (ent->rename) { |
John Johansen | 8399588 | 2017-01-16 00:42:19 -0800 | [diff] [blame] | 1034 | /* aafs interface uses proxy */ |
| 1035 | rcu_assign_pointer(ent->new->proxy->profile, |
John Johansen | 0d259f0 | 2013-07-10 21:13:43 -0700 | [diff] [blame] | 1036 | aa_get_profile(ent->new)); |
John Johansen | 77b071b | 2013-07-10 21:07:43 -0700 | [diff] [blame] | 1037 | __replace_profile(ent->rename, ent->new, 0); |
John Johansen | dd51c848 | 2013-07-10 21:05:43 -0700 | [diff] [blame] | 1038 | } else if (ent->new->parent) { |
John Johansen | 01e2b67 | 2013-07-10 21:06:43 -0700 | [diff] [blame] | 1039 | struct aa_profile *parent, *newest; |
John Johansen | 0d259f0 | 2013-07-10 21:13:43 -0700 | [diff] [blame] | 1040 | parent = aa_deref_parent(ent->new); |
John Johansen | 77b071b | 2013-07-10 21:07:43 -0700 | [diff] [blame] | 1041 | newest = aa_get_newest_profile(parent); |
John Johansen | 01e2b67 | 2013-07-10 21:06:43 -0700 | [diff] [blame] | 1042 | |
John Johansen | dd51c848 | 2013-07-10 21:05:43 -0700 | [diff] [blame] | 1043 | /* parent replaced in this atomic set? */ |
John Johansen | 01e2b67 | 2013-07-10 21:06:43 -0700 | [diff] [blame] | 1044 | if (newest != parent) { |
| 1045 | aa_get_profile(newest); |
John Johansen | 01e2b67 | 2013-07-10 21:06:43 -0700 | [diff] [blame] | 1046 | rcu_assign_pointer(ent->new->parent, newest); |
John Johansen | f351841 | 2016-04-16 13:59:02 -0700 | [diff] [blame] | 1047 | aa_put_profile(parent); |
John Johansen | dcda617 | 2016-04-11 16:55:10 -0700 | [diff] [blame] | 1048 | } |
John Johansen | 8399588 | 2017-01-16 00:42:19 -0800 | [diff] [blame] | 1049 | /* aafs interface uses proxy */ |
| 1050 | rcu_assign_pointer(ent->new->proxy->profile, |
John Johansen | 0d259f0 | 2013-07-10 21:13:43 -0700 | [diff] [blame] | 1051 | aa_get_profile(ent->new)); |
John Johansen | ec34fa2 | 2016-04-11 16:57:19 -0700 | [diff] [blame] | 1052 | __list_add_profile(&newest->base.profiles, ent->new); |
John Johansen | dcda617 | 2016-04-11 16:55:10 -0700 | [diff] [blame] | 1053 | aa_put_profile(newest); |
John Johansen | 0d259f0 | 2013-07-10 21:13:43 -0700 | [diff] [blame] | 1054 | } else { |
John Johansen | 8399588 | 2017-01-16 00:42:19 -0800 | [diff] [blame] | 1055 | /* aafs interface uses proxy */ |
| 1056 | rcu_assign_pointer(ent->new->proxy->profile, |
John Johansen | 0d259f0 | 2013-07-10 21:13:43 -0700 | [diff] [blame] | 1057 | aa_get_profile(ent->new)); |
John Johansen | dd51c848 | 2013-07-10 21:05:43 -0700 | [diff] [blame] | 1058 | __list_add_profile(&ns->base.profiles, ent->new); |
John Johansen | 0d259f0 | 2013-07-10 21:13:43 -0700 | [diff] [blame] | 1059 | } |
John Johansen | 5d5182ca | 2017-05-09 00:08:41 -0700 | [diff] [blame] | 1060 | skip: |
John Johansen | dd51c848 | 2013-07-10 21:05:43 -0700 | [diff] [blame] | 1061 | aa_load_ent_free(ent); |
John Johansen | c88d4c7 | 2010-07-29 14:48:00 -0700 | [diff] [blame] | 1062 | } |
John Johansen | 01e2b67 | 2013-07-10 21:06:43 -0700 | [diff] [blame] | 1063 | mutex_unlock(&ns->lock); |
John Johansen | c88d4c7 | 2010-07-29 14:48:00 -0700 | [diff] [blame] | 1064 | |
| 1065 | out: |
John Johansen | 98849df | 2017-01-16 00:42:16 -0800 | [diff] [blame] | 1066 | aa_put_ns(ns); |
John Johansen | 5d5182ca | 2017-05-09 00:08:41 -0700 | [diff] [blame] | 1067 | aa_put_loaddata(udata); |
John Johansen | dd51c848 | 2013-07-10 21:05:43 -0700 | [diff] [blame] | 1068 | |
John Johansen | c88d4c7 | 2010-07-29 14:48:00 -0700 | [diff] [blame] | 1069 | if (error) |
| 1070 | return error; |
John Johansen | 5ac8c35 | 2017-01-16 00:42:55 -0800 | [diff] [blame] | 1071 | return udata->size; |
John Johansen | c88d4c7 | 2010-07-29 14:48:00 -0700 | [diff] [blame] | 1072 | |
John Johansen | dd51c848 | 2013-07-10 21:05:43 -0700 | [diff] [blame] | 1073 | fail_lock: |
John Johansen | 01e2b67 | 2013-07-10 21:06:43 -0700 | [diff] [blame] | 1074 | mutex_unlock(&ns->lock); |
John Johansen | dd51c848 | 2013-07-10 21:05:43 -0700 | [diff] [blame] | 1075 | |
John Johansen | bf15cf0 | 2016-04-16 14:16:50 -0700 | [diff] [blame] | 1076 | /* audit cause of failure */ |
John Johansen | 5d5182ca | 2017-05-09 00:08:41 -0700 | [diff] [blame] | 1077 | op = (ent && !ent->old) ? OP_PROF_LOAD : OP_PROF_REPL; |
John Johansen | 04dc715 | 2017-01-16 00:42:56 -0800 | [diff] [blame] | 1078 | fail: |
John Johansen | b9b144b | 2017-04-06 06:55:22 -0700 | [diff] [blame] | 1079 | audit_policy(profile, op, ns_name, ent ? ent->new->base.hname : NULL, |
John Johansen | 12dd717 | 2017-01-16 00:42:57 -0800 | [diff] [blame] | 1080 | info, error); |
John Johansen | bf15cf0 | 2016-04-16 14:16:50 -0700 | [diff] [blame] | 1081 | /* audit status that rest of profiles in the atomic set failed too */ |
| 1082 | info = "valid profile in failed atomic policy load"; |
| 1083 | list_for_each_entry(tmp, &lh, list) { |
| 1084 | if (tmp == ent) { |
| 1085 | info = "unchecked profile in failed atomic policy load"; |
| 1086 | /* skip entry that caused failure */ |
| 1087 | continue; |
| 1088 | } |
John Johansen | b9b144b | 2017-04-06 06:55:22 -0700 | [diff] [blame] | 1089 | op = (!tmp->old) ? OP_PROF_LOAD : OP_PROF_REPL; |
John Johansen | ef88a7a | 2017-01-16 00:43:02 -0800 | [diff] [blame] | 1090 | audit_policy(profile, op, ns_name, |
John Johansen | a6f2330 | 2017-01-16 00:42:49 -0800 | [diff] [blame] | 1091 | tmp->new->base.hname, info, error); |
John Johansen | bf15cf0 | 2016-04-16 14:16:50 -0700 | [diff] [blame] | 1092 | } |
John Johansen | dd51c848 | 2013-07-10 21:05:43 -0700 | [diff] [blame] | 1093 | list_for_each_entry_safe(ent, tmp, &lh, list) { |
| 1094 | list_del_init(&ent->list); |
| 1095 | aa_load_ent_free(ent); |
| 1096 | } |
| 1097 | |
John Johansen | c88d4c7 | 2010-07-29 14:48:00 -0700 | [diff] [blame] | 1098 | goto out; |
| 1099 | } |
| 1100 | |
| 1101 | /** |
| 1102 | * aa_remove_profiles - remove profile(s) from the system |
John Johansen | 60285eb | 2017-06-04 12:22:22 -0700 | [diff] [blame] | 1103 | * @policy_ns: namespace the remove is being done from |
John Johansen | 12dd717 | 2017-01-16 00:42:57 -0800 | [diff] [blame] | 1104 | * @subj: profile attempting to remove policy |
John Johansen | c88d4c7 | 2010-07-29 14:48:00 -0700 | [diff] [blame] | 1105 | * @fqname: name of the profile or namespace to remove (NOT NULL) |
| 1106 | * @size: size of the name |
| 1107 | * |
| 1108 | * Remove a profile or sub namespace from the current namespace, so that |
| 1109 | * they can not be found anymore and mark them as replaced by unconfined |
| 1110 | * |
| 1111 | * NOTE: removing confinement does not restore rlimits to preconfinemnet values |
| 1112 | * |
| 1113 | * Returns: size of data consume else error code if fails |
| 1114 | */ |
John Johansen | 60285eb | 2017-06-04 12:22:22 -0700 | [diff] [blame] | 1115 | ssize_t aa_remove_profiles(struct aa_ns *policy_ns, struct aa_profile *subj, |
John Johansen | 12dd717 | 2017-01-16 00:42:57 -0800 | [diff] [blame] | 1116 | char *fqname, size_t size) |
John Johansen | c88d4c7 | 2010-07-29 14:48:00 -0700 | [diff] [blame] | 1117 | { |
John Johansen | 60285eb | 2017-06-04 12:22:22 -0700 | [diff] [blame] | 1118 | struct aa_ns *ns = NULL; |
John Johansen | c88d4c7 | 2010-07-29 14:48:00 -0700 | [diff] [blame] | 1119 | struct aa_profile *profile = NULL; |
| 1120 | const char *name = fqname, *info = NULL; |
John Johansen | 3664268 | 2017-06-02 17:44:27 -0700 | [diff] [blame] | 1121 | const char *ns_name = NULL; |
John Johansen | c88d4c7 | 2010-07-29 14:48:00 -0700 | [diff] [blame] | 1122 | ssize_t error = 0; |
| 1123 | |
| 1124 | if (*fqname == 0) { |
| 1125 | info = "no profile specified"; |
| 1126 | error = -ENOENT; |
| 1127 | goto fail; |
| 1128 | } |
| 1129 | |
John Johansen | c88d4c7 | 2010-07-29 14:48:00 -0700 | [diff] [blame] | 1130 | if (fqname[0] == ':') { |
John Johansen | 3664268 | 2017-06-02 17:44:27 -0700 | [diff] [blame] | 1131 | size_t ns_len; |
| 1132 | |
| 1133 | name = aa_splitn_fqname(fqname, size, &ns_name, &ns_len); |
John Johansen | 41d1b3e | 2013-02-21 01:14:17 -0800 | [diff] [blame] | 1134 | /* released below */ |
John Johansen | 60285eb | 2017-06-04 12:22:22 -0700 | [diff] [blame] | 1135 | ns = aa_lookupn_ns(policy_ns ? policy_ns : subj->ns, ns_name, |
| 1136 | ns_len); |
John Johansen | 41d1b3e | 2013-02-21 01:14:17 -0800 | [diff] [blame] | 1137 | if (!ns) { |
| 1138 | info = "namespace does not exist"; |
| 1139 | error = -ENOENT; |
| 1140 | goto fail; |
John Johansen | c88d4c7 | 2010-07-29 14:48:00 -0700 | [diff] [blame] | 1141 | } |
| 1142 | } else |
| 1143 | /* released below */ |
John Johansen | 60285eb | 2017-06-04 12:22:22 -0700 | [diff] [blame] | 1144 | ns = aa_get_ns(policy_ns ? policy_ns : subj->ns); |
John Johansen | c88d4c7 | 2010-07-29 14:48:00 -0700 | [diff] [blame] | 1145 | |
John Johansen | c88d4c7 | 2010-07-29 14:48:00 -0700 | [diff] [blame] | 1146 | if (!name) { |
| 1147 | /* remove namespace - can only happen if fqname[0] == ':' */ |
John Johansen | 01e2b67 | 2013-07-10 21:06:43 -0700 | [diff] [blame] | 1148 | mutex_lock(&ns->parent->lock); |
John Johansen | 98849df | 2017-01-16 00:42:16 -0800 | [diff] [blame] | 1149 | __aa_remove_ns(ns); |
John Johansen | 5d5182ca | 2017-05-09 00:08:41 -0700 | [diff] [blame] | 1150 | __aa_bump_ns_revision(ns); |
John Johansen | 01e2b67 | 2013-07-10 21:06:43 -0700 | [diff] [blame] | 1151 | mutex_unlock(&ns->parent->lock); |
John Johansen | c88d4c7 | 2010-07-29 14:48:00 -0700 | [diff] [blame] | 1152 | } else { |
| 1153 | /* remove profile */ |
John Johansen | 01e2b67 | 2013-07-10 21:06:43 -0700 | [diff] [blame] | 1154 | mutex_lock(&ns->lock); |
John Johansen | c88d4c7 | 2010-07-29 14:48:00 -0700 | [diff] [blame] | 1155 | profile = aa_get_profile(__lookup_profile(&ns->base, name)); |
| 1156 | if (!profile) { |
| 1157 | error = -ENOENT; |
| 1158 | info = "profile does not exist"; |
| 1159 | goto fail_ns_lock; |
| 1160 | } |
| 1161 | name = profile->base.hname; |
| 1162 | __remove_profile(profile); |
John Johansen | 5d5182ca | 2017-05-09 00:08:41 -0700 | [diff] [blame] | 1163 | __aa_bump_ns_revision(ns); |
John Johansen | 01e2b67 | 2013-07-10 21:06:43 -0700 | [diff] [blame] | 1164 | mutex_unlock(&ns->lock); |
John Johansen | c88d4c7 | 2010-07-29 14:48:00 -0700 | [diff] [blame] | 1165 | } |
John Johansen | c88d4c7 | 2010-07-29 14:48:00 -0700 | [diff] [blame] | 1166 | |
| 1167 | /* don't fail removal if audit fails */ |
John Johansen | ef88a7a | 2017-01-16 00:43:02 -0800 | [diff] [blame] | 1168 | (void) audit_policy(subj, OP_PROF_RM, ns_name, name, info, |
John Johansen | 12dd717 | 2017-01-16 00:42:57 -0800 | [diff] [blame] | 1169 | error); |
John Johansen | 98849df | 2017-01-16 00:42:16 -0800 | [diff] [blame] | 1170 | aa_put_ns(ns); |
John Johansen | c88d4c7 | 2010-07-29 14:48:00 -0700 | [diff] [blame] | 1171 | aa_put_profile(profile); |
| 1172 | return size; |
| 1173 | |
| 1174 | fail_ns_lock: |
John Johansen | 01e2b67 | 2013-07-10 21:06:43 -0700 | [diff] [blame] | 1175 | mutex_unlock(&ns->lock); |
John Johansen | 98849df | 2017-01-16 00:42:16 -0800 | [diff] [blame] | 1176 | aa_put_ns(ns); |
John Johansen | c88d4c7 | 2010-07-29 14:48:00 -0700 | [diff] [blame] | 1177 | |
| 1178 | fail: |
John Johansen | ef88a7a | 2017-01-16 00:43:02 -0800 | [diff] [blame] | 1179 | (void) audit_policy(subj, OP_PROF_RM, ns_name, name, info, |
John Johansen | 12dd717 | 2017-01-16 00:42:57 -0800 | [diff] [blame] | 1180 | error); |
John Johansen | c88d4c7 | 2010-07-29 14:48:00 -0700 | [diff] [blame] | 1181 | return error; |
| 1182 | } |