domain.c 21.1 KB
Newer Older
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
/*
 * AppArmor security module
 *
 * This file contains AppArmor policy attachment and domain transitions
 *
 * Copyright (C) 2002-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.
 */

#include <linux/errno.h>
#include <linux/fdtable.h>
#include <linux/file.h>
#include <linux/mount.h>
#include <linux/syscalls.h>
#include <linux/tracehook.h>
#include <linux/personality.h>

#include "include/audit.h"
#include "include/apparmorfs.h"
#include "include/context.h"
#include "include/domain.h"
#include "include/file.h"
#include "include/ipc.h"
#include "include/match.h"
#include "include/path.h"
#include "include/policy.h"
32
#include "include/policy_ns.h"
33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53

/**
 * aa_free_domain_entries - free entries in a domain table
 * @domain: the domain table to free  (MAYBE NULL)
 */
void aa_free_domain_entries(struct aa_domain *domain)
{
	int i;
	if (domain) {
		if (!domain->table)
			return;

		for (i = 0; i < domain->size; i++)
			kzfree(domain->table[i]);
		kzfree(domain->table);
		domain->table = NULL;
	}
}

/**
 * may_change_ptraced_domain - check if can change profile on ptraced task
54 55
 * @to_label: profile to change to  (NOT NULL)
 * @info: message if there is an error
56
 *
57
 * Check if current is ptraced and if so if the tracing task is allowed
58 59 60 61
 * to trace the new domain
 *
 * Returns: %0 or error if change not allowed
 */
62 63
static int may_change_ptraced_domain(struct aa_label *to_label,
				     const char **info)
64 65
{
	struct task_struct *tracer;
66
	struct aa_label *tracerl = NULL;
67 68 69
	int error = 0;

	rcu_read_lock();
70
	tracer = ptrace_parent(current);
71
	if (tracer)
72
		/* released below */
73
		tracerl = aa_get_task_label(tracer);
74 75

	/* not ptraced */
76
	if (!tracer || unconfined(tracerl))
77 78
		goto out;

79
	error = aa_may_ptrace(tracerl, to_label, PTRACE_MODE_ATTACH);
80 81

out:
82
	rcu_read_unlock();
83
	aa_put_label(tracerl);
84

85 86
	if (error)
		*info = "ptrace prevents transition";
87 88 89 90 91 92 93 94 95 96 97 98 99
	return error;
}

/**
 * change_profile_perms - find permissions for change_profile
 * @profile: the current profile  (NOT NULL)
 * @ns: the namespace being switched to  (NOT NULL)
 * @name: the name of the profile to change to  (NOT NULL)
 * @request: requested perms
 * @start: state to start matching in
 *
 * Returns: permission set
 */
100 101 102 103
static struct aa_perms change_profile_perms(struct aa_profile *profile,
					    struct aa_ns *ns,
					    const char *name, u32 request,
					    unsigned int start)
104
{
105
	struct aa_perms perms;
106 107 108
	struct path_cond cond = { };
	unsigned int state;

109
	if (profile_unconfined(profile)) {
110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149
		perms.allow = AA_MAY_CHANGE_PROFILE | AA_MAY_ONEXEC;
		perms.audit = perms.quiet = perms.kill = 0;
		return perms;
	} else if (!profile->file.dfa) {
		return nullperms;
	} else if ((ns == profile->ns)) {
		/* try matching against rules with out namespace prepended */
		aa_str_perms(profile->file.dfa, start, name, &cond, &perms);
		if (COMBINED_PERM_MASK(perms) & request)
			return perms;
	}

	/* try matching with namespace name and then profile */
	state = aa_dfa_match(profile->file.dfa, start, ns->base.name);
	state = aa_dfa_match_len(profile->file.dfa, state, ":", 1);
	aa_str_perms(profile->file.dfa, state, name, &cond, &perms);

	return perms;
}

