policy.c 26.2 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 79 80 81 82 83 84 85 86 87
/*
 * 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>

#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"
88
#include "include/policy_ns.h"
J
John Johansen 已提交
89 90 91 92
#include "include/policy_unpack.h"
#include "include/resource.h"


93
const char *const aa_profile_mode_names[] = {
J
John Johansen 已提交
94 95 96
	"enforce",
	"complain",
	"kill",
97
	"unconfined",
J
John Johansen 已提交
98 99 100
};


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

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

/**
 * __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)
{
125
	list_add_rcu(&profile->base.list, list);
J
John Johansen 已提交
126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143
	/* 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)
{
144 145
	list_del_rcu(&profile->base.list);
	aa_put_profile(profile);
J
John Johansen 已提交
146 147 148 149 150 151 152 153 154 155 156
}

/**
 * __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 */
157
	__aa_profile_list_release(&profile->base.profiles);
J
John Johansen 已提交
158
	/* released by free_profile */
159
	__aa_update_proxy(profile, profile->ns->unconfined);
160
	__aa_fs_profile_rmdir(profile);
J
John Johansen 已提交
161 162 163 164
	__list_remove_profile(profile);
}

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

177

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


188
void aa_free_proxy_kref(struct kref *kref)
189
{
190 191 192
	struct aa_proxy *p = container_of(kref, struct aa_proxy, count);

	free_proxy(p);
193 194
}

J
John Johansen 已提交
195
/**
196
 * aa_free_profile - free a profile
J
John Johansen 已提交
197 198 199 200 201 202 203 204
 * @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.
 */
205
void aa_free_profile(struct aa_profile *profile)
J
John Johansen 已提交
206 207 208 209 210 211 212
{
	AA_DEBUG("%s(%p)\n", __func__, profile);

	if (!profile)
		return;

	/* free children profiles */
213
	aa_policy_destroy(&profile->base);
214
	aa_put_profile(rcu_access_pointer(profile->parent));
J
John Johansen 已提交
215

216
	aa_put_ns(profile->ns);
J
John Johansen 已提交
217 218 219 220 221 222
	kzfree(profile->rename);

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

223
	kzfree(profile->dirname);
J
John Johansen 已提交
224
	aa_put_dfa(profile->xmatch);
225
	aa_put_dfa(profile->policy.dfa);
226
	aa_put_proxy(profile->proxy);
J
John Johansen 已提交
227

228
	kzfree(profile->hash);
J
John Johansen 已提交
229 230 231
	kzfree(profile);
}

232 233 234 235 236 237
/**
 * 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)
{
238 239
	struct aa_profile *p = container_of(head, struct aa_profile, rcu);
	if (p->flags & PFLAG_NS_COUNT)
240
		aa_free_ns(p->ns);
241
	else
242
		aa_free_profile(p);
243 244
}

J
John Johansen 已提交
245 246 247 248 249 250
/**
 * 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)
{
251
	struct aa_profile *p = container_of(kref, struct aa_profile, count);
252
	call_rcu(&p->rcu, aa_free_profile_rcu);
J
John Johansen 已提交
253 254
}

255 256 257 258 259 260 261 262 263 264 265 266 267 268 269
/**
 * aa_alloc_profile - allocate, initialize and return a new profile
 * @hname: name of the profile  (NOT NULL)
 *
 * Returns: refcount profile or NULL on failure
 */
struct aa_profile *aa_alloc_profile(const char *hname)
{
	struct aa_profile *profile;

	/* freed by free_profile - usually through aa_put_profile */
	profile = kzalloc(sizeof(*profile), GFP_KERNEL);
	if (!profile)
		return NULL;

270 271
	profile->proxy = kzalloc(sizeof(struct aa_proxy), GFP_KERNEL);
	if (!profile->proxy)
272
		goto fail;
273
	kref_init(&profile->proxy->count);
274

275
	if (!aa_policy_init(&profile->base, NULL, hname))
276
		goto fail;
277
	kref_init(&profile->count);
278 279 280

	/* refcount released by caller */
	return profile;
281 282

fail:
283
	kzfree(profile->proxy);
284 285 286
	kzfree(profile);

	return NULL;
287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325
}

/**
 * aa_new_null_profile - create a new null-X learning profile
 * @parent: profile that caused this profile to be created (NOT NULL)
 * @hat: true if the null- learning profile is a hat
 *
 * Create a null- complain mode profile used in learning mode.  The name of
 * the profile is unique and follows the format of parent//null-<uniq>.
 *
 * 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
 */
