John Johansen | 736ec752 | 2010-07-29 14:48:02 -0700 | [diff] [blame] | 1 | /* |
| 2 | * AppArmor security module |
| 3 | * |
| 4 | * This file contains AppArmor functions for unpacking policy loaded from |
| 5 | * userspace. |
| 6 | * |
| 7 | * Copyright (C) 1998-2008 Novell/SUSE |
| 8 | * Copyright 2009-2010 Canonical Ltd. |
| 9 | * |
| 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. |
| 14 | * |
Randy Dunlap | d410fa4e | 2011-05-19 15:59:38 -0700 | [diff] [blame] | 15 | * AppArmor uses a serialized binary format for loading policy. To find |
| 16 | * policy format documentation look in Documentation/security/apparmor.txt |
John Johansen | 736ec752 | 2010-07-29 14:48:02 -0700 | [diff] [blame] | 17 | * All policy is validated before it is used. |
| 18 | */ |
| 19 | |
| 20 | #include <asm/unaligned.h> |
| 21 | #include <linux/ctype.h> |
| 22 | #include <linux/errno.h> |
| 23 | |
| 24 | #include "include/apparmor.h" |
| 25 | #include "include/audit.h" |
| 26 | #include "include/context.h" |
John Johansen | f8eb8a1 | 2013-08-14 11:27:36 -0700 | [diff] [blame] | 27 | #include "include/crypto.h" |
John Johansen | 736ec752 | 2010-07-29 14:48:02 -0700 | [diff] [blame] | 28 | #include "include/match.h" |
John Johansen | 637f688 | 2017-06-09 08:14:28 -0700 | [diff] [blame^] | 29 | #include "include/path.h" |
John Johansen | 736ec752 | 2010-07-29 14:48:02 -0700 | [diff] [blame] | 30 | #include "include/policy.h" |
| 31 | #include "include/policy_unpack.h" |
John Johansen | 736ec752 | 2010-07-29 14:48:02 -0700 | [diff] [blame] | 32 | |
John Johansen | 474d6b75 | 2017-01-16 00:42:39 -0800 | [diff] [blame] | 33 | #define K_ABI_MASK 0x3ff |
John Johansen | 5ebfb12 | 2017-01-16 00:42:38 -0800 | [diff] [blame] | 34 | #define FORCE_COMPLAIN_FLAG 0x800 |
John Johansen | 474d6b75 | 2017-01-16 00:42:39 -0800 | [diff] [blame] | 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)) |
| 37 | |
| 38 | #define v5 5 /* base version */ |
| 39 | #define v6 6 /* per entry policydb mediation check */ |
| 40 | #define v7 7 /* full network masking */ |
John Johansen | 5ebfb12 | 2017-01-16 00:42:38 -0800 | [diff] [blame] | 41 | |
John Johansen | 736ec752 | 2010-07-29 14:48:02 -0700 | [diff] [blame] | 42 | /* |
| 43 | * The AppArmor interface treats data as a type byte followed by the |
| 44 | * actual data. The interface has the notion of a a named entry |
| 45 | * which has a name (AA_NAME typecode followed by name string) followed by |
| 46 | * the entries typecode and data. Named types allow for optional |
| 47 | * elements and extensions to be added and tested for without breaking |
| 48 | * backwards compatibility. |
| 49 | */ |
| 50 | |
| 51 | enum aa_code { |
| 52 | AA_U8, |
| 53 | AA_U16, |
| 54 | AA_U32, |
| 55 | AA_U64, |
| 56 | AA_NAME, /* same as string except it is items name */ |
| 57 | AA_STRING, |
| 58 | AA_BLOB, |
| 59 | AA_STRUCT, |
| 60 | AA_STRUCTEND, |
| 61 | AA_LIST, |
| 62 | AA_LISTEND, |
| 63 | AA_ARRAY, |
| 64 | AA_ARRAYEND, |
| 65 | }; |
| 66 | |
| 67 | /* |
| 68 | * aa_ext is the read of the buffer containing the serialized profile. The |
| 69 | * data is copied into a kernel buffer in apparmorfs and then handed off to |
| 70 | * the unpack routines. |
| 71 | */ |
| 72 | struct aa_ext { |
| 73 | void *start; |
| 74 | void *end; |
| 75 | void *pos; /* pointer to current position in the buffer */ |
| 76 | u32 version; |
| 77 | }; |
| 78 | |
| 79 | /* audit callback for unpack fields */ |
| 80 | static void audit_cb(struct audit_buffer *ab, void *va) |
| 81 | { |
| 82 | struct common_audit_data *sa = va; |
John Johansen | ef88a7a | 2017-01-16 00:43:02 -0800 | [diff] [blame] | 83 | |
| 84 | if (aad(sa)->iface.ns) { |
| 85 | audit_log_format(ab, " ns="); |
| 86 | audit_log_untrustedstring(ab, aad(sa)->iface.ns); |
John Johansen | 736ec752 | 2010-07-29 14:48:02 -0700 | [diff] [blame] | 87 | } |
John Johansen | ef88a7a | 2017-01-16 00:43:02 -0800 | [diff] [blame] | 88 | if (aad(sa)->iface.name) { |
| 89 | audit_log_format(ab, " name="); |
| 90 | audit_log_untrustedstring(ab, aad(sa)->iface.name); |
| 91 | } |
| 92 | if (aad(sa)->iface.pos) |
| 93 | audit_log_format(ab, " offset=%ld", aad(sa)->iface.pos); |
John Johansen | 736ec752 | 2010-07-29 14:48:02 -0700 | [diff] [blame] | 94 | } |
| 95 | |
| 96 | /** |
| 97 | * audit_iface - do audit message for policy unpacking/load/replace/remove |
| 98 | * @new: profile if it has been allocated (MAYBE NULL) |
John Johansen | 04dc715 | 2017-01-16 00:42:56 -0800 | [diff] [blame] | 99 | * @ns_name: name of the ns the profile is to be loaded to (MAY BE NULL) |
John Johansen | 736ec752 | 2010-07-29 14:48:02 -0700 | [diff] [blame] | 100 | * @name: name of the profile being manipulated (MAYBE NULL) |
| 101 | * @info: any extra info about the failure (MAYBE NULL) |
John Johansen | b1b4bc2 | 2012-03-10 11:25:30 -0800 | [diff] [blame] | 102 | * @e: buffer position info |
John Johansen | 736ec752 | 2010-07-29 14:48:02 -0700 | [diff] [blame] | 103 | * @error: error code |
| 104 | * |
| 105 | * Returns: %0 or error |
| 106 | */ |
John Johansen | 04dc715 | 2017-01-16 00:42:56 -0800 | [diff] [blame] | 107 | static int audit_iface(struct aa_profile *new, const char *ns_name, |
| 108 | const char *name, const char *info, struct aa_ext *e, |
| 109 | int error) |
John Johansen | 736ec752 | 2010-07-29 14:48:02 -0700 | [diff] [blame] | 110 | { |
John Johansen | 637f688 | 2017-06-09 08:14:28 -0700 | [diff] [blame^] | 111 | struct aa_profile *profile = labels_profile(aa_current_raw_label()); |
John Johansen | ef88a7a | 2017-01-16 00:43:02 -0800 | [diff] [blame] | 112 | DEFINE_AUDIT_DATA(sa, LSM_AUDIT_DATA_NONE, NULL); |
John Johansen | b1b4bc2 | 2012-03-10 11:25:30 -0800 | [diff] [blame] | 113 | if (e) |
John Johansen | ef88a7a | 2017-01-16 00:43:02 -0800 | [diff] [blame] | 114 | aad(&sa)->iface.pos = e->pos - e->start; |
| 115 | aad(&sa)->iface.ns = ns_name; |
| 116 | if (new) |
| 117 | aad(&sa)->iface.name = new->base.hname; |
| 118 | else |
| 119 | aad(&sa)->iface.name = name; |
| 120 | aad(&sa)->info = info; |
| 121 | aad(&sa)->error = error; |
John Johansen | 736ec752 | 2010-07-29 14:48:02 -0700 | [diff] [blame] | 122 | |
John Johansen | ef88a7a | 2017-01-16 00:43:02 -0800 | [diff] [blame] | 123 | return aa_audit(AUDIT_APPARMOR_STATUS, profile, &sa, audit_cb); |
John Johansen | 736ec752 | 2010-07-29 14:48:02 -0700 | [diff] [blame] | 124 | } |
| 125 | |
John Johansen | 5d5182ca | 2017-05-09 00:08:41 -0700 | [diff] [blame] | 126 | void __aa_loaddata_update(struct aa_loaddata *data, long revision) |
| 127 | { |
| 128 | AA_BUG(!data); |
| 129 | AA_BUG(!data->ns); |
| 130 | AA_BUG(!data->dents[AAFS_LOADDATA_REVISION]); |
| 131 | AA_BUG(!mutex_is_locked(&data->ns->lock)); |
| 132 | AA_BUG(data->revision > revision); |
| 133 | |
| 134 | data->revision = revision; |
| 135 | d_inode(data->dents[AAFS_LOADDATA_DIR])->i_mtime = |
| 136 | current_time(d_inode(data->dents[AAFS_LOADDATA_DIR])); |
| 137 | d_inode(data->dents[AAFS_LOADDATA_REVISION])->i_mtime = |
| 138 | current_time(d_inode(data->dents[AAFS_LOADDATA_REVISION])); |
| 139 | } |
| 140 | |
| 141 | bool aa_rawdata_eq(struct aa_loaddata *l, struct aa_loaddata *r) |
| 142 | { |
| 143 | if (l->size != r->size) |
| 144 | return false; |
| 145 | if (aa_g_hash_policy && memcmp(l->hash, r->hash, aa_hash_size()) != 0) |
| 146 | return false; |
| 147 | return memcmp(l->data, r->data, r->size) == 0; |
| 148 | } |
| 149 | |
| 150 | /* |
| 151 | * need to take the ns mutex lock which is NOT safe most places that |
| 152 | * put_loaddata is called, so we have to delay freeing it |
| 153 | */ |
| 154 | static void do_loaddata_free(struct work_struct *work) |
| 155 | { |
| 156 | struct aa_loaddata *d = container_of(work, struct aa_loaddata, work); |
| 157 | struct aa_ns *ns = aa_get_ns(d->ns); |
| 158 | |
| 159 | if (ns) { |
| 160 | mutex_lock(&ns->lock); |
| 161 | __aa_fs_remove_rawdata(d); |
| 162 | mutex_unlock(&ns->lock); |
| 163 | aa_put_ns(ns); |
| 164 | } |
| 165 | |
| 166 | kzfree(d->hash); |
| 167 | kfree(d->name); |
| 168 | kvfree(d); |
| 169 | } |
| 170 | |
John Johansen | 5ac8c35 | 2017-01-16 00:42:55 -0800 | [diff] [blame] | 171 | void aa_loaddata_kref(struct kref *kref) |
| 172 | { |
| 173 | struct aa_loaddata *d = container_of(kref, struct aa_loaddata, count); |
| 174 | |
| 175 | if (d) { |
John Johansen | 5d5182ca | 2017-05-09 00:08:41 -0700 | [diff] [blame] | 176 | INIT_WORK(&d->work, do_loaddata_free); |
| 177 | schedule_work(&d->work); |
John Johansen | 5ac8c35 | 2017-01-16 00:42:55 -0800 | [diff] [blame] | 178 | } |
| 179 | } |
| 180 | |
John Johansen | 5d5182ca | 2017-05-09 00:08:41 -0700 | [diff] [blame] | 181 | struct aa_loaddata *aa_loaddata_alloc(size_t size) |
| 182 | { |
| 183 | struct aa_loaddata *d = kvzalloc(sizeof(*d) + size, GFP_KERNEL); |
| 184 | |
| 185 | if (d == NULL) |
| 186 | return ERR_PTR(-ENOMEM); |
| 187 | kref_init(&d->count); |
| 188 | INIT_LIST_HEAD(&d->list); |
| 189 | |
| 190 | return d; |
| 191 | } |
| 192 | |
John Johansen | 736ec752 | 2010-07-29 14:48:02 -0700 | [diff] [blame] | 193 | /* test if read will be in packed data bounds */ |
| 194 | static bool inbounds(struct aa_ext *e, size_t size) |
| 195 | { |
| 196 | return (size <= e->end - e->pos); |
| 197 | } |
| 198 | |
| 199 | /** |
| 200 | * aa_u16_chunck - test and do bounds checking for a u16 size based chunk |
| 201 | * @e: serialized data read head (NOT NULL) |
| 202 | * @chunk: start address for chunk of data (NOT NULL) |
| 203 | * |
| 204 | * Returns: the size of chunk found with the read head at the end of the chunk. |
| 205 | */ |
| 206 | static size_t unpack_u16_chunk(struct aa_ext *e, char **chunk) |
| 207 | { |
| 208 | size_t size = 0; |
| 209 | |
| 210 | if (!inbounds(e, sizeof(u16))) |
| 211 | return 0; |
John Johansen | 2c17cd3 | 2017-01-16 00:43:14 -0800 | [diff] [blame] | 212 | size = le16_to_cpu(get_unaligned((__le16 *) e->pos)); |
| 213 | e->pos += sizeof(__le16); |
John Johansen | 736ec752 | 2010-07-29 14:48:02 -0700 | [diff] [blame] | 214 | if (!inbounds(e, size)) |
| 215 | return 0; |
| 216 | *chunk = e->pos; |
| 217 | e->pos += size; |
| 218 | return size; |
| 219 | } |
| 220 | |
| 221 | /* unpack control byte */ |
| 222 | static bool unpack_X(struct aa_ext *e, enum aa_code code) |
| 223 | { |
| 224 | if (!inbounds(e, 1)) |
| 225 | return 0; |
| 226 | if (*(u8 *) e->pos != code) |
| 227 | return 0; |
| 228 | e->pos++; |
| 229 | return 1; |
| 230 | } |
| 231 | |
| 232 | /** |
| 233 | * unpack_nameX - check is the next element is of type X with a name of @name |
| 234 | * @e: serialized data extent information (NOT NULL) |
| 235 | * @code: type code |
| 236 | * @name: name to match to the serialized element. (MAYBE NULL) |
| 237 | * |
| 238 | * check that the next serialized data element is of type X and has a tag |
| 239 | * name @name. If @name is specified then there must be a matching |
| 240 | * name element in the stream. If @name is NULL any name element will be |
| 241 | * skipped and only the typecode will be tested. |
| 242 | * |
| 243 | * Returns 1 on success (both type code and name tests match) and the read |
| 244 | * head is advanced past the headers |
| 245 | * |
| 246 | * Returns: 0 if either match fails, the read head does not move |
| 247 | */ |
| 248 | static bool unpack_nameX(struct aa_ext *e, enum aa_code code, const char *name) |
| 249 | { |
| 250 | /* |
| 251 | * May need to reset pos if name or type doesn't match |
| 252 | */ |
| 253 | void *pos = e->pos; |
| 254 | /* |
| 255 | * Check for presence of a tagname, and if present name size |
| 256 | * AA_NAME tag value is a u16. |
| 257 | */ |
| 258 | if (unpack_X(e, AA_NAME)) { |
| 259 | char *tag = NULL; |
| 260 | size_t size = unpack_u16_chunk(e, &tag); |
| 261 | /* if a name is specified it must match. otherwise skip tag */ |
| 262 | if (name && (!size || strcmp(name, tag))) |
| 263 | goto fail; |
| 264 | } else if (name) { |
| 265 | /* if a name is specified and there is no name tag fail */ |
| 266 | goto fail; |
| 267 | } |
| 268 | |
| 269 | /* now check if type code matches */ |
| 270 | if (unpack_X(e, code)) |
| 271 | return 1; |
| 272 | |
| 273 | fail: |
| 274 | e->pos = pos; |
| 275 | return 0; |
| 276 | } |
| 277 | |
| 278 | static bool unpack_u32(struct aa_ext *e, u32 *data, const char *name) |
| 279 | { |
| 280 | if (unpack_nameX(e, AA_U32, name)) { |
| 281 | if (!inbounds(e, sizeof(u32))) |
| 282 | return 0; |
| 283 | if (data) |
John Johansen | 2c17cd3 | 2017-01-16 00:43:14 -0800 | [diff] [blame] | 284 | *data = le32_to_cpu(get_unaligned((__le32 *) e->pos)); |
John Johansen | 736ec752 | 2010-07-29 14:48:02 -0700 | [diff] [blame] | 285 | e->pos += sizeof(u32); |
| 286 | return 1; |
| 287 | } |
| 288 | return 0; |
| 289 | } |
| 290 | |
| 291 | static bool unpack_u64(struct aa_ext *e, u64 *data, const char *name) |
| 292 | { |
| 293 | if (unpack_nameX(e, AA_U64, name)) { |
| 294 | if (!inbounds(e, sizeof(u64))) |
| 295 | return 0; |
| 296 | if (data) |
John Johansen | 2c17cd3 | 2017-01-16 00:43:14 -0800 | [diff] [blame] | 297 | *data = le64_to_cpu(get_unaligned((__le64 *) e->pos)); |
John Johansen | 736ec752 | 2010-07-29 14:48:02 -0700 | [diff] [blame] | 298 | e->pos += sizeof(u64); |
| 299 | return 1; |
| 300 | } |
| 301 | return 0; |
| 302 | } |
| 303 | |
| 304 | static size_t unpack_array(struct aa_ext *e, const char *name) |
| 305 | { |
| 306 | if (unpack_nameX(e, AA_ARRAY, name)) { |
| 307 | int size; |
| 308 | if (!inbounds(e, sizeof(u16))) |
| 309 | return 0; |
John Johansen | 2c17cd3 | 2017-01-16 00:43:14 -0800 | [diff] [blame] | 310 | size = (int)le16_to_cpu(get_unaligned((__le16 *) e->pos)); |
John Johansen | 736ec752 | 2010-07-29 14:48:02 -0700 | [diff] [blame] | 311 | e->pos += sizeof(u16); |
| 312 | return size; |
| 313 | } |
| 314 | return 0; |
| 315 | } |
| 316 | |
| 317 | static size_t unpack_blob(struct aa_ext *e, char **blob, const char *name) |
| 318 | { |
| 319 | if (unpack_nameX(e, AA_BLOB, name)) { |
| 320 | u32 size; |
| 321 | if (!inbounds(e, sizeof(u32))) |
| 322 | return 0; |
John Johansen | 2c17cd3 | 2017-01-16 00:43:14 -0800 | [diff] [blame] | 323 | size = le32_to_cpu(get_unaligned((__le32 *) e->pos)); |
John Johansen | 736ec752 | 2010-07-29 14:48:02 -0700 | [diff] [blame] | 324 | e->pos += sizeof(u32); |
| 325 | if (inbounds(e, (size_t) size)) { |
| 326 | *blob = e->pos; |
| 327 | e->pos += size; |
| 328 | return size; |
| 329 | } |
| 330 | } |
| 331 | return 0; |
| 332 | } |
| 333 | |
| 334 | static int unpack_str(struct aa_ext *e, const char **string, const char *name) |
| 335 | { |
| 336 | char *src_str; |
| 337 | size_t size = 0; |
| 338 | void *pos = e->pos; |
| 339 | *string = NULL; |
| 340 | if (unpack_nameX(e, AA_STRING, name)) { |
| 341 | size = unpack_u16_chunk(e, &src_str); |
| 342 | if (size) { |
| 343 | /* strings are null terminated, length is size - 1 */ |
| 344 | if (src_str[size - 1] != 0) |
| 345 | goto fail; |
| 346 | *string = src_str; |
| 347 | } |
| 348 | } |
| 349 | return size; |
| 350 | |
| 351 | fail: |
| 352 | e->pos = pos; |
| 353 | return 0; |
| 354 | } |
| 355 | |
| 356 | static int unpack_strdup(struct aa_ext *e, char **string, const char *name) |
| 357 | { |
| 358 | const char *tmp; |
| 359 | void *pos = e->pos; |
| 360 | int res = unpack_str(e, &tmp, name); |
| 361 | *string = NULL; |
| 362 | |
| 363 | if (!res) |
| 364 | return 0; |
| 365 | |
| 366 | *string = kmemdup(tmp, res, GFP_KERNEL); |
| 367 | if (!*string) { |
| 368 | e->pos = pos; |
| 369 | return 0; |
| 370 | } |
| 371 | |
| 372 | return res; |
| 373 | } |
| 374 | |
John Johansen | 180a6f5 | 2013-02-18 16:09:34 -0800 | [diff] [blame] | 375 | #define DFA_VALID_PERM_MASK 0xffffffff |
| 376 | #define DFA_VALID_PERM2_MASK 0xffffffff |
| 377 | |
John Johansen | 736ec752 | 2010-07-29 14:48:02 -0700 | [diff] [blame] | 378 | /** |
| 379 | * verify_accept - verify the accept tables of a dfa |
| 380 | * @dfa: dfa to verify accept tables of (NOT NULL) |
| 381 | * @flags: flags governing dfa |
| 382 | * |
| 383 | * Returns: 1 if valid accept tables else 0 if error |
| 384 | */ |
| 385 | static bool verify_accept(struct aa_dfa *dfa, int flags) |
| 386 | { |
| 387 | int i; |
| 388 | |
| 389 | /* verify accept permissions */ |
| 390 | for (i = 0; i < dfa->tables[YYTD_ID_ACCEPT]->td_lolen; i++) { |
| 391 | int mode = ACCEPT_TABLE(dfa)[i]; |
| 392 | |
| 393 | if (mode & ~DFA_VALID_PERM_MASK) |
| 394 | return 0; |
| 395 | |
| 396 | if (ACCEPT_TABLE2(dfa)[i] & ~DFA_VALID_PERM2_MASK) |
| 397 | return 0; |
| 398 | } |
| 399 | return 1; |
| 400 | } |
| 401 | |
| 402 | /** |
| 403 | * unpack_dfa - unpack a file rule dfa |
| 404 | * @e: serialized data extent information (NOT NULL) |
| 405 | * |
| 406 | * returns dfa or ERR_PTR or NULL if no dfa |
| 407 | */ |
| 408 | static struct aa_dfa *unpack_dfa(struct aa_ext *e) |
| 409 | { |
| 410 | char *blob = NULL; |
| 411 | size_t size; |
| 412 | struct aa_dfa *dfa = NULL; |
| 413 | |
| 414 | size = unpack_blob(e, &blob, "aadfa"); |
| 415 | if (size) { |
| 416 | /* |
| 417 | * The dfa is aligned with in the blob to 8 bytes |
| 418 | * from the beginning of the stream. |
John Johansen | dd51c848 | 2013-07-10 21:05:43 -0700 | [diff] [blame] | 419 | * alignment adjust needed by dfa unpack |
John Johansen | 736ec752 | 2010-07-29 14:48:02 -0700 | [diff] [blame] | 420 | */ |
John Johansen | dd51c848 | 2013-07-10 21:05:43 -0700 | [diff] [blame] | 421 | size_t sz = blob - (char *) e->start - |
| 422 | ((e->pos - e->start) & 7); |
John Johansen | 736ec752 | 2010-07-29 14:48:02 -0700 | [diff] [blame] | 423 | size_t pad = ALIGN(sz, 8) - sz; |
| 424 | int flags = TO_ACCEPT1_FLAG(YYTD_DATA32) | |
John Johansen | abbf873 | 2017-01-16 00:42:37 -0800 | [diff] [blame] | 425 | TO_ACCEPT2_FLAG(YYTD_DATA32) | DFA_FLAG_VERIFY_STATES; |
John Johansen | 736ec752 | 2010-07-29 14:48:02 -0700 | [diff] [blame] | 426 | dfa = aa_dfa_unpack(blob + pad, size - pad, flags); |
| 427 | |
| 428 | if (IS_ERR(dfa)) |
| 429 | return dfa; |
| 430 | |
| 431 | if (!verify_accept(dfa, flags)) |
| 432 | goto fail; |
| 433 | } |
| 434 | |
| 435 | return dfa; |
| 436 | |
| 437 | fail: |
| 438 | aa_put_dfa(dfa); |
| 439 | return ERR_PTR(-EPROTO); |
| 440 | } |
| 441 | |
| 442 | /** |
| 443 | * unpack_trans_table - unpack a profile transition table |
| 444 | * @e: serialized data extent information (NOT NULL) |
| 445 | * @profile: profile to add the accept table to (NOT NULL) |
| 446 | * |
Lucas De Marchi | 25985ed | 2011-03-30 22:57:33 -0300 | [diff] [blame] | 447 | * Returns: 1 if table successfully unpacked |
John Johansen | 736ec752 | 2010-07-29 14:48:02 -0700 | [diff] [blame] | 448 | */ |
| 449 | static bool unpack_trans_table(struct aa_ext *e, struct aa_profile *profile) |
| 450 | { |
| 451 | void *pos = e->pos; |
| 452 | |
| 453 | /* exec table is optional */ |
| 454 | if (unpack_nameX(e, AA_STRUCT, "xtable")) { |
| 455 | int i, size; |
| 456 | |
| 457 | size = unpack_array(e, NULL); |
| 458 | /* currently 4 exec bits and entries 0-3 are reserved iupcx */ |
| 459 | if (size > 16 - 4) |
| 460 | goto fail; |
| 461 | profile->file.trans.table = kzalloc(sizeof(char *) * size, |
| 462 | GFP_KERNEL); |
| 463 | if (!profile->file.trans.table) |
| 464 | goto fail; |
| 465 | |
| 466 | profile->file.trans.size = size; |
| 467 | for (i = 0; i < size; i++) { |
| 468 | char *str; |
James Morris | 7ee9585 | 2011-08-29 11:43:02 +1000 | [diff] [blame] | 469 | int c, j, size2 = unpack_strdup(e, &str, NULL); |
John Johansen | 736ec752 | 2010-07-29 14:48:02 -0700 | [diff] [blame] | 470 | /* unpack_strdup verifies that the last character is |
| 471 | * null termination byte. |
| 472 | */ |
James Morris | 7ee9585 | 2011-08-29 11:43:02 +1000 | [diff] [blame] | 473 | if (!size2) |
John Johansen | 736ec752 | 2010-07-29 14:48:02 -0700 | [diff] [blame] | 474 | goto fail; |
| 475 | profile->file.trans.table[i] = str; |
| 476 | /* verify that name doesn't start with space */ |
| 477 | if (isspace(*str)) |
| 478 | goto fail; |
| 479 | |
| 480 | /* count internal # of internal \0 */ |
James Morris | 7ee9585 | 2011-08-29 11:43:02 +1000 | [diff] [blame] | 481 | for (c = j = 0; j < size2 - 2; j++) { |
John Johansen | 736ec752 | 2010-07-29 14:48:02 -0700 | [diff] [blame] | 482 | if (!str[j]) |
| 483 | c++; |
| 484 | } |
| 485 | if (*str == ':') { |
| 486 | /* beginning with : requires an embedded \0, |
| 487 | * verify that exactly 1 internal \0 exists |
| 488 | * trailing \0 already verified by unpack_strdup |
| 489 | */ |
| 490 | if (c != 1) |
| 491 | goto fail; |
| 492 | /* first character after : must be valid */ |
| 493 | if (!str[1]) |
| 494 | goto fail; |
| 495 | } else if (c) |
| 496 | /* fail - all other cases with embedded \0 */ |
| 497 | goto fail; |
| 498 | } |
| 499 | if (!unpack_nameX(e, AA_ARRAYEND, NULL)) |
| 500 | goto fail; |
| 501 | if (!unpack_nameX(e, AA_STRUCTEND, NULL)) |
| 502 | goto fail; |
| 503 | } |
| 504 | return 1; |
| 505 | |
| 506 | fail: |
| 507 | aa_free_domain_entries(&profile->file.trans); |
| 508 | e->pos = pos; |
| 509 | return 0; |
| 510 | } |
| 511 | |
| 512 | static bool unpack_rlimits(struct aa_ext *e, struct aa_profile *profile) |
| 513 | { |
| 514 | void *pos = e->pos; |
| 515 | |
| 516 | /* rlimits are optional */ |
| 517 | if (unpack_nameX(e, AA_STRUCT, "rlimits")) { |
| 518 | int i, size; |
| 519 | u32 tmp = 0; |
| 520 | if (!unpack_u32(e, &tmp, NULL)) |
| 521 | goto fail; |
| 522 | profile->rlimits.mask = tmp; |
| 523 | |
| 524 | size = unpack_array(e, NULL); |
| 525 | if (size > RLIM_NLIMITS) |
| 526 | goto fail; |
| 527 | for (i = 0; i < size; i++) { |
James Morris | 7ee9585 | 2011-08-29 11:43:02 +1000 | [diff] [blame] | 528 | u64 tmp2 = 0; |
John Johansen | 736ec752 | 2010-07-29 14:48:02 -0700 | [diff] [blame] | 529 | int a = aa_map_resource(i); |
James Morris | 7ee9585 | 2011-08-29 11:43:02 +1000 | [diff] [blame] | 530 | if (!unpack_u64(e, &tmp2, NULL)) |
John Johansen | 736ec752 | 2010-07-29 14:48:02 -0700 | [diff] [blame] | 531 | goto fail; |
James Morris | 7ee9585 | 2011-08-29 11:43:02 +1000 | [diff] [blame] | 532 | profile->rlimits.limits[a].rlim_max = tmp2; |
John Johansen | 736ec752 | 2010-07-29 14:48:02 -0700 | [diff] [blame] | 533 | } |
| 534 | if (!unpack_nameX(e, AA_ARRAYEND, NULL)) |
| 535 | goto fail; |
| 536 | if (!unpack_nameX(e, AA_STRUCTEND, NULL)) |
| 537 | goto fail; |
| 538 | } |
| 539 | return 1; |
| 540 | |
| 541 | fail: |
| 542 | e->pos = pos; |
| 543 | return 0; |
| 544 | } |
| 545 | |
William Hua | e025be0 | 2017-01-15 16:49:28 -0800 | [diff] [blame] | 546 | static void *kvmemdup(const void *src, size_t len) |
| 547 | { |
Michal Hocko | a7c3e90 | 2017-05-08 15:57:09 -0700 | [diff] [blame] | 548 | void *p = kvmalloc(len, GFP_KERNEL); |
William Hua | e025be0 | 2017-01-15 16:49:28 -0800 | [diff] [blame] | 549 | |
| 550 | if (p) |
| 551 | memcpy(p, src, len); |
| 552 | return p; |
| 553 | } |
| 554 | |
| 555 | static u32 strhash(const void *data, u32 len, u32 seed) |
| 556 | { |
| 557 | const char * const *key = data; |
| 558 | |
| 559 | return jhash(*key, strlen(*key), seed); |
| 560 | } |
| 561 | |
| 562 | static int datacmp(struct rhashtable_compare_arg *arg, const void *obj) |
| 563 | { |
| 564 | const struct aa_data *data = obj; |
| 565 | const char * const *key = arg->key; |
| 566 | |
| 567 | return strcmp(data->key, *key); |
| 568 | } |
| 569 | |
John Johansen | 736ec752 | 2010-07-29 14:48:02 -0700 | [diff] [blame] | 570 | /** |
| 571 | * unpack_profile - unpack a serialized profile |
| 572 | * @e: serialized data extent information (NOT NULL) |
| 573 | * |
| 574 | * NOTE: unpack profile sets audit struct if there is a failure |
| 575 | */ |
John Johansen | 04dc715 | 2017-01-16 00:42:56 -0800 | [diff] [blame] | 576 | static struct aa_profile *unpack_profile(struct aa_ext *e, char **ns_name) |
John Johansen | 736ec752 | 2010-07-29 14:48:02 -0700 | [diff] [blame] | 577 | { |
| 578 | struct aa_profile *profile = NULL; |
John Johansen | 04dc715 | 2017-01-16 00:42:56 -0800 | [diff] [blame] | 579 | const char *tmpname, *tmpns = NULL, *name = NULL; |
| 580 | size_t ns_len; |
William Hua | e025be0 | 2017-01-15 16:49:28 -0800 | [diff] [blame] | 581 | struct rhashtable_params params = { 0 }; |
| 582 | char *key = NULL; |
| 583 | struct aa_data *data; |
John Johansen | ad5ff3d | 2012-02-16 07:07:53 -0800 | [diff] [blame] | 584 | int i, error = -EPROTO; |
John Johansen | 736ec752 | 2010-07-29 14:48:02 -0700 | [diff] [blame] | 585 | kernel_cap_t tmpcap; |
| 586 | u32 tmp; |
| 587 | |
John Johansen | 04dc715 | 2017-01-16 00:42:56 -0800 | [diff] [blame] | 588 | *ns_name = NULL; |
| 589 | |
John Johansen | 736ec752 | 2010-07-29 14:48:02 -0700 | [diff] [blame] | 590 | /* check that we have the right struct being passed */ |
| 591 | if (!unpack_nameX(e, AA_STRUCT, "profile")) |
| 592 | goto fail; |
| 593 | if (!unpack_str(e, &name, NULL)) |
| 594 | goto fail; |
John Johansen | 04dc715 | 2017-01-16 00:42:56 -0800 | [diff] [blame] | 595 | if (*name == '\0') |
| 596 | goto fail; |
| 597 | |
| 598 | tmpname = aa_splitn_fqname(name, strlen(name), &tmpns, &ns_len); |
| 599 | if (tmpns) { |
| 600 | *ns_name = kstrndup(tmpns, ns_len, GFP_KERNEL); |
| 601 | if (!*ns_name) |
| 602 | goto fail; |
| 603 | name = tmpname; |
| 604 | } |
John Johansen | 736ec752 | 2010-07-29 14:48:02 -0700 | [diff] [blame] | 605 | |
John Johansen | 637f688 | 2017-06-09 08:14:28 -0700 | [diff] [blame^] | 606 | profile = aa_alloc_profile(name, NULL, GFP_KERNEL); |
John Johansen | 736ec752 | 2010-07-29 14:48:02 -0700 | [diff] [blame] | 607 | if (!profile) |
| 608 | return ERR_PTR(-ENOMEM); |
| 609 | |
| 610 | /* profile renaming is optional */ |
| 611 | (void) unpack_str(e, &profile->rename, "rename"); |
| 612 | |
John Johansen | 556d0be | 2013-07-10 21:17:43 -0700 | [diff] [blame] | 613 | /* attachment string is optional */ |
| 614 | (void) unpack_str(e, &profile->attach, "attach"); |
| 615 | |
John Johansen | 736ec752 | 2010-07-29 14:48:02 -0700 | [diff] [blame] | 616 | /* xmatch is optional and may be NULL */ |
| 617 | profile->xmatch = unpack_dfa(e); |
| 618 | if (IS_ERR(profile->xmatch)) { |
| 619 | error = PTR_ERR(profile->xmatch); |
| 620 | profile->xmatch = NULL; |
| 621 | goto fail; |
| 622 | } |
| 623 | /* xmatch_len is not optional if xmatch is set */ |
| 624 | if (profile->xmatch) { |
| 625 | if (!unpack_u32(e, &tmp, NULL)) |
| 626 | goto fail; |
| 627 | profile->xmatch_len = tmp; |
| 628 | } |
| 629 | |
John Johansen | 72c8a76 | 2017-05-22 03:06:52 -0700 | [diff] [blame] | 630 | /* disconnected attachment string is optional */ |
| 631 | (void) unpack_str(e, &profile->disconnected, "disconnected"); |
| 632 | |
John Johansen | 736ec752 | 2010-07-29 14:48:02 -0700 | [diff] [blame] | 633 | /* per profile debug flags (complain, audit) */ |
| 634 | if (!unpack_nameX(e, AA_STRUCT, "flags")) |
| 635 | goto fail; |
| 636 | if (!unpack_u32(e, &tmp, NULL)) |
| 637 | goto fail; |
John Johansen | 0381650 | 2013-07-10 21:12:43 -0700 | [diff] [blame] | 638 | if (tmp & PACKED_FLAG_HAT) |
John Johansen | 637f688 | 2017-06-09 08:14:28 -0700 | [diff] [blame^] | 639 | profile->label.flags |= FLAG_HAT; |
John Johansen | 736ec752 | 2010-07-29 14:48:02 -0700 | [diff] [blame] | 640 | if (!unpack_u32(e, &tmp, NULL)) |
| 641 | goto fail; |
John Johansen | 5ebfb12 | 2017-01-16 00:42:38 -0800 | [diff] [blame] | 642 | if (tmp == PACKED_MODE_COMPLAIN || (e->version & FORCE_COMPLAIN_FLAG)) |
John Johansen | 736ec752 | 2010-07-29 14:48:02 -0700 | [diff] [blame] | 643 | profile->mode = APPARMOR_COMPLAIN; |
John Johansen | 0381650 | 2013-07-10 21:12:43 -0700 | [diff] [blame] | 644 | else if (tmp == PACKED_MODE_KILL) |
| 645 | profile->mode = APPARMOR_KILL; |
| 646 | else if (tmp == PACKED_MODE_UNCONFINED) |
| 647 | profile->mode = APPARMOR_UNCONFINED; |
John Johansen | 736ec752 | 2010-07-29 14:48:02 -0700 | [diff] [blame] | 648 | if (!unpack_u32(e, &tmp, NULL)) |
| 649 | goto fail; |
| 650 | if (tmp) |
| 651 | profile->audit = AUDIT_ALL; |
| 652 | |
| 653 | if (!unpack_nameX(e, AA_STRUCTEND, NULL)) |
| 654 | goto fail; |
| 655 | |
| 656 | /* path_flags is optional */ |
| 657 | if (unpack_u32(e, &profile->path_flags, "path_flags")) |
John Johansen | 637f688 | 2017-06-09 08:14:28 -0700 | [diff] [blame^] | 658 | profile->path_flags |= profile->label.flags & |
| 659 | PATH_MEDIATE_DELETED; |
John Johansen | 736ec752 | 2010-07-29 14:48:02 -0700 | [diff] [blame] | 660 | else |
| 661 | /* set a default value if path_flags field is not present */ |
John Johansen | 637f688 | 2017-06-09 08:14:28 -0700 | [diff] [blame^] | 662 | profile->path_flags = PATH_MEDIATE_DELETED; |
John Johansen | 736ec752 | 2010-07-29 14:48:02 -0700 | [diff] [blame] | 663 | |
| 664 | if (!unpack_u32(e, &(profile->caps.allow.cap[0]), NULL)) |
| 665 | goto fail; |
| 666 | if (!unpack_u32(e, &(profile->caps.audit.cap[0]), NULL)) |
| 667 | goto fail; |
| 668 | if (!unpack_u32(e, &(profile->caps.quiet.cap[0]), NULL)) |
| 669 | goto fail; |
| 670 | if (!unpack_u32(e, &tmpcap.cap[0], NULL)) |
| 671 | goto fail; |
| 672 | |
| 673 | if (unpack_nameX(e, AA_STRUCT, "caps64")) { |
| 674 | /* optional upper half of 64 bit caps */ |
| 675 | if (!unpack_u32(e, &(profile->caps.allow.cap[1]), NULL)) |
| 676 | goto fail; |
| 677 | if (!unpack_u32(e, &(profile->caps.audit.cap[1]), NULL)) |
| 678 | goto fail; |
| 679 | if (!unpack_u32(e, &(profile->caps.quiet.cap[1]), NULL)) |
| 680 | goto fail; |
| 681 | if (!unpack_u32(e, &(tmpcap.cap[1]), NULL)) |
| 682 | goto fail; |
| 683 | if (!unpack_nameX(e, AA_STRUCTEND, NULL)) |
| 684 | goto fail; |
| 685 | } |
| 686 | |
| 687 | if (unpack_nameX(e, AA_STRUCT, "capsx")) { |
| 688 | /* optional extended caps mediation mask */ |
| 689 | if (!unpack_u32(e, &(profile->caps.extended.cap[0]), NULL)) |
| 690 | goto fail; |
| 691 | if (!unpack_u32(e, &(profile->caps.extended.cap[1]), NULL)) |
| 692 | goto fail; |
John Johansen | cdbd288 | 2012-02-16 07:06:41 -0800 | [diff] [blame] | 693 | if (!unpack_nameX(e, AA_STRUCTEND, NULL)) |
| 694 | goto fail; |
John Johansen | 736ec752 | 2010-07-29 14:48:02 -0700 | [diff] [blame] | 695 | } |
| 696 | |
| 697 | if (!unpack_rlimits(e, profile)) |
| 698 | goto fail; |
| 699 | |
John Johansen | ad5ff3d | 2012-02-16 07:07:53 -0800 | [diff] [blame] | 700 | if (unpack_nameX(e, AA_STRUCT, "policydb")) { |
| 701 | /* generic policy dfa - optional and may be NULL */ |
| 702 | profile->policy.dfa = unpack_dfa(e); |
| 703 | if (IS_ERR(profile->policy.dfa)) { |
| 704 | error = PTR_ERR(profile->policy.dfa); |
| 705 | profile->policy.dfa = NULL; |
| 706 | goto fail; |
John Johansen | 5f20fdf | 2016-06-15 10:00:55 +0300 | [diff] [blame] | 707 | } else if (!profile->policy.dfa) { |
| 708 | error = -EPROTO; |
| 709 | goto fail; |
John Johansen | ad5ff3d | 2012-02-16 07:07:53 -0800 | [diff] [blame] | 710 | } |
| 711 | if (!unpack_u32(e, &profile->policy.start[0], "start")) |
| 712 | /* default start state */ |
| 713 | profile->policy.start[0] = DFA_START; |
| 714 | /* setup class index */ |
| 715 | for (i = AA_CLASS_FILE; i <= AA_CLASS_LAST; i++) { |
| 716 | profile->policy.start[i] = |
| 717 | aa_dfa_next(profile->policy.dfa, |
| 718 | profile->policy.start[0], |
| 719 | i); |
| 720 | } |
| 721 | if (!unpack_nameX(e, AA_STRUCTEND, NULL)) |
| 722 | goto fail; |
John Johansen | 11c236b | 2017-01-16 00:42:42 -0800 | [diff] [blame] | 723 | } else |
| 724 | profile->policy.dfa = aa_get_dfa(nulldfa); |
John Johansen | ad5ff3d | 2012-02-16 07:07:53 -0800 | [diff] [blame] | 725 | |
John Johansen | 736ec752 | 2010-07-29 14:48:02 -0700 | [diff] [blame] | 726 | /* get file rules */ |
| 727 | profile->file.dfa = unpack_dfa(e); |
| 728 | if (IS_ERR(profile->file.dfa)) { |
| 729 | error = PTR_ERR(profile->file.dfa); |
| 730 | profile->file.dfa = NULL; |
| 731 | goto fail; |
John Johansen | 6604d4c | 2017-01-16 00:42:41 -0800 | [diff] [blame] | 732 | } else if (profile->file.dfa) { |
| 733 | if (!unpack_u32(e, &profile->file.start, "dfa_start")) |
| 734 | /* default start state */ |
| 735 | profile->file.start = DFA_START; |
| 736 | } else if (profile->policy.dfa && |
| 737 | profile->policy.start[AA_CLASS_FILE]) { |
| 738 | profile->file.dfa = aa_get_dfa(profile->policy.dfa); |
| 739 | profile->file.start = profile->policy.start[AA_CLASS_FILE]; |
John Johansen | 11c236b | 2017-01-16 00:42:42 -0800 | [diff] [blame] | 740 | } else |
| 741 | profile->file.dfa = aa_get_dfa(nulldfa); |
John Johansen | 736ec752 | 2010-07-29 14:48:02 -0700 | [diff] [blame] | 742 | |
John Johansen | 736ec752 | 2010-07-29 14:48:02 -0700 | [diff] [blame] | 743 | if (!unpack_trans_table(e, profile)) |
| 744 | goto fail; |
| 745 | |
William Hua | e025be0 | 2017-01-15 16:49:28 -0800 | [diff] [blame] | 746 | if (unpack_nameX(e, AA_STRUCT, "data")) { |
| 747 | profile->data = kzalloc(sizeof(*profile->data), GFP_KERNEL); |
| 748 | if (!profile->data) |
| 749 | goto fail; |
| 750 | |
| 751 | params.nelem_hint = 3; |
| 752 | params.key_len = sizeof(void *); |
| 753 | params.key_offset = offsetof(struct aa_data, key); |
| 754 | params.head_offset = offsetof(struct aa_data, head); |
| 755 | params.hashfn = strhash; |
| 756 | params.obj_cmpfn = datacmp; |
| 757 | |
| 758 | if (rhashtable_init(profile->data, ¶ms)) |
| 759 | goto fail; |
| 760 | |
| 761 | while (unpack_strdup(e, &key, NULL)) { |
| 762 | data = kzalloc(sizeof(*data), GFP_KERNEL); |
| 763 | if (!data) { |
| 764 | kzfree(key); |
| 765 | goto fail; |
| 766 | } |
| 767 | |
| 768 | data->key = key; |
| 769 | data->size = unpack_blob(e, &data->data, NULL); |
| 770 | data->data = kvmemdup(data->data, data->size); |
| 771 | if (data->size && !data->data) { |
| 772 | kzfree(data->key); |
| 773 | kzfree(data); |
| 774 | goto fail; |
| 775 | } |
| 776 | |
| 777 | rhashtable_insert_fast(profile->data, &data->head, |
| 778 | profile->data->p); |
| 779 | } |
| 780 | |
| 781 | if (!unpack_nameX(e, AA_STRUCTEND, NULL)) |
| 782 | goto fail; |
| 783 | } |
| 784 | |
John Johansen | 736ec752 | 2010-07-29 14:48:02 -0700 | [diff] [blame] | 785 | if (!unpack_nameX(e, AA_STRUCTEND, NULL)) |
| 786 | goto fail; |
| 787 | |
| 788 | return profile; |
| 789 | |
| 790 | fail: |
| 791 | if (profile) |
| 792 | name = NULL; |
| 793 | else if (!name) |
| 794 | name = "unknown"; |
John Johansen | 04dc715 | 2017-01-16 00:42:56 -0800 | [diff] [blame] | 795 | audit_iface(profile, NULL, name, "failed to unpack profile", e, |
| 796 | error); |
John Johansen | 8651e1d6 | 2013-07-10 21:11:43 -0700 | [diff] [blame] | 797 | aa_free_profile(profile); |
John Johansen | 736ec752 | 2010-07-29 14:48:02 -0700 | [diff] [blame] | 798 | |
| 799 | return ERR_PTR(error); |
| 800 | } |
| 801 | |
| 802 | /** |
| 803 | * verify_head - unpack serialized stream header |
| 804 | * @e: serialized data read head (NOT NULL) |
John Johansen | dd51c848 | 2013-07-10 21:05:43 -0700 | [diff] [blame] | 805 | * @required: whether the header is required or optional |
John Johansen | 736ec752 | 2010-07-29 14:48:02 -0700 | [diff] [blame] | 806 | * @ns: Returns - namespace if one is specified else NULL (NOT NULL) |
| 807 | * |
| 808 | * Returns: error or 0 if header is good |
| 809 | */ |
John Johansen | dd51c848 | 2013-07-10 21:05:43 -0700 | [diff] [blame] | 810 | static int verify_header(struct aa_ext *e, int required, const char **ns) |
John Johansen | 736ec752 | 2010-07-29 14:48:02 -0700 | [diff] [blame] | 811 | { |
| 812 | int error = -EPROTONOSUPPORT; |
John Johansen | dd51c848 | 2013-07-10 21:05:43 -0700 | [diff] [blame] | 813 | const char *name = NULL; |
| 814 | *ns = NULL; |
| 815 | |
John Johansen | 736ec752 | 2010-07-29 14:48:02 -0700 | [diff] [blame] | 816 | /* get the interface version */ |
| 817 | if (!unpack_u32(e, &e->version, "version")) { |
John Johansen | dd51c848 | 2013-07-10 21:05:43 -0700 | [diff] [blame] | 818 | if (required) { |
John Johansen | 04dc715 | 2017-01-16 00:42:56 -0800 | [diff] [blame] | 819 | audit_iface(NULL, NULL, NULL, "invalid profile format", |
John Johansen | dd51c848 | 2013-07-10 21:05:43 -0700 | [diff] [blame] | 820 | e, error); |
| 821 | return error; |
| 822 | } |
John Johansen | 736ec752 | 2010-07-29 14:48:02 -0700 | [diff] [blame] | 823 | } |
| 824 | |
John Johansen | 474d6b75 | 2017-01-16 00:42:39 -0800 | [diff] [blame] | 825 | /* Check that the interface version is currently supported. |
| 826 | * if not specified use previous version |
| 827 | * Mask off everything that is not kernel abi version |
| 828 | */ |
| 829 | if (VERSION_LT(e->version, v5) && VERSION_GT(e->version, v7)) { |
John Johansen | 04dc715 | 2017-01-16 00:42:56 -0800 | [diff] [blame] | 830 | audit_iface(NULL, NULL, NULL, "unsupported interface version", |
John Johansen | 474d6b75 | 2017-01-16 00:42:39 -0800 | [diff] [blame] | 831 | e, error); |
| 832 | return error; |
| 833 | } |
John Johansen | 736ec752 | 2010-07-29 14:48:02 -0700 | [diff] [blame] | 834 | |
| 835 | /* read the namespace if present */ |
John Johansen | dd51c848 | 2013-07-10 21:05:43 -0700 | [diff] [blame] | 836 | if (unpack_str(e, &name, "namespace")) { |
John Johansen | 04dc715 | 2017-01-16 00:42:56 -0800 | [diff] [blame] | 837 | if (*name == '\0') { |
| 838 | audit_iface(NULL, NULL, NULL, "invalid namespace name", |
| 839 | e, error); |
| 840 | return error; |
| 841 | } |
John Johansen | dd51c848 | 2013-07-10 21:05:43 -0700 | [diff] [blame] | 842 | if (*ns && strcmp(*ns, name)) |
John Johansen | 04dc715 | 2017-01-16 00:42:56 -0800 | [diff] [blame] | 843 | audit_iface(NULL, NULL, NULL, "invalid ns change", e, |
| 844 | error); |
John Johansen | dd51c848 | 2013-07-10 21:05:43 -0700 | [diff] [blame] | 845 | else if (!*ns) |
| 846 | *ns = name; |
| 847 | } |
John Johansen | 736ec752 | 2010-07-29 14:48:02 -0700 | [diff] [blame] | 848 | |
| 849 | return 0; |
| 850 | } |
| 851 | |
| 852 | static bool verify_xindex(int xindex, int table_size) |
| 853 | { |
| 854 | int index, xtype; |
| 855 | xtype = xindex & AA_X_TYPE_MASK; |
| 856 | index = xindex & AA_X_INDEX_MASK; |
John Johansen | 23ca7b6 | 2016-03-17 12:02:54 -0700 | [diff] [blame] | 857 | if (xtype == AA_X_TABLE && index >= table_size) |
John Johansen | 736ec752 | 2010-07-29 14:48:02 -0700 | [diff] [blame] | 858 | return 0; |
| 859 | return 1; |
| 860 | } |
| 861 | |
| 862 | /* verify dfa xindexes are in range of transition tables */ |
| 863 | static bool verify_dfa_xindex(struct aa_dfa *dfa, int table_size) |
| 864 | { |
| 865 | int i; |
| 866 | for (i = 0; i < dfa->tables[YYTD_ID_ACCEPT]->td_lolen; i++) { |
| 867 | if (!verify_xindex(dfa_user_xindex(dfa, i), table_size)) |
| 868 | return 0; |
| 869 | if (!verify_xindex(dfa_other_xindex(dfa, i), table_size)) |
| 870 | return 0; |
| 871 | } |
| 872 | return 1; |
| 873 | } |
| 874 | |
| 875 | /** |
| 876 | * verify_profile - Do post unpack analysis to verify profile consistency |
| 877 | * @profile: profile to verify (NOT NULL) |
| 878 | * |
| 879 | * Returns: 0 if passes verification else error |
| 880 | */ |
| 881 | static int verify_profile(struct aa_profile *profile) |
| 882 | { |
John Johansen | abbf873 | 2017-01-16 00:42:37 -0800 | [diff] [blame] | 883 | if (profile->file.dfa && |
| 884 | !verify_dfa_xindex(profile->file.dfa, |
| 885 | profile->file.trans.size)) { |
John Johansen | 04dc715 | 2017-01-16 00:42:56 -0800 | [diff] [blame] | 886 | audit_iface(profile, NULL, NULL, "Invalid named transition", |
John Johansen | abbf873 | 2017-01-16 00:42:37 -0800 | [diff] [blame] | 887 | NULL, -EPROTO); |
| 888 | return -EPROTO; |
John Johansen | 736ec752 | 2010-07-29 14:48:02 -0700 | [diff] [blame] | 889 | } |
| 890 | |
| 891 | return 0; |
| 892 | } |
| 893 | |
John Johansen | dd51c848 | 2013-07-10 21:05:43 -0700 | [diff] [blame] | 894 | void aa_load_ent_free(struct aa_load_ent *ent) |
| 895 | { |
| 896 | if (ent) { |
| 897 | aa_put_profile(ent->rename); |
| 898 | aa_put_profile(ent->old); |
| 899 | aa_put_profile(ent->new); |
John Johansen | 04dc715 | 2017-01-16 00:42:56 -0800 | [diff] [blame] | 900 | kfree(ent->ns_name); |
John Johansen | dd51c848 | 2013-07-10 21:05:43 -0700 | [diff] [blame] | 901 | kzfree(ent); |
| 902 | } |
| 903 | } |
| 904 | |
| 905 | struct aa_load_ent *aa_load_ent_alloc(void) |
| 906 | { |
| 907 | struct aa_load_ent *ent = kzalloc(sizeof(*ent), GFP_KERNEL); |
| 908 | if (ent) |
| 909 | INIT_LIST_HEAD(&ent->list); |
| 910 | return ent; |
| 911 | } |
| 912 | |
John Johansen | 736ec752 | 2010-07-29 14:48:02 -0700 | [diff] [blame] | 913 | /** |
John Johansen | dd51c848 | 2013-07-10 21:05:43 -0700 | [diff] [blame] | 914 | * aa_unpack - unpack packed binary profile(s) data loaded from user space |
John Johansen | 736ec752 | 2010-07-29 14:48:02 -0700 | [diff] [blame] | 915 | * @udata: user data copied to kmem (NOT NULL) |
John Johansen | dd51c848 | 2013-07-10 21:05:43 -0700 | [diff] [blame] | 916 | * @lh: list to place unpacked profiles in a aa_repl_ws |
John Johansen | 736ec752 | 2010-07-29 14:48:02 -0700 | [diff] [blame] | 917 | * @ns: Returns namespace profile is in if specified else NULL (NOT NULL) |
| 918 | * |
John Johansen | dd51c848 | 2013-07-10 21:05:43 -0700 | [diff] [blame] | 919 | * Unpack user data and return refcounted allocated profile(s) stored in |
| 920 | * @lh in order of discovery, with the list chain stored in base.list |
| 921 | * or error |
John Johansen | 736ec752 | 2010-07-29 14:48:02 -0700 | [diff] [blame] | 922 | * |
John Johansen | dd51c848 | 2013-07-10 21:05:43 -0700 | [diff] [blame] | 923 | * Returns: profile(s) on @lh else error pointer if fails to unpack |
John Johansen | 736ec752 | 2010-07-29 14:48:02 -0700 | [diff] [blame] | 924 | */ |
John Johansen | 5ac8c35 | 2017-01-16 00:42:55 -0800 | [diff] [blame] | 925 | int aa_unpack(struct aa_loaddata *udata, struct list_head *lh, |
| 926 | const char **ns) |
John Johansen | 736ec752 | 2010-07-29 14:48:02 -0700 | [diff] [blame] | 927 | { |
John Johansen | dd51c848 | 2013-07-10 21:05:43 -0700 | [diff] [blame] | 928 | struct aa_load_ent *tmp, *ent; |
John Johansen | 736ec752 | 2010-07-29 14:48:02 -0700 | [diff] [blame] | 929 | struct aa_profile *profile = NULL; |
| 930 | int error; |
| 931 | struct aa_ext e = { |
John Johansen | 5ac8c35 | 2017-01-16 00:42:55 -0800 | [diff] [blame] | 932 | .start = udata->data, |
| 933 | .end = udata->data + udata->size, |
| 934 | .pos = udata->data, |
John Johansen | 736ec752 | 2010-07-29 14:48:02 -0700 | [diff] [blame] | 935 | }; |
| 936 | |
John Johansen | dd51c848 | 2013-07-10 21:05:43 -0700 | [diff] [blame] | 937 | *ns = NULL; |
| 938 | while (e.pos < e.end) { |
John Johansen | 04dc715 | 2017-01-16 00:42:56 -0800 | [diff] [blame] | 939 | char *ns_name = NULL; |
John Johansen | f8eb8a1 | 2013-08-14 11:27:36 -0700 | [diff] [blame] | 940 | void *start; |
John Johansen | dd51c848 | 2013-07-10 21:05:43 -0700 | [diff] [blame] | 941 | error = verify_header(&e, e.pos == e.start, ns); |
| 942 | if (error) |
| 943 | goto fail; |
John Johansen | 736ec752 | 2010-07-29 14:48:02 -0700 | [diff] [blame] | 944 | |
John Johansen | f8eb8a1 | 2013-08-14 11:27:36 -0700 | [diff] [blame] | 945 | start = e.pos; |
John Johansen | 04dc715 | 2017-01-16 00:42:56 -0800 | [diff] [blame] | 946 | profile = unpack_profile(&e, &ns_name); |
John Johansen | dd51c848 | 2013-07-10 21:05:43 -0700 | [diff] [blame] | 947 | if (IS_ERR(profile)) { |
| 948 | error = PTR_ERR(profile); |
| 949 | goto fail; |
| 950 | } |
John Johansen | 736ec752 | 2010-07-29 14:48:02 -0700 | [diff] [blame] | 951 | |
John Johansen | dd51c848 | 2013-07-10 21:05:43 -0700 | [diff] [blame] | 952 | error = verify_profile(profile); |
John Johansen | f8eb8a1 | 2013-08-14 11:27:36 -0700 | [diff] [blame] | 953 | if (error) |
| 954 | goto fail_profile; |
| 955 | |
John Johansen | 31f75bf | 2017-01-16 00:43:07 -0800 | [diff] [blame] | 956 | if (aa_g_hash_policy) |
| 957 | error = aa_calc_profile_hash(profile, e.version, start, |
John Johansen | 6059f71 | 2014-10-24 09:16:14 -0700 | [diff] [blame] | 958 | e.pos - start); |
John Johansen | f8eb8a1 | 2013-08-14 11:27:36 -0700 | [diff] [blame] | 959 | if (error) |
| 960 | goto fail_profile; |
John Johansen | dd51c848 | 2013-07-10 21:05:43 -0700 | [diff] [blame] | 961 | |
| 962 | ent = aa_load_ent_alloc(); |
| 963 | if (!ent) { |
| 964 | error = -ENOMEM; |
John Johansen | f8eb8a1 | 2013-08-14 11:27:36 -0700 | [diff] [blame] | 965 | goto fail_profile; |
John Johansen | dd51c848 | 2013-07-10 21:05:43 -0700 | [diff] [blame] | 966 | } |
| 967 | |
| 968 | ent->new = profile; |
John Johansen | 04dc715 | 2017-01-16 00:42:56 -0800 | [diff] [blame] | 969 | ent->ns_name = ns_name; |
John Johansen | dd51c848 | 2013-07-10 21:05:43 -0700 | [diff] [blame] | 970 | list_add_tail(&ent->list, lh); |
John Johansen | 736ec752 | 2010-07-29 14:48:02 -0700 | [diff] [blame] | 971 | } |
John Johansen | 5ac8c35 | 2017-01-16 00:42:55 -0800 | [diff] [blame] | 972 | udata->abi = e.version & K_ABI_MASK; |
John Johansen | 31f75bf | 2017-01-16 00:43:07 -0800 | [diff] [blame] | 973 | if (aa_g_hash_policy) { |
| 974 | udata->hash = aa_calc_hash(udata->data, udata->size); |
| 975 | if (IS_ERR(udata->hash)) { |
| 976 | error = PTR_ERR(udata->hash); |
| 977 | udata->hash = NULL; |
| 978 | goto fail; |
| 979 | } |
John Johansen | 5ac8c35 | 2017-01-16 00:42:55 -0800 | [diff] [blame] | 980 | } |
John Johansen | dd51c848 | 2013-07-10 21:05:43 -0700 | [diff] [blame] | 981 | return 0; |
| 982 | |
John Johansen | f8eb8a1 | 2013-08-14 11:27:36 -0700 | [diff] [blame] | 983 | fail_profile: |
| 984 | aa_put_profile(profile); |
| 985 | |
John Johansen | dd51c848 | 2013-07-10 21:05:43 -0700 | [diff] [blame] | 986 | fail: |
| 987 | list_for_each_entry_safe(ent, tmp, lh, list) { |
| 988 | list_del_init(&ent->list); |
| 989 | aa_load_ent_free(ent); |
| 990 | } |
| 991 | |
| 992 | return error; |
John Johansen | 736ec752 | 2010-07-29 14:48:02 -0700 | [diff] [blame] | 993 | } |