policy.c 32.0 KB
Newer Older
J
John Johansen 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78
/*
 * AppArmor security module
 *
 * This file contains AppArmor policy manipulation functions
 *
 * Copyright (C) 1998-2008 Novell/SUSE
 * Copyright 2009-2010 Canonical Ltd.
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public License as
 * published by the Free Software Foundation, version 2 of the
 * License.
 *
 *
 * AppArmor policy is based around profiles, which contain the rules a
 * task is confined by.  Every task in the system has a profile attached
 * to it determined either by matching "unconfined" tasks against the
 * visible set of profiles or by following a profiles attachment rules.
 *
 * Each profile exists in a profile namespace which is a container of
 * visible profiles.  Each namespace contains a special "unconfined" profile,
 * which doesn't enforce any confinement on a task beyond DAC.
 *
 * Namespace and profile names can be written together in either
 * of two syntaxes.
 *	:namespace:profile - used by kernel interfaces for easy detection
 *	namespace://profile - used by policy
 *
 * Profile names can not start with : or @ or ^ and may not contain \0
 *
 * Reserved profile names
 *	unconfined - special automatically generated unconfined profile
 *	inherit - special name to indicate profile inheritance
 *	null-XXXX-YYYY - special automatically generated learning profiles
 *
 * Namespace names may not start with / or @ and may not contain \0 or :
 * Reserved namespace names
 *	user-XXXX - user defined profiles
 *
 * a // in a profile or namespace name indicates a hierarchical name with the
 * name before the // being the parent and the name after the child.
 *
 * Profile and namespace hierarchies serve two different but similar purposes.
 * The namespace contains the set of visible profiles that are considered
 * for attachment.  The hierarchy of namespaces allows for virtualizing
 * the namespace so that for example a chroot can have its own set of profiles
 * which may define some local user namespaces.
 * The profile hierarchy severs two distinct purposes,
 * -  it allows for sub profiles or hats, which allows an application to run
 *    subprograms under its own profile with different restriction than it
 *    self, and not have it use the system profile.
 *    eg. if a mail program starts an editor, the policy might make the
 *        restrictions tighter on the editor tighter than the mail program,
 *        and definitely different than general editor restrictions
 * - it allows for binary hierarchy of profiles, so that execution history
 *   is preserved.  This feature isn't exploited by AppArmor reference policy
 *   but is allowed.  NOTE: this is currently suboptimal because profile
 *   aliasing is not currently implemented so that a profile for each
 *   level must be defined.
 *   eg. /bin/bash///bin/ls as a name would indicate /bin/ls was started
 *       from /bin/bash
 *
 *   A profile or namespace name that can contain one or more // separators
 *   is referred to as an hname (hierarchical).
 *   eg.  /bin/bash//bin/ls
 *
 *   An fqname is a name that may contain both namespace and profile hnames.
 *   eg. :ns:/bin/bash//bin/ls
 *
 * NOTES:
 *   - locking of profile lists is currently fairly coarse.  All profile
 *     lists within a namespace use the namespace lock.
 * FIXME: move profile lists to using rcu_lists
 */

#include <linux/slab.h>
#include <linux/spinlock.h>
#include <linux/string.h>
79
#include <linux/cred.h>
80
#include <linux/rculist.h>
81
#include <linux/user_namespace.h>
J
John Johansen 已提交
82 83 84 85 86 87 88 89 90

#include "include/apparmor.h"
#include "include/capability.h"
#include "include/context.h"
#include "include/file.h"
#include "include/ipc.h"
#include "include/match.h"
#include "include/path.h"
#include "include/policy.h"
91
#include "include/policy_ns.h"
J
John Johansen 已提交
92 93 94
#include "include/policy_unpack.h"
#include "include/resource.h"

95
int unprivileged_userns_apparmor_policy = 1;
J
John Johansen 已提交
96

97
const char *const aa_profile_mode_names[] = {
J
John Johansen 已提交
98 99 100
	"enforce",
	"complain",
	"kill",
101
	"unconfined",
J
John Johansen 已提交
102 103
};

104
/* requires profile list write lock held */
105
void __aa_update_proxy(struct aa_profile *orig, struct aa_profile *new)
J
John Johansen 已提交
106
{
107
	struct aa_profile *tmp;
J
John Johansen 已提交
108

109
	tmp = rcu_dereference_protected(orig->proxy->profile,
110
					mutex_is_locked(&orig->ns->lock));
111
	rcu_assign_pointer(orig->proxy->profile, aa_get_profile(new));
112
	orig->flags |= PFLAG_STALE;
113
	aa_put_profile(tmp);
J
John Johansen 已提交
114 115 116 117 118 119 120 121 122 123 124 125 126 127
}

/**
 * __list_add_profile - add a profile to a list
 * @list: list to add it to  (NOT NULL)
 * @profile: the profile to add  (NOT NULL)
 *
 * refcount @profile, should be put by __list_remove_profile
 *
 * Requires: namespace lock be held, or list not be shared
 */
static void __list_add_profile(struct list_head *list,
			       struct aa_profile *profile)
{
128
	list_add_rcu(&profile->base.list, list);
J
John Johansen 已提交
129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146
	/* get list reference */
	aa_get_profile(profile);
}

/**
 * __list_remove_profile - remove a profile from the list it is on
 * @profile: the profile to remove  (NOT NULL)
 *
 * remove a profile from the list, warning generally removal should
 * be done with __replace_profile as most profile removals are
 * replacements to the unconfined profile.
 *
 * put @profile list refcount
 *
 * Requires: namespace lock be held, or list not have been live
 */