struct aa_profile *aa_new_null_profile(struct aa_profile *parent, int hat)
{
	struct aa_profile *profile = NULL;
	char *name;
	int uniq = atomic_inc_return(&parent->ns->uniq_null);

	/* freed below */
	name = kmalloc(strlen(parent->base.hname) + 2 + 7 + 8, GFP_KERNEL);
	if (!name)
		goto fail;
	sprintf(name, "%s//null-%x", parent->base.hname, uniq);

	profile = aa_alloc_profile(name);
	kfree(name);
	if (!profile)
		goto fail;

	profile->mode = APPARMOR_COMPLAIN;
	profile->flags = PFLAG_NULL;
	if (hat)
		profile->flags |= PFLAG_HAT;

	/* released on free_profile */
326
	rcu_assign_pointer(profile->parent, aa_get_profile(parent));
327
	profile->ns = aa_get_ns(parent->ns);
328

329
	mutex_lock(&profile->ns->lock);
330
	__list_add_profile(&parent->base.profiles, profile);
331
	mutex_unlock(&profile->ns->lock);
332 333 334 335 336 337 338 339

	/* refcount released by caller */
	return profile;

fail:
	return NULL;
}

J
John Johansen 已提交
340 341 342 343 344 345 346
/* TODO: profile accounting - setup in remove */

/**
 * __find_child - find a profile on @head list with a name matching @name
 * @head: list to search  (NOT NULL)
 * @name: name of profile (NOT NULL)
 *
347
 * Requires: rcu_read_lock be held
J
John Johansen 已提交
348 349 350 351 352 353 354 355 356 357 358 359 360 361
 *
 * Returns: unrefcounted profile ptr, or NULL if not found
 */
static struct aa_profile *__find_child(struct list_head *head, const char *name)
{
	return (struct aa_profile *)__policy_find(head, name);
}

/**
 * __strn_find_child - find a profile on @head list using substring of @name
 * @head: list to search  (NOT NULL)
 * @name: name of profile (NOT NULL)
 * @len: length of @name substring to match
 *
362
 * Requires: rcu_read_lock be held
J
John Johansen 已提交
363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382
 *
 * Returns: unrefcounted profile ptr, or NULL if not found
 */
static struct aa_profile *__strn_find_child(struct list_head *head,
					    const char *name, int len)
{
	return (struct aa_profile *)__policy_strn_find(head, name, len);
}

/**
 * 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;

383
	rcu_read_lock();
384 385 386
	do {
		profile = __find_child(&parent->base.profiles, name);
	} while (profile && !aa_get_profile_not0(profile));
387
	rcu_read_unlock();
J
John Johansen 已提交
388 389 390 391 392 393 394 395 396 397 398 399 400 401

	/* 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.
 *
402
 * Requires: rcu_read_lock be held
J
John Johansen 已提交
403 404 405
 *
 * Returns: unrefcounted policy or NULL if not found
 */
406
static struct aa_policy *__lookup_parent(struct aa_ns *ns,
J
John Johansen 已提交
407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429
					 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;
}

/**
430
 * __lookupn_profile - lookup the profile matching @hname
J
John Johansen 已提交
431 432
 * @base: base list to start looking up profile name from  (NOT NULL)
 * @hname: hierarchical profile name  (NOT NULL)
433
 * @n: length of @hname
J
John Johansen 已提交
434
 *
435
 * Requires: rcu_read_lock be held
J
John Johansen 已提交
436 437 438 439 440
 *
 * Returns: unrefcounted profile pointer or NULL if not found
 *
 * Do a relative name lookup, recursing through profile tree.
 */
441 442
static struct aa_profile *__lookupn_profile(struct aa_policy *base,
					    const char *hname, size_t n)
J
John Johansen 已提交
443 444
{
	struct aa_profile *profile = NULL;
445
	const char *split;
J
John Johansen 已提交
446

447 448
	for (split = strnstr(hname, "//", n); split;
	     split = strnstr(hname, "//", n)) {
J
John Johansen 已提交
449 450 451 452 453 454
		profile = __strn_find_child(&base->profiles, hname,
					    split - hname);
		if (!profile)
			return NULL;

		base = &profile->base;
455
		n -= split + 2 - hname;
J
John Johansen 已提交
456 457 458
		hname = split + 2;
	}

459 460 461 462
	if (n)
		return __strn_find_child(&base->profiles, hname, n);
	return NULL;
}
J
John Johansen 已提交
463