/**
 * __attach_match_ - find an attachment match
 * @name - to match against  (NOT NULL)
 * @head - profile list to walk  (NOT NULL)
 *
 * Do a linear search on the profiles in the list.  There is a matching
 * preference where an exact match is preferred over a name which uses
 * expressions to match, and matching expressions with the greatest
 * xmatch_len are preferred.
 *
 * Requires: @head not be shared or have appropriate locks held
 *
 * Returns: profile or NULL if no match found
 */
static struct aa_profile *__attach_match(const char *name,
					 struct list_head *head)
{
	int len = 0;
	struct aa_profile *profile, *candidate = NULL;

150
	list_for_each_entry_rcu(profile, head, base.list) {
151
		if (profile->label.flags & FLAG_NULL)
152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177
			continue;
		if (profile->xmatch && profile->xmatch_len > len) {
			unsigned int state = aa_dfa_match(profile->xmatch,
							  DFA_START, name);
			u32 perm = dfa_user_allow(profile->xmatch, state);
			/* any accepting state means a valid match. */
			if (perm & MAY_EXEC) {
				candidate = profile;
				len = profile->xmatch_len;
			}
		} else if (!strcmp(profile->base.name, name))
			/* exact non-re match, no more searching required */
			return profile;
	}

	return candidate;
}

/**
 * find_attach - do attachment search for unconfined processes
 * @ns: the current namespace  (NOT NULL)
 * @list: list to search  (NOT NULL)
 * @name: the executable name to match against  (NOT NULL)
 *
 * Returns: profile or NULL if no match found
 */
178
static struct aa_profile *find_attach(struct aa_ns *ns,
179 180 181 182
				      struct list_head *list, const char *name)
{
	struct aa_profile *profile;

183
	rcu_read_lock();
184
	profile = aa_get_profile(__attach_match(name, list));
185
	rcu_read_unlock();
186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246

	return profile;
}

/**
 * separate_fqname - separate the namespace and profile names
 * @fqname: the fqname name to split  (NOT NULL)
 * @ns_name: the namespace name if it exists  (NOT NULL)
 *
 * This is the xtable equivalent routine of aa_split_fqname.  It finds the
 * split in an xtable fqname which contains an embedded \0 instead of a :
 * if a namespace is specified.  This is done so the xtable is constant and
 * isn't re-split on every lookup.
 *
 * Either the profile or namespace name may be optional but if the namespace
 * is specified the profile name termination must be present.  This results
 * in the following possible encodings:
 * profile_name\0
 * :ns_name\0profile_name\0
 * :ns_name\0\0
 *
 * NOTE: the xtable fqname is pre-validated at load time in unpack_trans_table
 *
 * Returns: profile name if it is specified else NULL
 */
static const char *separate_fqname(const char *fqname, const char **ns_name)
{
	const char *name;

	if (fqname[0] == ':') {
		/* In this case there is guaranteed to be two \0 terminators
		 * in the string.  They are verified at load time by
		 * by unpack_trans_table
		 */
		*ns_name = fqname + 1;		/* skip : */
		name = *ns_name + strlen(*ns_name) + 1;
		if (!*name)
			name = NULL;
	} else {
		*ns_name = NULL;
		name = fqname;
	}

	return name;
}

static const char *next_name(int xtype, const char *name)
{
	return NULL;
}

/**
 * x_table_lookup - lookup an x transition name via transition table
 * @profile: current profile (NOT NULL)
 * @xindex: index into x transition table
 *
 * Returns: refcounted profile, or NULL on failure (MAYBE NULL)
 */
static struct aa_profile *x_table_lookup(struct aa_profile *profile, u32 xindex)
{
	struct aa_profile *new_profile = NULL;
247
	struct aa_ns *ns = profile->ns;
248 249 250 251 252 253 254
	u32 xtype = xindex & AA_X_TYPE_MASK;
	int index = xindex & AA_X_INDEX_MASK;
	const char *name;

