You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
840 B
26 lines
840 B
7 months ago
|
|
||
|
#ifdef __cplusplus
|
||
|
extern "C" {
|
||
|
#endif
|
||
|
|
||
|
int get_allow_rule(char *out, size_t len, void *policydbp, void *avtab_iterp);
|
||
|
void *load_policy(const char *policy_path);
|
||
|
void destroy_policy(void *policydbp);
|
||
|
void *init_avtab(void *policydbp);
|
||
|
void *init_cond_avtab(void *policydbp);
|
||
|
void destroy_avtab(void *avtab_iterp);
|
||
|
void *init_expanded_avtab(void *policydbp);
|
||
|
void *init_expanded_cond_avtab(void *policydbp);
|
||
|
void destroy_expanded_avtab(void *avtab_iterp);
|
||
|
int get_type(char *out, size_t max_size, void *policydbp, void *type_iterp);
|
||
|
void *init_type_iter(void *policydbp, const char *type, bool is_attr);
|
||
|
void destroy_type_iter(void *type_iterp);
|
||
|
void *init_genfs_iter(void *policydbp);
|
||
|
int get_genfs(char *out, size_t max_size, void *policydbp, void *genfs_iterp);
|
||
|
void destroy_genfs_iter(void *genfs_iterp);
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
}
|
||
|
#endif
|
||
|
|