Magisk/magiskpolicy.h

28 lines
680 B
C
Raw Normal View History

2017-04-15 11:26:29 +00:00
/* magiskpolicy.h - Public API for policy patching
*/
2017-01-31 16:51:45 +00:00
2017-04-15 11:26:29 +00:00
#ifndef _MAGISKPOLICY_H
#define _MAGISKPOLICY_H
2017-01-31 16:51:45 +00:00
#include <stdlib.h>
2017-02-03 20:24:22 +00:00
2017-04-15 11:26:29 +00:00
#define ALL NULL
2017-01-31 16:51:45 +00:00
// Handy functions
2017-04-15 11:26:29 +00:00
int sepol_allow(char *s, char *t, char *c, char *p);
int sepol_deny(char *s, char *t, char *c, char *p);
int sepol_auditallow(char *s, char *t, char *c, char *p);
int sepol_auditdeny(char *s, char *t, char *c, char *p);
int sepol_typetrans(char *s, char *t, char *c, char *d, char *o);
int sepol_create(char *s);
int sepol_permissive(char *s);
int sepol_enforce(char *s);
int sepol_attradd(char *s, char *a);
int sepol_exists(char *source);
2017-01-31 16:51:45 +00:00
// Built in rules
2017-04-15 11:26:29 +00:00
void sepol_full_rules();
void sepol_min_rules();
2017-01-31 16:51:45 +00:00
#endif