1*2d543d20SAndroid Build Coastguard Worker /* 2*2d543d20SAndroid Build Coastguard Worker * Copyright 2011 Tresys Technology, LLC. All rights reserved. 3*2d543d20SAndroid Build Coastguard Worker * 4*2d543d20SAndroid Build Coastguard Worker * Redistribution and use in source and binary forms, with or without 5*2d543d20SAndroid Build Coastguard Worker * modification, are permitted provided that the following conditions are met: 6*2d543d20SAndroid Build Coastguard Worker * 7*2d543d20SAndroid Build Coastguard Worker * 1. Redistributions of source code must retain the above copyright notice, 8*2d543d20SAndroid Build Coastguard Worker * this list of conditions and the following disclaimer. 9*2d543d20SAndroid Build Coastguard Worker * 10*2d543d20SAndroid Build Coastguard Worker * 2. Redistributions in binary form must reproduce the above copyright notice, 11*2d543d20SAndroid Build Coastguard Worker * this list of conditions and the following disclaimer in the documentation 12*2d543d20SAndroid Build Coastguard Worker * and/or other materials provided with the distribution. 13*2d543d20SAndroid Build Coastguard Worker * 14*2d543d20SAndroid Build Coastguard Worker * THIS SOFTWARE IS PROVIDED BY TRESYS TECHNOLOGY, LLC ``AS IS'' AND ANY EXPRESS 15*2d543d20SAndroid Build Coastguard Worker * OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF 16*2d543d20SAndroid Build Coastguard Worker * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO 17*2d543d20SAndroid Build Coastguard Worker * EVENT SHALL TRESYS TECHNOLOGY, LLC OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, 18*2d543d20SAndroid Build Coastguard Worker * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, 19*2d543d20SAndroid Build Coastguard Worker * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 20*2d543d20SAndroid Build Coastguard Worker * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF 21*2d543d20SAndroid Build Coastguard Worker * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE 22*2d543d20SAndroid Build Coastguard Worker * OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF 23*2d543d20SAndroid Build Coastguard Worker * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 24*2d543d20SAndroid Build Coastguard Worker * 25*2d543d20SAndroid Build Coastguard Worker * The views and conclusions contained in the software and documentation are those 26*2d543d20SAndroid Build Coastguard Worker * of the authors and should not be interpreted as representing official policies, 27*2d543d20SAndroid Build Coastguard Worker * either expressed or implied, of Tresys Technology, LLC. 28*2d543d20SAndroid Build Coastguard Worker */ 29*2d543d20SAndroid Build Coastguard Worker 30*2d543d20SAndroid Build Coastguard Worker #ifndef CIL_VERIFY_H_ 31*2d543d20SAndroid Build Coastguard Worker #define CIL_VERIFY_H_ 32*2d543d20SAndroid Build Coastguard Worker 33*2d543d20SAndroid Build Coastguard Worker #include <stdint.h> 34*2d543d20SAndroid Build Coastguard Worker 35*2d543d20SAndroid Build Coastguard Worker #include "cil_internal.h" 36*2d543d20SAndroid Build Coastguard Worker #include "cil_flavor.h" 37*2d543d20SAndroid Build Coastguard Worker #include "cil_tree.h" 38*2d543d20SAndroid Build Coastguard Worker #include "cil_list.h" 39*2d543d20SAndroid Build Coastguard Worker 40*2d543d20SAndroid Build Coastguard Worker enum cil_syntax { 41*2d543d20SAndroid Build Coastguard Worker CIL_SYN_STRING = 1 << 0, 42*2d543d20SAndroid Build Coastguard Worker CIL_SYN_LIST = 1 << 1, 43*2d543d20SAndroid Build Coastguard Worker CIL_SYN_EMPTY_LIST = 1 << 2, 44*2d543d20SAndroid Build Coastguard Worker CIL_SYN_N_LISTS = 1 << 3, 45*2d543d20SAndroid Build Coastguard Worker CIL_SYN_N_STRINGS = 1 << 4, 46*2d543d20SAndroid Build Coastguard Worker CIL_SYN_END = 1 << 5 47*2d543d20SAndroid Build Coastguard Worker }; 48*2d543d20SAndroid Build Coastguard Worker 49*2d543d20SAndroid Build Coastguard Worker struct cil_args_verify { 50*2d543d20SAndroid Build Coastguard Worker struct cil_db *db; 51*2d543d20SAndroid Build Coastguard Worker struct cil_complex_symtab *csymtab; 52*2d543d20SAndroid Build Coastguard Worker int *avrule_cnt; 53*2d543d20SAndroid Build Coastguard Worker int *handleunknown; 54*2d543d20SAndroid Build Coastguard Worker int *mls; 55*2d543d20SAndroid Build Coastguard Worker int *nseuserdflt; 56*2d543d20SAndroid Build Coastguard Worker int *pass; 57*2d543d20SAndroid Build Coastguard Worker }; 58*2d543d20SAndroid Build Coastguard Worker 59*2d543d20SAndroid Build Coastguard Worker int cil_verify_name(const struct cil_db *db, const char *name, enum cil_flavor flavor); 60*2d543d20SAndroid Build Coastguard Worker int __cil_verify_syntax(struct cil_tree_node *parse_current, enum cil_syntax s[], size_t len); 61*2d543d20SAndroid Build Coastguard Worker int cil_verify_expr_syntax(struct cil_tree_node *current, enum cil_flavor op, enum cil_flavor expr_flavor); 62*2d543d20SAndroid Build Coastguard Worker int cil_verify_constraint_leaf_expr_syntax(enum cil_flavor l_flavor, enum cil_flavor r_flavor, enum cil_flavor op, enum cil_flavor expr_flavor); 63*2d543d20SAndroid Build Coastguard Worker int cil_verify_constraint_expr_syntax(struct cil_tree_node *current, enum cil_flavor op); 64*2d543d20SAndroid Build Coastguard Worker int cil_verify_conditional_blocks(struct cil_tree_node *current); 65*2d543d20SAndroid Build Coastguard Worker int cil_verify_decl_does_not_shadow_macro_parameter(struct cil_macro *macro, struct cil_tree_node *node, const char *name); 66*2d543d20SAndroid Build Coastguard Worker int __cil_verify_ranges(struct cil_list *list); 67*2d543d20SAndroid Build Coastguard Worker int cil_verify_completed_ordered_list(struct cil_list *complete, struct cil_list *ordered_lists); 68*2d543d20SAndroid Build Coastguard Worker int __cil_verify_ordered_node_helper(struct cil_tree_node *node, uint32_t *finished, void *extra_args); 69*2d543d20SAndroid Build Coastguard Worker int __cil_verify_ordered(struct cil_tree_node *current, enum cil_flavor flavor); 70*2d543d20SAndroid Build Coastguard Worker int __cil_verify_initsids(struct cil_list *sids); 71*2d543d20SAndroid Build Coastguard Worker int __cil_verify_senscat(struct cil_sens *sens, struct cil_cat *cat); 72*2d543d20SAndroid Build Coastguard Worker int __cil_verify_helper(struct cil_tree_node *node, __attribute__((unused)) uint32_t *finished, void *extra_args); 73*2d543d20SAndroid Build Coastguard Worker int __cil_pre_verify_helper(struct cil_tree_node *node, __attribute__((unused)) uint32_t *finished, void *extra_args); 74*2d543d20SAndroid Build Coastguard Worker 75*2d543d20SAndroid Build Coastguard Worker #endif 76