Linux 4.19.133
[linux/fpc-iii.git] / security / apparmor / policy_unpack.c
blob612f737cee836177a249a72d6446ef3868cdd494
1 /*
2 * AppArmor security module
4 * This file contains AppArmor functions for unpacking policy loaded from
5 * userspace.
7 * Copyright (C) 1998-2008 Novell/SUSE
8 * Copyright 2009-2010 Canonical Ltd.
10 * This program is free software; you can redistribute it and/or
11 * modify it under the terms of the GNU General Public License as
12 * published by the Free Software Foundation, version 2 of the
13 * License.
15 * AppArmor uses a serialized binary format for loading policy. To find
16 * policy format documentation see Documentation/admin-guide/LSM/apparmor.rst
17 * All policy is validated before it is used.
20 #include <asm/unaligned.h>
21 #include <linux/ctype.h>
22 #include <linux/errno.h>
24 #include "include/apparmor.h"
25 #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 #include "include/policy.h"
31 #include "include/policy_unpack.h"
33 #define K_ABI_MASK 0x3ff
34 #define FORCE_COMPLAIN_FLAG 0x800
35 #define VERSION_LT(X, Y) (((X) & K_ABI_MASK) < ((Y) & K_ABI_MASK))
36 #define VERSION_GT(X, Y) (((X) & K_ABI_MASK) > ((Y) & K_ABI_MASK))
38 #define v5 5 /* base version */
39 #define v6 6 /* per entry policydb mediation check */
40 #define v7 7
41 #define v8 8 /* full network masking */
44 * The AppArmor interface treats data as a type byte followed by the
45 * actual data. The interface has the notion of a a named entry
46 * which has a name (AA_NAME typecode followed by name string) followed by
47 * the entries typecode and data. Named types allow for optional
48 * elements and extensions to be added and tested for without breaking
49 * backwards compatibility.
52 enum aa_code {
53 AA_U8,
54 AA_U16,
55 AA_U32,
56 AA_U64,
57 AA_NAME, /* same as string except it is items name */
58 AA_STRING,
59 AA_BLOB,
60 AA_STRUCT,
61 AA_STRUCTEND,
62 AA_LIST,
63 AA_LISTEND,
64 AA_ARRAY,
65 AA_ARRAYEND,
69 * aa_ext is the read of the buffer containing the serialized profile. The
70 * data is copied into a kernel buffer in apparmorfs and then handed off to
71 * the unpack routines.
73 struct aa_ext {
74 void *start;
75 void *end;
76 void *pos; /* pointer to current position in the buffer */
77 u32 version;
80 /* audit callback for unpack fields */
81 static void audit_cb(struct audit_buffer *ab, void *va)
83 struct common_audit_data *sa = va;
85 if (aad(sa)->iface.ns) {
86 audit_log_format(ab, " ns=");
87 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);
93 if (aad(sa)->iface.pos)
94 audit_log_format(ab, " offset=%ld", aad(sa)->iface.pos);
97 /**
98 * audit_iface - do audit message for policy unpacking/load/replace/remove
99 * @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 * @name: name of the profile being manipulated (MAYBE NULL)
102 * @info: any extra info about the failure (MAYBE NULL)
103 * @e: buffer position info
104 * @error: error code
106 * Returns: %0 or error
108 static int audit_iface(struct aa_profile *new, const char *ns_name,
109 const char *name, const char *info, struct aa_ext *e,
110 int error)
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 aad(&sa)->iface.pos = e->pos - e->start;
116 aad(&sa)->iface.ns = ns_name;
117 if (new)
118 aad(&sa)->name = new->base.hname;
119 else
120 aad(&sa)->name = name;
121 aad(&sa)->info = info;
122 aad(&sa)->error = error;
124 return aa_audit(AUDIT_APPARMOR_STATUS, profile, &sa, audit_cb);
127 void __aa_loaddata_update(struct aa_loaddata *data, long revision)
129 AA_BUG(!data);
130 AA_BUG(!data->ns);
131 AA_BUG(!data->dents[AAFS_LOADDATA_REVISION]);
132 AA_BUG(!mutex_is_locked(&data->ns->lock));
133 AA_BUG(data->revision > revision);
135 data->revision = revision;
136 d_inode(data->dents[AAFS_LOADDATA_DIR])->i_mtime =
137 current_time(d_inode(data->dents[AAFS_LOADDATA_DIR]));
138 d_inode(data->dents[AAFS_LOADDATA_REVISION])->i_mtime =
139 current_time(d_inode(data->dents[AAFS_LOADDATA_REVISION]));
142 bool aa_rawdata_eq(struct aa_loaddata *l, struct aa_loaddata *r)
144 if (l->size != r->size)
145 return false;
146 if (aa_g_hash_policy && memcmp(l->hash, r->hash, aa_hash_size()) != 0)
147 return false;
148 return memcmp(l->data, r->data, r->size) == 0;
152 * need to take the ns mutex lock which is NOT safe most places that
153 * put_loaddata is called, so we have to delay freeing it
155 static void do_loaddata_free(struct work_struct *work)
157 struct aa_loaddata *d = container_of(work, struct aa_loaddata, work);
158 struct aa_ns *ns = aa_get_ns(d->ns);
160 if (ns) {
161 mutex_lock_nested(&ns->lock, ns->level);
162 __aa_fs_remove_rawdata(d);
163 mutex_unlock(&ns->lock);
164 aa_put_ns(ns);
167 kzfree(d->hash);
168 kzfree(d->name);
169 kvfree(d->data);
170 kzfree(d);
173 void aa_loaddata_kref(struct kref *kref)
175 struct aa_loaddata *d = container_of(kref, struct aa_loaddata, count);
177 if (d) {
178 INIT_WORK(&d->work, do_loaddata_free);
179 schedule_work(&d->work);
183 struct aa_loaddata *aa_loaddata_alloc(size_t size)
185 struct aa_loaddata *d;
187 d = kzalloc(sizeof(*d), GFP_KERNEL);
188 if (d == NULL)
189 return ERR_PTR(-ENOMEM);
190 d->data = kvzalloc(size, GFP_KERNEL);
191 if (!d->data) {
192 kfree(d);
193 return ERR_PTR(-ENOMEM);
195 kref_init(&d->count);
196 INIT_LIST_HEAD(&d->list);
198 return d;
201 /* test if read will be in packed data bounds */
202 static bool inbounds(struct aa_ext *e, size_t size)
204 return (size <= e->end - e->pos);
207 static void *kvmemdup(const void *src, size_t len)
209 void *p = kvmalloc(len, GFP_KERNEL);
211 if (p)
212 memcpy(p, src, len);
213 return p;
217 * aa_u16_chunck - test and do bounds checking for a u16 size based chunk
218 * @e: serialized data read head (NOT NULL)
219 * @chunk: start address for chunk of data (NOT NULL)
221 * Returns: the size of chunk found with the read head at the end of the chunk.
223 static size_t unpack_u16_chunk(struct aa_ext *e, char **chunk)
225 size_t size = 0;
226 void *pos = e->pos;
228 if (!inbounds(e, sizeof(u16)))
229 goto fail;
230 size = le16_to_cpu(get_unaligned((__le16 *) e->pos));
231 e->pos += sizeof(__le16);
232 if (!inbounds(e, size))
233 goto fail;
234 *chunk = e->pos;
235 e->pos += size;
236 return size;
238 fail:
239 e->pos = pos;
240 return 0;
243 /* unpack control byte */
244 static bool unpack_X(struct aa_ext *e, enum aa_code code)
246 if (!inbounds(e, 1))
247 return 0;
248 if (*(u8 *) e->pos != code)
249 return 0;
250 e->pos++;
251 return 1;
255 * unpack_nameX - check is the next element is of type X with a name of @name
256 * @e: serialized data extent information (NOT NULL)
257 * @code: type code
258 * @name: name to match to the serialized element. (MAYBE NULL)
260 * check that the next serialized data element is of type X and has a tag
261 * name @name. If @name is specified then there must be a matching
262 * name element in the stream. If @name is NULL any name element will be
263 * skipped and only the typecode will be tested.
265 * Returns 1 on success (both type code and name tests match) and the read
266 * head is advanced past the headers
268 * Returns: 0 if either match fails, the read head does not move
270 static bool unpack_nameX(struct aa_ext *e, enum aa_code code, const char *name)
273 * May need to reset pos if name or type doesn't match
275 void *pos = e->pos;
277 * Check for presence of a tagname, and if present name size
278 * AA_NAME tag value is a u16.
280 if (unpack_X(e, AA_NAME)) {
281 char *tag = NULL;
282 size_t size = unpack_u16_chunk(e, &tag);
283 /* if a name is specified it must match. otherwise skip tag */
284 if (name && (!size || tag[size-1] != '\0' || strcmp(name, tag)))
285 goto fail;
286 } else if (name) {
287 /* if a name is specified and there is no name tag fail */
288 goto fail;
291 /* now check if type code matches */
292 if (unpack_X(e, code))
293 return 1;
295 fail:
296 e->pos = pos;
297 return 0;
300 static bool unpack_u32(struct aa_ext *e, u32 *data, const char *name)
302 void *pos = e->pos;
304 if (unpack_nameX(e, AA_U32, name)) {
305 if (!inbounds(e, sizeof(u32)))
306 goto fail;
307 if (data)
308 *data = le32_to_cpu(get_unaligned((__le32 *) e->pos));
309 e->pos += sizeof(u32);
310 return 1;
313 fail:
314 e->pos = pos;
315 return 0;
318 static bool unpack_u64(struct aa_ext *e, u64 *data, const char *name)
320 void *pos = e->pos;
322 if (unpack_nameX(e, AA_U64, name)) {
323 if (!inbounds(e, sizeof(u64)))
324 goto fail;
325 if (data)
326 *data = le64_to_cpu(get_unaligned((__le64 *) e->pos));
327 e->pos += sizeof(u64);
328 return 1;
331 fail:
332 e->pos = pos;
333 return 0;
336 static size_t unpack_array(struct aa_ext *e, const char *name)
338 void *pos = e->pos;
340 if (unpack_nameX(e, AA_ARRAY, name)) {
341 int size;
342 if (!inbounds(e, sizeof(u16)))
343 goto fail;
344 size = (int)le16_to_cpu(get_unaligned((__le16 *) e->pos));
345 e->pos += sizeof(u16);
346 return size;
349 fail:
350 e->pos = pos;
351 return 0;
354 static size_t unpack_blob(struct aa_ext *e, char **blob, const char *name)
356 void *pos = e->pos;
358 if (unpack_nameX(e, AA_BLOB, name)) {
359 u32 size;
360 if (!inbounds(e, sizeof(u32)))
361 goto fail;
362 size = le32_to_cpu(get_unaligned((__le32 *) e->pos));
363 e->pos += sizeof(u32);
364 if (inbounds(e, (size_t) size)) {
365 *blob = e->pos;
366 e->pos += size;
367 return size;
371 fail:
372 e->pos = pos;
373 return 0;
376 static int unpack_str(struct aa_ext *e, const char **string, const char *name)
378 char *src_str;
379 size_t size = 0;
380 void *pos = e->pos;
381 *string = NULL;
382 if (unpack_nameX(e, AA_STRING, name)) {
383 size = unpack_u16_chunk(e, &src_str);
384 if (size) {
385 /* strings are null terminated, length is size - 1 */
386 if (src_str[size - 1] != 0)
387 goto fail;
388 *string = src_str;
390 return size;
394 fail:
395 e->pos = pos;
396 return 0;
399 static int unpack_strdup(struct aa_ext *e, char **string, const char *name)
401 const char *tmp;
402 void *pos = e->pos;
403 int res = unpack_str(e, &tmp, name);
404 *string = NULL;
406 if (!res)
407 return 0;
409 *string = kmemdup(tmp, res, GFP_KERNEL);
410 if (!*string) {
411 e->pos = pos;
412 return 0;
415 return res;
420 * unpack_dfa - unpack a file rule dfa
421 * @e: serialized data extent information (NOT NULL)
423 * returns dfa or ERR_PTR or NULL if no dfa
425 static struct aa_dfa *unpack_dfa(struct aa_ext *e)
427 char *blob = NULL;
428 size_t size;
429 struct aa_dfa *dfa = NULL;
431 size = unpack_blob(e, &blob, "aadfa");
432 if (size) {
434 * The dfa is aligned with in the blob to 8 bytes
435 * from the beginning of the stream.
436 * alignment adjust needed by dfa unpack
438 size_t sz = blob - (char *) e->start -
439 ((e->pos - e->start) & 7);
440 size_t pad = ALIGN(sz, 8) - sz;
441 int flags = TO_ACCEPT1_FLAG(YYTD_DATA32) |
442 TO_ACCEPT2_FLAG(YYTD_DATA32) | DFA_FLAG_VERIFY_STATES;
443 dfa = aa_dfa_unpack(blob + pad, size - pad, flags);
445 if (IS_ERR(dfa))
446 return dfa;
450 return dfa;
454 * unpack_trans_table - unpack a profile transition table
455 * @e: serialized data extent information (NOT NULL)
456 * @profile: profile to add the accept table to (NOT NULL)
458 * Returns: 1 if table successfully unpacked
460 static bool unpack_trans_table(struct aa_ext *e, struct aa_profile *profile)
462 void *saved_pos = e->pos;
464 /* exec table is optional */
465 if (unpack_nameX(e, AA_STRUCT, "xtable")) {
466 int i, size;
468 size = unpack_array(e, NULL);
469 /* currently 4 exec bits and entries 0-3 are reserved iupcx */
470 if (size > 16 - 4)
471 goto fail;
472 profile->file.trans.table = kcalloc(size, sizeof(char *),
473 GFP_KERNEL);
474 if (!profile->file.trans.table)
475 goto fail;
477 profile->file.trans.size = size;
478 for (i = 0; i < size; i++) {
479 char *str;
480 int c, j, pos, size2 = unpack_strdup(e, &str, NULL);
481 /* unpack_strdup verifies that the last character is
482 * null termination byte.
484 if (!size2)
485 goto fail;
486 profile->file.trans.table[i] = str;
487 /* verify that name doesn't start with space */
488 if (isspace(*str))
489 goto fail;
491 /* count internal # of internal \0 */
492 for (c = j = 0; j < size2 - 1; j++) {
493 if (!str[j]) {
494 pos = j;
495 c++;
498 if (*str == ':') {
499 /* first character after : must be valid */
500 if (!str[1])
501 goto fail;
502 /* beginning with : requires an embedded \0,
503 * verify that exactly 1 internal \0 exists
504 * trailing \0 already verified by unpack_strdup
506 * convert \0 back to : for label_parse
508 if (c == 1)
509 str[pos] = ':';
510 else if (c > 1)
511 goto fail;
512 } else if (c)
513 /* fail - all other cases with embedded \0 */
514 goto fail;
516 if (!unpack_nameX(e, AA_ARRAYEND, NULL))
517 goto fail;
518 if (!unpack_nameX(e, AA_STRUCTEND, NULL))
519 goto fail;
521 return 1;
523 fail:
524 aa_free_domain_entries(&profile->file.trans);
525 e->pos = saved_pos;
526 return 0;
529 static bool unpack_xattrs(struct aa_ext *e, struct aa_profile *profile)
531 void *pos = e->pos;
533 if (unpack_nameX(e, AA_STRUCT, "xattrs")) {
534 int i, size;
536 size = unpack_array(e, NULL);
537 profile->xattr_count = size;
538 profile->xattrs = kcalloc(size, sizeof(char *), GFP_KERNEL);
539 if (!profile->xattrs)
540 goto fail;
541 for (i = 0; i < size; i++) {
542 if (!unpack_strdup(e, &profile->xattrs[i], NULL))
543 goto fail;
545 if (!unpack_nameX(e, AA_ARRAYEND, NULL))
546 goto fail;
547 if (!unpack_nameX(e, AA_STRUCTEND, NULL))
548 goto fail;
551 return 1;
553 fail:
554 e->pos = pos;
555 return 0;
558 static bool unpack_rlimits(struct aa_ext *e, struct aa_profile *profile)
560 void *pos = e->pos;
562 /* rlimits are optional */
563 if (unpack_nameX(e, AA_STRUCT, "rlimits")) {
564 int i, size;
565 u32 tmp = 0;
566 if (!unpack_u32(e, &tmp, NULL))
567 goto fail;
568 profile->rlimits.mask = tmp;
570 size = unpack_array(e, NULL);
571 if (size > RLIM_NLIMITS)
572 goto fail;
573 for (i = 0; i < size; i++) {
574 u64 tmp2 = 0;
575 int a = aa_map_resource(i);
576 if (!unpack_u64(e, &tmp2, NULL))
577 goto fail;
578 profile->rlimits.limits[a].rlim_max = tmp2;
580 if (!unpack_nameX(e, AA_ARRAYEND, NULL))
581 goto fail;
582 if (!unpack_nameX(e, AA_STRUCTEND, NULL))
583 goto fail;
585 return 1;
587 fail:
588 e->pos = pos;
589 return 0;
592 static u32 strhash(const void *data, u32 len, u32 seed)
594 const char * const *key = data;
596 return jhash(*key, strlen(*key), seed);
599 static int datacmp(struct rhashtable_compare_arg *arg, const void *obj)
601 const struct aa_data *data = obj;
602 const char * const *key = arg->key;
604 return strcmp(data->key, *key);
608 * unpack_profile - unpack a serialized profile
609 * @e: serialized data extent information (NOT NULL)
611 * NOTE: unpack profile sets audit struct if there is a failure
613 static struct aa_profile *unpack_profile(struct aa_ext *e, char **ns_name)
615 struct aa_profile *profile = NULL;
616 const char *tmpname, *tmpns = NULL, *name = NULL;
617 const char *info = "failed to unpack profile";
618 size_t ns_len;
619 struct rhashtable_params params = { 0 };
620 char *key = NULL;
621 struct aa_data *data;
622 int i, error = -EPROTO;
623 kernel_cap_t tmpcap;
624 u32 tmp;
626 *ns_name = NULL;
628 /* check that we have the right struct being passed */
629 if (!unpack_nameX(e, AA_STRUCT, "profile"))
630 goto fail;
631 if (!unpack_str(e, &name, NULL))
632 goto fail;
633 if (*name == '\0')
634 goto fail;
636 tmpname = aa_splitn_fqname(name, strlen(name), &tmpns, &ns_len);
637 if (tmpns) {
638 *ns_name = kstrndup(tmpns, ns_len, GFP_KERNEL);
639 if (!*ns_name) {
640 info = "out of memory";
641 goto fail;
643 name = tmpname;
646 profile = aa_alloc_profile(name, NULL, GFP_KERNEL);
647 if (!profile)
648 return ERR_PTR(-ENOMEM);
650 /* profile renaming is optional */
651 (void) unpack_str(e, &profile->rename, "rename");
653 /* attachment string is optional */
654 (void) unpack_str(e, &profile->attach, "attach");
656 /* xmatch is optional and may be NULL */
657 profile->xmatch = unpack_dfa(e);
658 if (IS_ERR(profile->xmatch)) {
659 error = PTR_ERR(profile->xmatch);
660 profile->xmatch = NULL;
661 info = "bad xmatch";
662 goto fail;
664 /* xmatch_len is not optional if xmatch is set */
665 if (profile->xmatch) {
666 if (!unpack_u32(e, &tmp, NULL)) {
667 info = "missing xmatch len";
668 goto fail;
670 profile->xmatch_len = tmp;
673 /* disconnected attachment string is optional */
674 (void) unpack_str(e, &profile->disconnected, "disconnected");
676 /* per profile debug flags (complain, audit) */
677 if (!unpack_nameX(e, AA_STRUCT, "flags")) {
678 info = "profile missing flags";
679 goto fail;
681 info = "failed to unpack profile flags";
682 if (!unpack_u32(e, &tmp, NULL))
683 goto fail;
684 if (tmp & PACKED_FLAG_HAT)
685 profile->label.flags |= FLAG_HAT;
686 if (!unpack_u32(e, &tmp, NULL))
687 goto fail;
688 if (tmp == PACKED_MODE_COMPLAIN || (e->version & FORCE_COMPLAIN_FLAG))
689 profile->mode = APPARMOR_COMPLAIN;
690 else if (tmp == PACKED_MODE_KILL)
691 profile->mode = APPARMOR_KILL;
692 else if (tmp == PACKED_MODE_UNCONFINED)
693 profile->mode = APPARMOR_UNCONFINED;
694 if (!unpack_u32(e, &tmp, NULL))
695 goto fail;
696 if (tmp)
697 profile->audit = AUDIT_ALL;
699 if (!unpack_nameX(e, AA_STRUCTEND, NULL))
700 goto fail;
702 /* path_flags is optional */
703 if (unpack_u32(e, &profile->path_flags, "path_flags"))
704 profile->path_flags |= profile->label.flags &
705 PATH_MEDIATE_DELETED;
706 else
707 /* set a default value if path_flags field is not present */
708 profile->path_flags = PATH_MEDIATE_DELETED;
710 info = "failed to unpack profile capabilities";
711 if (!unpack_u32(e, &(profile->caps.allow.cap[0]), NULL))
712 goto fail;
713 if (!unpack_u32(e, &(profile->caps.audit.cap[0]), NULL))
714 goto fail;
715 if (!unpack_u32(e, &(profile->caps.quiet.cap[0]), NULL))
716 goto fail;
717 if (!unpack_u32(e, &tmpcap.cap[0], NULL))
718 goto fail;
720 info = "failed to unpack upper profile capabilities";
721 if (unpack_nameX(e, AA_STRUCT, "caps64")) {
722 /* optional upper half of 64 bit caps */
723 if (!unpack_u32(e, &(profile->caps.allow.cap[1]), NULL))
724 goto fail;
725 if (!unpack_u32(e, &(profile->caps.audit.cap[1]), NULL))
726 goto fail;
727 if (!unpack_u32(e, &(profile->caps.quiet.cap[1]), NULL))
728 goto fail;
729 if (!unpack_u32(e, &(tmpcap.cap[1]), NULL))
730 goto fail;
731 if (!unpack_nameX(e, AA_STRUCTEND, NULL))
732 goto fail;
735 info = "failed to unpack extended profile capabilities";
736 if (unpack_nameX(e, AA_STRUCT, "capsx")) {
737 /* optional extended caps mediation mask */
738 if (!unpack_u32(e, &(profile->caps.extended.cap[0]), NULL))
739 goto fail;
740 if (!unpack_u32(e, &(profile->caps.extended.cap[1]), NULL))
741 goto fail;
742 if (!unpack_nameX(e, AA_STRUCTEND, NULL))
743 goto fail;
746 if (!unpack_xattrs(e, profile)) {
747 info = "failed to unpack profile xattrs";
748 goto fail;
751 if (!unpack_rlimits(e, profile)) {
752 info = "failed to unpack profile rlimits";
753 goto fail;
756 if (unpack_nameX(e, AA_STRUCT, "policydb")) {
757 /* generic policy dfa - optional and may be NULL */
758 info = "failed to unpack policydb";
759 profile->policy.dfa = unpack_dfa(e);
760 if (IS_ERR(profile->policy.dfa)) {
761 error = PTR_ERR(profile->policy.dfa);
762 profile->policy.dfa = NULL;
763 goto fail;
764 } else if (!profile->policy.dfa) {
765 error = -EPROTO;
766 goto fail;
768 if (!unpack_u32(e, &profile->policy.start[0], "start"))
769 /* default start state */
770 profile->policy.start[0] = DFA_START;
771 /* setup class index */
772 for (i = AA_CLASS_FILE; i <= AA_CLASS_LAST; i++) {
773 profile->policy.start[i] =
774 aa_dfa_next(profile->policy.dfa,
775 profile->policy.start[0],
778 if (!unpack_nameX(e, AA_STRUCTEND, NULL))
779 goto fail;
780 } else
781 profile->policy.dfa = aa_get_dfa(nulldfa);
783 /* get file rules */
784 profile->file.dfa = unpack_dfa(e);
785 if (IS_ERR(profile->file.dfa)) {
786 error = PTR_ERR(profile->file.dfa);
787 profile->file.dfa = NULL;
788 info = "failed to unpack profile file rules";
789 goto fail;
790 } else if (profile->file.dfa) {
791 if (!unpack_u32(e, &profile->file.start, "dfa_start"))
792 /* default start state */
793 profile->file.start = DFA_START;
794 } else if (profile->policy.dfa &&
795 profile->policy.start[AA_CLASS_FILE]) {
796 profile->file.dfa = aa_get_dfa(profile->policy.dfa);
797 profile->file.start = profile->policy.start[AA_CLASS_FILE];
798 } else
799 profile->file.dfa = aa_get_dfa(nulldfa);
801 if (!unpack_trans_table(e, profile)) {
802 info = "failed to unpack profile transition table";
803 goto fail;
806 if (unpack_nameX(e, AA_STRUCT, "data")) {
807 info = "out of memory";
808 profile->data = kzalloc(sizeof(*profile->data), GFP_KERNEL);
809 if (!profile->data)
810 goto fail;
812 params.nelem_hint = 3;
813 params.key_len = sizeof(void *);
814 params.key_offset = offsetof(struct aa_data, key);
815 params.head_offset = offsetof(struct aa_data, head);
816 params.hashfn = strhash;
817 params.obj_cmpfn = datacmp;
819 if (rhashtable_init(profile->data, &params)) {
820 info = "failed to init key, value hash table";
821 goto fail;
824 while (unpack_strdup(e, &key, NULL)) {
825 data = kzalloc(sizeof(*data), GFP_KERNEL);
826 if (!data) {
827 kzfree(key);
828 goto fail;
831 data->key = key;
832 data->size = unpack_blob(e, &data->data, NULL);
833 data->data = kvmemdup(data->data, data->size);
834 if (data->size && !data->data) {
835 kzfree(data->key);
836 kzfree(data);
837 goto fail;
840 rhashtable_insert_fast(profile->data, &data->head,
841 profile->data->p);
844 if (!unpack_nameX(e, AA_STRUCTEND, NULL)) {
845 info = "failed to unpack end of key, value data table";
846 goto fail;
850 if (!unpack_nameX(e, AA_STRUCTEND, NULL)) {
851 info = "failed to unpack end of profile";
852 goto fail;
855 return profile;
857 fail:
858 if (profile)
859 name = NULL;
860 else if (!name)
861 name = "unknown";
862 audit_iface(profile, NULL, name, info, e, error);
863 aa_free_profile(profile);
865 return ERR_PTR(error);
869 * verify_head - unpack serialized stream header
870 * @e: serialized data read head (NOT NULL)
871 * @required: whether the header is required or optional
872 * @ns: Returns - namespace if one is specified else NULL (NOT NULL)
874 * Returns: error or 0 if header is good
876 static int verify_header(struct aa_ext *e, int required, const char **ns)
878 int error = -EPROTONOSUPPORT;
879 const char *name = NULL;
880 *ns = NULL;
882 /* get the interface version */
883 if (!unpack_u32(e, &e->version, "version")) {
884 if (required) {
885 audit_iface(NULL, NULL, NULL, "invalid profile format",
886 e, error);
887 return error;
891 /* Check that the interface version is currently supported.
892 * if not specified use previous version
893 * Mask off everything that is not kernel abi version
895 if (VERSION_LT(e->version, v5) || VERSION_GT(e->version, v7)) {
896 audit_iface(NULL, NULL, NULL, "unsupported interface version",
897 e, error);
898 return error;
901 /* read the namespace if present */
902 if (unpack_str(e, &name, "namespace")) {
903 if (*name == '\0') {
904 audit_iface(NULL, NULL, NULL, "invalid namespace name",
905 e, error);
906 return error;
908 if (*ns && strcmp(*ns, name))
909 audit_iface(NULL, NULL, NULL, "invalid ns change", e,
910 error);
911 else if (!*ns)
912 *ns = name;
915 return 0;
918 static bool verify_xindex(int xindex, int table_size)
920 int index, xtype;
921 xtype = xindex & AA_X_TYPE_MASK;
922 index = xindex & AA_X_INDEX_MASK;
923 if (xtype == AA_X_TABLE && index >= table_size)
924 return 0;
925 return 1;
928 /* verify dfa xindexes are in range of transition tables */
929 static bool verify_dfa_xindex(struct aa_dfa *dfa, int table_size)
931 int i;
932 for (i = 0; i < dfa->tables[YYTD_ID_ACCEPT]->td_lolen; i++) {
933 if (!verify_xindex(dfa_user_xindex(dfa, i), table_size))
934 return 0;
935 if (!verify_xindex(dfa_other_xindex(dfa, i), table_size))
936 return 0;
938 return 1;
942 * verify_profile - Do post unpack analysis to verify profile consistency
943 * @profile: profile to verify (NOT NULL)
945 * Returns: 0 if passes verification else error
947 static int verify_profile(struct aa_profile *profile)
949 if (profile->file.dfa &&
950 !verify_dfa_xindex(profile->file.dfa,
951 profile->file.trans.size)) {
952 audit_iface(profile, NULL, NULL, "Invalid named transition",
953 NULL, -EPROTO);
954 return -EPROTO;
957 return 0;
960 void aa_load_ent_free(struct aa_load_ent *ent)
962 if (ent) {
963 aa_put_profile(ent->rename);
964 aa_put_profile(ent->old);
965 aa_put_profile(ent->new);
966 kfree(ent->ns_name);
967 kzfree(ent);
971 struct aa_load_ent *aa_load_ent_alloc(void)
973 struct aa_load_ent *ent = kzalloc(sizeof(*ent), GFP_KERNEL);
974 if (ent)
975 INIT_LIST_HEAD(&ent->list);
976 return ent;
980 * aa_unpack - unpack packed binary profile(s) data loaded from user space
981 * @udata: user data copied to kmem (NOT NULL)
982 * @lh: list to place unpacked profiles in a aa_repl_ws
983 * @ns: Returns namespace profile is in if specified else NULL (NOT NULL)
985 * Unpack user data and return refcounted allocated profile(s) stored in
986 * @lh in order of discovery, with the list chain stored in base.list
987 * or error
989 * Returns: profile(s) on @lh else error pointer if fails to unpack
991 int aa_unpack(struct aa_loaddata *udata, struct list_head *lh,
992 const char **ns)
994 struct aa_load_ent *tmp, *ent;
995 struct aa_profile *profile = NULL;
996 int error;
997 struct aa_ext e = {
998 .start = udata->data,
999 .end = udata->data + udata->size,
1000 .pos = udata->data,
1003 *ns = NULL;
1004 while (e.pos < e.end) {
1005 char *ns_name = NULL;
1006 void *start;
1007 error = verify_header(&e, e.pos == e.start, ns);
1008 if (error)
1009 goto fail;
1011 start = e.pos;
1012 profile = unpack_profile(&e, &ns_name);
1013 if (IS_ERR(profile)) {
1014 error = PTR_ERR(profile);
1015 goto fail;
1018 error = verify_profile(profile);
1019 if (error)
1020 goto fail_profile;
1022 if (aa_g_hash_policy)
1023 error = aa_calc_profile_hash(profile, e.version, start,
1024 e.pos - start);
1025 if (error)
1026 goto fail_profile;
1028 ent = aa_load_ent_alloc();
1029 if (!ent) {
1030 error = -ENOMEM;
1031 goto fail_profile;
1034 ent->new = profile;
1035 ent->ns_name = ns_name;
1036 list_add_tail(&ent->list, lh);
1038 udata->abi = e.version & K_ABI_MASK;
1039 if (aa_g_hash_policy) {
1040 udata->hash = aa_calc_hash(udata->data, udata->size);
1041 if (IS_ERR(udata->hash)) {
1042 error = PTR_ERR(udata->hash);
1043 udata->hash = NULL;
1044 goto fail;
1047 return 0;
1049 fail_profile:
1050 aa_put_profile(profile);
1052 fail:
1053 list_for_each_entry_safe(ent, tmp, lh, list) {
1054 list_del_init(&ent->list);
1055 aa_load_ent_free(ent);
1058 return error;