policy_unpack.c 25.0 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14
/*
 * AppArmor security module
 *
 * This file contains AppArmor functions for unpacking policy loaded from
 * userspace.
 *
 * 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.
 *
R
Randy Dunlap 已提交
15
 * AppArmor uses a serialized binary format for loading policy. To find
K
Kees Cook 已提交
16
 * policy format documentation see Documentation/admin-guide/LSM/apparmor.rst
17 18 19 20 21 22 23 24 25
 * All policy is validated before it is used.
 */

#include <asm/unaligned.h>
#include <linux/ctype.h>
#include <linux/errno.h>

#include "include/apparmor.h"
#include "include/audit.h"
26
#include "include/cred.h"
27
#include "include/crypto.h"
28
#include "include/match.h"
29
#include "include/path.h"
30 31 32
#include "include/policy.h"
#include "include/policy_unpack.h"

33
#define K_ABI_MASK 0x3ff
34
#define FORCE_COMPLAIN_FLAG 0x800
35 36 37 38 39
#define VERSION_LT(X, Y) (((X) & K_ABI_MASK) < ((Y) & K_ABI_MASK))
#define VERSION_GT(X, Y) (((X) & K_ABI_MASK) > ((Y) & K_ABI_MASK))

#define v5	5	/* base version */
#define v6	6	/* per entry policydb mediation check */
40 41
#define v7	7
#define v8	8	/* full network masking */
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
/*
 * The AppArmor interface treats data as a type byte followed by the
 * actual data.  The interface has the notion of a a named entry
 * which has a name (AA_NAME typecode followed by name string) followed by
 * the entries typecode and data.  Named types allow for optional
 * elements and extensions to be added and tested for without breaking
 * backwards compatibility.
 */

enum aa_code {
	AA_U8,
	AA_U16,
	AA_U32,
	AA_U64,
	AA_NAME,		/* same as string except it is items name */
	AA_STRING,
	AA_BLOB,
	AA_STRUCT,
	AA_STRUCTEND,
	AA_LIST,
	AA_LISTEND,
	AA_ARRAY,
	AA_ARRAYEND,
};

/*
 * aa_ext is the read of the buffer containing the serialized profile.  The
 * data is copied into a kernel buffer in apparmorfs and then handed off to
 * the unpack routines.
 */
struct aa_ext {
	void *start;
	void *end;
	void *pos;		/* pointer to current position in the buffer */
	u32 version;
};

/* audit callback for unpack fields */
static void audit_cb(struct audit_buffer *ab, void *va)
{
	struct common_audit_data *sa = va;
84 85 86 87 88

	if (aad(sa)->iface.ns) {
		audit_log_format(ab, " ns=");
		audit_log_untrustedstring(ab, aad(sa)->iface.ns);
	}
89
	if (aad(sa)->name) {
90
		audit_log_format(ab, " name=");
91
		audit_log_untrustedstring(ab, aad(sa)->name);
92
	}
93 94
	if (aad(sa)->iface.pos)
		audit_log_format(ab, " offset=%ld", aad(sa)->iface.pos);
95 96 97 98 99
}

/**
 * audit_iface - do audit message for policy unpacking/load/replace/remove
 * @new: profile if it has been allocated (MAYBE NULL)
100
 * @ns_name: name of the ns the profile is to be loaded to (MAY BE NULL)
101 102
 * @name: name of the profile being manipulated (MAYBE NULL)
 * @info: any extra info about the failure (MAYBE NULL)
103
 * @e: buffer position info
104 105 106 107
 * @error: error code
 *
 * Returns: %0 or error
 */
108 109 110
static int audit_iface(struct aa_profile *new, const char *ns_name,
		       const char *name, const char *info, struct aa_ext *e,
		       int error)