464 465 466 467
static struct aa_profile *__lookup_profile(struct aa_policy *base,
					   const char *hname)
{
	return __lookupn_profile(base, hname, strlen(hname));
J
John Johansen 已提交
468 469 470 471 472 473
}

/**
 * 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)
474
 * @n: size of @hname
J
John Johansen 已提交
475 476 477
 *
 * Returns: refcounted profile or NULL if not found
 */
478 479
struct aa_profile *aa_lookupn_profile(struct aa_ns *ns, const char *hname,
				      size_t n)
J
John Johansen 已提交
480 481 482
{
	struct aa_profile *profile;

483 484
	rcu_read_lock();
	do {
485
		profile = __lookupn_profile(&ns->base, hname, n);
486 487
	} while (profile && !aa_get_profile_not0(profile));
	rcu_read_unlock();
J
John Johansen 已提交
488

489
	/* the unconfined profile is not in the regular profile list */
490
	if (!profile && strncmp(hname, "unconfined", n) == 0)
491
		profile = aa_get_newest_profile(ns->unconfined);
492

J
John Johansen 已提交
493 494 495 496
	/* refcount released by caller */
	return profile;
}

497 498 499 500
struct aa_profile *aa_lookup_profile(struct aa_ns *ns, const char *hname)
{
	return aa_lookupn_profile(ns, hname, strlen(hname));
}
J
John Johansen 已提交
501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537
/**
 * 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;
}

/**
 * aa_audit_policy - Do auditing of policy changes
 * @op: policy operation being performed
 * @gfp: memory allocation flags
 * @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
 */
static int audit_policy(int op, gfp_t gfp, const char *name, const char *info,
			int error)
{
	struct common_audit_data sa;
538
	struct apparmor_audit_data aad = {0,};
539
	sa.type = LSM_AUDIT_DATA_NONE;
540 541 542 543 544
	sa.aad = &aad;
	aad.op = op;
	aad.name = name;
	aad.info = info;
	aad.error = error;
J
John Johansen 已提交
545 546 547 548 549

	return aa_audit(AUDIT_APPARMOR_STATUS, __aa_current_profile(), gfp,
			&sa, NULL);
}

550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565
bool policy_view_capable(void)
{
	struct user_namespace *user_ns = current_user_ns();
	bool response = false;

	if (ns_capable(user_ns, CAP_MAC_ADMIN))
		response = true;

	return response;
}

bool policy_admin_capable(void)
{
	return policy_view_capable() && !aa_g_lock_policy;
}

J
John Johansen 已提交
566 567 568 569 570 571 572 573 574 575 576 577 578 579
/**
 * aa_may_manage_policy - can the current task manage policy
 * @op: the policy manipulation operation being done
 *
 * Returns: true if the task is allowed to manipulate policy
 */
bool aa_may_manage_policy(int op)
{
	/* check if loading policy is locked out */
	if (aa_g_lock_policy) {
		audit_policy(op, GFP_KERNEL, NULL, "policy_locked", -EACCES);
		return 0;
	}

580
	if (!policy_admin_capable()) {
J
John Johansen 已提交
581 582 583 584 585 586 587
		audit_policy(op, GFP_KERNEL, NULL, "not policy admin", -EACCES);
		return 0;
	}

	return 1;
}

588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614
static struct aa_profile *__list_lookup_parent(struct list_head *lh,
					       struct aa_profile *profile)
{
	const char *base = hname_tail(profile->base.hname);
	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)
615
 * @share_proxy: transfer @old->proxy to @new
616 617 618 619 620 621 622 623
 *
 * 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
 */
624
static void __replace_profile(struct aa_profile *old, struct aa_profile *new,
625
			      bool share_proxy)
626 627 628 629 630
{
	struct aa_profile *child, *tmp;

	if (!list_empty(&old->base.profiles)) {
		LIST_HEAD(lh);
631
		list_splice_init_rcu(&old->base.profiles, &lh, synchronize_rcu);
632 633 634 635 636 637 638 639

		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  */
640
				__replace_profile(child, p, share_proxy);
641 642 643 644 645 646
				continue;
			}

			/* inherit @child and its children */
			/* TODO: update hname of inherited children */
			/* list refcount transferred to @new */
647
			p = aa_deref_parent(child);
648 649 650
			rcu_assign_pointer(child->parent, aa_get_profile(new));
			list_add_rcu(&child->base.list, &new->base.profiles);
			aa_put_profile(p);
651 652 653
		}
	}