static void __list_remove_profile(struct aa_profile *profile)
{
147 148
	list_del_rcu(&profile->base.list);
	aa_put_profile(profile);
J
John Johansen 已提交
149 150 151 152 153 154 155 156 157 158 159
}

/**
 * __remove_profile - remove old profile, and children
 * @profile: profile to be replaced  (NOT NULL)
 *
 * Requires: namespace list lock be held, or list not be shared
 */
static void __remove_profile(struct aa_profile *profile)
{
	/* release any children lists first */
160
	__aa_profile_list_release(&profile->base.profiles);
J
John Johansen 已提交
161
	/* released by free_profile */
162
	__aa_update_proxy(profile, profile->ns->unconfined);
163
	__aafs_profile_rmdir(profile);
J
John Johansen 已提交
164 165 166 167
	__list_remove_profile(profile);
}

/**
168
 * __aa_profile_list_release - remove all profiles on the list and put refs
J
John Johansen 已提交
169 170 171 172
 * @head: list of profiles  (NOT NULL)
 *
 * Requires: namespace lock be held
 */
173
void __aa_profile_list_release(struct list_head *head)
J
John Johansen 已提交
174 175 176 177 178 179
{
	struct aa_profile *profile, *tmp;
	list_for_each_entry_safe(profile, tmp, head, base.list)
		__remove_profile(profile);
}

180

181
static void free_proxy(struct aa_proxy *p)
182
{
183
	if (p) {
184
		/* r->profile will not be updated any more as r is dead */
185 186
		aa_put_profile(rcu_dereference_protected(p->profile, true));
		kzfree(p);
187 188 189 190
	}
}


191
void aa_free_proxy_kref(struct kref *kref)
192
{
193 194 195
	struct aa_proxy *p = container_of(kref, struct aa_proxy, count);

	free_proxy(p);
196 197
}

198 199 200 201 202 203 204 205 206 207 208 209 210 211
/**
 * aa_free_data - free a data blob
 * @ptr: data to free
 * @arg: unused
 */
static void aa_free_data(void *ptr, void *arg)
{
	struct aa_data *data = ptr;

	kzfree(data->data);
	kzfree(data->key);
	kzfree(data);
}

J
John Johansen 已提交
212
/**
213
 * aa_free_profile - free a profile
J
John Johansen 已提交
214 215 216 217 218 219 220 221
 * @profile: the profile to free  (MAYBE NULL)
 *
 * Free a profile, its hats and null_profile. All references to the profile,
 * its hats and null_profile must have been put.
 *
 * If the profile was referenced from a task context, free_profile() will
 * be called from an rcu callback routine, so we must not sleep here.
 */
222
void aa_free_profile(struct aa_profile *profile)
J
John Johansen 已提交
223
{
224 225
	struct rhashtable *rht;

J
John Johansen 已提交
226 227 228 229 230 231
	AA_DEBUG("%s(%p)\n", __func__, profile);

	if (!profile)
		return;

	/* free children profiles */
232
	aa_policy_destroy(&profile->base);
233
	aa_put_profile(rcu_access_pointer(profile->parent));
J
John Johansen 已提交
234

235
	aa_put_ns(profile->ns);
J
John Johansen 已提交
236 237 238 239 240 241
	kzfree(profile->rename);

	aa_free_file_rules(&profile->file);
	aa_free_cap_rules(&profile->caps);
	aa_free_rlimit_rules(&profile->rlimits);

242
	kzfree(profile->dirname);
J
John Johansen 已提交
243
	aa_put_dfa(profile->xmatch);
244
	aa_put_dfa(profile->policy.dfa);
245
	aa_put_proxy(profile->proxy);
J
John Johansen 已提交
246

247 248 249 250 251 252 253
	if (profile->data) {
		rht = profile->data;
		profile->data = NULL;
		rhashtable_free_and_destroy(rht, aa_free_data, NULL);
		kzfree(rht);
	}

254
	kzfree(profile->hash);
255
	aa_put_loaddata(profile->rawdata);
J
John Johansen 已提交
256 257 258
	kzfree(profile);
}

259 260 261 262 263 264
/**
 * aa_free_profile_rcu - free aa_profile by rcu (called by aa_free_profile_kref)
 * @head: rcu_head callback for freeing of a profile  (NOT NULL)
 */
static void aa_free_profile_rcu(struct rcu_head *head)
{
265 266
	struct aa_profile *p = container_of(head, struct aa_profile, rcu);
	if (p->flags & PFLAG_NS_COUNT)
267
		aa_free_ns(p->ns);
268
	else
269
		aa_free_profile(p);
270 271
}

J
John Johansen 已提交
272 273 274 275 276 277
/**
 * aa_free_profile_kref - free aa_profile by kref (called by aa_put_profile)
 * @kr: kref callback for freeing of a profile  (NOT NULL)
 */
void aa_free_profile_kref(struct kref *kref)
{
278
	struct aa_profile *p = container_of(kref, struct aa_profile, count);
279
	call_rcu(&p->rcu, aa_free_profile_rcu);
J
John Johansen 已提交
280 281
}

282 283 284
/**
 * aa_alloc_profile - allocate, initialize and return a new profile
 * @hname: name of the profile  (NOT NULL)
285
 * @gfp: allocation type
286 287 288
 *
 * Returns: refcount profile or NULL on failure
 */
289
struct aa_profile *aa_alloc_profile(const char *hname, gfp_t gfp)
290 291 292 293
{
	struct aa_profile *profile;

	/* freed by free_profile - usually through aa_put_profile */
294
	profile = kzalloc(sizeof(*profile), gfp);
295 296 297
	if (!profile)
		return NULL;

298
	profile->proxy = kzalloc(sizeof(struct aa_proxy), gfp);
299
	if (!profile->proxy)
300
		goto fail;
301
	kref_init(&profile->proxy->count);
302

303
	if (!aa_policy_init(&profile->base, NULL, hname, gfp))
304
		goto fail;
305
	kref_init(&profile->count);
306 307 308

	/* refcount released by caller */
	return profile;
309 310

fail:
311
	kzfree(profile->proxy);
312 313 314
	kzfree(profile);

	return NULL;
315 316 317
}

