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 <asm/semaphore.h>
15 #include <linux/slab.h>
18 #include "conditional.h"
21 * cond_evaluate_expr evaluates a conditional expr
22 * in reverse polish notation. It returns true (1), false (0),
23 * or undefined (-1). Undefined occurs when the expression
24 * exceeds the stack depth of COND_EXPR_MAXDEPTH.
26 static int cond_evaluate_expr(struct policydb *p, struct cond_expr *expr)
29 struct cond_expr *cur;
30 int s[COND_EXPR_MAXDEPTH];
33 for (cur = expr; cur != NULL; cur = cur->next) {
34 switch (cur->expr_type) {
36 if (sp == (COND_EXPR_MAXDEPTH - 1))
39 s[sp] = p->bool_val_to_struct[cur->bool - 1]->state;
68 s[sp] = (s[sp] == s[sp + 1]);
74 s[sp] = (s[sp] != s[sp + 1]);
84 * evaluate_cond_node evaluates the conditional stored in
85 * a struct cond_node and if the result is different than the
86 * current state of the node it sets the rules in the true/false
87 * list appropriately. If the result of the expression is undefined
88 * all of the rules are disabled for safety.
90 int evaluate_cond_node(struct policydb *p, struct cond_node *node)
93 struct cond_av_list* cur;
95 new_state = cond_evaluate_expr(p, node->expr);
96 if (new_state != node->cur_state) {
97 node->cur_state = new_state;
99 printk(KERN_ERR "security: expression result was undefined - disabling all rules.\n");
100 /* turn the rules on or off */
101 for (cur = node->true_list; cur != NULL; cur = cur->next) {
102 if (new_state <= 0) {
103 cur->node->datum.specified &= ~AVTAB_ENABLED;
105 cur->node->datum.specified |= AVTAB_ENABLED;
109 for (cur = node->false_list; cur != NULL; cur = cur->next) {
112 cur->node->datum.specified &= ~AVTAB_ENABLED;
114 cur->node->datum.specified |= AVTAB_ENABLED;
121 int cond_policydb_init(struct policydb *p)
123 p->bool_val_to_struct = NULL;
125 if (avtab_init(&p->te_cond_avtab))
131 static void cond_av_list_destroy(struct cond_av_list *list)
133 struct cond_av_list *cur, *next;
134 for (cur = list; cur != NULL; cur = next) {
136 /* the avtab_ptr_t node is destroy by the avtab */
141 static void cond_node_destroy(struct cond_node *node)
143 struct cond_expr *cur_expr, *next_expr;
145 for (cur_expr = node->expr; cur_expr != NULL; cur_expr = next_expr) {
146 next_expr = cur_expr->next;
149 cond_av_list_destroy(node->true_list);
150 cond_av_list_destroy(node->false_list);
154 static void cond_list_destroy(struct cond_node *list)
156 struct cond_node *next, *cur;
161 for (cur = list; cur != NULL; cur = next) {
163 cond_node_destroy(cur);
167 void cond_policydb_destroy(struct policydb *p)
169 kfree(p->bool_val_to_struct);
170 avtab_destroy(&p->te_cond_avtab);
171 cond_list_destroy(p->cond_list);
174 int cond_init_bool_indexes(struct policydb *p)
176 kfree(p->bool_val_to_struct);
177 p->bool_val_to_struct = (struct cond_bool_datum**)
178 kmalloc(p->p_bools.nprim * sizeof(struct cond_bool_datum*), GFP_KERNEL);
179 if (!p->bool_val_to_struct)
184 int cond_destroy_bool(void *key, void *datum, void *p)
191 int cond_index_bool(void *key, void *datum, void *datap)
194 struct cond_bool_datum *booldatum;
199 if (!booldatum->value || booldatum->value > p->p_bools.nprim)
202 p->p_bool_val_to_name[booldatum->value - 1] = key;
203 p->bool_val_to_struct[booldatum->value -1] = booldatum;
208 static int bool_isvalid(struct cond_bool_datum *b)
210 if (!(b->state == 0 || b->state == 1))
215 int cond_read_bool(struct policydb *p, struct hashtab *h, void *fp)
218 struct cond_bool_datum *booldatum;
222 booldatum = kmalloc(sizeof(struct cond_bool_datum), GFP_KERNEL);
225 memset(booldatum, 0, sizeof(struct cond_bool_datum));
227 rc = next_entry(buf, fp, sizeof buf);
231 booldatum->value = le32_to_cpu(buf[0]);
232 booldatum->state = le32_to_cpu(buf[1]);
234 if (!bool_isvalid(booldatum))
237 len = le32_to_cpu(buf[2]);
239 key = kmalloc(len + 1, GFP_KERNEL);
242 rc = next_entry(key, fp, len);
246 if (hashtab_insert(h, key, booldatum))
251 cond_destroy_bool(key, booldatum, NULL);
255 static int cond_read_av_list(struct policydb *p, void *fp, struct cond_av_list **ret_list,
256 struct cond_av_list *other)
258 struct cond_av_list *list, *last = NULL, *cur;
259 struct avtab_key key;
260 struct avtab_datum datum;
261 struct avtab_node *node_ptr;
269 rc = next_entry(buf, fp, sizeof buf);
273 len = le32_to_cpu(buf[0]);
278 for (i = 0; i < len; i++) {
279 if (avtab_read_item(fp, &datum, &key))
283 * For type rules we have to make certain there aren't any
284 * conflicting rules by searching the te_avtab and the
287 if (datum.specified & AVTAB_TYPE) {
288 if (avtab_search(&p->te_avtab, &key, AVTAB_TYPE)) {
289 printk("security: type rule already exists outside of a conditional.");
293 * If we are reading the false list other will be a pointer to
294 * the true list. We can have duplicate entries if there is only
295 * 1 other entry and it is in our true list.
297 * If we are reading the true list (other == NULL) there shouldn't
298 * be any other entries.
301 node_ptr = avtab_search_node(&p->te_cond_avtab, &key, AVTAB_TYPE);
303 if (avtab_search_node_next(node_ptr, AVTAB_TYPE)) {
304 printk("security: too many conflicting type rules.");
308 for (cur = other; cur != NULL; cur = cur->next) {
309 if (cur->node == node_ptr) {
315 printk("security: conflicting type rules.");
320 if (avtab_search(&p->te_cond_avtab, &key, AVTAB_TYPE)) {
321 printk("security: conflicting type rules when adding type rule for true.");
326 node_ptr = avtab_insert_nonunique(&p->te_cond_avtab, &key, &datum);
328 printk("security: could not insert rule.");
332 list = kmalloc(sizeof(struct cond_av_list), GFP_KERNEL);
335 memset(list, 0, sizeof(struct cond_av_list));
337 list->node = node_ptr;
348 cond_av_list_destroy(*ret_list);
353 static int expr_isvalid(struct policydb *p, struct cond_expr *expr)
355 if (expr->expr_type <= 0 || expr->expr_type > COND_LAST) {
356 printk("security: conditional expressions uses unknown operator.\n");
360 if (expr->bool > p->p_bools.nprim) {
361 printk("security: conditional expressions uses unknown bool.\n");
367 static int cond_read_node(struct policydb *p, struct cond_node *node, void *fp)
371 struct cond_expr *expr = NULL, *last = NULL;
373 rc = next_entry(buf, fp, sizeof(u32));
377 node->cur_state = le32_to_cpu(buf[0]);
380 rc = next_entry(buf, fp, sizeof(u32));
385 len = le32_to_cpu(buf[0]);
387 for (i = 0; i < len; i++ ) {
388 rc = next_entry(buf, fp, sizeof(u32) * 2);
392 expr = kmalloc(sizeof(struct cond_expr), GFP_KERNEL);
396 memset(expr, 0, sizeof(struct cond_expr));
398 expr->expr_type = le32_to_cpu(buf[0]);
399 expr->bool = le32_to_cpu(buf[1]);
401 if (!expr_isvalid(p, expr)) {
414 if (cond_read_av_list(p, fp, &node->true_list, NULL) != 0)
416 if (cond_read_av_list(p, fp, &node->false_list, node->true_list) != 0)
420 cond_node_destroy(node);
424 int cond_read_list(struct policydb *p, void *fp)
426 struct cond_node *node, *last = NULL;
430 rc = next_entry(buf, fp, sizeof buf);
434 len = le32_to_cpu(buf[0]);
436 for (i = 0; i < len; i++) {
437 node = kmalloc(sizeof(struct cond_node), GFP_KERNEL);
440 memset(node, 0, sizeof(struct cond_node));
442 if (cond_read_node(p, node, fp) != 0)
454 cond_list_destroy(p->cond_list);
458 /* Determine whether additional permissions are granted by the conditional
459 * av table, and if so, add them to the result
461 void cond_compute_av(struct avtab *ctab, struct avtab_key *key, struct av_decision *avd)
463 struct avtab_node *node;
465 if(!ctab || !key || !avd)
468 for(node = avtab_search_node(ctab, key, AVTAB_AV); node != NULL;
469 node = avtab_search_node_next(node, AVTAB_AV)) {
470 if ( (__u32) (AVTAB_ALLOWED|AVTAB_ENABLED) ==
471 (node->datum.specified & (AVTAB_ALLOWED|AVTAB_ENABLED)))
472 avd->allowed |= avtab_allowed(&node->datum);
473 if ( (__u32) (AVTAB_AUDITDENY|AVTAB_ENABLED) ==
474 (node->datum.specified & (AVTAB_AUDITDENY|AVTAB_ENABLED)))
475 /* Since a '0' in an auditdeny mask represents a
476 * permission we do NOT want to audit (dontaudit), we use
477 * the '&' operand to ensure that all '0's in the mask
478 * are retained (much unlike the allow and auditallow cases).
480 avd->auditdeny &= avtab_auditdeny(&node->datum);
481 if ( (__u32) (AVTAB_AUDITALLOW|AVTAB_ENABLED) ==
482 (node->datum.specified & (AVTAB_AUDITALLOW|AVTAB_ENABLED)))
483 avd->auditallow |= avtab_auditallow(&node->datum);