	/* index is guaranteed to be in range, validated at load time */
	for (name = profile->file.trans.table[index]; !new_profile && name;
	     name = next_name(xtype, name)) {
255
		struct aa_ns *new_ns;
256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274
		const char *xname = NULL;

		new_ns = NULL;
		if (xindex & AA_X_CHILD) {
			/* release by caller */
			new_profile = aa_find_child(profile, name);
			continue;
		} else if (*name == ':') {
			/* switching namespace */
			const char *ns_name;
			xname = name = separate_fqname(name, &ns_name);
			if (!xname)
				/* no name so use profile name */
				xname = profile->base.hname;
			if (*ns_name == '@') {
				/* TODO: variable support */
				;
			}
			/* released below */
275
			new_ns = aa_find_ns(ns, ns_name);
276 277 278 279 280 281 282 283 284 285 286 287
			if (!new_ns)
				continue;
		} else if (*name == '@') {
			/* TODO: variable support */
			continue;
		} else {
			/* basic namespace lookup */
			xname = name;
		}

		/* released by caller */
		new_profile = aa_lookup_profile(new_ns ? new_ns : ns, xname);
288
		aa_put_ns(new_ns);
289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308
	}

	/* released by caller */
	return new_profile;
}

/**
 * x_to_profile - get target profile for a given xindex
 * @profile: current profile  (NOT NULL)
 * @name: name to lookup (NOT NULL)
 * @xindex: index into x transition table
 *
 * find profile for a transition index
 *
 * Returns: refcounted profile or NULL if not found available
 */
static struct aa_profile *x_to_profile(struct aa_profile *profile,
				       const char *name, u32 xindex)
{
	struct aa_profile *new_profile = NULL;
309
	struct aa_ns *ns = profile->ns;
310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343
	u32 xtype = xindex & AA_X_TYPE_MASK;

	switch (xtype) {
	case AA_X_NONE:
		/* fail exec unless ix || ux fallback - handled by caller */
		return NULL;
	case AA_X_NAME:
		if (xindex & AA_X_CHILD)
			/* released by caller */
			new_profile = find_attach(ns, &profile->base.profiles,
						  name);
		else
			/* released by caller */
			new_profile = find_attach(ns, &ns->base.profiles,
						  name);
		break;
	case AA_X_TABLE:
		/* released by caller */
		new_profile = x_table_lookup(profile, xindex);
		break;
	}

	/* released by caller */
	return new_profile;
}

/**
 * apparmor_bprm_set_creds - set the new creds on the bprm struct
 * @bprm: binprm for the exec  (NOT NULL)
 *
 * Returns: %0 or error on failure
 */