/**
318
 * aa_new_null_profile - create or find a null-X learning profile
319 320
 * @parent: profile that caused this profile to be created (NOT NULL)
 * @hat: true if the null- learning profile is a hat
321 322
 * @base: name to base the null profile off of
 * @gfp: type of allocation
323
 *
324 325 326 327
 * Find/Create a null- complain mode profile used in learning mode.  The
 * name of the profile is unique and follows the format of parent//null-XXX.
 * where XXX is based on the @name or if that fails or is not supplied
 * a unique number
328 329 330 331 332 333 334
 *
 * null profiles are added to the profile list but the list does not
 * hold a count on them so that they are automatically released when
 * not in use.
 *
 * Returns: new refcounted profile else NULL on failure
 */
335 336
struct aa_profile *aa_new_null_profile(struct aa_profile *parent, bool hat,
				       const char *base, gfp_t gfp)
337
{
338
	struct aa_profile *profile;
339 340
	char *name;

341 342 343 344 345 346 347 348 349 350 351 352 353
	AA_BUG(!parent);

	if (base) {
		name = kmalloc(strlen(parent->base.hname) + 8 + strlen(base),
			       gfp);
		if (name) {
			sprintf(name, "%s//null-%s", parent->base.hname, base);
			goto name;
		}
		/* fall through to try shorter uniq */
	}

	name = kmalloc(strlen(parent->base.hname) + 2 + 7 + 8, gfp);
354
	if (!name)
355 356 357
		return NULL;
	sprintf(name, "%s//null-%x", parent->base.hname,
		atomic_inc_return(&parent->ns->uniq_null));
358

359 360 361 362 363 364 365
name:
	/* lookup to see if this is a dup creation */
	profile = aa_find_child(parent, basename(name));
	if (profile)
		goto out;

	profile = aa_alloc_profile(name, gfp);
366 367 368 369
	if (!profile)
		goto fail;

	profile->mode = APPARMOR_COMPLAIN;
370
	profile->flags |= PFLAG_NULL;
371 372
	if (hat)
		profile->flags |= PFLAG_HAT;
373
	profile->path_flags = parent->path_flags;
374 375

	/* released on free_profile */
376
	rcu_assign_pointer(profile->parent, aa_get_profile(parent));
377
	profile->ns = aa_get_ns(parent->ns);
J
John Johansen 已提交
378 379
	profile->file.dfa = aa_get_dfa(nulldfa);
	profile->policy.dfa = aa_get_dfa(nulldfa);
380

381
	mutex_lock(&profile->ns->lock);
382
	__list_add_profile(&parent->base.profiles, profile);
383
	mutex_unlock(&profile->ns->lock);
384 385

	/* refcount released by caller */
386 387 388
out:
	kfree(name);

389 390 391
	return profile;

fail:
392 393
	kfree(name);
	aa_free_profile(profile);
394 395 396
	return NULL;
}

J
John Johansen 已提交
397 398 399
/* TODO: profile accounting - setup in remove */

/**
J
John Johansen 已提交
400
 * __strn_find_child - find a profile on @head list using substring of @name
J
John Johansen 已提交
401 402
 * @head: list to search  (NOT NULL)
 * @name: name of profile (NOT NULL)
J
John Johansen 已提交
403
 * @len: length of @name substring to match
J
John Johansen 已提交
404
 *
405
 * Requires: rcu_read_lock be held
J
John Johansen 已提交
406 407 408
 *
 * Returns: unrefcounted profile ptr, or NULL if not found
 */
J
John Johansen 已提交
409 410
static struct aa_profile *__strn_find_child(struct list_head *head,
					    const char *name, int len)
J
John Johansen 已提交
411
{
J
John Johansen 已提交
412
	return (struct aa_profile *)__policy_strn_find(head, name, len);
J
John Johansen 已提交
413 414 415
}

/**
J
John Johansen 已提交
416
 * __find_child - find a profile on @head list with a name matching @name
J
John Johansen 已提交
417 418 419
 * @head: list to search  (NOT NULL)
 * @name: name of profile (NOT NULL)
 *
420
 * Requires: rcu_read_lock be held
J
John Johansen 已提交
421 422 423
 *
 * Returns: unrefcounted profile ptr, or NULL if not found
 */
J
John Johansen 已提交
424
static struct aa_profile *__find_child(struct list_head *head, const char *name)
J
John Johansen 已提交
425
{
J
John Johansen 已提交
426
	return __strn_find_child(head, name, strlen(name));
J
John Johansen 已提交
427 428 429 430 431 432 433 434 435 436 437 438 439
}

/**
 * aa_find_child - find a profile by @name in @parent
 * @parent: profile to search  (NOT NULL)
 * @name: profile name to search for  (NOT NULL)
 *
 * Returns: a refcounted profile or NULL if not found
 */
struct aa_profile *aa_find_child(struct aa_profile *parent, const char *name)
{
	struct aa_profile *profile;

440
	rcu_read_lock();
441 442 443
	do {
		profile = __find_child(&parent->base.profiles, name);
	} while (profile && !aa_get_profile_not0(profile));
444
	rcu_read_unlock();
J
John Johansen 已提交
445 446 447 448 449 450 451 452 453 454 455 456 457 458

	/* refcount released by caller */
	return profile;
}

