1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605
|
/* Copyright (C) 2001-2004 Tresys Technology, LLC
* see file 'COPYING' for use and warranty information */
/*
* Author: mayerf@tresys.com
*/
/* policy.h
*
* analysis policy database support header
*
* Our policy database (see below) is completly different
* than that used by checkpolicy/SS; we're trying to analyze from
* policy.conf "up" to higher abstractions.
*/
#ifndef _APOLICY_POLICY_H_
#define _APOLICY_POLICY_H_
#include "cond.h"
#include "avl-util.h"
#include "util.h"
#include "semantic/avhash.h"
#include <asm/types.h>
#include <stdio.h>
#include <string.h>
#include <strings.h>
#include <stdlib.h>
#include <regex.h>
#define LIST_SZ 100 /* alloc size for all list arrays...
* dynamically grow in this increments as necesary */
#define OBJECT_R_NAME "object_r"
/* policy options used for opening a policy; controls which part of the
* policy were loaded.
*/
#define POLOPT_NONE 0x0
#define POLOPT_CLASSES 0x00000001 /* object classes */
#define POLOPT_PERMS 0x00000002
#define POLOPT_TYPES 0x00000004 /* types and type attributes */
#define POLOPT_ROLES 0x00000008 /* role declarations */
#define POLOPT_USERS 0x00000010 /* user declarations */
#define POLOPT_TE_ALLOW 0x00000020 /* TE allow rules */
#define POLOPT_TE_NEVERALLOW 0x00000040 /* neverallow rules */
#define POLOPT_TE_AUDITALLOW 0x00000080
#define POLOPT_TE_DONTAUDIT 0x00000100 /* includes old auditdeny rules */
#define POLOPT_TE_TRANS 0x00000200 /* type_transition rules */
#define POLOPT_TE_MEMBER 0x00000400
#define POLOPT_TE_CHANGE 0x00000800
#define POLOPT_ROLE_RULES 0x00001000 /* all role rules (allow, old trans)*/
#define POLOPT_COND_BOOLS 0x00002000 /* conditional booleans */
#define POLOPT_COND_EXPR 0x00004000 /* conditional expression definitions */
#define POLOPT_COND_TE_RULES 0x00008000 /* conditional TE rules */
#define POLOPT_INITIAL_SIDS 0x00010000 /* initial SIDs and their context */
#define POLOPT_OTHER 0x10000000 /* Everything else not covered above. */
#define POLOPT_OBJECTS (POLOPT_CLASSES|POLOPT_PERMS)
#define POLOPT_AV_RULES (POLOPT_TE_ALLOW|POLOPT_TE_NEVERALLOW|POLOPT_TE_AUDITALLOW|POLOPT_TE_DONTAUDIT)
#define POLOPT_TYPE_RULES (POLOPT_TE_TRANS|POLOPT_TE_MEMBER|POLOPT_TE_CHANGE)
#define POLOPT_TE_RULES (POLOPT_AV_RULES|POLOPT_TYPE_RULES)
#define POLOPT_TE_POLICY (POLOPT_TE_RULES|POLOPT_TYPES)
#define POLOPT_RBAC (POLOPT_ROLES|POLOPT_ROLE_RULES)
#define POLOPT_UNCOND_TE_RULES (POLOPT_TE_RULES)
#define POLOPT_COND_POLICY (POLOPT_COND_BOOLS|POLOPT_COND_EXPR|POLOPT_COND_TE_RULES)
#define POLOPT_ALL (POLOPT_INITIAL_SIDS|POLOPT_OBJECTS|POLOPT_TE_POLICY|POLOPT_RBAC|POLOPT_USERS|POLOPT_COND_POLICY|POLOPT_OTHER)
#define POLOPT_SYMBOLS (POLOPT_CLASSES|POLOPT_PERMS|POLOPT_TYPES|POLOPT_ROLES|POLOPT_USERS|POLOPT_COND_BOOLS)
/* The following define which pass of the parser the components are collected. We
* don't include all the options (like POLOPT_OTHER), but rather only those that
* apol currently makes use of (or will in the near future) */
#define PLOPT_PASS_1 (POLOPT_OBJECTS|POLOPT_TYPES|POLOPT_COND_BOOLS)
#define PLOPT_PASS_2 (POLOPT_RBAC|POLOPT_USERS|POLOPT_TE_RULES|POLOPT_COND_EXPR|POLOPT_COND_TE_RULES)
/* NOTE:Rather than implement a structure like a hash table, or
* better yet "borrow" the policydb from the SE Linux source,
* we instead are using these simplier, albiet more limited
* unsorted dynamic arrays. This of course means that searches
* and insertions are more slow, but in general we're only
* trying to analyze a policy.conf file, and not build an efficient
* runtime policy DB. So we can live with the performance
* issues in trade for being able to incrementally build analysis
* capabilities and to focus on our need to analyze a policy rather
* than enforce it.
*/
/* for when we just store lists of name strings*/
typedef struct name_item {
char *name; /* string */
struct name_item *next;
} name_item_t;
/* IDs for policy components */
#define IDX_INVALID 0x0
#define IDX_TYPE 0x00000001
#define IDX_ATTRIB 0x00000002
#define IDX_ROLE 0x00000004
#define IDX_PERM 0x00000008
#define IDX_COMMON_PERM 0x00000010
#define IDX_OBJ_CLASS 0x00000020
#define IDX_USER 0x00000040
#define IDX_BOOLEAN 0x00000080
#define IDX_BOTH 0x10000000 /* reserve as special indicator for regex rule searches */
#define IDX_SUBTRACT 0x20000000
/* type, attribute, role, perm , common perm list item */
typedef struct ta_item {
int type; /* ID above */
int idx; /* into appropriate list array*/
struct ta_item *next;
} ta_item_t;
/* AVL tree list type ids */
#define AVL_TYPES 0 /* the type array */
#define AVL_ATTRIBS 1 /* the attrib array */
#define AVL_CLASSES 2 /* object classes */
#define AVL_PERMS 3 /* permissions */
#define AVL_INITIAL_SIDS 4 /* initial SID contexts */
#define AVL_COND_BOOLS 5
#define AVL_NUM_TREES 6 /* # of avl trees supported */
/* type decalaration */
typedef struct type_item {
char *name;
name_item_t *aliases;
int num_attribs;
int *attribs; /* dynamic array of attrib indicies*/
} type_item_t;
/* attributes and their associated types */
typedef struct name_a {
char *name;
int num;
int *a; /* dynamic array of type indicies*/
} name_a_t;
typedef struct common_perm {
char *name;
int num_perms;
int *perms; /* dynamic array of idx's into perm array */
} common_perm_t;
/* Object class and permissions */
typedef struct obj_class {
char *name;
int common_perms; /* there may be only one of these */
int num_u_perms;
int *u_perms;
} obj_class_t;
typedef struct security_context {
int user;
int role;
int type;
} security_con_t;
/* IDs of rules */
#define RULE_TE_ALLOW 0 /*AV rule */
#define RULE_AUDITALLOW 1 /*AV rule */
#define RULE_AUDITDENY 2 /*AV rule */
#define RULE_DONTAUDIT 3 /* really the same as auditdeny */
#define RULE_NEVERALLOW 4 /*AV rule */
#define RULE_MAX_AV 4 /*end of AV rule types */
#define RULE_TE_TRANS 5 /*TT rule (type transition|change|member) */
#define RULE_TE_MEMBER 6 /*TT rule */
#define RULE_TE_CHANGE 7 /*TT rule */
#define RULE_MAX_TE 7
#define RULE_CLONE 8 /*clone rule */
#define RULE_ROLE_ALLOW 9 /* Role allow */
#define RULE_ROLE_TRANS 10 /* Role transition */
#define RULE_USER 11 /* User role definition */
#define RULE_MAX 12 /* # of rule IDs defined (1+last rule)*/
#define RULE_INVALID 99
/* flags used to indicate '~' and '*' */
/* used for both AV and TT rules */
#define AVFLAG_NONE 0x00
#define AVFLAG_SRC_TILDA 0x01
#define AVFLAG_SRC_STAR 0x02
#define AVFLAG_TGT_TILDA 0x04
#define AVFLAG_TGT_STAR 0x08
#define AVFLAG_PERM_TILDA 0x40
#define AVFLAG_PERM_STAR 0x80
/* a structure for a AV rule*/
typedef struct av_item {
int type; /* rule type; av rule IDs defined above */
unsigned char flags; /* where we handle '~' and '*' */
bool_t enabled; /* whether the rule is enabled or not for conditionals */
int cond_expr; /* the conditional expression that owns this rule */
bool_t cond_list; /* if cond, TRUE mean on the true list; FALSE the false list; ignore for uncond */
unsigned long lineno; /* line # from policy.conf */
ta_item_t *src_types; /* the domain types/attribs */
ta_item_t *tgt_types; /* the object types/attribs */
ta_item_t *classes;
ta_item_t *perms;
} av_item_t;
/* structure for a type transition (member, change) rule */
typedef struct tt_item {
int type; /* rule type; av rule IDs defined above */
unsigned char flags; /* use AV* flags above, only need SRC, TGT, & CLS */
bool_t enabled; /* whether the rule is enabled or not for conditionals */
int cond_expr; /* the conditional expression that owns this rule */
bool_t cond_list; /* if cond, TRUE mean on the true list; FALSE the false list; ignore for uncond */
unsigned long lineno; /* line # from policy.conf */
ta_item_t *src_types; /* the domain types/attribs */
ta_item_t *tgt_types; /* the object types/attribs */
ta_item_t *classes;
ta_item_t dflt_type; /* the default type; only one of these */
} tt_item_t;
/* a role allow rule; dynamic arrays */
typedef struct role_allow_item {
unsigned char flags; /* use AV* flags above, only need SRC & TGT */
unsigned long lineno; /* line # from policy.conf */
ta_item_t *src_roles;
ta_item_t *tgt_roles;
} role_allow_t;
/* role transition rule; dynamic array */
typedef struct rt_item {
unsigned char flags; /* use AV* flags for src and tgt */
unsigned long lineno; /* line # from policy.conf */
ta_item_t *src_roles;
ta_item_t *tgt_types;
ta_item_t trans_role; /* role to transition to */
} rt_item_t;
/* clone rule structure; we store the rule and then resolve its semanitcs as necessary */
typedef struct cln_item {
unsigned long lineno; /* line # from policy.conf */
int src; /* idx of src tpye...must be a type (not a type attribute) */
int tgt; /* idx of target type... " " " */
struct cln_item *next;
} cln_item_t;
/* initial SIDs and their context */
typedef struct initial_sid {
char *name;
__u32 sid;
security_con_t *scontext;
} initial_sid_t;
/* type alias array
* TODO: see comments in add_alias() in policy.c */
typedef struct alias_item {
char *name;
int type; /* assoicated type */
} alias_item_t;
/* IDs for DYNAMIC array only (e.g., clones is not a dynamic array, but rather a linked list*/
#define POL_LIST_TYPE 0
#define POL_LIST_ATTRIB 1
#define POL_LIST_AV_ACC 2
#define POL_LIST_AV_AU 3
#define POL_LIST_TE_TRANS 4
#define POL_LIST_ROLES 5
#define POL_LIST_ROLE_ALLOW 6
#define POL_LIST_ROLE_TRANS 7
#define POL_LIST_PERMS 8
#define POL_LIST_COMMON_PERMS 9
#define POL_LIST_OBJ_CLASSES 10
#define POL_LIST_ALIAS 11
#define POL_LIST_INITIAL_SIDS 12
#define POL_LIST_COND_BOOLS 13
#define POL_LIST_COND_EXPRS 14
#define POL_LIST_USERS 15
#define POL_NUM_LISTS 16
/* These are our weak indicators of which version of policy we're using.
* The syntax and semantics of a policy are in great flux, and many changes
* are being implemented. We're trying to use this with older and new
* policies, so we try to keep some degree of backwards compatability.
* During parsning we try to infer which version we have and set this
* indicator accordingly.
*/
#define POL_VER_UNKNOWN 0
#define POL_VER_PREJUL2002 1 /* all versions befor the Jul
* 2002 changes */
#define POL_VER_PRE_11 1 /* same as POL_VER_PREJUL2002 */
#define POL_VER_JUL2002 2 /* all version after Jul 2002 until next date */
#define POL_VER_11 2 /* same as POL_VER_JUL2002 */
#define POL_VER_12 2 /* same as POL_VER_JUL2002; no apparent syntax changes b/w 11 and 12 */
#define POL_VER_15 3 /* somewhere between v 12 and 15! */
#define POL_VER_16 4 /* conditional policy extensions */
#define POL_VER_COND 4 /* same */
#define POL_VER_17 5
#define POL_VER_18 6
#define POL_VER_MAX 6
/* Policy type macros */
#define POL_TYPE_UNKNOWN 0x00000000
#define POL_TYPE_BINARY 0x00000001
#define POL_TYPE_SOURCE 0x00000002
/**************************************/
/* This is an actual policy data base */
typedef struct policy {
int version; /* weak indicator of policy version, see comments above */
unsigned int opts; /* indicates which parts of the policy are included in this policy */
unsigned int policy_type; /* policy type (binary or source) */
int num_types; /* array current ptr */
int num_attribs; /* " " */
int num_av_access; /* " " */
int num_av_audit; /* " " */
int num_te_trans; /* " " */
int num_cond_bools; /* " " */
int num_cond_exprs; /* " " */
int num_roles; /* " " */
int num_role_allow; /* " " */
int num_users; /* " " */
int num_role_trans; /* " " */
int num_perms; /* " " */
int num_common_perms;
int num_obj_classes;
int num_aliases;
int num_initial_sids;
int rule_cnt[RULE_MAX]; /* statics on # of various rules */
int list_sz[POL_NUM_LISTS]; /* keep track of dynamic array sizes */
/* AVL trees */
avl_tree_t tree[AVL_NUM_TREES]; /* AVL tree heads */
/* the lists */
/* Permissions and Object Classes */
char **perms; /* defined access permissions (ARRAY) */
common_perm_t *common_perms; /* associates of perms (ARRAY) */
obj_class_t *obj_classes; /* define objects and their perms (ARRAY) */
/* Type Enforcement Rules */
type_item_t *types; /* defined types and their attribs (ARRAY)*/
alias_item_t *aliases; /* separate index into type aliases (ARRAY) */
name_a_t *attribs; /* defined attribs and their types (ARRAY)*/
av_item_t *av_access; /* allow and neverallow rules; we expect lots of these (ARRAY)*/
av_item_t *av_audit; /* audit and notify rules (ARRAY)*/
tt_item_t *te_trans; /* type transition|member|change rules (ARRAY)*/
cln_item_t *clones; /* clone rules (LLIST) */
/* Misc. Policy */
initial_sid_t *initial_sids; /* initial SIDs and their context (ARRAY) */
/* Conditional Policy */
cond_bool_t *cond_bools; /* conditional policy booleans (ARRAY) */
cond_expr_item_t *cond_exprs; /* conditional expressions (ARRAY) */
/* Role-based access control rules */
name_a_t *roles; /* roles (ARRAY)*/
role_allow_t *role_allow; /* role allow rules (ARRAY) */
rt_item_t *role_trans; /* role transition rules (ARRAY) */
/* User rules */
name_a_t *users; /* users (ARRAY) */
/* Permissions map (which is used for information flow analysis) */
struct classes_perm_map *pmap; /* see perm-map.h */
/* Semantic hash table; this structure is created when necessary (NULL ptr means its necessary)
* and is used to semantically check TE (av and type) rules in policy */
avh_t avh; /* TE rule hash table */
} policy_t;
/*
* obj_perm_set_t allows the inclusion/exclusion
* of individual permissions on object classes or entire object
* classes.
*/
typedef struct obj_perm_set {
int obj_class; /* index policy->obj_classes */
int num_perms;
int *perms; /* index of an object class' permission */
} obj_perm_set_t;
/* used for whichlist arguments */
#define SRC_LIST 0x0001
#define TGT_LIST 0x0002
#define BOTH_LISTS 0x0003 /* both src and tgt */
#define DEFAULT_LIST 0x0004 /* this is the THIRD type/role for the "transitions" rules only */
#define ALL_LISTS 0x0007 /* all lists */
/*
* exported prototypes and macros
*/
/* General */
int init_policy( policy_t **policy_ptr);
int free_policy(policy_t **policy_ptr);
int set_policy_version(int ver, policy_t *policy);
const char* get_policy_version_name(int policy_version);
int get_policy_version_num(policy_t *policy);
#define is_binary_policy(policy) (policy != NULL ? (policy->policy_type & POL_TYPE_BINARY) : 0)
#define is_valid_policy_version(version) (version >= POL_VER_UNKNOWN && version <= POL_VER_MAX)
#define get_policy_version_id(policy) (policy != NULL ? policy->version : -1)
/* DB updates/additions/changes */
#define add_common_perm_to_class(cls_idx, cp_idx, policy) ((is_valid_obj_class_idx(cls_idx, policy) && is_valid_common_perm_idx(cp_idx, policy)) ? policy->obj_classes[cls_idx].common_perms = cp_idx: -1 )
int add_type(char *type, policy_t *policy);
int add_alias(int type_idx, char *alias, policy_t *policy);
int add_attrib_to_type(int type_idx, char *token, policy_t *policy);
int insert_ta_item(ta_item_t *newitem, ta_item_t **list);
int add_name(char *name, name_item_t **list);
int add_clone_rule(int src, int tgt, unsigned long lineno, policy_t *policy);
int add_attrib(bool_t with_type, int type_idx, policy_t *policy, char *attrib);
int add_type_to_role(int type_idx, int role_idx, policy_t *policy);
int add_class(char *classname, policy_t *policy);
int add_perm_to_class(int cls_idx, int p_idx, policy_t *policy);
int add_common_perm(char *name, policy_t *policy);
int add_perm_to_common(int comm_perm_idx, int perm_idx, policy_t *policy);
int add_perm(char *perm, policy_t *policy);
int add_cond_bool(char *name, bool_t state, policy_t *policy);
int add_cond_expr_item(cond_expr_t *expr, cond_rule_list_t *true_list, cond_rule_list_t *false_list, policy_t *policy);
av_item_t *add_new_av_rule(int rule_type, policy_t *policy);
tt_item_t *add_new_tt_rule(int rule_type, policy_t *policy);
/* Object Classes */
#define num_obj_classes(policy) (policy != NULL ? policy->num_obj_classes : -1)
#define is_valid_obj_class(policy, idx) is_valid_obj_class_idx(idx, policy)
#define does_class_use_common_perm(cls_idx, cp_idx, policy) ((is_valid_obj_class_idx(cls_idx,policy) && is_valid_common_perm_idx(cp_idx,policy)) ? (cp_idx == policy->obj_classes[cls_idx].common_perms) : FALSE)
#define num_of_class_perms(cls_idx, policy) (is_valid_obj_class_idx(cls_idx,policy) ? \
policy->obj_classes[cls_idx].num_u_perms + \
(is_valid_common_perm_idx(policy->obj_classes[cls_idx].common_perms, policy) ? \
policy->common_perms[policy->obj_classes[cls_idx].common_perms].num_perms : 0 ) \
: -1 )
int get_obj_class_name(int idx, char **name, policy_t *policy);
int get_obj_class_idx(const char *name, policy_t *policy);
int get_num_perms_for_obj_class(int clss_idx, policy_t *policy);
int get_obj_class_common_perm_idx(int cls_idx, policy_t *policy);
int get_obj_class_perm_idx(int cls_idx, int idx, policy_t *policy);
int get_obj_class_perms(int obj_class, int *num_perms, int **perms, policy_t *policy);
int get_obj_class_nth_perm_idx(int cls_idx, int n, policy_t *policy);
/* Permissions */
#define is_valid_perm_idx(idx, policy) (policy != NULL && (idx >= 0 && idx < policy->num_perms))
#define is_valid_common_perm_idx(idx, policy) (idx >= 0 && idx < policy->num_common_perms)
#define num_common_perm_perms(idx, policy) (is_valid_common_perm_idx(idx, policy) ? \
policy->common_perms[idx].num_perms : -1)
#define num_perms(policy) (policy != NULL ? policy->num_perms : -1)
#define num_common_perms(policy) (policy != NULL ? policy->num_common_perms : -1)
bool_t is_valid_perm_for_obj_class(policy_t *policy, int class, int perm);
int get_common_perm_name(int idx, char **name, policy_t *policy);
int get_common_perm_perm_name(int cp_idx, int *p_idx, char **name, policy_t *policy);
int get_common_perm_idx(const char *name, policy_t *policy);
int get_perm_name(int idx, char **name, policy_t *policy);
int get_perm_idx(const char *name, policy_t *policy);
bool_t does_common_perm_use_perm(int cp_idx, int perm_idx, policy_t *policy);
bool_t does_class_use_perm(int cls_idx, int perm_idx, policy_t *policy);
int get_perm_list_by_classes(bool_t union_flag, int num_classes, const char **classes, int *num_perms, int **perms, policy_t *policy);
bool_t does_class_indirectly_use_perm(int cls_idx, int perm_idx, policy_t *policy);
/* Initial SIDs */
#define is_valid_initial_sid_idx(idx, policy) (policy != NULL && (idx >= 0 && idx < policy->num_initial_sids))
#define num_initial_sids(policy) (policy != NULL ? policy->num_initial_sids : -1)
int add_initial_sid(char *name, policy_t *policy);
int add_initial_sid2(char *name, __u32 sid, policy_t *policy);
int get_initial_sid_idx(const char *name, policy_t *policy);
int add_initial_sid_context(int idx, security_con_t *scontext, policy_t *policy);
int get_initial_sid_name(int idx, char **name, policy_t *policy);
int search_initial_sids_context(int **isids, int *num_isids, const char *user, const char *role, const char *type, policy_t *policy);
/* Types and attributes */
#define num_types(policy) (policy != NULL ? policy->num_types : -1)
#define num_attribs(policy) (policy != NULL ? policy->num_attribs : -1)
#define is_valid_attrib_idx(idx, policy) (policy != NULL && (idx >= 0 && idx < policy->num_attribs))
#define is_valid_type_idx(idx, policy) (policy != NULL && (idx >= 0 && idx < policy->num_types))
bool_t is_valid_type(policy_t *policy, int type, bool_t self_allowed);
bool_t is_valid_obj_class(policy_t *policy, int obj_class);
int add_type(char *type, policy_t *policy);
int add_alias(int type_idx, char *alias, policy_t *policy);
int add_attrib_to_type(int type_idx, char *token, policy_t *policy);
int init_policy( policy_t **policy_ptr);
int free_policy(policy_t **policy_ptr);
int get_type_idx(const char *name, policy_t *policy);
int get_type_idx_by_alias_name(const char *alias, policy_t *policy);
int get_attrib_idx(const char *name, policy_t *policy);
int get_type_or_attrib_idx(const char *name, int *idx_type, policy_t *policy);
int get_type_name(int idx, char **name, policy_t *policy);
int get_attrib_name(int idx, char **name, policy_t *policy);
int get_type_attribs(int type, int *num_attribs, int **attribs, policy_t *policy);
int get_type_users(int type, int *num_users, int **users, policy_t *policy);
int get_type_roles(int type, int *num_roles, int **roles, policy_t *policy);
int get_attrib_types(int attrib, int *num_types, int **types, policy_t *policy);
bool_t is_attrib_in_type(const char *attrib, int type_idx, policy_t *policy);
bool_t is_type_in_attrib(const char *type, int attrib_idx, policy_t *policy);
/* conditional policy */
#define is_valid_cond_bool_idx(idx, policy) (policy != NULL && (idx >= 0 && idx < policy->num_cond_bools))
#define is_valid_cond_expr_idx(idx, policy) (policy != NULL && (idx >= 0 && idx < num_cond_exprs(policy)))
#define num_cond_bools(policy) (policy != NULL ? policy->num_cond_bools : -1)
#define num_cond_exprs(policy) (policy != NULL ? policy->num_cond_exprs : -1)
#define get_cond_bool_default_state(idx, policy) (is_valid_cond_bool_idx(idx, policy) ? policy->cond_bools[idx].default_state : 0)
int get_cond_bool_idx(const char *name, policy_t *policy);
int get_cond_bool_name(int idx, char **name, policy_t *policy);
int set_cond_bool_val(int bool, bool_t state, policy_t *policy);
int get_cond_bool_val(const char *name, bool_t *val, policy_t *policy);
int get_cond_bool_val_idx(int idx, bool_t *val, policy_t *policy);
int get_cond_bool_default_val(const char *name, bool_t *val, policy_t *policy);
int get_cond_bool_default_val_idx(int idx, bool_t *val, policy_t *policy);
int update_cond_expr_items(policy_t *policy);
void add_cond_expr_item_helper(int cond_expr, bool_t cond_list, cond_rule_list_t *list, policy_t *policy);
int set_cond_bool_vals_to_default(policy_t *policy);
/* users */
#define num_users(policy) (policy != NULL ? policy->rule_cnt[RULE_USER] : -1)
#define is_valid_user_idx(idx, policy) (policy != NULL && (idx >= 0 && idx < policy->num_users))
int add_role_to_user(int role_idx, int user_idx, policy_t *policy);
int add_user(char *user, policy_t *policy);
bool_t does_user_have_role(int user, int role, policy_t *policy);
bool_t is_role_in_user(const char *role, int user_idx, policy_t *policy);
bool_t does_user_exists(const char *name, policy_t *policy);
int get_user_idx(const char *name, policy_t *policy);
int get_user_name2(int idx, char **name, policy_t *policy);
int get_user_roles(int user, int *num_roles, int **roles, policy_t *policy);
/* roles */
#define is_valid_role_idx(idx, policy) (policy != NULL && (idx >= 0 && idx < policy->num_roles))
#define num_roles(policy) (policy != NULL ? policy->num_roles : -1)
int get_role_types(int role, int *num_types, int **types, policy_t *policy);
int add_role(char *role, policy_t *policy);
int get_role_name(int idx, char **name, policy_t *policy);
int get_role_idx(const char *name, policy_t *policy);
bool_t does_role_use_type(int role, int type, policy_t *policy);
bool_t is_type_in_role(const char *type, int role_idx, policy_t *policy);
/* TE rules */
/* if rule_type == 1, then access rules, otherwise audit rules */
#define is_valid_av_rule_idx(idx, rule_type, policy) (idx >= 0 && ( (rule_type == 1) ? idx < policy->num_av_access : idx < policy->num_av_audit) )
#define is_valid_tt_rule_idx(idx, policy) (idx >= 0 && idx < policy->num_te_trans)
#define is_cond_rule(rule) (rule.cond_expr >= 0)
#define is_av_rule_type(type) ((type >= RULE_TE_ALLOW) && (type <= RULE_MAX_AV))
#define is_av_access_rule_type(type) ((type == RULE_TE_ALLOW) || (type == RULE_NEVERALLOW))
#define is_av_audit_rule_type(type) ((type >= RULE_AUDITALLOW) && (type <= RULE_MAX_AV))
#define is_type_rule_type(type) ((type >= RULE_TE_TRANS) && (type <= RULE_MAX_TE))
#define is_te_rule_type(type) ((type >= RULE_TE_ALLOW) && (type <= RULE_MAX_TE))
int extract_types_from_te_rule(int rule_idx, int rule_type, unsigned char whichlist, int **types, int *num_types, policy_t *policy);
int extract_obj_classes_from_te_rule(int rule_idx, int rule_type, int **obj_classes, int *num_obj_classes, policy_t *policy);
int extract_perms_from_te_rule(int rule_idx, int rule_type, int **perms, int *num_perms, policy_t *policy);
int does_av_rule_idx_use_type(int rule_idx, unsigned char rule_type, int type_idx, int ta_type,
unsigned char whichlist, bool_t do_indirect, policy_t *policy);
int does_av_rule_use_type(int idx, int type, unsigned char whichlist, bool_t do_indirect,
av_item_t *rule, int *cnt, policy_t *policy);
int does_tt_rule_use_type(int idx, int type, unsigned char whichlist, bool_t do_indirect, tt_item_t *rule, int *cnt, policy_t *policy);
bool_t does_av_rule_use_classes(int rule_idx, int rule_type, int *cls_idxs, int num_cls_idxs, policy_t *policy);
bool_t does_av_rule_use_perms(int rule_idx, int rule_type, int *perm_idxs, int num_perm_idxs, policy_t *policy);
bool_t does_tt_rule_use_classes(int rule_idx, int *cls_idxs, int num_cls_idxs, policy_t *policy);
/* Role rules */
bool_t does_role_trans_use_role(int idx, unsigned char whichlist, bool_t do_indirect, rt_item_t *rule, int *cnt);
bool_t does_role_allow_use_role(int src, unsigned char whichlist, bool_t do_indirect, role_allow_t *rule, int *cnt);
int does_role_trans_use_ta(int idx, int type, bool_t do_indirect, rt_item_t *rule, int *cnt, policy_t *policy);
/* Generic function prototypes for adding object class options and end types to a policy query. */
int apol_obj_perm_set_init(obj_perm_set_t *it);
void apol_free_obj_perm_set_data(obj_perm_set_t *it);
int apol_add_class_to_obj_perm_set_list(obj_perm_set_t **obj_options,
int *num_obj_options, int obj_class);
int apol_add_perm_to_obj_perm_set_list(obj_perm_set_t **obj_options,
int *num_obj_options, int obj_class,
int perm);
/* misc */
bool_t does_clone_rule_use_type(int idx, int type, unsigned char whichlist, cln_item_t *rule,
int *cnt, policy_t *policy);
int get_rule_lineno(int rule_idx, int rule_type, policy_t *policy);
int get_ta_item_name(ta_item_t *ta, char **name, policy_t *policy);
int free_ta_list(ta_item_t *list);
int get_complement(ta_item_t *, int, int *, int **);
/**************/
/* these are INTERNAL functions only; allow direct access to type/attrib name string
* stored within the policy db. They are exported only for use by other internal
* policy db modules.
*
* THE CALLER SHOULD NOT FREE OR OTHERWISE MODIFY THE RETURNED STRING!!!!
*/
int _get_attrib_name_ptr(int idx, char **name, policy_t *policy);
int _get_type_name_ptr(int idx, char **name, policy_t *policy);
#endif /*_APOLICY_POLICY_H_*/
|