654
	if (!rcu_access_pointer(new->parent)) {
655
		struct aa_profile *parent = aa_deref_parent(old);
656 657
		rcu_assign_pointer(new->parent, aa_get_profile(parent));
	}
658 659 660 661 662 663 664
	__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,
665 666
				   aa_get_profile(new));
	__aa_fs_profile_migrate_dents(old, new);
667 668 669

	if (list_empty(&new->base.list)) {
		/* new is not on a list already */
670
		list_replace_rcu(&old->base.list, &new->base.list);
671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686
		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
 */
687
static int __lookup_replace(struct aa_ns *ns, const char *hname,
688 689 690 691 692 693 694 695 696 697 698 699 700 701 702
			    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 已提交
703 704 705 706 707 708 709 710 711 712 713 714 715 716
/**
 * aa_replace_profiles - replace profile(s) on the profile list
 * @udata: serialized data stream  (NOT NULL)
 * @size: size of the serialized data stream
 * @noreplace: true if only doing addition, no replacement allowed
 *
 * unpack and replace a profile on the profile list and uses of that profile
 * by any aa_task_cxt.  If the profile does not exist on the profile list
 * it is added.
 *
 * Returns: size of data consumed else error code on failure.
 */
ssize_t aa_replace_profiles(void *udata, size_t size, bool noreplace)
{
717
	const char *ns_name, *info = NULL;
718
	struct aa_ns *ns = NULL;
719
	struct aa_load_ent *ent, *tmp;
J
John Johansen 已提交
720 721
	int op = OP_PROF_REPL;
	ssize_t error;
722
	LIST_HEAD(lh);
J
John Johansen 已提交
723 724

	/* released below */
725 726 727
	error = aa_unpack(udata, size, &lh, &ns_name);
	if (error)
		goto out;
J
John Johansen 已提交
728 729

	/* released below */
730
	ns = aa_prepare_ns(ns_name);
J
John Johansen 已提交
731
	if (!ns) {
732 733 734
		error = audit_policy(op, GFP_KERNEL, ns_name,
				     "failed to prepare namespace", -ENOMEM);
		goto free;
J
John Johansen 已提交
735 736
	}

737
	mutex_lock(&ns->lock);
738 739 740 741 742 743 744 745 746 747 748 749 750 751
	/* setup parent and ns info */
	list_for_each_entry(ent, &lh, list) {
		struct aa_policy *policy;
		error = __lookup_replace(ns, ent->new->base.hname, noreplace,
					 &ent->old, &info);
		if (error)
			goto fail_lock;

		if (ent->new->rename) {
			error = __lookup_replace(ns, ent->new->rename,
						 noreplace, &ent->rename,
						 &info);
			if (error)
				goto fail_lock;
J
John Johansen 已提交
752 753
		}

754
		/* released when @new is freed */
755
		ent->new->ns = aa_get_ns(ns);
756 757 758 759 760 761 762 763 764 765 766 767 768 769

		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;
			}
770 771
			rcu_assign_pointer(ent->new->parent, aa_get_profile(p));
		} else if (policy != &ns->base) {
772
			/* released on profile replacement or free_profile */
773 774 775
			struct aa_profile *p = (struct aa_profile *) policy;
			rcu_assign_pointer(ent->new->parent, aa_get_profile(p));
		}
776
	}
J
John Johansen 已提交
777

778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804
	/* create new fs entries for introspection if needed */
	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);
			error = __aa_fs_profile_mkdir(ent->new, parent);
		}

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

	/* Done with checks that may fail - do actual replacement */
805 806 807 808
	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;

809
		audit_policy(op, GFP_ATOMIC, ent->new->base.hname, NULL, error);