/**
 * __lookup_parent - lookup the parent of a profile of name @hname
 * @ns: namespace to lookup profile in  (NOT NULL)
 * @hname: hierarchical profile name to find parent of  (NOT NULL)
 *
 * Lookups up the parent of a fully qualified profile name, the profile
 * that matches hname does not need to exist, in general this
 * is used to load a new profile.
 *
459
 * Requires: rcu_read_lock be held
J
John Johansen 已提交
460 461 462
 *
 * Returns: unrefcounted policy or NULL if not found
 */
463
static struct aa_policy *__lookup_parent(struct aa_ns *ns,
J
John Johansen 已提交
464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486
					 const char *hname)
{
	struct aa_policy *policy;
	struct aa_profile *profile = NULL;
	char *split;

	policy = &ns->base;

	for (split = strstr(hname, "//"); split;) {
		profile = __strn_find_child(&policy->profiles, hname,
					    split - hname);
		if (!profile)
			return NULL;
		policy = &profile->base;
		hname = split + 2;
		split = strstr(hname, "//");
	}
	if (!profile)
		return &ns->base;
	return &profile->base;
}

/**
487
 * __lookupn_profile - lookup the profile matching @hname
J
John Johansen 已提交
488 489
 * @base: base list to start looking up profile name from  (NOT NULL)
 * @hname: hierarchical profile name  (NOT NULL)
490
 * @n: length of @hname
J
John Johansen 已提交
491
 *
492
 * Requires: rcu_read_lock be held
J
John Johansen 已提交
493 494 495 496 497
 *
 * Returns: unrefcounted profile pointer or NULL if not found
 *
 * Do a relative name lookup, recursing through profile tree.
 */
498 499
static struct aa_profile *__lookupn_profile(struct aa_policy *base,
					    const char *hname, size_t n)
J
John Johansen 已提交
500 501
{
	struct aa_profile *profile = NULL;
502
	const char *split;
J
John Johansen 已提交
503

504 505
	for (split = strnstr(hname, "//", n); split;
	     split = strnstr(hname, "//", n)) {
J
John Johansen 已提交
506 507 508 509 510 511
		profile = __strn_find_child(&base->profiles, hname,
					    split - hname);
		if (!profile)
			return NULL;

		base = &profile->base;
512
		n -= split + 2 - hname;
J
John Johansen 已提交
513 514 515
		hname = split + 2;
	}

516 517 518 519
	if (n)
		return __strn_find_child(&base->profiles, hname, n);
	return NULL;
}
J
John Johansen 已提交
520

521 522 523 524
static struct aa_profile *__lookup_profile(struct aa_policy *base,
					   const char *hname)
{
	return __lookupn_profile(base, hname, strlen(hname));
J
John Johansen 已提交
525 526 527 528 529 530
}

/**
 * aa_lookup_profile - find a profile by its full or partial name
 * @ns: the namespace to start from (NOT NULL)
 * @hname: name to do lookup on.  Does not contain namespace prefix (NOT NULL)
531
 * @n: size of @hname
J
John Johansen 已提交
532 533 534
 *
 * Returns: refcounted profile or NULL if not found
 */
535 536
struct aa_profile *aa_lookupn_profile(struct aa_ns *ns, const char *hname,
				      size_t n)
J
John Johansen 已提交
537 538 539
{
	struct aa_profile *profile;

540 541
	rcu_read_lock();
	do {
542
		profile = __lookupn_profile(&ns->base, hname, n);
543 544
	} while (profile && !aa_get_profile_not0(profile));
	rcu_read_unlock();
J
John Johansen 已提交
545

546
	/* the unconfined profile is not in the regular profile list */
547
	if (!profile && strncmp(hname, "unconfined", n) == 0)
548
		profile = aa_get_newest_profile(ns->unconfined);
549

J
John Johansen 已提交
550 551 552 553
	/* refcount released by caller */
	return profile;
}

554 555 556 557
struct aa_profile *aa_lookup_profile(struct aa_ns *ns, const char *hname)
{
	return aa_lookupn_profile(ns, hname, strlen(hname));
}
558 559 560 561 562 563 564 565 566 567 568

struct aa_profile *aa_fqlookupn_profile(struct aa_profile *base,
					const char *fqname, size_t n)
{
	struct aa_profile *profile;
	struct aa_ns *ns;
	const char *name, *ns_name;
	size_t ns_len;

	name = aa_splitn_fqname(fqname, n, &ns_name, &ns_len);
	if (ns_name) {
569
		ns = aa_lookupn_ns(base->ns, ns_name, ns_len);
570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586
		if (!ns)
			return NULL;
	} else
		ns = aa_get_ns(base->ns);

	if (name)
		profile = aa_lookupn_profile(ns, name, n - (name - fqname));
	else if (ns)
		/* default profile for ns, currently unconfined */
		profile = aa_get_newest_profile(ns->unconfined);
	else
		profile = NULL;
	aa_put_ns(ns);

	return profile;
}

J
John Johansen 已提交
587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609
/**
 * replacement_allowed - test to see if replacement is allowed
 * @profile: profile to test if it can be replaced  (MAYBE NULL)
 * @noreplace: true if replacement shouldn't be allowed but addition is okay
 * @info: Returns - info about why replacement failed (NOT NULL)
 *
 * Returns: %0 if replacement allowed else error code
 */
static int replacement_allowed(struct aa_profile *profile, int noreplace,
			       const char **info)
{
	if (profile) {
		if (profile->flags & PFLAG_IMMUTABLE) {
			*info = "cannot replace immutible profile";
			return -EPERM;
		} else if (noreplace) {
			*info = "profile already exists";
			return -EEXIST;
		}
	}
	return 0;
}