int apparmor_bprm_set_creds(struct linux_binprm *bprm)
{
344
	struct aa_task_ctx *ctx;
345
	struct aa_label *label;
346
	struct aa_profile *profile, *new_profile = NULL;
347
	struct aa_ns *ns;
348 349
	char *buffer = NULL;
	unsigned int state;
350
	struct aa_perms perms = {};
351
	struct path_cond cond = {
A
Al Viro 已提交
352 353
		file_inode(bprm->file)->i_uid,
		file_inode(bprm->file)->i_mode
354
	};
355
	const char *name = NULL, *info = NULL;
C
Casey Schaufler 已提交
356
	int error = 0;
357 358 359 360

	if (bprm->cred_prepared)
		return 0;

361 362
	ctx = cred_ctx(bprm->cred);
	AA_BUG(!ctx);
363

364 365
	label = aa_get_newest_label(ctx->label);
	profile = labels_profile(label);
366 367 368

	/* buffer freed below, name is pointer into buffer */
	get_buffers(buffer);
369 370 371 372 373 374 375
	/*
	 * get the namespace from the replacement profile as replacement
	 * can change the namespace
	 */
	ns = profile->ns;
	state = profile->file.start;

376
	error = aa_path_name(&bprm->file->f_path, profile->path_flags, buffer,
377
			     &name, &info, profile->disconnected);
378
	if (error) {
379 380
		if (profile_unconfined(profile) ||
		    (profile->label.flags & FLAG_IX_ON_NAME_ERROR))
381 382 383 384 385 386 387 388
			error = 0;
		name = bprm->filename;
		goto audit;
	}

	/* Test for onexec first as onexec directives override other
	 * x transitions.
	 */
389
	if (profile_unconfined(profile)) {
390
		/* unconfined task */
391
		if (ctx->onexec)
392
			/* change_profile on exec already been granted */
393
			new_profile = labels_profile(aa_get_label(ctx->onexec));
394 395 396 397
		else
			new_profile = find_attach(ns, &ns->base.profiles, name);
		if (!new_profile)
			goto cleanup;
398 399 400 401 402
		/*
		 * NOTE: Domain transitions from unconfined are allowed
		 * even when no_new_privs is set because this aways results
		 * in a further reduction of permissions.
		 */
403 404 405 406 407
		goto apply;
	}

	/* find exec permissions for name */
	state = aa_str_perms(profile->file.dfa, state, name, &cond, &perms);
408
	if (ctx->onexec) {
409
		struct aa_perms cp;
410
		info = "change_profile onexec";
411
		new_profile = labels_profile(aa_get_newest_label(ctx->onexec));
412 413 414 415 416 417 418 419
		if (!(perms.allow & AA_MAY_ONEXEC))
			goto audit;

		/* test if this exec can be paired with change_profile onexec.
		 * onexec permission is linked to exec with a standard pairing
		 * exec\0change_profile
		 */
		state = aa_dfa_null_transition(profile->file.dfa, state);
420 421 422
		cp = change_profile_perms(profile, labels_ns(ctx->onexec),
				labels_profile(ctx->onexec)->base.name,
				AA_MAY_ONEXEC, state);
423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441

		if (!(cp.allow & AA_MAY_ONEXEC))
			goto audit;
		goto apply;
	}

	if (perms.allow & MAY_EXEC) {
		/* exec permission determine how to transition */
		new_profile = x_to_profile(profile, name, perms.xindex);
		if (!new_profile) {
			if (perms.xindex & AA_X_INHERIT) {
				/* (p|c|n)ix - don't change profile but do
				 * use the newest version, which was picked
				 * up above when getting profile
				 */
				info = "ix fallback";
				new_profile = aa_get_profile(profile);
				goto x_clear;
			} else if (perms.xindex & AA_X_UNCONFINED) {
442
				new_profile = aa_get_newest_profile(ns->unconfined);
443 444
				info = "ux fallback";
			} else {
445
				error = -EACCES;
446
				info = "profile not found";
447 448
				/* remove MAY_EXEC to audit as failure */
				perms.allow &= ~MAY_EXEC;
449 450 451 452
			}
		}
	} else if (COMPLAIN_MODE(profile)) {
		/* no exec permission - are we in learning mode */
453 454
		new_profile = aa_new_null_profile(profile, false, name,
						  GFP_ATOMIC);
455 456 457
		if (!new_profile) {
			error = -ENOMEM;
			info = "could not create null profile";
458
		} else
459 460 461 462 463 464
			error = -EACCES;
		perms.xindex |= AA_X_UNSAFE;
	} else
		/* fail exec */
		error = -EACCES;

465 466 467 468 469 470 471 472 473
	/*
	 * Policy has specified a domain transition, if no_new_privs then
	 * fail the exec.
	 */
	if (bprm->unsafe & LSM_UNSAFE_NO_NEW_PRIVS) {
		error = -EPERM;
		goto cleanup;
	}

474 475 476 477 478 479 480 481
	if (!new_profile)
		goto audit;

	if (bprm->unsafe & LSM_UNSAFE_SHARE) {
		/* FIXME: currently don't mediate shared state */
		;
	}

482
	if (bprm->unsafe & LSM_UNSAFE_PTRACE) {
483
		error = may_change_ptraced_domain(&new_profile->label, &info);
484
		if (error)
485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509
			goto audit;
	}

	/* Determine if secure exec is needed.
	 * Can be at this point for the following reasons:
	 * 1. unconfined switching to confined
	 * 2. confined switching to different confinement
	 * 3. confined switching to unconfined
	 *
	 * Cases 2 and 3 are marked as requiring secure exec
	 * (unless policy specified "unsafe exec")
	 *
	 * bprm->unsafe is used to cache the AA_X_UNSAFE permission
	 * to avoid having to recompute in secureexec
	 */
	if (!(perms.xindex & AA_X_UNSAFE)) {
		AA_DEBUG("scrubbing environment variables for %s profile=%s\n",
			 name, new_profile->base.hname);
		bprm->unsafe |= AA_SECURE_X_NEEDED;
	}
apply:
	/* when transitioning profiles clear unsafe personality bits */
	bprm->per_clear |= PER_CLEAR_ON_SETID;

x_clear:
510
	aa_put_label(ctx->label);
511
	/* transfer new profile reference will be released when ctx is freed */
512
	ctx->label = &new_profile->label;
513
	new_profile = NULL;
514 515

	/* clear out all temporary/transitional state from the context */
516
	aa_clear_task_ctx_trans(ctx);
517 518

audit:
519
	error = aa_audit_file(profile, &perms, OP_EXEC, MAY_EXEC, name,
520
			      new_profile ? new_profile->base.hname : NULL,
521
			      new_profile ? &new_profile->label : NULL,
522
			      cond.uid, info, error);
523 524

cleanup:
525
	aa_put_profile(new_profile);
526
	aa_put_label(label);
527
	put_buffers(buffer);
528 529 530 531 532 533 534 535 536 537 538 539 540 541 542

	return error;
}