111
{
112
	struct aa_profile *profile = labels_profile(aa_current_raw_label());
113
	DEFINE_AUDIT_DATA(sa, LSM_AUDIT_DATA_NONE, NULL);
114
	if (e)
115 116 117
		aad(&sa)->iface.pos = e->pos - e->start;
	aad(&sa)->iface.ns = ns_name;
	if (new)
118
		aad(&sa)->name = new->base.hname;
119
	else
120
		aad(&sa)->name = name;
121 122
	aad(&sa)->info = info;
	aad(&sa)->error = error;
123

124
	return aa_audit(AUDIT_APPARMOR_STATUS, profile, &sa, audit_cb);
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 150 151 152 153 154 155 156 157 158 159 160
void __aa_loaddata_update(struct aa_loaddata *data, long revision)
{
	AA_BUG(!data);
	AA_BUG(!data->ns);
	AA_BUG(!data->dents[AAFS_LOADDATA_REVISION]);
	AA_BUG(!mutex_is_locked(&data->ns->lock));
	AA_BUG(data->revision > revision);

	data->revision = revision;
	d_inode(data->dents[AAFS_LOADDATA_DIR])->i_mtime =
		current_time(d_inode(data->dents[AAFS_LOADDATA_DIR]));
	d_inode(data->dents[AAFS_LOADDATA_REVISION])->i_mtime =
		current_time(d_inode(data->dents[AAFS_LOADDATA_REVISION]));
}

bool aa_rawdata_eq(struct aa_loaddata *l, struct aa_loaddata *r)
{
	if (l->size != r->size)
		return false;
	if (aa_g_hash_policy && memcmp(l->hash, r->hash, aa_hash_size()) != 0)
		return false;
	return memcmp(l->data, r->data, r->size) == 0;
}

/*
 * need to take the ns mutex lock which is NOT safe most places that
 * put_loaddata is called, so we have to delay freeing it
 */
static void do_loaddata_free(struct work_struct *work)
{
	struct aa_loaddata *d = container_of(work, struct aa_loaddata, work);
	struct aa_ns *ns = aa_get_ns(d->ns);

	if (ns) {
161
		mutex_lock_nested(&ns->lock, ns->level);
162 163 164 165 166 167
		__aa_fs_remove_rawdata(d);
		mutex_unlock(&ns->lock);
		aa_put_ns(ns);
	}

	kzfree(d->hash);
168 169 170
	kzfree(d->name);
	kvfree(d->data);
	kzfree(d);
171 172
}

173 174 175 176 177
void aa_loaddata_kref(struct kref *kref)
{
	struct aa_loaddata *d = container_of(kref, struct aa_loaddata, count);

	if (d) {
178 179
		INIT_WORK(&d->work, do_loaddata_free);
		schedule_work(&d->work);
180 181 182
	}
}

183 184
struct aa_loaddata *aa_loaddata_alloc(size_t size)
{
185
	struct aa_loaddata *d;
186

187
	d = kzalloc(sizeof(*d), GFP_KERNEL);
188 189
	if (d == NULL)
		return ERR_PTR(-ENOMEM);
190 191 192 193 194
	d->data = kvzalloc(size, GFP_KERNEL);
	if (!d->data) {
		kfree(d);
		return ERR_PTR(-ENOMEM);
	}
195 196 197 198 199 200
	kref_init(&d->count);
	INIT_LIST_HEAD(&d->list);

	return d;
}

201 202 203 204 205 206
/* test if read will be in packed data bounds */
static bool inbounds(struct aa_ext *e, size_t size)
{
	return (size <= e->end - e->pos);
}

207 208 209 210 211 212 213 214 215
static void *kvmemdup(const void *src, size_t len)
{
	void *p = kvmalloc(len, GFP_KERNEL);

	if (p)
		memcpy(p, src, len);
	return p;
}

216 217 218 219 220 221 222 223 224 225 226 227 228
/**
 * aa_u16_chunck - test and do bounds checking for a u16 size based chunk
 * @e: serialized data read head (NOT NULL)
 * @chunk: start address for chunk of data (NOT NULL)
 *
 * Returns: the size of chunk found with the read head at the end of the chunk.
 */
static size_t unpack_u16_chunk(struct aa_ext *e, char **chunk)
{
	size_t size = 0;

	if (!inbounds(e, sizeof(u16)))
		return 0;
229 230
	size = le16_to_cpu(get_unaligned((__le16 *) e->pos));
	e->pos += sizeof(__le16);
231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300
	if (!inbounds(e, size))
		return 0;
	*chunk = e->pos;
	e->pos += size;
	return size;
}

/* unpack control byte */
static bool unpack_X(struct aa_ext *e, enum aa_code code)
{
	if (!inbounds(e, 1))
		return 0;
	if (*(u8 *) e->pos != code)
		return 0;
	e->pos++;
	return 1;
}

/**
 * unpack_nameX - check is the next element is of type X with a name of @name
 * @e: serialized data extent information  (NOT NULL)
 * @code: type code
 * @name: name to match to the serialized element.  (MAYBE NULL)
 *
 * check that the next serialized data element is of type X and has a tag
 * name @name.  If @name is specified then there must be a matching
 * name element in the stream.  If @name is NULL any name element will be
 * skipped and only the typecode will be tested.
 *
 * Returns 1 on success (both type code and name tests match) and the read
 * head is advanced past the headers
 *
 * Returns: 0 if either match fails, the read head does not move
 */
static bool unpack_nameX(struct aa_ext *e, enum aa_code code, const char *name)
{
	/*
	 * May need to reset pos if name or type doesn't match
	 */
	void *pos = e->pos;
	/*
	 * Check for presence of a tagname, and if present name size
	 * AA_NAME tag value is a u16.
	 */
	if (unpack_X(e, AA_NAME)) {
		char *tag = NULL;
		size_t size = unpack_u16_chunk(e, &tag);
		/* if a name is specified it must match. otherwise skip tag */
		if (name && (!size || strcmp(name, tag)))
			goto fail;
	} else if (name) {
		/* if a name is specified and there is no name tag fail */
		goto fail;
	}

	/* now check if type code matches */
	if (unpack_X(e, code))
		return 1;

fail:
	e->pos = pos;
	return 0;
}

static bool unpack_u32(struct aa_ext *e, u32 *data, const char *name)
{
	if (unpack_nameX(e, AA_U32, name)) {
		if (!inbounds(e, sizeof(u32)))
			return 0;
		if (data)
301
			*data = le32_to_cpu(get_unaligned((__le32 *) e->pos));
302 303 304 305 306 307 308 309 310 311 312 313
		e->pos += sizeof(u32);
		return 1;
	}
	return 0;
}

static bool unpack_u64(struct aa_ext *e, u64 *data, const char *name)
{
	if (unpack_nameX(e, AA_U64, name)) {
		if (!inbounds(e, sizeof(u64)))
			return 0;
		if (data)
314
			*data = le64_to_cpu(get_unaligned((__le64 *) e->pos));
315 316 317 318 319 320 321 322 323 324 325 326
		e->pos += sizeof(u64);
		return 1;
	}
	return 0;
}

static size_t unpack_array(struct aa_ext *e, const char *name)
{
	if (unpack_nameX(e, AA_ARRAY, name)) {
		int size;
		if (!inbounds(e, sizeof(u16)))
			return 0;
327
		size = (int)le16_to_cpu(get_unaligned((__le16 *) e->pos));
328 329 330 331 332 333 334 335 336 337 338 339
		e->pos += sizeof(u16);
		return size;
	}
	return 0;
}

static size_t unpack_blob(struct aa_ext *e, char **blob, const char *name)
{
	if (unpack_nameX(e, AA_BLOB, name)) {
		u32 size;
		if (!inbounds(e, sizeof(u32)))
			return 0;
340
		size = le32_to_cpu(get_unaligned((__le32 *) e->pos));
341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409
		e->pos += sizeof(u32);
		if (inbounds(e, (size_t) size)) {
			*blob = e->pos;
			e->pos += size;
			return size;
		}
	}
	return 0;
}

static int unpack_str(struct aa_ext *e, const char **string, const char *name)
{
	char *src_str;
	size_t size = 0;
	void *pos = e->pos;
	*string = NULL;
	if (unpack_nameX(e, AA_STRING, name)) {
		size = unpack_u16_chunk(e, &src_str);
		if (size) {
			/* strings are null terminated, length is size - 1 */
			if (src_str[size - 1] != 0)
				goto fail;
			*string = src_str;
		}
	}
	return size;

fail:
	e->pos = pos;
	return 0;
}

static int unpack_strdup(struct aa_ext *e, char **string, const char *name)
{
	const char *tmp;
	void *pos = e->pos;
	int res = unpack_str(e, &tmp, name);
	*string = NULL;

	if (!res)
		return 0;

	*string = kmemdup(tmp, res, GFP_KERNEL);
	if (!*string) {
		e->pos = pos;
		return 0;
	}

	return res;
}


/**
 * unpack_dfa - unpack a file rule dfa
 * @e: serialized data extent information (NOT NULL)
 *
 * returns dfa or ERR_PTR or NULL if no dfa
 */
static struct aa_dfa *unpack_dfa(struct aa_ext *e)
{
	char *blob = NULL;
	size_t size;
	struct aa_dfa *dfa = NULL;

	size = unpack_blob(e, &blob, "aadfa");
	if (size) {
		/*
		 * The dfa is aligned with in the blob to 8 bytes
		 * from the beginning of the stream.
410
		 * alignment adjust needed by dfa unpack
411
		 */
412 413
		size_t sz = blob - (char *) e->start -
			((e->pos - e->start) & 7);
414 415
		size_t pad = ALIGN(sz, 8) - sz;
		int flags = TO_ACCEPT1_FLAG(YYTD_DATA32) |
416
			TO_ACCEPT2_FLAG(YYTD_DATA32) | DFA_FLAG_VERIFY_STATES;
417 418 419 420 421 422 423 424 425 426 427 428 429 430 431
		dfa = aa_dfa_unpack(blob + pad, size - pad, flags);

		if (IS_ERR(dfa))
			return dfa;

	}

	return dfa;
}

/**
 * unpack_trans_table - unpack a profile transition table
 * @e: serialized data extent information  (NOT NULL)
 * @profile: profile to add the accept table to (NOT NULL)
 *
L
Lucas De Marchi 已提交
432
 * Returns: 1 if table successfully unpacked
433 434 435
 */
static bool unpack_trans_table(struct aa_ext *e, struct aa_profile *profile)
{
436
	void *saved_pos = e->pos;
437 438 439 440 441 442 443 444 445

	/* exec table is optional */
	if (unpack_nameX(e, AA_STRUCT, "xtable")) {
		int i, size;

		size = unpack_array(e, NULL);
		/* currently 4 exec bits and entries 0-3 are reserved iupcx */
		if (size > 16 - 4)
			goto fail;
K
Kees Cook 已提交
446
		profile->file.trans.table = kcalloc(size, sizeof(char *),
447 448 449 450 451 452 453
						    GFP_KERNEL);
		if (!profile->file.trans.table)
			goto fail;

		profile->file.trans.size = size;
		for (i = 0; i < size; i++) {
			char *str;
454
			int c, j, pos, size2 = unpack_strdup(e, &str, NULL);
455 456 457
			/* unpack_strdup verifies that the last character is
			 * null termination byte.
			 */
458
			if (!size2)
459 460 461 462 463 464 465
				goto fail;
			profile->file.trans.table[i] = str;
			/* verify that name doesn't start with space */
			if (isspace(*str))
				goto fail;

			/* count internal #  of internal \0 */
466 467 468
			for (c = j = 0; j < size2 - 1; j++) {
				if (!str[j]) {
					pos = j;
469
					c++;
470
				}
471 472
			}
			if (*str == ':') {
473 474 475
				/* first character after : must be valid */
				if (!str[1])
					goto fail;
476 477 478
				/* beginning with : requires an embedded \0,
				 * verify that exactly 1 internal \0 exists
				 * trailing \0 already verified by unpack_strdup
479 480
				 *
				 * convert \0 back to : for label_parse
481
				 */
482 483 484
				if (c == 1)
					str[pos] = ':';
				else if (c > 1)
485 486 487 488 489 490 491 492 493 494 495 496 497 498
					goto fail;
			} else if (c)
				/* fail - all other cases with embedded \0 */
				goto fail;
		}
		if (!unpack_nameX(e, AA_ARRAYEND, NULL))
			goto fail;
		if (!unpack_nameX(e, AA_STRUCTEND, NULL))
			goto fail;
	}
	return 1;

fail:
	aa_free_domain_entries(&profile->file.trans);
499
	e->pos = saved_pos;
500 501 502
	return 0;
}

503 504 505 506 507 508 509 510 511
static bool unpack_xattrs(struct aa_ext *e, struct aa_profile *profile)
{
	void *pos = e->pos;

	if (unpack_nameX(e, AA_STRUCT, "xattrs")) {
		int i, size;

		size = unpack_array(e, NULL);
		profile->xattr_count = size;
512
		profile->xattrs = kcalloc(size, sizeof(char *), GFP_KERNEL);
513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531
		if (!profile->xattrs)
			goto fail;
		for (i = 0; i < size; i++) {
			if (!unpack_strdup(e, &profile->xattrs[i], NULL))
				goto fail;
		}
		if (!unpack_nameX(e, AA_ARRAYEND, NULL))
			goto fail;
		if (!unpack_nameX(e, AA_STRUCTEND, NULL))
			goto fail;
	}

	return 1;

fail:
	e->pos = pos;
	return 0;
}

532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547
static bool unpack_rlimits(struct aa_ext *e, struct aa_profile *profile)
{
	void *pos = e->pos;

	/* rlimits are optional */
	if (unpack_nameX(e, AA_STRUCT, "rlimits")) {
		int i, size;
		u32 tmp = 0;
		if (!unpack_u32(e, &tmp, NULL))
			goto fail;
		profile->rlimits.mask = tmp;

		size = unpack_array(e, NULL);
		if (size > RLIM_NLIMITS)
			goto fail;
		for (i = 0; i < size; i++) {
548
			u64 tmp2 = 0;
549
			int a = aa_map_resource(i);
550
			if (!unpack_u64(e, &tmp2, NULL))
551
				goto fail;
552
			profile->rlimits.limits[a].rlim_max = tmp2;
553 554 555 556 557 558 559 560 561 562 563 564 565
		}
		if (!unpack_nameX(e, AA_ARRAYEND, NULL))
			goto fail;
		if (!unpack_nameX(e, AA_STRUCTEND, NULL))
			goto fail;
	}
	return 1;

fail:
	e->pos = pos;
	return 0;
}

566 567 568 569 570 571 572 573 574 575 576 577 578 579 580
static u32 strhash(const void *data, u32 len, u32 seed)
{
	const char * const *key = data;

	return jhash(*key, strlen(*key), seed);
}

static int datacmp(struct rhashtable_compare_arg *arg, const void *obj)
{
	const struct aa_data *data = obj;
	const char * const *key = arg->key;

	return strcmp(data->key, *key);
}

581 582 583 584 585 586
/**
 * unpack_profile - unpack a serialized profile
 * @e: serialized data extent information (NOT NULL)
 *
 * NOTE: unpack profile sets audit struct if there is a failure
 */
587
static struct aa_profile *unpack_profile(struct aa_ext *e, char **ns_name)
588 589
{
	struct aa_profile *profile = NULL;
590
	const char *tmpname, *tmpns = NULL, *name = NULL;
591
	const char *info = "failed to unpack profile";
592
	size_t ns_len;
593 594 595
	struct rhashtable_params params = { 0 };
	char *key = NULL;
	struct aa_data *data;
596
	int i, error = -EPROTO;
597 598 599
	kernel_cap_t tmpcap;
	u32 tmp;

600 601
	*ns_name = NULL;

602 603 604 605 606
	/* check that we have the right struct being passed */
	if (!unpack_nameX(e, AA_STRUCT, "profile"))
		goto fail;
	if (!unpack_str(e, &name, NULL))
		goto fail;
607 608 609 610 611 612
	if (*name == '\0')
		goto fail;

	tmpname = aa_splitn_fqname(name, strlen(name), &tmpns, &ns_len);
	if (tmpns) {
		*ns_name = kstrndup(tmpns, ns_len, GFP_KERNEL);
613 614
		if (!*ns_name) {
			info = "out of memory";
615
			goto fail;
616
		}
617 618
		name = tmpname;
	}
619

620
	profile = aa_alloc_profile(name, NULL, GFP_KERNEL);
621 622 623 624 625 626
	if (!profile)
		return ERR_PTR(-ENOMEM);

	/* profile renaming is optional */
	(void) unpack_str(e, &profile->rename, "rename");

627 628 629
	/* attachment string is optional */
	(void) unpack_str(e, &profile->attach, "attach");

630 631 632 633 634
	/* xmatch is optional and may be NULL */
	profile->xmatch = unpack_dfa(e);
	if (IS_ERR(profile->xmatch)) {
		error = PTR_ERR(profile->xmatch);
		profile->xmatch = NULL;
635
		info = "bad xmatch";
636 637 638 639
		goto fail;
	}
	/* xmatch_len is not optional if xmatch is set */
	if (profile->xmatch) {
640 641
		if (!unpack_u32(e, &tmp, NULL)) {
			info = "missing xmatch len";
642
			goto fail;
643
		}
644 645 646
		profile->xmatch_len = tmp;
	}

647 648 649
	/* disconnected attachment string is optional */
	(void) unpack_str(e, &profile->disconnected, "disconnected");

650
	/* per profile debug flags (complain, audit) */
651 652
	if (!unpack_nameX(e, AA_STRUCT, "flags")) {
		info = "profile missing flags";
653
		goto fail;
654 655
	}
	info = "failed to unpack profile flags";
656 657
	if (!unpack_u32(e, &tmp, NULL))
		goto fail;
658
	if (tmp & PACKED_FLAG_HAT)
659
		profile->label.flags |= FLAG_HAT;
660 661
	if (!unpack_u32(e, &tmp, NULL))
		goto fail;
662
	if (tmp == PACKED_MODE_COMPLAIN || (e->version & FORCE_COMPLAIN_FLAG))
663
		profile->mode = APPARMOR_COMPLAIN;
664 665 666 667
	else if (tmp == PACKED_MODE_KILL)
		profile->mode = APPARMOR_KILL;
	else if (tmp == PACKED_MODE_UNCONFINED)
		profile->mode = APPARMOR_UNCONFINED;
668 669 670 671 672 673 674 675 676 677
	if (!unpack_u32(e, &tmp, NULL))
		goto fail;
	if (tmp)
		profile->audit = AUDIT_ALL;

	if (!unpack_nameX(e, AA_STRUCTEND, NULL))
		goto fail;

	/* path_flags is optional */
	if (unpack_u32(e, &profile->path_flags, "path_flags"))
678 679
		profile->path_flags |= profile->label.flags &
			PATH_MEDIATE_DELETED;
680 681
	else
		/* set a default value if path_flags field is not present */
682
		profile->path_flags = PATH_MEDIATE_DELETED;
683

684
	info = "failed to unpack profile capabilities";
685 686 687 688 689 690 691 692 693
	if (!unpack_u32(e, &(profile->caps.allow.cap[0]), NULL))
		goto fail;
	if (!unpack_u32(e, &(profile->caps.audit.cap[0]), NULL))
		goto fail;
	if (!unpack_u32(e, &(profile->caps.quiet.cap[0]), NULL))
		goto fail;
	if (!unpack_u32(e, &tmpcap.cap[0], NULL))
		goto fail;

694
	info = "failed to unpack upper profile capabilities";
695 696 697 698 699 700 701 702 703 704 705 706 707 708
	if (unpack_nameX(e, AA_STRUCT, "caps64")) {
		/* optional upper half of 64 bit caps */
		if (!unpack_u32(e, &(profile->caps.allow.cap[1]), NULL))
			goto fail;
		if (!unpack_u32(e, &(profile->caps.audit.cap[1]), NULL))
			goto fail;
		if (!unpack_u32(e, &(profile->caps.quiet.cap[1]), NULL))
			goto fail;
		if (!unpack_u32(e, &(tmpcap.cap[1]), NULL))
			goto fail;
		if (!unpack_nameX(e, AA_STRUCTEND, NULL))
			goto fail;
	}

709
	info = "failed to unpack extended profile capabilities";
710 711 712 713 714 715
	if (unpack_nameX(e, AA_STRUCT, "capsx")) {
		/* optional extended caps mediation mask */
		if (!unpack_u32(e, &(profile->caps.extended.cap[0]), NULL))
			goto fail;
		if (!unpack_u32(e, &(profile->caps.extended.cap[1]), NULL))
			goto fail;
716 717
		if (!unpack_nameX(e, AA_STRUCTEND, NULL))
			goto fail;
718 719
	}

720 721 722 723 724
	if (!unpack_xattrs(e, profile)) {
		info = "failed to unpack profile xattrs";
		goto fail;
	}

725 726
	if (!unpack_rlimits(e, profile)) {
		info = "failed to unpack profile rlimits";
727
		goto fail;
728
	}
729

730 731
	if (unpack_nameX(e, AA_STRUCT, "policydb")) {
		/* generic policy dfa - optional and may be NULL */
732
		info = "failed to unpack policydb";
733 734 735 736 737
		profile->policy.dfa = unpack_dfa(e);
		if (IS_ERR(profile->policy.dfa)) {
			error = PTR_ERR(profile->policy.dfa);
			profile->policy.dfa = NULL;
			goto fail;
738 739 740
		} else if (!profile->policy.dfa) {
			error = -EPROTO;
			goto fail;
741 742 743 744 745 746 747 748 749 750 751 752 753
		}
		if (!unpack_u32(e, &profile->policy.start[0], "start"))
			/* default start state */
			profile->policy.start[0] = DFA_START;
		/* setup class index */
		for (i = AA_CLASS_FILE; i <= AA_CLASS_LAST; i++) {
			profile->policy.start[i] =
				aa_dfa_next(profile->policy.dfa,
					    profile->policy.start[0],
					    i);
		}
		if (!unpack_nameX(e, AA_STRUCTEND, NULL))
			goto fail;
J
John Johansen 已提交
754 755
	} else
		profile->policy.dfa = aa_get_dfa(nulldfa);
756

757 758 759 760 761
	/* get file rules */
	profile->file.dfa = unpack_dfa(e);
	if (IS_ERR(profile->file.dfa)) {
		error = PTR_ERR(profile->file.dfa);
		profile->file.dfa = NULL;
762
		info = "failed to unpack profile file rules";
763
		goto fail;
764 765 766 767 768 769 770 771
	} else if (profile->file.dfa) {
		if (!unpack_u32(e, &profile->file.start, "dfa_start"))
			/* default start state */
			profile->file.start = DFA_START;
	} else if (profile->policy.dfa &&
		   profile->policy.start[AA_CLASS_FILE]) {
		profile->file.dfa = aa_get_dfa(profile->policy.dfa);
		profile->file.start = profile->policy.start[AA_CLASS_FILE];
J
John Johansen 已提交
772 773
	} else
		profile->file.dfa = aa_get_dfa(nulldfa);
774

775 776
	if (!unpack_trans_table(e, profile)) {
		info = "failed to unpack profile transition table";
777
		goto fail;
778
	}
779

780
	if (unpack_nameX(e, AA_STRUCT, "data")) {
781
		info = "out of memory";
782 783 784 785 786 787 788 789 790 791 792
		profile->data = kzalloc(sizeof(*profile->data), GFP_KERNEL);
		if (!profile->data)
			goto fail;

		params.nelem_hint = 3;
		params.key_len = sizeof(void *);
		params.key_offset = offsetof(struct aa_data, key);
		params.head_offset = offsetof(struct aa_data, head);
		params.hashfn = strhash;
		params.obj_cmpfn = datacmp;

793 794
		if (rhashtable_init(profile->data, &params)) {
			info = "failed to init key, value hash table";
795
			goto fail;
796
		}
797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817

		while (unpack_strdup(e, &key, NULL)) {
			data = kzalloc(sizeof(*data), GFP_KERNEL);
			if (!data) {
				kzfree(key);
				goto fail;
			}

			data->key = key;
			data->size = unpack_blob(e, &data->data, NULL);
			data->data = kvmemdup(data->data, data->size);
			if (data->size && !data->data) {
				kzfree(data->key);
				kzfree(data);
				goto fail;
			}

			rhashtable_insert_fast(profile->data, &data->head,
					       profile->data->p);
		}

818 819
		if (!unpack_nameX(e, AA_STRUCTEND, NULL)) {
			info = "failed to unpack end of key, value data table";
820
			goto fail;
821
		}
822 823
	}

824 825
	if (!unpack_nameX(e, AA_STRUCTEND, NULL)) {
		info = "failed to unpack end of profile";
826
		goto fail;
827
	}
828 829 830 831 832 833 834 835

	return profile;

fail:
	if (profile)
		name = NULL;
	else if (!name)
		name = "unknown";
836
	audit_iface(profile, NULL, name, info, e, error);
837
	aa_free_profile(profile);
838 839 840 841 842 843 844

	return ERR_PTR(error);
}

/**
 * verify_head - unpack serialized stream header
 * @e: serialized data read head (NOT NULL)
845
 * @required: whether the header is required or optional
846 847 848 849
 * @ns: Returns - namespace if one is specified else NULL (NOT NULL)
 *
 * Returns: error or 0 if header is good
 */
850
static int verify_header(struct aa_ext *e, int required, const char **ns)
851 852
{
	int error = -EPROTONOSUPPORT;
853 854 855
	const char *name = NULL;
	*ns = NULL;

856 857
	/* get the interface version */
	if (!unpack_u32(e, &e->version, "version")) {
858
		if (required) {
859
			audit_iface(NULL, NULL, NULL, "invalid profile format",
860 861 862
				    e, error);
			return error;
		}
863 864
	}

865 866 867 868
	/* Check that the interface version is currently supported.
	 * if not specified use previous version
	 * Mask off everything that is not kernel abi version
	 */
869
	if (VERSION_LT(e->version, v5) || VERSION_GT(e->version, v7)) {
870
		audit_iface(NULL, NULL, NULL, "unsupported interface version",
871 872 873
			    e, error);
		return error;
	}
874

875
	/* read the namespace if present */
876
	if (unpack_str(e, &name, "namespace")) {
877 878 879 880 881
		if (*name == '\0') {
			audit_iface(NULL, NULL, NULL, "invalid namespace name",
				    e, error);
			return error;
		}
882
		if (*ns && strcmp(*ns, name))
883 884
			audit_iface(NULL, NULL, NULL, "invalid ns change", e,
				    error);
885 886 887
		else if (!*ns)
			*ns = name;
	}
888 889 890 891 892 893 894 895 896

	return 0;
}

static bool verify_xindex(int xindex, int table_size)
{
	int index, xtype;
	xtype = xindex & AA_X_TYPE_MASK;
	index = xindex & AA_X_INDEX_MASK;
897
	if (xtype == AA_X_TABLE && index >= table_size)
898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922
		return 0;
	return 1;
}

/* verify dfa xindexes are in range of transition tables */
static bool verify_dfa_xindex(struct aa_dfa *dfa, int table_size)
{
	int i;
	for (i = 0; i < dfa->tables[YYTD_ID_ACCEPT]->td_lolen; i++) {
		if (!verify_xindex(dfa_user_xindex(dfa, i), table_size))
			return 0;
		if (!verify_xindex(dfa_other_xindex(dfa, i), table_size))
			return 0;
	}
	return 1;
}

/**
 * verify_profile - Do post unpack analysis to verify profile consistency
 * @profile: profile to verify (NOT NULL)
 *
 * Returns: 0 if passes verification else error
 */
static int verify_profile(struct aa_profile *profile)
{
923 924 925
	if (profile->file.dfa &&
	    !verify_dfa_xindex(profile->file.dfa,
			       profile->file.trans.size)) {
926
		audit_iface(profile, NULL, NULL, "Invalid named transition",
927 928
			    NULL, -EPROTO);
		return -EPROTO;
929 930 931 932 933
	}

	return 0;
}

934 935 936 937 938 939
void aa_load_ent_free(struct aa_load_ent *ent)
{
	if (ent) {
		aa_put_profile(ent->rename);
		aa_put_profile(ent->old);
		aa_put_profile(ent->new);
940
		kfree(ent->ns_name);
941 942 943 944 945 946 947 948 949 950 951 952
		kzfree(ent);
	}
}

struct aa_load_ent *aa_load_ent_alloc(void)
{
	struct aa_load_ent *ent = kzalloc(sizeof(*ent), GFP_KERNEL);
	if (ent)
		INIT_LIST_HEAD(&ent->list);
	return ent;
}

953
/**
954
 * aa_unpack - unpack packed binary profile(s) data loaded from user space
955
 * @udata: user data copied to kmem  (NOT NULL)
956
 * @lh: list to place unpacked profiles in a aa_repl_ws
957 958
 * @ns: Returns namespace profile is in if specified else NULL (NOT NULL)
 *
959 960 961
 * Unpack user data and return refcounted allocated profile(s) stored in
 * @lh in order of discovery, with the list chain stored in base.list
 * or error
962
 *
963
 * Returns: profile(s) on @lh else error pointer if fails to unpack
964
 */
965 966
int aa_unpack(struct aa_loaddata *udata, struct list_head *lh,
	      const char **ns)
967
{
968
	struct aa_load_ent *tmp, *ent;
969 970 971
	struct aa_profile *profile = NULL;
	int error;
	struct aa_ext e = {
972 973 974
		.start = udata->data,
		.end = udata->data + udata->size,
		.pos = udata->data,
975 976
	};

977 978
	*ns = NULL;
	while (e.pos < e.end) {
979
		char *ns_name = NULL;
980
		void *start;
981 982 983
		error = verify_header(&e, e.pos == e.start, ns);
		if (error)
			goto fail;
984

985
		start = e.pos;
986
		profile = unpack_profile(&e, &ns_name);
987 988 989 990 991 992
		if (IS_ERR(profile)) {
			error = PTR_ERR(profile);
			goto fail;
		}

		error = verify_profile(profile);
993 994 995
		if (error)
			goto fail_profile;

996 997
		if (aa_g_hash_policy)
			error = aa_calc_profile_hash(profile, e.version, start,
998
						     e.pos - start);
999 1000
		if (error)
			goto fail_profile;
1001 1002 1003 1004

		ent = aa_load_ent_alloc();
		if (!ent) {
			error = -ENOMEM;
1005
			goto fail_profile;
1006
		}
1007

1008
		ent->new = profile;
1009
		ent->ns_name = ns_name;
1010
		list_add_tail(&ent->list, lh);
1011
	}
1012
	udata->abi = e.version & K_ABI_MASK;
1013 1014 1015 1016 1017 1018 1019
	if (aa_g_hash_policy) {
		udata->hash = aa_calc_hash(udata->data, udata->size);
		if (IS_ERR(udata->hash)) {
			error = PTR_ERR(udata->hash);
			udata->hash = NULL;
			goto fail;
		}
1020
	}
1021 1022
	return 0;

1023 1024 1025
fail_profile:
	aa_put_profile(profile);

1026 1027 1028 1029 1030 1031 1032
fail:
	list_for_each_entry_safe(ent, tmp, lh, list) {
		list_del_init(&ent->list);
		aa_load_ent_free(ent);
	}

	return error;
1033
}