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->key.specified &= ~AVTAB_ENABLED;
105 cur->node->key.specified |= AVTAB_ENABLED;
109 for (cur = node->false_list; cur != NULL; cur = cur->next) {
112 cur->node->key.specified &= ~AVTAB_ENABLED;
114 cur->node->key.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;
223 booldatum = kzalloc(sizeof(struct cond_bool_datum), GFP_KERNEL);
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 struct cond_insertf_data
258 struct cond_av_list *other;
259 struct cond_av_list *head;
260 struct cond_av_list *tail;
263 static int cond_insertf(struct avtab *a, struct avtab_key *k, struct avtab_datum *d, void *ptr)
265 struct cond_insertf_data *data = ptr;
266 struct policydb *p = data->p;
267 struct cond_av_list *other = data->other, *list, *cur;
268 struct avtab_node *node_ptr;
273 * For type rules we have to make certain there aren't any
274 * conflicting rules by searching the te_avtab and the
277 if (k->specified & AVTAB_TYPE) {
278 if (avtab_search(&p->te_avtab, k)) {
279 printk("security: type rule already exists outside of a conditional.");
283 * If we are reading the false list other will be a pointer to
284 * the true list. We can have duplicate entries if there is only
285 * 1 other entry and it is in our true list.
287 * If we are reading the true list (other == NULL) there shouldn't
288 * be any other entries.
291 node_ptr = avtab_search_node(&p->te_cond_avtab, k);
293 if (avtab_search_node_next(node_ptr, k->specified)) {
294 printk("security: too many conflicting type rules.");
298 for (cur = other; cur != NULL; cur = cur->next) {
299 if (cur->node == node_ptr) {
305 printk("security: conflicting type rules.\n");
310 if (avtab_search(&p->te_cond_avtab, k)) {
311 printk("security: conflicting type rules when adding type rule for true.\n");
317 node_ptr = avtab_insert_nonunique(&p->te_cond_avtab, k, d);
319 printk("security: could not insert rule.");
323 list = kzalloc(sizeof(struct cond_av_list), GFP_KERNEL);
327 list->node = node_ptr;
331 data->tail->next = list;
336 cond_av_list_destroy(data->head);
341 static int cond_read_av_list(struct policydb *p, void *fp, struct cond_av_list **ret_list, struct cond_av_list *other)
346 struct cond_insertf_data data;
351 rc = next_entry(buf, fp, sizeof(u32));
355 len = le32_to_cpu(buf[0]);
364 for (i = 0; i < len; i++) {
365 rc = avtab_read_item(fp, p->policyvers, &p->te_cond_avtab, cond_insertf, &data);
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("security: conditional expressions uses unknown operator.\n");
382 if (expr->bool > p->p_bools.nprim) {
383 printk("security: 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 for (i = 0; i < len; i++) {
460 node = kzalloc(sizeof(struct cond_node), GFP_KERNEL);
464 if (cond_read_node(p, node, fp) != 0)
476 cond_list_destroy(p->cond_list);
481 /* Determine whether additional permissions are granted by the conditional
482 * av table, and if so, add them to the result
484 void cond_compute_av(struct avtab *ctab, struct avtab_key *key, struct av_decision *avd)
486 struct avtab_node *node;
488 if(!ctab || !key || !avd)
491 for(node = avtab_search_node(ctab, key); node != NULL;
492 node = avtab_search_node_next(node, key->specified)) {
493 if ( (u16) (AVTAB_ALLOWED|AVTAB_ENABLED) ==
494 (node->key.specified & (AVTAB_ALLOWED|AVTAB_ENABLED)))
495 avd->allowed |= node->datum.data;
496 if ( (u16) (AVTAB_AUDITDENY|AVTAB_ENABLED) ==
497 (node->key.specified & (AVTAB_AUDITDENY|AVTAB_ENABLED)))
498 /* Since a '0' in an auditdeny mask represents a
499 * permission we do NOT want to audit (dontaudit), we use
500 * the '&' operand to ensure that all '0's in the mask
501 * are retained (much unlike the allow and auditallow cases).
503 avd->auditdeny &= node->datum.data;
504 if ( (u16) (AVTAB_AUDITALLOW|AVTAB_ENABLED) ==
505 (node->key.specified & (AVTAB_AUDITALLOW|AVTAB_ENABLED)))
506 avd->auditallow |= node->datum.data;