610 611 612 613 614
/* audit callback for net specific fields */
static void audit_cb(struct audit_buffer *ab, void *va)
{
	struct common_audit_data *sa = va;

615
	if (aad(sa)->iface.ns) {
616
		audit_log_format(ab, " ns=");
617
		audit_log_untrustedstring(ab, aad(sa)->iface.ns);
618 619 620
	}
}

J
John Johansen 已提交
621 622
/**
 * aa_audit_policy - Do auditing of policy changes
623
 * @profile: profile to check if it can manage policy
J
John Johansen 已提交
624 625
 * @op: policy operation being performed
 * @gfp: memory allocation flags
626
 * @nsname: name of the ns being manipulated (MAY BE NULL)
J
John Johansen 已提交
627 628 629 630 631 632
 * @name: name of profile being manipulated (NOT NULL)
 * @info: any extra information to be audited (MAYBE NULL)
 * @error: error code
 *
 * Returns: the error to be returned after audit is done
 */
633
static int audit_policy(struct aa_profile *profile, const char *op,
634 635
			const char *nsname, const char *name,
			const char *info, int error)
J
John Johansen 已提交
636
{
637 638 639 640 641 642 643 644
	DEFINE_AUDIT_DATA(sa, LSM_AUDIT_DATA_NONE, op);

	aad(&sa)->iface.ns = nsname;
	aad(&sa)->name = name;
	aad(&sa)->info = info;
	aad(&sa)->error = error;

	return aa_audit(AUDIT_APPARMOR_STATUS, profile, &sa, audit_cb);
J
John Johansen 已提交
645 646
}

647 648 649 650 651 652 653 654 655
/**
 * policy_view_capable - check if viewing policy in at @ns is allowed
 * ns: namespace being viewed by current task (may be NULL)
 * Returns: true if viewing policy is allowed
 *
 * If @ns is NULL then the namespace being viewed is assumed to be the
 * tasks current namespace.
 */
bool policy_view_capable(struct aa_ns *ns)
656 657
{
	struct user_namespace *user_ns = current_user_ns();
658 659 660
	struct aa_ns *view_ns = aa_get_current_ns();
	bool root_in_user_ns = uid_eq(current_euid(), make_kuid(user_ns, 0)) ||
			       in_egroup_p(make_kgid(user_ns, 0));
661
	bool response = false;
662 663
	if (!ns)
		ns = view_ns;
664

665 666 667 668
	if (root_in_user_ns && aa_ns_visible(view_ns, ns, true) &&
	    (user_ns == &init_user_ns ||
	     (unprivileged_userns_apparmor_policy != 0 &&
	      user_ns->level == view_ns->level)))
669
		response = true;
670
	aa_put_ns(view_ns);
671 672 673 674

	return response;
}

675
bool policy_admin_capable(struct aa_ns *ns)
676
{
677 678 679 680 681 682 683
	struct user_namespace *user_ns = current_user_ns();
	bool capable = ns_capable(user_ns, CAP_MAC_ADMIN);

	AA_DEBUG("cap_mac_admin? %d\n", capable);
	AA_DEBUG("policy locked? %d\n", aa_g_lock_policy);

	return policy_view_capable(ns) && capable && !aa_g_lock_policy;
684 685
}

J
John Johansen 已提交
686 687
/**
 * aa_may_manage_policy - can the current task manage policy
688
 * @profile: profile to check if it can manage policy
J
John Johansen 已提交
689 690
 * @op: the policy manipulation operation being done
 *
691
 * Returns: 0 if the task is allowed to manipulate policy else error
J
John Johansen 已提交
692
 */
693
int aa_may_manage_policy(struct aa_profile *profile, struct aa_ns *ns, u32 mask)
J
John Johansen 已提交
694
{
695 696 697 698 699 700 701 702 703
	const char *op;

	if (mask & AA_MAY_REMOVE_POLICY)
		op = OP_PROF_RM;
	else if (mask & AA_MAY_REPLACE_POLICY)
		op = OP_PROF_REPL;
	else
		op = OP_PROF_LOAD;

J
John Johansen 已提交
704
	/* check if loading policy is locked out */
705
	if (aa_g_lock_policy)
706 707
		return audit_policy(profile, op, NULL, NULL, "policy_locked",
				    -EACCES);
J
John Johansen 已提交
708

709
	if (!policy_admin_capable(ns))
710 711
		return audit_policy(profile, op, NULL, NULL, "not policy admin",
				    -EACCES);
J
John Johansen 已提交
712

713 714
	/* TODO: add fine grained mediation of policy loads */
	return 0;
J
John Johansen 已提交
715 716
}

717 718 719
static struct aa_profile *__list_lookup_parent(struct list_head *lh,
					       struct aa_profile *profile)
{
720
	const char *base = basename(profile->base.hname);
721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743
	long len = base - profile->base.hname;
	struct aa_load_ent *ent;

	/* parent won't have trailing // so remove from len */
	if (len <= 2)
		return NULL;
	len -= 2;

	list_for_each_entry(ent, lh, list) {
		if (ent->new == profile)
			continue;
		if (strncmp(ent->new->base.hname, profile->base.hname, len) ==
		    0 && ent->new->base.hname[len] == 0)
			return ent->new;
	}

	return NULL;
}

/**
 * __replace_profile - replace @old with @new on a list
 * @old: profile to be replaced  (NOT NULL)
 * @new: profile to replace @old with  (NOT NULL)
744
 * @share_proxy: transfer @old->proxy to @new
745 746 747 748 749 750 751 752
 *
 * Will duplicate and refcount elements that @new inherits from @old
 * and will inherit @old children.
 *
 * refcount @new for list, put @old list refcount
 *
 * Requires: namespace list lock be held, or list not be shared
 */