810 811

		if (ent->old) {
812
			__replace_profile(ent->old, ent->new, 1);
813
			if (ent->rename) {
814 815
				/* aafs interface uses proxy */
				struct aa_proxy *r = ent->new->proxy;
816 817
				rcu_assign_pointer(r->profile,
						   aa_get_profile(ent->new));
818
				__replace_profile(ent->rename, ent->new, 0);
819
			}
820
		} else if (ent->rename) {
821 822
			/* aafs interface uses proxy */
			rcu_assign_pointer(ent->new->proxy->profile,
823
					   aa_get_profile(ent->new));
824
			__replace_profile(ent->rename, ent->new, 0);
825
		} else if (ent->new->parent) {
826
			struct aa_profile *parent, *newest;
827
			parent = aa_deref_parent(ent->new);
828
			newest = aa_get_newest_profile(parent);
829

830
			/* parent replaced in this atomic set? */
831 832 833
			if (newest != parent) {
				aa_get_profile(newest);
				rcu_assign_pointer(ent->new->parent, newest);
834
				aa_put_profile(parent);
835
			}
836 837
			/* aafs interface uses proxy */
			rcu_assign_pointer(ent->new->proxy->profile,
838
					   aa_get_profile(ent->new));
839
			__list_add_profile(&newest->base.profiles, ent->new);
840
			aa_put_profile(newest);
841
		} else {
842 843
			/* aafs interface uses proxy */
			rcu_assign_pointer(ent->new->proxy->profile,
844
					   aa_get_profile(ent->new));
845
			__list_add_profile(&ns->base.profiles, ent->new);
846
		}
847
		aa_load_ent_free(ent);
J
John Johansen 已提交
848
	}
849
	mutex_unlock(&ns->lock);
J
John Johansen 已提交
850 851

out:
852
	aa_put_ns(ns);
853

J
John Johansen 已提交
854 855 856 857
	if (error)
		return error;
	return size;

858
fail_lock:
859
	mutex_unlock(&ns->lock);
860

861 862 863 864 865 866 867 868 869 870 871 872 873 874 875
	/* audit cause of failure */
	op = (!ent->old) ? OP_PROF_LOAD : OP_PROF_REPL;
	audit_policy(op, GFP_KERNEL, ent->new->base.hname, info, error);
	/* 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;
		}
		op = (!ent->old) ? OP_PROF_LOAD : OP_PROF_REPL;
		audit_policy(op, GFP_KERNEL, tmp->new->base.hname, info, error);
	}
free:
876 877 878 879 880
	list_for_each_entry_safe(ent, tmp, &lh, list) {
		list_del_init(&ent->list);
		aa_load_ent_free(ent);
	}

J
John Johansen 已提交
881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897
	goto out;
}

/**
 * aa_remove_profiles - remove profile(s) from the system
 * @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
 */
ssize_t aa_remove_profiles(char *fqname, size_t size)
{
898
	struct aa_ns *root, *ns = NULL;
J
John Johansen 已提交
899 900 901 902 903 904 905 906 907 908 909 910 911 912 913
	struct aa_profile *profile = NULL;
	const char *name = fqname, *info = NULL;
	ssize_t error = 0;

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

	root = aa_current_profile()->ns;

	if (fqname[0] == ':') {
		char *ns_name;
		name = aa_split_fqname(fqname, &ns_name);
914
		/* released below */
915
		ns = aa_find_ns(root, ns_name);
916 917 918 919
		if (!ns) {
			info = "namespace does not exist";
			error = -ENOENT;
			goto fail;
J
John Johansen 已提交
920 921 922
		}
	} else
		/* released below */
923
		ns = aa_get_ns(root);
J
John Johansen 已提交
924 925 926

	if (!name) {
		/* remove namespace - can only happen if fqname[0] == ':' */
927
		mutex_lock(&ns->parent->lock);
928
		__aa_remove_ns(ns);
929
		mutex_unlock(&ns->parent->lock);
J
John Johansen 已提交
930 931
	} else {
		/* remove profile */
932
		mutex_lock(&ns->lock);
J
John Johansen 已提交
933 934 935 936 937 938 939 940
		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);
941
		mutex_unlock(&ns->lock);
J
John Johansen 已提交
942 943 944 945
	}

	/* don't fail removal if audit fails */
	(void) audit_policy(OP_PROF_RM, GFP_KERNEL, name, info, error);
946
	aa_put_ns(ns);
J
John Johansen 已提交
947 948 949 950
	aa_put_profile(profile);
	return size;

fail_ns_lock:
951
	mutex_unlock(&ns->lock);
952
	aa_put_ns(ns);
J
John Johansen 已提交
953 954 955 956 957

fail:
	(void) audit_policy(OP_PROF_RM, GFP_KERNEL, name, info, error);
	return error;
}