blob: 939a74fd8fb470e68ef6fd9172a11fd2e42679d4 [file] [log] [blame]
Thomas Gleixnera10e7632019-05-31 01:09:32 -07001// SPDX-License-Identifier: GPL-2.0-only
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/* Authors: Karl MacMillan <kmacmillan@tresys.com>
Eric Paris7c2b2402008-04-18 17:38:29 -04003 * Frank Mayer <mayerf@tresys.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 *
5 * Copyright (C) 2003 - 2004 Tresys Technology, LLC
Linus Torvalds1da177e2005-04-16 15:20:36 -07006 */
7
8#include <linux/kernel.h>
9#include <linux/errno.h>
10#include <linux/string.h>
11#include <linux/spinlock.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070012#include <linux/slab.h>
13
14#include "security.h"
15#include "conditional.h"
Jeff Vander Stoepfa1aa142015-07-10 17:19:56 -040016#include "services.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070017
18/*
19 * cond_evaluate_expr evaluates a conditional expr
20 * in reverse polish notation. It returns true (1), false (0),
21 * or undefined (-1). Undefined occurs when the expression
22 * exceeds the stack depth of COND_EXPR_MAXDEPTH.
23 */
24static int cond_evaluate_expr(struct policydb *p, struct cond_expr *expr)
25{
Ondrej Mosnacek8794d782020-02-03 12:27:22 +010026 u32 i;
Linus Torvalds1da177e2005-04-16 15:20:36 -070027 int s[COND_EXPR_MAXDEPTH];
28 int sp = -1;
29
Ondrej Mosnacek8794d782020-02-03 12:27:22 +010030 for (i = 0; i < expr->len; i++) {
31 struct cond_expr_node *node = &expr->nodes[i];
32
33 switch (node->expr_type) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070034 case COND_BOOL:
35 if (sp == (COND_EXPR_MAXDEPTH - 1))
36 return -1;
37 sp++;
Ondrej Mosnacek8794d782020-02-03 12:27:22 +010038 s[sp] = p->bool_val_to_struct[node->bool - 1]->state;
Linus Torvalds1da177e2005-04-16 15:20:36 -070039 break;
40 case COND_NOT:
41 if (sp < 0)
42 return -1;
43 s[sp] = !s[sp];
44 break;
45 case COND_OR:
46 if (sp < 1)
47 return -1;
48 sp--;
49 s[sp] |= s[sp + 1];
50 break;
51 case COND_AND:
52 if (sp < 1)
53 return -1;
54 sp--;
55 s[sp] &= s[sp + 1];
56 break;
57 case COND_XOR:
58 if (sp < 1)
59 return -1;
60 sp--;
61 s[sp] ^= s[sp + 1];
62 break;
63 case COND_EQ:
64 if (sp < 1)
65 return -1;
66 sp--;
67 s[sp] = (s[sp] == s[sp + 1]);
68 break;
69 case COND_NEQ:
70 if (sp < 1)
71 return -1;
72 sp--;
73 s[sp] = (s[sp] != s[sp + 1]);
74 break;
75 default:
76 return -1;
77 }
78 }
79 return s[0];
80}
81
82/*
83 * evaluate_cond_node evaluates the conditional stored in
84 * a struct cond_node and if the result is different than the
85 * current state of the node it sets the rules in the true/false
86 * list appropriately. If the result of the expression is undefined
87 * all of the rules are disabled for safety.
88 */
Ondrej Mosnacek89d4d7c2020-02-03 12:27:23 +010089static void evaluate_cond_node(struct policydb *p, struct cond_node *node)
Linus Torvalds1da177e2005-04-16 15:20:36 -070090{
Ondrej Mosnacek2b3a0032020-02-03 12:27:21 +010091 struct avtab_node *avnode;
Linus Torvalds1da177e2005-04-16 15:20:36 -070092 int new_state;
Ondrej Mosnacek2b3a0032020-02-03 12:27:21 +010093 u32 i;
Linus Torvalds1da177e2005-04-16 15:20:36 -070094
Ondrej Mosnacek8794d782020-02-03 12:27:22 +010095 new_state = cond_evaluate_expr(p, &node->expr);
Linus Torvalds1da177e2005-04-16 15:20:36 -070096 if (new_state != node->cur_state) {
97 node->cur_state = new_state;
98 if (new_state == -1)
peter enderborgab485762018-06-12 10:09:00 +020099 pr_err("SELinux: expression result was undefined - disabling all rules.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100 /* turn the rules on or off */
Ondrej Mosnacek2b3a0032020-02-03 12:27:21 +0100101 for (i = 0; i < node->true_list.len; i++) {
102 avnode = node->true_list.nodes[i];
Eric Paris7c2b2402008-04-18 17:38:29 -0400103 if (new_state <= 0)
Ondrej Mosnacek2b3a0032020-02-03 12:27:21 +0100104 avnode->key.specified &= ~AVTAB_ENABLED;
Eric Paris7c2b2402008-04-18 17:38:29 -0400105 else
Ondrej Mosnacek2b3a0032020-02-03 12:27:21 +0100106 avnode->key.specified |= AVTAB_ENABLED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107 }
108
Ondrej Mosnacek2b3a0032020-02-03 12:27:21 +0100109 for (i = 0; i < node->false_list.len; i++) {
110 avnode = node->false_list.nodes[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111 /* -1 or 1 */
Eric Paris7c2b2402008-04-18 17:38:29 -0400112 if (new_state)
Ondrej Mosnacek2b3a0032020-02-03 12:27:21 +0100113 avnode->key.specified &= ~AVTAB_ENABLED;
Eric Paris7c2b2402008-04-18 17:38:29 -0400114 else
Ondrej Mosnacek2b3a0032020-02-03 12:27:21 +0100115 avnode->key.specified |= AVTAB_ENABLED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116 }
117 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118}
119
Ondrej Mosnacek89d4d7c2020-02-03 12:27:23 +0100120void evaluate_cond_nodes(struct policydb *p)
121{
122 u32 i;
123
124 for (i = 0; i < p->cond_list_len; i++)
125 evaluate_cond_node(p, &p->cond_list[i]);
126}
127
Paul Moore5e729e12020-03-05 14:55:43 -0500128void cond_policydb_init(struct policydb *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129{
130 p->bool_val_to_struct = NULL;
131 p->cond_list = NULL;
Ondrej Mosnacek60abd312020-02-03 12:27:20 +0100132 p->cond_list_len = 0;
Dan Carpenter38184c52010-06-12 20:55:01 +0200133
Paul Moore5e729e12020-03-05 14:55:43 -0500134 avtab_init(&p->te_cond_avtab);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135}
136
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137static void cond_node_destroy(struct cond_node *node)
138{
Ondrej Mosnacek8794d782020-02-03 12:27:22 +0100139 kfree(node->expr.nodes);
Ondrej Mosnacek2b3a0032020-02-03 12:27:21 +0100140 /* the avtab_ptr_t nodes are destroyed by the avtab */
141 kfree(node->true_list.nodes);
142 kfree(node->false_list.nodes);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143}
144
Ondrej Mosnacek60abd312020-02-03 12:27:20 +0100145static void cond_list_destroy(struct policydb *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146{
Ondrej Mosnacek60abd312020-02-03 12:27:20 +0100147 u32 i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148
Ondrej Mosnacek60abd312020-02-03 12:27:20 +0100149 for (i = 0; i < p->cond_list_len; i++)
150 cond_node_destroy(&p->cond_list[i]);
151 kfree(p->cond_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152}
153
154void cond_policydb_destroy(struct policydb *p)
155{
Jesper Juhl9a5f04b2005-06-25 14:58:51 -0700156 kfree(p->bool_val_to_struct);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157 avtab_destroy(&p->te_cond_avtab);
Ondrej Mosnacek60abd312020-02-03 12:27:20 +0100158 cond_list_destroy(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159}
160
161int cond_init_bool_indexes(struct policydb *p)
162{
Jesper Juhl9a5f04b2005-06-25 14:58:51 -0700163 kfree(p->bool_val_to_struct);
Markus Elfringf6076f72017-01-14 10:48:28 +0100164 p->bool_val_to_struct = kmalloc_array(p->p_bools.nprim,
165 sizeof(*p->bool_val_to_struct),
166 GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167 if (!p->bool_val_to_struct)
Davidlohr Bueso3ac285ff2011-01-21 12:28:04 -0300168 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169 return 0;
170}
171
172int cond_destroy_bool(void *key, void *datum, void *p)
173{
Jesper Juhl9a5f04b2005-06-25 14:58:51 -0700174 kfree(key);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175 kfree(datum);
176 return 0;
177}
178
179int cond_index_bool(void *key, void *datum, void *datap)
180{
181 struct policydb *p;
182 struct cond_bool_datum *booldatum;
183
184 booldatum = datum;
185 p = datap;
186
187 if (!booldatum->value || booldatum->value > p->p_bools.nprim)
188 return -EINVAL;
189
Kent Overstreetacdf52d2019-03-11 23:31:10 -0700190 p->sym_val_to_name[SYM_BOOLS][booldatum->value - 1] = key;
Eric Paris7c2b2402008-04-18 17:38:29 -0400191 p->bool_val_to_struct[booldatum->value - 1] = booldatum;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192
193 return 0;
194}
195
196static int bool_isvalid(struct cond_bool_datum *b)
197{
198 if (!(b->state == 0 || b->state == 1))
199 return 0;
200 return 1;
201}
202
203int cond_read_bool(struct policydb *p, struct hashtab *h, void *fp)
204{
205 char *key = NULL;
206 struct cond_bool_datum *booldatum;
Alexey Dobriyanb5bf6c52005-09-03 15:55:17 -0700207 __le32 buf[3];
208 u32 len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209 int rc;
210
Markus Elfringfb13a312017-01-14 11:22:12 +0100211 booldatum = kzalloc(sizeof(*booldatum), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212 if (!booldatum)
Dan Carpenter338437f2010-06-12 20:56:01 +0200213 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214
215 rc = next_entry(buf, fp, sizeof buf);
Dan Carpenter338437f2010-06-12 20:56:01 +0200216 if (rc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217 goto err;
218
219 booldatum->value = le32_to_cpu(buf[0]);
220 booldatum->state = le32_to_cpu(buf[1]);
221
Dan Carpenter338437f2010-06-12 20:56:01 +0200222 rc = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223 if (!bool_isvalid(booldatum))
224 goto err;
225
226 len = le32_to_cpu(buf[2]);
William Roberts7c686af2016-08-30 09:28:11 -0700227 if (((len == 0) || (len == (u32)-1)))
228 goto err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229
Dan Carpenter338437f2010-06-12 20:56:01 +0200230 rc = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231 key = kmalloc(len + 1, GFP_KERNEL);
232 if (!key)
233 goto err;
234 rc = next_entry(key, fp, len);
Dan Carpenter338437f2010-06-12 20:56:01 +0200235 if (rc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236 goto err;
Vesa-Matti J Karidf4ea8652008-07-20 23:57:01 +0300237 key[len] = '\0';
Dan Carpenter338437f2010-06-12 20:56:01 +0200238 rc = hashtab_insert(h, key, booldatum);
239 if (rc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240 goto err;
241
242 return 0;
243err:
244 cond_destroy_bool(key, booldatum, NULL);
Dan Carpenter338437f2010-06-12 20:56:01 +0200245 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246}
247
Eric Paris7c2b2402008-04-18 17:38:29 -0400248struct cond_insertf_data {
Stephen Smalley782ebb92005-09-03 15:55:16 -0700249 struct policydb *p;
Ondrej Mosnacek2b3a0032020-02-03 12:27:21 +0100250 struct avtab_node **dst;
Stephen Smalley782ebb92005-09-03 15:55:16 -0700251 struct cond_av_list *other;
Stephen Smalley782ebb92005-09-03 15:55:16 -0700252};
253
254static int cond_insertf(struct avtab *a, struct avtab_key *k, struct avtab_datum *d, void *ptr)
255{
256 struct cond_insertf_data *data = ptr;
257 struct policydb *p = data->p;
Ondrej Mosnacek2b3a0032020-02-03 12:27:21 +0100258 struct cond_av_list *other = data->other;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259 struct avtab_node *node_ptr;
Ondrej Mosnacek2b3a0032020-02-03 12:27:21 +0100260 u32 i;
261 bool found;
Stephen Smalley782ebb92005-09-03 15:55:16 -0700262
263 /*
264 * For type rules we have to make certain there aren't any
265 * conflicting rules by searching the te_avtab and the
266 * cond_te_avtab.
267 */
268 if (k->specified & AVTAB_TYPE) {
269 if (avtab_search(&p->te_avtab, k)) {
peter enderborgab485762018-06-12 10:09:00 +0200270 pr_err("SELinux: type rule already exists outside of a conditional.\n");
Ondrej Mosnacek2b3a0032020-02-03 12:27:21 +0100271 return -EINVAL;
Stephen Smalley782ebb92005-09-03 15:55:16 -0700272 }
273 /*
274 * If we are reading the false list other will be a pointer to
275 * the true list. We can have duplicate entries if there is only
276 * 1 other entry and it is in our true list.
277 *
278 * If we are reading the true list (other == NULL) there shouldn't
279 * be any other entries.
280 */
281 if (other) {
282 node_ptr = avtab_search_node(&p->te_cond_avtab, k);
283 if (node_ptr) {
284 if (avtab_search_node_next(node_ptr, k->specified)) {
peter enderborgab485762018-06-12 10:09:00 +0200285 pr_err("SELinux: too many conflicting type rules.\n");
Ondrej Mosnacek2b3a0032020-02-03 12:27:21 +0100286 return -EINVAL;
Stephen Smalley782ebb92005-09-03 15:55:16 -0700287 }
Ondrej Mosnacek2b3a0032020-02-03 12:27:21 +0100288 found = false;
289 for (i = 0; i < other->len; i++) {
290 if (other->nodes[i] == node_ptr) {
291 found = true;
Stephen Smalley782ebb92005-09-03 15:55:16 -0700292 break;
293 }
294 }
295 if (!found) {
peter enderborgab485762018-06-12 10:09:00 +0200296 pr_err("SELinux: conflicting type rules.\n");
Ondrej Mosnacek2b3a0032020-02-03 12:27:21 +0100297 return -EINVAL;
Stephen Smalley782ebb92005-09-03 15:55:16 -0700298 }
299 }
300 } else {
301 if (avtab_search(&p->te_cond_avtab, k)) {
peter enderborgab485762018-06-12 10:09:00 +0200302 pr_err("SELinux: conflicting type rules when adding type rule for true.\n");
Ondrej Mosnacek2b3a0032020-02-03 12:27:21 +0100303 return -EINVAL;
Stephen Smalley782ebb92005-09-03 15:55:16 -0700304 }
305 }
306 }
307
308 node_ptr = avtab_insert_nonunique(&p->te_cond_avtab, k, d);
309 if (!node_ptr) {
peter enderborgab485762018-06-12 10:09:00 +0200310 pr_err("SELinux: could not insert rule.\n");
Ondrej Mosnacek2b3a0032020-02-03 12:27:21 +0100311 return -ENOMEM;
Stephen Smalley782ebb92005-09-03 15:55:16 -0700312 }
313
Ondrej Mosnacek2b3a0032020-02-03 12:27:21 +0100314 *data->dst = node_ptr;
Stephen Smalley782ebb92005-09-03 15:55:16 -0700315 return 0;
Stephen Smalley782ebb92005-09-03 15:55:16 -0700316}
317
Ondrej Mosnacek2b3a0032020-02-03 12:27:21 +0100318static int cond_read_av_list(struct policydb *p, void *fp,
319 struct cond_av_list *list,
320 struct cond_av_list *other)
Stephen Smalley782ebb92005-09-03 15:55:16 -0700321{
Ondrej Mosnacek2b3a0032020-02-03 12:27:21 +0100322 int rc;
Alexey Dobriyanb5bf6c52005-09-03 15:55:17 -0700323 __le32 buf[1];
Ondrej Mosnacek2b3a0032020-02-03 12:27:21 +0100324 u32 i, len;
Stephen Smalley782ebb92005-09-03 15:55:16 -0700325 struct cond_insertf_data data;
326
Stephen Smalley782ebb92005-09-03 15:55:16 -0700327 rc = next_entry(buf, fp, sizeof(u32));
Dan Carpenter9d623b12010-06-12 20:52:19 +0200328 if (rc)
329 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330
331 len = le32_to_cpu(buf[0]);
Eric Paris7c2b2402008-04-18 17:38:29 -0400332 if (len == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334
Ondrej Mosnacek2b3a0032020-02-03 12:27:21 +0100335 list->nodes = kcalloc(len, sizeof(*list->nodes), GFP_KERNEL);
336 if (!list->nodes)
337 return -ENOMEM;
338
Stephen Smalley782ebb92005-09-03 15:55:16 -0700339 data.p = p;
340 data.other = other;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341 for (i = 0; i < len; i++) {
Ondrej Mosnacek2b3a0032020-02-03 12:27:21 +0100342 data.dst = &list->nodes[i];
Stephen Smalley45e54212007-11-07 10:08:00 -0500343 rc = avtab_read_item(&p->te_cond_avtab, fp, p, cond_insertf,
344 &data);
Ondrej Mosnacek2b3a0032020-02-03 12:27:21 +0100345 if (rc) {
346 kfree(list->nodes);
347 list->nodes = NULL;
Stephen Smalley782ebb92005-09-03 15:55:16 -0700348 return rc;
Ondrej Mosnacek2b3a0032020-02-03 12:27:21 +0100349 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350 }
351
Ondrej Mosnacek2b3a0032020-02-03 12:27:21 +0100352 list->len = len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354}
355
Ondrej Mosnacek8794d782020-02-03 12:27:22 +0100356static int expr_node_isvalid(struct policydb *p, struct cond_expr_node *expr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357{
358 if (expr->expr_type <= 0 || expr->expr_type > COND_LAST) {
peter enderborgab485762018-06-12 10:09:00 +0200359 pr_err("SELinux: conditional expressions uses unknown operator.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360 return 0;
361 }
362
363 if (expr->bool > p->p_bools.nprim) {
peter enderborgab485762018-06-12 10:09:00 +0200364 pr_err("SELinux: conditional expressions uses unknown bool.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365 return 0;
366 }
367 return 1;
368}
369
370static int cond_read_node(struct policydb *p, struct cond_node *node, void *fp)
371{
Alexey Dobriyanb5bf6c52005-09-03 15:55:17 -0700372 __le32 buf[2];
Ondrej Mosnacek8794d782020-02-03 12:27:22 +0100373 u32 i, len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375
Namhyung Kimf004afe2014-06-15 01:19:01 +0900376 rc = next_entry(buf, fp, sizeof(u32) * 2);
Dan Carpenterfc5c1262010-06-12 20:53:46 +0200377 if (rc)
Ondrej Mosnacek8794d782020-02-03 12:27:22 +0100378 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379
380 node->cur_state = le32_to_cpu(buf[0]);
381
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382 /* expr */
Namhyung Kimf004afe2014-06-15 01:19:01 +0900383 len = le32_to_cpu(buf[1]);
Ondrej Mosnacek8794d782020-02-03 12:27:22 +0100384 node->expr.nodes = kcalloc(len, sizeof(*node->expr.nodes), GFP_KERNEL);
385 if (!node->expr.nodes)
386 return -ENOMEM;
387
388 node->expr.len = len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389
Eric Paris7c2b2402008-04-18 17:38:29 -0400390 for (i = 0; i < len; i++) {
Ondrej Mosnacek8794d782020-02-03 12:27:22 +0100391 struct cond_expr_node *expr = &node->expr.nodes[i];
392
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393 rc = next_entry(buf, fp, sizeof(u32) * 2);
Dan Carpenterfc5c1262010-06-12 20:53:46 +0200394 if (rc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395 goto err;
396
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397 expr->expr_type = le32_to_cpu(buf[0]);
398 expr->bool = le32_to_cpu(buf[1]);
399
Ondrej Mosnacek8794d782020-02-03 12:27:22 +0100400 if (!expr_node_isvalid(p, expr)) {
Dan Carpenterfc5c1262010-06-12 20:53:46 +0200401 rc = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402 goto err;
403 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404 }
405
Dan Carpenterfc5c1262010-06-12 20:53:46 +0200406 rc = cond_read_av_list(p, fp, &node->true_list, NULL);
407 if (rc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408 goto err;
Ondrej Mosnacek2b3a0032020-02-03 12:27:21 +0100409 rc = cond_read_av_list(p, fp, &node->false_list, &node->true_list);
Dan Carpenterfc5c1262010-06-12 20:53:46 +0200410 if (rc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411 goto err;
412 return 0;
413err:
414 cond_node_destroy(node);
Dan Carpenterfc5c1262010-06-12 20:53:46 +0200415 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416}
417
418int cond_read_list(struct policydb *p, void *fp)
419{
Alexey Dobriyanb5bf6c52005-09-03 15:55:17 -0700420 __le32 buf[1];
421 u32 i, len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422 int rc;
423
424 rc = next_entry(buf, fp, sizeof buf);
Dan Carpenter5241c102010-06-12 20:51:40 +0200425 if (rc)
426 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427
428 len = le32_to_cpu(buf[0]);
429
Ondrej Mosnacek60abd312020-02-03 12:27:20 +0100430 p->cond_list = kcalloc(len, sizeof(*p->cond_list), GFP_KERNEL);
431 if (!p->cond_list)
432 return rc;
433
Yuichi Nakamura3232c112007-08-24 11:55:11 +0900434 rc = avtab_alloc(&(p->te_cond_avtab), p->te_avtab.nel);
435 if (rc)
436 goto err;
437
Ondrej Mosnacek60abd312020-02-03 12:27:20 +0100438 p->cond_list_len = len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439
Ondrej Mosnacek60abd312020-02-03 12:27:20 +0100440 for (i = 0; i < len; i++) {
441 rc = cond_read_node(p, &p->cond_list[i], fp);
Dan Carpenter5241c102010-06-12 20:51:40 +0200442 if (rc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443 goto err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444 }
445 return 0;
446err:
Ondrej Mosnacek60abd312020-02-03 12:27:20 +0100447 cond_list_destroy(p);
Stephen Smalley782ebb92005-09-03 15:55:16 -0700448 p->cond_list = NULL;
Dan Carpenter5241c102010-06-12 20:51:40 +0200449 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450}
451
Eric Pariscee74f42010-10-13 17:50:25 -0400452int cond_write_bool(void *vkey, void *datum, void *ptr)
453{
454 char *key = vkey;
455 struct cond_bool_datum *booldatum = datum;
456 struct policy_data *pd = ptr;
457 void *fp = pd->fp;
458 __le32 buf[3];
459 u32 len;
460 int rc;
461
462 len = strlen(key);
463 buf[0] = cpu_to_le32(booldatum->value);
464 buf[1] = cpu_to_le32(booldatum->state);
465 buf[2] = cpu_to_le32(len);
466 rc = put_entry(buf, sizeof(u32), 3, fp);
467 if (rc)
468 return rc;
469 rc = put_entry(key, 1, len, fp);
470 if (rc)
471 return rc;
472 return 0;
473}
474
475/*
476 * cond_write_cond_av_list doesn't write out the av_list nodes.
477 * Instead it writes out the key/value pairs from the avtab. This
478 * is necessary because there is no way to uniquely identifying rules
479 * in the avtab so it is not possible to associate individual rules
480 * in the avtab with a conditional without saving them as part of
481 * the conditional. This means that the avtab with the conditional
482 * rules will not be saved but will be rebuilt on policy load.
483 */
484static int cond_write_av_list(struct policydb *p,
485 struct cond_av_list *list, struct policy_file *fp)
486{
487 __le32 buf[1];
Ondrej Mosnacek2b3a0032020-02-03 12:27:21 +0100488 u32 i;
Eric Pariscee74f42010-10-13 17:50:25 -0400489 int rc;
490
Ondrej Mosnacek2b3a0032020-02-03 12:27:21 +0100491 buf[0] = cpu_to_le32(list->len);
Eric Pariscee74f42010-10-13 17:50:25 -0400492 rc = put_entry(buf, sizeof(u32), 1, fp);
493 if (rc)
494 return rc;
495
Ondrej Mosnacek2b3a0032020-02-03 12:27:21 +0100496 for (i = 0; i < list->len; i++) {
497 rc = avtab_write_item(p, list->nodes[i], fp);
Eric Pariscee74f42010-10-13 17:50:25 -0400498 if (rc)
499 return rc;
500 }
501
502 return 0;
503}
504
James Morris7b98a582011-08-30 12:52:32 +1000505static int cond_write_node(struct policydb *p, struct cond_node *node,
Eric Pariscee74f42010-10-13 17:50:25 -0400506 struct policy_file *fp)
507{
Eric Pariscee74f42010-10-13 17:50:25 -0400508 __le32 buf[2];
509 int rc;
Ondrej Mosnacek8794d782020-02-03 12:27:22 +0100510 u32 i;
Eric Pariscee74f42010-10-13 17:50:25 -0400511
512 buf[0] = cpu_to_le32(node->cur_state);
513 rc = put_entry(buf, sizeof(u32), 1, fp);
514 if (rc)
515 return rc;
516
Ondrej Mosnacek8794d782020-02-03 12:27:22 +0100517 buf[0] = cpu_to_le32(node->expr.len);
Eric Pariscee74f42010-10-13 17:50:25 -0400518 rc = put_entry(buf, sizeof(u32), 1, fp);
519 if (rc)
520 return rc;
521
Ondrej Mosnacek8794d782020-02-03 12:27:22 +0100522 for (i = 0; i < node->expr.len; i++) {
523 buf[0] = cpu_to_le32(node->expr.nodes[i].expr_type);
524 buf[1] = cpu_to_le32(node->expr.nodes[i].bool);
Eric Pariscee74f42010-10-13 17:50:25 -0400525 rc = put_entry(buf, sizeof(u32), 2, fp);
526 if (rc)
527 return rc;
528 }
529
Ondrej Mosnacek2b3a0032020-02-03 12:27:21 +0100530 rc = cond_write_av_list(p, &node->true_list, fp);
Eric Pariscee74f42010-10-13 17:50:25 -0400531 if (rc)
532 return rc;
Ondrej Mosnacek2b3a0032020-02-03 12:27:21 +0100533 rc = cond_write_av_list(p, &node->false_list, fp);
Eric Pariscee74f42010-10-13 17:50:25 -0400534 if (rc)
535 return rc;
536
537 return 0;
538}
539
Ondrej Mosnacek60abd312020-02-03 12:27:20 +0100540int cond_write_list(struct policydb *p, void *fp)
Eric Pariscee74f42010-10-13 17:50:25 -0400541{
Ondrej Mosnacek60abd312020-02-03 12:27:20 +0100542 u32 i;
Eric Pariscee74f42010-10-13 17:50:25 -0400543 __le32 buf[1];
544 int rc;
545
Ondrej Mosnacek60abd312020-02-03 12:27:20 +0100546 buf[0] = cpu_to_le32(p->cond_list_len);
Eric Pariscee74f42010-10-13 17:50:25 -0400547 rc = put_entry(buf, sizeof(u32), 1, fp);
548 if (rc)
549 return rc;
550
Ondrej Mosnacek60abd312020-02-03 12:27:20 +0100551 for (i = 0; i < p->cond_list_len; i++) {
552 rc = cond_write_node(p, &p->cond_list[i], fp);
Eric Pariscee74f42010-10-13 17:50:25 -0400553 if (rc)
554 return rc;
555 }
556
557 return 0;
558}
Jeff Vander Stoepfa1aa142015-07-10 17:19:56 -0400559
560void cond_compute_xperms(struct avtab *ctab, struct avtab_key *key,
561 struct extended_perms_decision *xpermd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562{
563 struct avtab_node *node;
564
Jeff Vander Stoepfa1aa142015-07-10 17:19:56 -0400565 if (!ctab || !key || !xpermd)
566 return;
567
568 for (node = avtab_search_node(ctab, key); node;
569 node = avtab_search_node_next(node, key->specified)) {
570 if (node->key.specified & AVTAB_ENABLED)
571 services_compute_xperms_decision(xpermd, node);
572 }
573 return;
574
575}
576/* Determine whether additional permissions are granted by the conditional
577 * av table, and if so, add them to the result
578 */
579void cond_compute_av(struct avtab *ctab, struct avtab_key *key,
580 struct av_decision *avd, struct extended_perms *xperms)
581{
582 struct avtab_node *node;
583
Stephen Smalleyf3bef672015-11-23 16:07:41 -0500584 if (!ctab || !key || !avd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585 return;
586
Vesa-Matti Karidbc74c62008-08-07 03:18:20 +0300587 for (node = avtab_search_node(ctab, key); node;
Stephen Smalley782ebb92005-09-03 15:55:16 -0700588 node = avtab_search_node_next(node, key->specified)) {
Eric Paris7c2b2402008-04-18 17:38:29 -0400589 if ((u16)(AVTAB_ALLOWED|AVTAB_ENABLED) ==
590 (node->key.specified & (AVTAB_ALLOWED|AVTAB_ENABLED)))
Jeff Vander Stoepfa1aa142015-07-10 17:19:56 -0400591 avd->allowed |= node->datum.u.data;
Eric Paris7c2b2402008-04-18 17:38:29 -0400592 if ((u16)(AVTAB_AUDITDENY|AVTAB_ENABLED) ==
593 (node->key.specified & (AVTAB_AUDITDENY|AVTAB_ENABLED)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594 /* Since a '0' in an auditdeny mask represents a
595 * permission we do NOT want to audit (dontaudit), we use
596 * the '&' operand to ensure that all '0's in the mask
597 * are retained (much unlike the allow and auditallow cases).
598 */
Jeff Vander Stoepfa1aa142015-07-10 17:19:56 -0400599 avd->auditdeny &= node->datum.u.data;
Eric Paris7c2b2402008-04-18 17:38:29 -0400600 if ((u16)(AVTAB_AUDITALLOW|AVTAB_ENABLED) ==
601 (node->key.specified & (AVTAB_AUDITALLOW|AVTAB_ENABLED)))
Jeff Vander Stoepfa1aa142015-07-10 17:19:56 -0400602 avd->auditallow |= node->datum.u.data;
Stephen Smalleyf3bef672015-11-23 16:07:41 -0500603 if (xperms && (node->key.specified & AVTAB_ENABLED) &&
Jeff Vander Stoepfa1aa142015-07-10 17:19:56 -0400604 (node->key.specified & AVTAB_XPERMS))
605 services_compute_xperms_drivers(xperms, node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607}