2017-11-29 06:09:35 +08:00
|
|
|
/* magiskpolicy.h - Public API for policy patching
|
|
|
|
*/
|
|
|
|
|
2019-06-30 19:09:31 -07:00
|
|
|
#pragma once
|
2017-11-29 06:09:35 +08:00
|
|
|
|
|
|
|
#include <stdlib.h>
|
2019-03-15 06:17:37 -04:00
|
|
|
#include <selinux.h>
|
2017-11-29 06:09:35 +08:00
|
|
|
|
|
|
|
#define ALL NULL
|
|
|
|
|
|
|
|
// policydb functions
|
2019-03-15 06:17:37 -04:00
|
|
|
int load_policydb(const char *file);
|
|
|
|
int load_split_cil();
|
2018-07-21 05:12:22 +08:00
|
|
|
int compile_split_cil();
|
2019-03-15 06:17:37 -04:00
|
|
|
int dump_policydb(const char *file);
|
2017-11-29 06:09:35 +08:00
|
|
|
void destroy_policydb();
|
|
|
|
|
|
|
|
// Handy functions
|
2018-11-08 04:20:16 -05:00
|
|
|
int sepol_allow(const char *s, const char *t, const char *c, const char *p);
|
|
|
|
int sepol_deny(const char *s, const char *t, const char *c, const char *p);
|
|
|
|
int sepol_auditallow(const char *s, const char *t, const char *c, const char *p);
|
2018-11-29 06:42:04 -05:00
|
|
|
int sepol_dontaudit(const char *s, const char *t, const char *c, const char *p);
|
2018-11-29 03:46:29 -05:00
|
|
|
int sepol_typetrans(const char *s, const char *t, const char *c, const char *d);
|
|
|
|
int sepol_typechange(const char *s, const char *t, const char *c, const char *d);
|
|
|
|
int sepol_typemember(const char *s, const char *t, const char *c, const char *d);
|
|
|
|
int sepol_nametrans(const char *s, const char *t, const char *c, const char *d, const char *o);
|
2018-11-08 04:20:16 -05:00
|
|
|
int sepol_allowxperm(const char *s, const char *t, const char *c, const char *range);
|
|
|
|
int sepol_auditallowxperm(const char *s, const char *t, const char *c, const char *range);
|
|
|
|
int sepol_dontauditxperm(const char *s, const char *t, const char *c, const char *range);
|
|
|
|
int sepol_create(const char *s);
|
|
|
|
int sepol_permissive(const char *s);
|
|
|
|
int sepol_enforce(const char *s);
|
|
|
|
int sepol_attradd(const char *s, const char *a);
|
|
|
|
int sepol_exists(const char *source);
|
2017-11-29 06:09:35 +08:00
|
|
|
|
|
|
|
// Built in rules
|
|
|
|
void sepol_magisk_rules();
|