753
static void __replace_profile(struct aa_profile *old, struct aa_profile *new,
754
			      bool share_proxy)
755 756 757 758 759
{
	struct aa_profile *child, *tmp;

	if (!list_empty(&old->base.profiles)) {
		LIST_HEAD(lh);
760
		list_splice_init_rcu(&old->base.profiles, &lh, synchronize_rcu);
761 762 763 764 765 766 767 768

		list_for_each_entry_safe(child, tmp, &lh, base.list) {
			struct aa_profile *p;

			list_del_init(&child->base.list);
			p = __find_child(&new->base.profiles, child->base.name);
			if (p) {
				/* @p replaces @child  */
769
				__replace_profile(child, p, share_proxy);
770 771 772 773 774 775
				continue;
			}

			/* inherit @child and its children */
			/* TODO: update hname of inherited children */
			/* list refcount transferred to @new */
776
			p = aa_deref_parent(child);
777 778 779
			rcu_assign_pointer(child->parent, aa_get_profile(new));
			list_add_rcu(&child->base.list, &new->base.profiles);
			aa_put_profile(p);
780 781 782
		}
	}

783
	if (!rcu_access_pointer(new->parent)) {
784
		struct aa_profile *parent = aa_deref_parent(old);
785 786
		rcu_assign_pointer(new->parent, aa_get_profile(parent));
	}
787 788 789 790 791 792 793
	__aa_update_proxy(old, new);
	if (share_proxy) {
		aa_put_proxy(new->proxy);
		new->proxy = aa_get_proxy(old->proxy);
	} else if (!rcu_access_pointer(new->proxy->profile))
		/* aafs interface uses proxy */
		rcu_assign_pointer(new->proxy->profile,
794
				   aa_get_profile(new));
795
	__aafs_profile_migrate_dents(old, new);
796 797 798

	if (list_empty(&new->base.list)) {
		/* new is not on a list already */
799
		list_replace_rcu(&old->base.list, &new->base.list);
800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815
		aa_get_profile(new);
		aa_put_profile(old);
	} else
		__list_remove_profile(old);
}

/**
 * __lookup_replace - lookup replacement information for a profile
 * @ns - namespace the lookup occurs in
 * @hname - name of profile to lookup
 * @noreplace - true if not replacing an existing profile
 * @p - Returns: profile to be replaced
 * @info - Returns: info string on why lookup failed
 *
 * Returns: profile to replace (no ref) on success else ptr error
 */
816
static int __lookup_replace(struct aa_ns *ns, const char *hname,
817 818 819 820 821 822 823 824 825 826 827 828 829 830 831
			    bool noreplace, struct aa_profile **p,
			    const char **info)
{
	*p = aa_get_profile(__lookup_profile(&ns->base, hname));
	if (*p) {
		int error = replacement_allowed(*p, noreplace, info);
		if (error) {
			*info = "profile can not be replaced";
			return error;
		}
	}

	return 0;
}

J
John Johansen 已提交
832 833
/**
 * aa_replace_profiles - replace profile(s) on the profile list
834
 * @policy_ns: namespace load is occurring on
835
 * @label: label that is attempting to load/replace policy
836
 * @mask: permission mask
837
 * @udata: serialized data stream  (NOT NULL)
J
John Johansen 已提交
838 839
 *
 * unpack and replace a profile on the profile list and uses of that profile
840
 * by any aa_task_ctx.  If the profile does not exist on the profile list
J
John Johansen 已提交
841 842 843 844
 * it is added.
 *
 * Returns: size of data consumed else error code on failure.
 */
845
ssize_t aa_replace_profiles(struct aa_ns *policy_ns, struct aa_profile *profile,
846
			    u32 mask, struct aa_loaddata *udata)