/**
 * apparmor_bprm_secureexec - determine if secureexec is needed
 * @bprm: binprm for exec  (NOT NULL)
 *
 * Returns: %1 if secureexec is needed else %0
 */
int apparmor_bprm_secureexec(struct linux_binprm *bprm)
{
	/* the decision to use secure exec is computed in set_creds
	 * and stored in bprm->unsafe.
	 */
C
Casey Schaufler 已提交
543 544
	if (bprm->unsafe & AA_SECURE_X_NEEDED)
		return 1;
545

C
Casey Schaufler 已提交
546
	return 0;
547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572
}

/*
 * Functions for self directed profile change
 */

/**
 * new_compound_name - create an hname with @n2 appended to @n1
 * @n1: base of hname  (NOT NULL)
 * @n2: name to append (NOT NULL)
 *
 * Returns: new name or NULL on error
 */
static char *new_compound_name(const char *n1, const char *n2)
{
	char *name = kmalloc(strlen(n1) + strlen(n2) + 3, GFP_KERNEL);
	if (name)
		sprintf(name, "%s//%s", n1, n2);
	return name;
}

/**
 * aa_change_hat - change hat to/from subprofile
 * @hats: vector of hat names to try changing into (MAYBE NULL if @count == 0)
 * @count: number of hat names in @hats
 * @token: magic value to validate the hat change
573
 * @flags: flags affecting behavior of the change
574 575 576 577 578 579 580 581
 *
 * Change to the first profile specified in @hats that exists, and store
 * the @hat_magic in the current task context.  If the count == 0 and the
 * @token matches that stored in the current task context, return to the
 * top level profile.
 *
 * Returns %0 on success, error otherwise.
 */
