1 /* Authors: Karl MacMillan <kmacmillan@tresys.com>
2 * Frank Mayer <mayerf@tresys.com>
4 * Copyright (C) 2003 - 2004 Tresys Technology, LLC
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation, version 2.
10 #include <linux/kernel.h>
11 #include <linux/errno.h>
12 #include <linux/string.h>
13 #include <linux/spinlock.h>
14 #include <linux/slab.h>
17 #include "conditional.h"
20 * cond_evaluate_expr evaluates a conditional expr
21 * in reverse polish notation. It returns true (1), false (0),
22 * or undefined (-1). Undefined occurs when the expression
23 * exceeds the stack depth of COND_EXPR_MAXDEPTH.
25 static int cond_evaluate_expr(struct policydb *p, struct cond_expr *expr)
28 struct cond_expr *cur;
29 int s[COND_EXPR_MAXDEPTH];
32 for (cur = expr; cur != NULL; cur = cur->next) {
33 switch (cur->expr_type) {
35 if (sp == (COND_EXPR_MAXDEPTH - 1))
38 s[sp] = p->bool_val_to_struct[cur->bool - 1]->state;
67 s[sp] = (s[sp] == s[sp + 1]);
73 s[sp] = (s[sp] != s[sp + 1]);
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.
89 int evaluate_cond_node(struct policydb *p, struct cond_node *node)
92 struct cond_av_list* cur;
94 new_state = cond_evaluate_expr(p, node->expr);
95 if (new_state != node->cur_state) {
96 node->cur_state = new_state;
98 printk(KERN_ERR "SELinux: expression result was undefined - disabling all rules.\n");
99 /* turn the rules on or off */
100 for (cur = node->true_list; cur != NULL; cur = cur->next) {
101 if (new_state <= 0) {
102 cur->node->key.specified &= ~AVTAB_ENABLED;
104 cur->node->key.specified |= AVTAB_ENABLED;
108 for (cur = node->false_list; cur != NULL; cur = cur->next) {
111 cur->node->key.specified &= ~AVTAB_ENABLED;
113 cur->node->key.specified |= AVTAB_ENABLED;
120 int cond_policydb_init(struct policydb *p)
122 p->bool_val_to_struct = NULL;
124 if (avtab_init(&p->te_cond_avtab))
130 static void cond_av_list_destroy(struct cond_av_list *list)
132 struct cond_av_list *cur, *next;
133 for (cur = list; cur != NULL; cur = next) {
135 /* the avtab_ptr_t node is destroy by the avtab */
140 static void cond_node_destroy(struct cond_node *node)
142 struct cond_expr *cur_expr, *next_expr;
144 for (cur_expr = node->expr; cur_expr != NULL; cur_expr = next_expr) {
145 next_expr = cur_expr->next;
148 cond_av_list_destroy(node->true_list);
149 cond_av_list_destroy(node->false_list);
153 static void cond_list_destroy(struct cond_node *list)
155 struct cond_node *next, *cur;
160 for (cur = list; cur != NULL; cur = next) {
162 cond_node_destroy(cur);
166 void cond_policydb_destroy(struct policydb *p)
168 kfree(p->bool_val_to_struct);
169 avtab_destroy(&p->te_cond_avtab);
170 cond_list_destroy(p->cond_list);
173 int cond_init_bool_indexes(struct policydb *p)
175 kfree(p->bool_val_to_struct);
176 p->bool_val_to_struct = (struct cond_bool_datum**)
177 kmalloc(p->p_bools.nprim * sizeof(struct cond_bool_datum*), GFP_KERNEL);
178 if (!p->bool_val_to_struct)
183 int cond_destroy_bool(void *key, void *datum, void *p)
190 int cond_index_bool(void *key, void *datum, void *datap)
193 struct cond_bool_datum *booldatum;
198 if (!booldatum->value || booldatum->value > p->p_bools.nprim)
201 p->p_bool_val_to_name[booldatum->value - 1] = key;
202 p->bool_val_to_struct[booldatum->value -1] = booldatum;
207 static int bool_isvalid(struct cond_bool_datum *b)
209 if (!(b->state == 0 || b->state == 1))
214 int cond_read_bool(struct policydb *p, struct hashtab *h, void *fp)
217 struct cond_bool_datum *booldatum;
222 booldatum = kzalloc(sizeof(struct cond_bool_datum), GFP_KERNEL);
226 rc = next_entry(buf, fp, sizeof buf);
230 booldatum->value = le32_to_cpu(buf[0]);
231 booldatum->state = le32_to_cpu(buf[1]);
233 if (!bool_isvalid(booldatum))
236 len = le32_to_cpu(buf[2]);
238 key = kmalloc(len + 1, GFP_KERNEL);
241 rc = next_entry(key, fp, len);
245 if (hashtab_insert(h, key, booldatum))
250 cond_destroy_bool(key, booldatum, NULL);
254 struct cond_insertf_data
257 struct cond_av_list *other;
258 struct cond_av_list *head;
259 struct cond_av_list *tail;
262 static int cond_insertf(struct avtab *a, struct avtab_key *k, struct avtab_datum *d, void *ptr)
264 struct cond_insertf_data *data = ptr;
265 struct policydb *p = data->p;
266 struct cond_av_list *other = data->other, *list, *cur;
267 struct avtab_node *node_ptr;
272 * For type rules we have to make certain there aren't any
273 * conflicting rules by searching the te_avtab and the
276 if (k->specified & AVTAB_TYPE) {
277 if (avtab_search(&p->te_avtab, k)) {
278 printk("SELinux: type rule already exists outside of a conditional.");
282 * If we are reading the false list other will be a pointer to
283 * the true list. We can have duplicate entries if there is only
284 * 1 other entry and it is in our true list.
286 * If we are reading the true list (other == NULL) there shouldn't
287 * be any other entries.
290 node_ptr = avtab_search_node(&p->te_cond_avtab, k);
292 if (avtab_search_node_next(node_ptr, k->specified)) {
293 printk("SELinux: too many conflicting type rules.");
297 for (cur = other; cur != NULL; cur = cur->next) {
298 if (cur->node == node_ptr) {
304 printk("SELinux: conflicting type rules.\n");
309 if (avtab_search(&p->te_cond_avtab, k)) {
310 printk("SELinux: conflicting type rules when adding type rule for true.\n");
316 node_ptr = avtab_insert_nonunique(&p->te_cond_avtab, k, d);
318 printk("SELinux: could not insert rule.");
322 list = kzalloc(sizeof(struct cond_av_list), GFP_KERNEL);
326 list->node = node_ptr;
330 data->tail->next = list;
335 cond_av_list_destroy(data->head);
340 static int cond_read_av_list(struct policydb *p, void *fp, struct cond_av_list **ret_list, struct cond_av_list *other)
345 struct cond_insertf_data data;
350 rc = next_entry(buf, fp, sizeof(u32));
354 len = le32_to_cpu(buf[0]);
363 for (i = 0; i < len; i++) {
364 rc = avtab_read_item(&p->te_cond_avtab, fp, p, cond_insertf,
371 *ret_list = data.head;
375 static int expr_isvalid(struct policydb *p, struct cond_expr *expr)
377 if (expr->expr_type <= 0 || expr->expr_type > COND_LAST) {
378 printk("SELinux: conditional expressions uses unknown operator.\n");
382 if (expr->bool > p->p_bools.nprim) {
383 printk("SELinux: conditional expressions uses unknown bool.\n");
389 static int cond_read_node(struct policydb *p, struct cond_node *node, void *fp)
394 struct cond_expr *expr = NULL, *last = NULL;
396 rc = next_entry(buf, fp, sizeof(u32));
400 node->cur_state = le32_to_cpu(buf[0]);
403 rc = next_entry(buf, fp, sizeof(u32));
408 len = le32_to_cpu(buf[0]);
410 for (i = 0; i < len; i++ ) {
411 rc = next_entry(buf, fp, sizeof(u32) * 2);
415 expr = kzalloc(sizeof(struct cond_expr), GFP_KERNEL);
420 expr->expr_type = le32_to_cpu(buf[0]);
421 expr->bool = le32_to_cpu(buf[1]);
423 if (!expr_isvalid(p, expr)) {
436 if (cond_read_av_list(p, fp, &node->true_list, NULL) != 0)
438 if (cond_read_av_list(p, fp, &node->false_list, node->true_list) != 0)
442 cond_node_destroy(node);
446 int cond_read_list(struct policydb *p, void *fp)
448 struct cond_node *node, *last = NULL;
453 rc = next_entry(buf, fp, sizeof buf);
457 len = le32_to_cpu(buf[0]);
459 rc = avtab_alloc(&(p->te_cond_avtab), p->te_avtab.nel);
463 for (i = 0; i < len; i++) {
464 node = kzalloc(sizeof(struct cond_node), GFP_KERNEL);
468 if (cond_read_node(p, node, fp) != 0)
480 cond_list_destroy(p->cond_list);
485 /* Determine whether additional permissions are granted by the conditional
486 * av table, and if so, add them to the result
488 void cond_compute_av(struct avtab *ctab, struct avtab_key *key, struct av_decision *avd)
490 struct avtab_node *node;
492 if(!ctab || !key || !avd)
495 for(node = avtab_search_node(ctab, key); node != NULL;
496 node = avtab_search_node_next(node, key->specified)) {
497 if ( (u16) (AVTAB_ALLOWED|AVTAB_ENABLED) ==
498 (node->key.specified & (AVTAB_ALLOWED|AVTAB_ENABLED)))
499 avd->allowed |= node->datum.data;
500 if ( (u16) (AVTAB_AUDITDENY|AVTAB_ENABLED) ==
501 (node->key.specified & (AVTAB_AUDITDENY|AVTAB_ENABLED)))
502 /* Since a '0' in an auditdeny mask represents a
503 * permission we do NOT want to audit (dontaudit), we use
504 * the '&' operand to ensure that all '0's in the mask
505 * are retained (much unlike the allow and auditallow cases).
507 avd->auditdeny &= node->datum.data;
508 if ( (u16) (AVTAB_AUDITALLOW|AVTAB_ENABLED) ==
509 (node->key.specified & (AVTAB_AUDITALLOW|AVTAB_ENABLED)))
510 avd->auditallow |= node->datum.data;