J
John Johansen 已提交
847
{
848
	const char *ns_name, *info = NULL;
849
	struct aa_ns *ns = NULL;
850
	struct aa_load_ent *ent, *tmp;
851
	struct aa_loaddata *rawdata_ent;
852
	const char *op;
853
	ssize_t count, error;
854
	LIST_HEAD(lh);
J
John Johansen 已提交
855

856
	op = mask & AA_MAY_REPLACE_POLICY ? OP_PROF_REPL : OP_PROF_LOAD;
857
	aa_get_loaddata(udata);
J
John Johansen 已提交
858
	/* released below */
859
	error = aa_unpack(udata, &lh, &ns_name);
860 861
	if (error)
		goto out;
J
John Johansen 已提交
862

863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885
	/* ensure that profiles are all for the same ns
	 * TODO: update locking to remove this constaint. All profiles in
	 *       the load set must succeed as a set or the load will
	 *       fail. Sort ent list and take ns locks in hierarchy order
	 */
	count = 0;
	list_for_each_entry(ent, &lh, list) {
		if (ns_name) {
			if (ent->ns_name &&
			    strcmp(ent->ns_name, ns_name) != 0) {
				info = "policy load has mixed namespaces";
				error = -EACCES;
				goto fail;
			}
		} else if (ent->ns_name) {
			if (count) {
				info = "policy load has mixed namespaces";
				error = -EACCES;
				goto fail;
			}
			ns_name = ent->ns_name;
		} else
			count++;
J
John Johansen 已提交
886
	}
887
	if (ns_name) {
888 889
		ns = aa_prepare_ns(policy_ns ? policy_ns : profile->ns,
				   ns_name);
890
		if (IS_ERR(ns)) {
891
			op = OP_PROF_LOAD;
892 893 894
			info = "failed to prepare namespace";
			error = PTR_ERR(ns);
			ns = NULL;
895
			ent = NULL;
896 897 898
			goto fail;
		}
	} else
899
		ns = aa_get_ns(policy_ns ? policy_ns : profile->ns);
J
John Johansen 已提交
900

901
	mutex_lock(&ns->lock);
902 903 904 905 906 907 908 909 910 911 912 913 914 915
	/* check for duplicate rawdata blobs: space and file dedup */
	list_for_each_entry(rawdata_ent, &ns->rawdata_list, list) {
		if (aa_rawdata_eq(rawdata_ent, udata)) {
			struct aa_loaddata *tmp;

			tmp = __aa_get_loaddata(rawdata_ent);
			/* check we didn't fail the race */
			if (tmp) {
				aa_put_loaddata(udata);
				udata = tmp;
				break;
			}
		}
	}
916 917 918
	/* setup parent and ns info */
	list_for_each_entry(ent, &lh, list) {
		struct aa_policy *policy;
919

920
		ent->new->rawdata = aa_get_loaddata(udata);
921 922
		error = __lookup_replace(ns, ent->new->base.hname,
					 !(mask & AA_MAY_REPLACE_POLICY),
923 924 925 926 927 928
					 &ent->old, &info);
		if (error)
			goto fail_lock;

		if (ent->new->rename) {
			error = __lookup_replace(ns, ent->new->rename,
929 930
					!(mask & AA_MAY_REPLACE_POLICY),
					 &ent->rename, &info);
931 932
			if (error)
				goto fail_lock;
J
John Johansen 已提交
933 934
		}

935
		/* released when @new is freed */
936
		ent->new->ns = aa_get_ns(ns);
937 938 939 940 941 942 943 944 945 946 947 948 949 950

		if (ent->old || ent->rename)
			continue;

		/* no ref on policy only use inside lock */
		policy = __lookup_parent(ns, ent->new->base.hname);
		if (!policy) {
			struct aa_profile *p;
			p = __list_lookup_parent(&lh, ent->new);
			if (!p) {
				error = -ENOENT;
				info = "parent does not exist";
				goto fail_lock;
			}
951 952
			rcu_assign_pointer(ent->new->parent, aa_get_profile(p));
		} else if (policy != &ns->base) {
953
			/* released on profile replacement or free_profile */
954 955 956
			struct aa_profile *p = (struct aa_profile *) policy;
			rcu_assign_pointer(ent->new->parent, aa_get_profile(p));
		}
957
	}
J
John Johansen 已提交
958

959
	/* create new fs entries for introspection if needed */
960 961 962 963 964 965 966 967
	if (!udata->dents[AAFS_LOADDATA_DIR]) {
		error = __aa_fs_create_rawdata(ns, udata);
		if (error) {
			info = "failed to create raw_data dir and files";
			ent = NULL;
			goto fail_lock;
		}
	}
968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983
	list_for_each_entry(ent, &lh, list) {
		if (ent->old) {
			/* inherit old interface files */

			/* if (ent->rename)
				TODO: support rename */
		/* } else if (ent->rename) {
			TODO: support rename */
		} else {
			struct dentry *parent;
			if (rcu_access_pointer(ent->new->parent)) {
				struct aa_profile *p;
				p = aa_deref_parent(ent->new);
				parent = prof_child_dir(p);
			} else
				parent = ns_subprofs_dir(ent->new->ns);
984
			error = __aafs_profile_mkdir(ent->new, parent);
985 986 987 988 989 990 991 992 993
		}

		if (error) {
			info = "failed to create ";
			goto fail_lock;
		}
	}

	/* Done with checks that may fail - do actual replacement */
994 995
	__aa_bump_ns_revision(ns);
	__aa_loaddata_update(udata, ns->revision);
996 997 998 999
	list_for_each_entry_safe(ent, tmp, &lh, list) {
		list_del_init(&ent->list);
		op = (!ent->old && !ent->rename) ? OP_PROF_LOAD : OP_PROF_REPL;

1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011
		if (ent->old && ent->old->rawdata == ent->new->rawdata) {
			/* dedup actual profile replacement */
			audit_policy(profile, op, ns_name, ent->new->base.hname,
				     "same as current profile, skipping",
				     error);
			goto skip;
		}

		/*
		 * TODO: finer dedup based on profile range in data. Load set
		 * can differ but profile may remain unchanged
		 */
1012 1013
		audit_policy(profile, op, NULL, ent->new->base.hname,
			     NULL, error);
1014 1015

		if (ent->old) {
1016
			__replace_profile(ent->old, ent->new, 1);
1017
			if (ent->rename) {
1018 1019
				/* aafs interface uses proxy */
				struct aa_proxy *r = ent->new->proxy;
1020 1021
				rcu_assign_pointer(r->profile,
						   aa_get_profile(ent->new));
1022
				__replace_profile(ent->rename, ent->new, 0);
1023
			}
1024
		} else if (ent->rename) {
1025 1026
			/* aafs interface uses proxy */
			rcu_assign_pointer(ent->new->proxy->profile,
1027
					   aa_get_profile(ent->new));
1028
			__replace_profile(ent->rename, ent->new, 0);
1029
		} else if (ent->new->parent) {
1030
			struct aa_profile *parent, *newest;
1031
			parent = aa_deref_parent(ent->new);
1032
			newest = aa_get_newest_profile(parent);
1033

1034
			/* parent replaced in this atomic set? */
1035 1036 1037
			if (newest != parent) {
				aa_get_profile(newest);
				rcu_assign_pointer(ent->new->parent, newest);
1038
				aa_put_profile(parent);
1039
			}
1040 1041
			/* aafs interface uses proxy */
			rcu_assign_pointer(ent->new->proxy->profile,
1042
					   aa_get_profile(ent->new));
1043
			__list_add_profile(&newest->base.profiles, ent->new);
1044
			aa_put_profile(newest);
1045
		} else {
1046 1047
			/* aafs interface uses proxy */
			rcu_assign_pointer(ent->new->proxy->profile,
1048
					   aa_get_profile(ent->new));
1049
			__list_add_profile(&ns->base.profiles, ent->new);
1050
		}
1051
	skip:
1052
		aa_load_ent_free(ent);
J
John Johansen 已提交
1053
	}
1054
	mutex_unlock(&ns->lock);
J
John Johansen 已提交
1055 1056

out:
1057
	aa_put_ns(ns);
1058
	aa_put_loaddata(udata);
1059

J
John Johansen 已提交
1060 1061
	if (error)
		return error;
1062
	return udata->size;
J
John Johansen 已提交
1063

1064
fail_lock:
1065
	mutex_unlock(&ns->lock);
1066

1067
	/* audit cause of failure */
1068
	op = (ent && !ent->old) ? OP_PROF_LOAD : OP_PROF_REPL;
1069
fail:
1070
	audit_policy(profile, op, ns_name, ent ? ent->new->base.hname : NULL,
1071
		     info, error);
1072 1073 1074 1075 1076 1077 1078 1079
	/* audit status that rest of profiles in the atomic set failed too */
	info = "valid profile in failed atomic policy load";
	list_for_each_entry(tmp, &lh, list) {
		if (tmp == ent) {
			info = "unchecked profile in failed atomic policy load";
			/* skip entry that caused failure */
			continue;
		}
1080
		op = (!tmp->old) ? OP_PROF_LOAD : OP_PROF_REPL;
1081
		audit_policy(profile, op, ns_name,
1082
			     tmp->new->base.hname, info, error);
1083
	}
1084 1085 1086 1087 1088
	list_for_each_entry_safe(ent, tmp, &lh, list) {
		list_del_init(&ent->list);
		aa_load_ent_free(ent);
	}

J
John Johansen 已提交
1089 1090 1091 1092 1093
	goto out;
}