582
int aa_change_hat(const char *hats[], int count, u64 token, int flags)
583 584
{
	const struct cred *cred;
585
	struct aa_task_ctx *ctx;
586 587
	struct aa_label *label, *previous_label;
	struct aa_profile *profile, *hat = NULL;
588 589
	char *name = NULL;
	int i;
590
	struct aa_perms perms = {};
591 592 593
	const char *target = NULL, *info = NULL;
	int error = 0;

594 595 596 597 598
	/*
	 * Fail explicitly requested domain transitions if no_new_privs.
	 * There is no exception for unconfined as change_hat is not
	 * available.
	 */
599
	if (task_no_new_privs(current))
600 601
		return -EPERM;

602 603
	/* released below */
	cred = get_current_cred();
604
	ctx = cred_ctx(cred);
605 606 607
	label = aa_get_newest_cred_label(cred);
	previous_label = aa_get_newest_label(ctx->previous);
	profile = labels_profile(label);
608

609
	if (unconfined(label)) {
610 611 612 613 614 615 616 617
		info = "unconfined";
		error = -EPERM;
		goto audit;
	}

	if (count) {
		/* attempting to change into a new hat or switch to a sibling */
		struct aa_profile *root;
618 619 620 621
		if (PROFILE_IS_HAT(profile))
			root = aa_get_profile_rcu(&profile->parent);
		else
			root = aa_get_profile(profile);
622 623 624 625 626 627

		/* find first matching hat */
		for (i = 0; i < count && !hat; i++)
			/* released below */
			hat = aa_find_child(root, hats[i]);
		if (!hat) {
628
			if (!COMPLAIN_MODE(root) || (flags & AA_CHANGE_TEST)) {
629 630 631 632
				if (list_empty(&root->base.profiles))
					error = -ECHILD;
				else
					error = -ENOENT;
633
				aa_put_profile(root);
634 635 636 637 638 639 640 641 642 643 644 645 646 647
				goto out;
			}

			/*
			 * In complain mode and failed to match any hats.
			 * Audit the failure is based off of the first hat
			 * supplied.  This is done due how userspace
			 * interacts with change_hat.
			 *
			 * TODO: Add logging of all failed hats
			 */

			/* freed below */
			name = new_compound_name(root->base.hname, hats[0]);
648
			aa_put_profile(root);
649 650
			target = name;
			/* released below */
651 652
			hat = aa_new_null_profile(profile, true, hats[0],
						  GFP_KERNEL);
653 654 655 656 657 658
			if (!hat) {
				info = "failed null profile create";
				error = -ENOMEM;
				goto audit;
			}
		} else {
659
			aa_put_profile(root);
660 661 662 663 664 665 666 667
			target = hat->base.hname;
			if (!PROFILE_IS_HAT(hat)) {
				info = "target not hat";
				error = -EPERM;
				goto audit;
			}
		}

668
		error = may_change_ptraced_domain(&hat->label, &info);
669 670 671 672 673 674
		if (error) {
			info = "ptraced";
			error = -EPERM;
			goto audit;
		}

675
		if (!(flags & AA_CHANGE_TEST)) {
676
			error = aa_set_current_hat(&hat->label, token);
677 678 679 680 681 682 683
			if (error == -EACCES)
				/* kill task in case of brute force attacks */
				perms.kill = AA_MAY_CHANGEHAT;
			else if (name && !error)
				/* reset error for learning of new hats */
				error = -ENOENT;
		}
684
	} else if (previous_label) {
685 686 687
		/* Return to saved profile.  Kill task if restore fails
		 * to avoid brute force attacks
		 */
688 689
		target = previous_label->hname;
		error = aa_restore_previous_label(token);
690 691 692 693 694 695
		perms.kill = AA_MAY_CHANGEHAT;
	} else
		/* ignore restores when there is no saved profile */
		goto out;

audit:
696
	if (!(flags & AA_CHANGE_TEST))
697
		error = aa_audit_file(profile, &perms, OP_CHANGE_HAT,
698
				      AA_MAY_CHANGEHAT, NULL, target, NULL,
699
				      GLOBAL_ROOT_UID, info, error);
700 701 702 703

out:
	aa_put_profile(hat);
	kfree(name);
704 705
	aa_put_label(label);
	aa_put_label(previous_label);
706 707 708 709 710 711 712
	put_cred(cred);

	return error;
}