/**
 * aa_remove_profiles - remove profile(s) from the system
1094
 * @policy_ns: namespace the remove is being done from
1095
 * @subj: profile attempting to remove policy
J
John Johansen 已提交
1096 1097 1098 1099 1100 1101 1102 1103 1104 1105
 * @fqname: name of the profile or namespace to remove  (NOT NULL)
 * @size: size of the name
 *
 * Remove a profile or sub namespace from the current namespace, so that
 * they can not be found anymore and mark them as replaced by unconfined
 *
 * NOTE: removing confinement does not restore rlimits to preconfinemnet values
 *
 * Returns: size of data consume else error code if fails
 */
1106
ssize_t aa_remove_profiles(struct aa_ns *policy_ns, struct aa_profile *subj,
1107
			   char *fqname, size_t size)
J
John Johansen 已提交
1108
{
1109
	struct aa_ns *ns = NULL;
J
John Johansen 已提交
1110 1111
	struct aa_profile *profile = NULL;
	const char *name = fqname, *info = NULL;
1112
	const char *ns_name = NULL;
J
John Johansen 已提交
1113 1114 1115 1116 1117 1118 1119 1120 1121
	ssize_t error = 0;

	if (*fqname == 0) {
		info = "no profile specified";
		error = -ENOENT;
		goto fail;
	}

	if (fqname[0] == ':') {
1122 1123 1124
		size_t ns_len;

		name = aa_splitn_fqname(fqname, size, &ns_name, &ns_len);
1125
		/* released below */
1126 1127
		ns = aa_lookupn_ns(policy_ns ? policy_ns : subj->ns, ns_name,
				   ns_len);
1128 1129 1130 1131
		if (!ns) {
			info = "namespace does not exist";
			error = -ENOENT;
			goto fail;
J
John Johansen 已提交
1132 1133 1134
		}
	} else
		/* released below */
1135
		ns = aa_get_ns(policy_ns ? policy_ns : subj->ns);
J
John Johansen 已提交
1136 1137 1138

	if (!name) {
		/* remove namespace - can only happen if fqname[0] == ':' */
1139
		mutex_lock(&ns->parent->lock);
1140
		__aa_remove_ns(ns);
1141
		__aa_bump_ns_revision(ns);
1142
		mutex_unlock(&ns->parent->lock);
J
John Johansen 已提交
1143 1144
	} else {
		/* remove profile */
1145
		mutex_lock(&ns->lock);
J
John Johansen 已提交
1146 1147 1148 1149 1150 1151 1152 1153
		profile = aa_get_profile(__lookup_profile(&ns->base, name));
		if (!profile) {
			error = -ENOENT;
			info = "profile does not exist";
			goto fail_ns_lock;
		}
		name = profile->base.hname;
		__remove_profile(profile);
1154
		__aa_bump_ns_revision(ns);
1155
		mutex_unlock(&ns->lock);
J
John Johansen 已提交
1156 1157 1158
	}

	/* don't fail removal if audit fails */
1159
	(void) audit_policy(subj, OP_PROF_RM, ns_name, name, info,
1160
			    error);
1161
	aa_put_ns(ns);
J
John Johansen 已提交
1162 1163 1164 1165
	aa_put_profile(profile);
	return size;

fail_ns_lock:
1166
	mutex_unlock(&ns->lock);
1167
	aa_put_ns(ns);
J
John Johansen 已提交
1168 1169

fail:
1170
	(void) audit_policy(subj, OP_PROF_RM, ns_name, name, info,
1171
			    error);
J
John Johansen 已提交
1172 1173
	return error;
}