/**
 * aa_change_profile - perform a one-way profile transition
713
 * @fqname: name of profile may include namespace (NOT NULL)
714
 * @onexec: whether this transition is to take place immediately or at exec
715
 * @flags: flags affecting change behavior
716 717 718 719 720 721 722 723 724
 *
 * Change to new profile @name.  Unlike with hats, there is no way
 * to change back.  If @name isn't specified the current profile name is
 * used.
 * If @onexec then the transition is delayed until
 * the next exec.
 *
 * Returns %0 on success, error otherwise.
 */
725
int aa_change_profile(const char *fqname, int flags)
726 727
{
	const struct cred *cred;
728
	struct aa_label *label;
729
	struct aa_profile *profile, *target = NULL;
730
	struct aa_perms perms = {};
731
	const char *info = NULL, *op;
732
	int error = 0;
733 734
	u32 request;

735 736
	if (!fqname || !*fqname) {
		AA_DEBUG("no profile name");
737
		return -EINVAL;
738
	}
739

740
	if (flags & AA_CHANGE_ONEXEC) {
741 742 743 744 745 746 747 748
		request = AA_MAY_ONEXEC;
		op = OP_CHANGE_ONEXEC;
	} else {
		request = AA_MAY_CHANGE_PROFILE;
		op = OP_CHANGE_PROFILE;
	}

	cred = get_current_cred();
749 750
	label = aa_get_newest_cred_label(cred);
	profile = labels_profile(label);
751

752 753 754 755 756 757 758
	/*
	 * Fail explicitly requested domain transitions if no_new_privs
	 * and not unconfined.
	 * Domain transitions from unconfined are allowed even when
	 * no_new_privs is set because this aways results in a reduction
	 * of permissions.
	 */
759
	if (task_no_new_privs(current) && !profile_unconfined(profile)) {
760 761 762 763
		put_cred(cred);
		return -EPERM;
	}

764
	target = aa_fqlookupn_profile(label, fqname, strlen(fqname));
765 766 767
	if (!target) {
		info = "profile not found";
		error = -ENOENT;
768 769
		if ((flags & AA_CHANGE_TEST) ||
		    !COMPLAIN_MODE(profile))
770 771
			goto audit;
		/* released below */
772 773
		target = aa_new_null_profile(profile, false, fqname,
					     GFP_KERNEL);
774 775 776 777 778 779 780
		if (!target) {
			info = "failed null profile create";
			error = -ENOMEM;
			goto audit;
		}
	}

781 782 783 784 785 786 787
	perms = change_profile_perms(profile, target->ns, target->base.hname,
				     request, profile->file.start);
	if (!(perms.allow & request)) {
		error = -EACCES;
		goto audit;
	}

788
	/* check if tracing task is allowed to trace target domain */
789
	error = may_change_ptraced_domain(&target->label, &info);
790 791 792 793 794
	if (error) {
		info = "ptrace prevents transition";
		goto audit;
	}

795
	if (flags & AA_CHANGE_TEST)
796 797
		goto audit;

798
	if (flags & AA_CHANGE_ONEXEC)
799
		error = aa_set_current_onexec(&target->label, 0);
800
	else
801
		error = aa_replace_current_label(&target->label);
802 803

audit:
804
	if (!(flags & AA_CHANGE_TEST))
805
		error = aa_audit_file(profile, &perms, op, request, NULL,
806 807
				      fqname, NULL, GLOBAL_ROOT_UID, info,
				      error);
808 809

	aa_put_profile(target);
810
	aa_put_label(label);
811 812 813 814
	put_cred(cred);

	return error;
}