You've already forked KernelSU
mirror of
https://github.com/tiann/KernelSU.git
synced 2025-08-27 23:46:34 +00:00
compile success for libsepl in kernel
This commit is contained in:
@@ -0,0 +1,25 @@
|
||||
# Installation directories.
|
||||
PREFIX ?= /usr
|
||||
BINDIR ?= $(PREFIX)/bin
|
||||
|
||||
CFLAGS ?= -Wall -Werror
|
||||
override CFLAGS += -I../include
|
||||
override LDFLAGS += -L../src
|
||||
override LDLIBS += -lsepol
|
||||
|
||||
TARGETS=$(patsubst %.c,%,$(sort $(wildcard *.c)))
|
||||
|
||||
all: $(TARGETS)
|
||||
|
||||
install: all
|
||||
-mkdir -p $(DESTDIR)$(BINDIR)
|
||||
install -m 755 $(TARGETS) $(DESTDIR)$(BINDIR)
|
||||
|
||||
clean:
|
||||
-rm -f $(TARGETS) *.o
|
||||
|
||||
indent:
|
||||
../../scripts/Lindent $(wildcard *.[ch])
|
||||
|
||||
relabel:
|
||||
|
||||
@@ -0,0 +1,44 @@
|
||||
#include <sepol/sepol.h>
|
||||
#include <unistd.h>
|
||||
#include <sys/types.h>
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
#include <errno.h>
|
||||
|
||||
void usage(char*) __attribute__((noreturn));
|
||||
|
||||
void usage(char *progname)
|
||||
{
|
||||
printf("usage: %s policy context\n", progname);
|
||||
exit(1);
|
||||
}
|
||||
|
||||
int main(int argc, char **argv)
|
||||
{
|
||||
FILE *fp;
|
||||
|
||||
if (argc != 3)
|
||||
usage(argv[0]);
|
||||
|
||||
fp = fopen(argv[1], "r");
|
||||
if (!fp) {
|
||||
fprintf(stderr, "Can't open '%s': %s\n",
|
||||
argv[1], strerror(errno));
|
||||
exit(1);
|
||||
}
|
||||
if (sepol_set_policydb_from_file(fp) < 0) {
|
||||
fprintf(stderr, "Error while processing %s: %s\n",
|
||||
argv[1], strerror(errno));
|
||||
exit(1);
|
||||
}
|
||||
fclose(fp);
|
||||
|
||||
if (sepol_check_context(argv[2]) < 0) {
|
||||
fprintf(stderr, "%s is not valid\n", argv[2]);
|
||||
exit(1);
|
||||
}
|
||||
|
||||
printf("%s is valid\n", argv[2]);
|
||||
exit(0);
|
||||
}
|
||||
@@ -0,0 +1,130 @@
|
||||
#include <errno.h>
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
|
||||
#include <sepol/policydb/services.h>
|
||||
#include <sepol/sepol.h>
|
||||
|
||||
|
||||
int main(int argc, char *argv[])
|
||||
{
|
||||
FILE *fp;
|
||||
sepol_security_id_t ssid, tsid;
|
||||
sepol_security_class_t tclass;
|
||||
const char *permlist;
|
||||
sepol_access_vector_t av;
|
||||
struct sepol_av_decision avd;
|
||||
unsigned int reason;
|
||||
char *reason_buf;
|
||||
int i;
|
||||
|
||||
if (argc != 6) {
|
||||
printf("usage: %s policy source_context target_context class permission[,permission2[,...]]\n", argv[0]);
|
||||
return 1;
|
||||
}
|
||||
|
||||
fp = fopen(argv[1], "r");
|
||||
if (!fp) {
|
||||
fprintf(stderr, "Can't open policy %s: %s\n", argv[1], strerror(errno));
|
||||
return 1;
|
||||
}
|
||||
if (sepol_set_policydb_from_file(fp) < 0) {
|
||||
fprintf(stderr, "Error while processing policy %s: %s\n", argv[1], strerror(errno));
|
||||
fclose(fp);
|
||||
return 1;
|
||||
}
|
||||
fclose(fp);
|
||||
|
||||
if (sepol_context_to_sid(argv[2], strlen(argv[2]), &ssid) < 0) {
|
||||
fprintf(stderr, "Invalid source context %s\n", argv[2]);
|
||||
return 1;
|
||||
}
|
||||
|
||||
if (sepol_context_to_sid(argv[3], strlen(argv[3]), &tsid) < 0) {
|
||||
fprintf(stderr, "Invalid target context %s\n", argv[3]);
|
||||
return 1;
|
||||
}
|
||||
|
||||
if (sepol_string_to_security_class(argv[4], &tclass) < 0) {
|
||||
fprintf(stderr, "Invalid security class %s\n", argv[4]);
|
||||
return 1;
|
||||
}
|
||||
|
||||
permlist = argv[5];
|
||||
do {
|
||||
char *tmp = NULL;
|
||||
const char *perm;
|
||||
const char *delim = strchr(permlist, ',');
|
||||
|
||||
if (delim) {
|
||||
tmp = strndup(permlist, delim - permlist);
|
||||
if (!tmp) {
|
||||
fprintf(stderr, "Failed to allocate memory: %s\n", strerror(errno));
|
||||
return 1;
|
||||
}
|
||||
}
|
||||
|
||||
perm = tmp ? tmp : permlist;
|
||||
|
||||
if (sepol_string_to_av_perm(tclass, perm, &av) < 0) {
|
||||
fprintf(stderr, "Invalid permission %s for security class %s: %s\n", perm, argv[4], strerror(errno));
|
||||
free(tmp);
|
||||
return 1;
|
||||
}
|
||||
|
||||
free(tmp);
|
||||
|
||||
permlist = strchr(permlist, ',');
|
||||
} while (permlist++);
|
||||
|
||||
if (av == 0) {
|
||||
fprintf(stderr, "Empty permission set computed from %s\n", argv[5]);
|
||||
return 1;
|
||||
}
|
||||
|
||||
if (sepol_compute_av_reason_buffer(ssid, tsid, tclass, av, &avd, &reason, &reason_buf, 0) < 0) {
|
||||
fprintf(stderr, "Failed to compute av decision: %s\n", strerror(errno));
|
||||
return 1;
|
||||
}
|
||||
|
||||
if ((avd.allowed & av) == av) {
|
||||
printf("requested permission %s allowed\n", argv[5]);
|
||||
free(reason_buf);
|
||||
return 0;
|
||||
}
|
||||
|
||||
printf("requested permission %s denied by ", argv[5]);
|
||||
i = 0;
|
||||
if (reason & SEPOL_COMPUTEAV_TE) {
|
||||
printf("te-rule");
|
||||
i++;
|
||||
}
|
||||
if (reason & SEPOL_COMPUTEAV_CONS) {
|
||||
if (i > 0)
|
||||
printf(", ");
|
||||
printf("constraint");
|
||||
i++;
|
||||
}
|
||||
if (reason & SEPOL_COMPUTEAV_RBAC) {
|
||||
if (i > 0)
|
||||
printf(", ");
|
||||
printf("transition-constraint");
|
||||
i++;
|
||||
}
|
||||
if (reason & SEPOL_COMPUTEAV_BOUNDS) {
|
||||
if (i > 0)
|
||||
printf(", ");
|
||||
printf("type-bound");
|
||||
//i++;
|
||||
}
|
||||
|
||||
if ((reason & SEPOL_COMPUTEAV_CONS) && reason_buf)
|
||||
printf("; reason:\n%s", reason_buf);
|
||||
|
||||
free(reason_buf);
|
||||
|
||||
printf("\n");
|
||||
|
||||
return 7;
|
||||
}
|
||||
@@ -0,0 +1,66 @@
|
||||
#include <errno.h>
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
|
||||
#include <sepol/policydb/services.h>
|
||||
#include <sepol/sepol.h>
|
||||
|
||||
|
||||
int main(int argc, char *argv[])
|
||||
{
|
||||
FILE *fp;
|
||||
sepol_security_id_t ssid, tsid;
|
||||
sepol_security_class_t tclass;
|
||||
struct sepol_av_decision avd;
|
||||
int rc;
|
||||
|
||||
if (argc != 5) {
|
||||
printf("usage: %s policy scontext tcontext tclass\n", argv[0]);
|
||||
return 1;
|
||||
}
|
||||
|
||||
fp = fopen(argv[1], "r");
|
||||
if (!fp) {
|
||||
fprintf(stderr, "Can't open policy %s: %s\n", argv[1], strerror(errno));
|
||||
return 1;
|
||||
}
|
||||
if (sepol_set_policydb_from_file(fp) < 0) {
|
||||
fprintf(stderr, "Error while processing policy %s: %s\n", argv[1], strerror(errno));
|
||||
fclose(fp);
|
||||
return 1;
|
||||
}
|
||||
fclose(fp);
|
||||
|
||||
if (sepol_context_to_sid(argv[2], strlen(argv[2]), &ssid) < 0) {
|
||||
fprintf(stderr, "Invalid source context %s\n", argv[2]);
|
||||
return 1;
|
||||
}
|
||||
|
||||
if (sepol_context_to_sid(argv[3], strlen(argv[3]), &tsid) < 0) {
|
||||
fprintf(stderr, "Invalid target context %s\n", argv[3]);
|
||||
return 1;
|
||||
}
|
||||
|
||||
if (sepol_string_to_security_class(argv[4], &tclass) < 0) {
|
||||
fprintf(stderr, "Invalid security class %s\n", argv[4]);
|
||||
return 1;
|
||||
}
|
||||
|
||||
rc = sepol_compute_av(ssid, tsid, tclass, 0, &avd);
|
||||
switch (rc) {
|
||||
case 0:
|
||||
printf("allowed: %s\n", sepol_av_perm_to_string(tclass, avd.allowed));
|
||||
printf("decided: %s\n", sepol_av_perm_to_string(tclass, avd.decided));
|
||||
printf("auditallow: %s\n", sepol_av_perm_to_string(tclass, avd.auditallow));
|
||||
printf("auditdeny: %s\n", sepol_av_perm_to_string(tclass, avd.auditdeny));
|
||||
break;
|
||||
case -EINVAL:
|
||||
printf("Invalid request\n");
|
||||
break;
|
||||
default:
|
||||
printf("Failed to compute av decision: %d\n", rc);
|
||||
}
|
||||
|
||||
return rc != 0;
|
||||
}
|
||||
@@ -0,0 +1,64 @@
|
||||
#include <errno.h>
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
|
||||
#include <sepol/policydb/services.h>
|
||||
#include <sepol/sepol.h>
|
||||
|
||||
|
||||
int main(int argc, char *argv[])
|
||||
{
|
||||
FILE *fp;
|
||||
sepol_security_id_t ssid, tsid, out_sid;
|
||||
sepol_security_class_t tclass;
|
||||
char *context;
|
||||
size_t context_len;
|
||||
|
||||
if (argc != 5) {
|
||||
printf("usage: %s policy scontext tcontext tclass\n", argv[0]);
|
||||
return 1;
|
||||
}
|
||||
|
||||
fp = fopen(argv[1], "r");
|
||||
if (!fp) {
|
||||
fprintf(stderr, "Can't open policy %s: %s\n", argv[1], strerror(errno));
|
||||
return 1;
|
||||
}
|
||||
if (sepol_set_policydb_from_file(fp) < 0) {
|
||||
fprintf(stderr, "Error while processing policy %s: %s\n", argv[1], strerror(errno));
|
||||
fclose(fp);
|
||||
return 1;
|
||||
}
|
||||
fclose(fp);
|
||||
|
||||
if (sepol_context_to_sid(argv[2], strlen(argv[2]), &ssid) < 0) {
|
||||
fprintf(stderr, "Invalid source context %s\n", argv[2]);
|
||||
return 1;
|
||||
}
|
||||
|
||||
if (sepol_context_to_sid(argv[3], strlen(argv[3]), &tsid) < 0) {
|
||||
fprintf(stderr, "Invalid target context %s\n", argv[3]);
|
||||
return 1;
|
||||
}
|
||||
|
||||
if (sepol_string_to_security_class(argv[4], &tclass) < 0) {
|
||||
fprintf(stderr, "Invalid security class %s\n", argv[4]);
|
||||
return 1;
|
||||
}
|
||||
|
||||
if (sepol_member_sid(ssid, tsid, tclass, &out_sid) < 0) {
|
||||
fprintf(stderr, "Failed to compute member sid: %s\n", strerror(errno));
|
||||
return 1;
|
||||
}
|
||||
|
||||
if (sepol_sid_to_context(out_sid, &context, &context_len) < 0) {
|
||||
fprintf(stderr, "Failed to convert sid %u: %s\n", out_sid, strerror(errno));
|
||||
return 1;
|
||||
}
|
||||
|
||||
printf("%s\n", context);
|
||||
free(context);
|
||||
|
||||
return 0;
|
||||
}
|
||||
@@ -0,0 +1,64 @@
|
||||
#include <errno.h>
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
|
||||
#include <sepol/policydb/services.h>
|
||||
#include <sepol/sepol.h>
|
||||
|
||||
|
||||
int main(int argc, char *argv[])
|
||||
{
|
||||
FILE *fp;
|
||||
sepol_security_id_t ssid, tsid, out_sid;
|
||||
sepol_security_class_t tclass;
|
||||
char *context;
|
||||
size_t context_len;
|
||||
|
||||
if (argc != 5) {
|
||||
printf("usage: %s policy scontext tcontext tclass\n", argv[0]);
|
||||
return 1;
|
||||
}
|
||||
|
||||
fp = fopen(argv[1], "r");
|
||||
if (!fp) {
|
||||
fprintf(stderr, "Can't open policy %s: %s\n", argv[1], strerror(errno));
|
||||
return 1;
|
||||
}
|
||||
if (sepol_set_policydb_from_file(fp) < 0) {
|
||||
fprintf(stderr, "Error while processing policy %s: %s\n", argv[1], strerror(errno));
|
||||
fclose(fp);
|
||||
return 1;
|
||||
}
|
||||
fclose(fp);
|
||||
|
||||
if (sepol_context_to_sid(argv[2], strlen(argv[2]), &ssid) < 0) {
|
||||
fprintf(stderr, "Invalid source context %s\n", argv[2]);
|
||||
return 1;
|
||||
}
|
||||
|
||||
if (sepol_context_to_sid(argv[3], strlen(argv[3]), &tsid) < 0) {
|
||||
fprintf(stderr, "Invalid target context %s\n", argv[3]);
|
||||
return 1;
|
||||
}
|
||||
|
||||
if (sepol_string_to_security_class(argv[4], &tclass) < 0) {
|
||||
fprintf(stderr, "Invalid security class %s\n", argv[4]);
|
||||
return 1;
|
||||
}
|
||||
|
||||
if (sepol_change_sid(ssid, tsid, tclass, &out_sid) < 0) {
|
||||
fprintf(stderr, "Failed to compute changed sid: %s\n", strerror(errno));
|
||||
return 1;
|
||||
}
|
||||
|
||||
if (sepol_sid_to_context(out_sid, &context, &context_len) < 0) {
|
||||
fprintf(stderr, "Failed to convert sid %u: %s\n", out_sid, strerror(errno));
|
||||
return 1;
|
||||
}
|
||||
|
||||
printf("%s\n", context);
|
||||
free(context);
|
||||
|
||||
return 0;
|
||||
}
|
||||
@@ -0,0 +1,74 @@
|
||||
#include <errno.h>
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
|
||||
#include <sepol/policydb/services.h>
|
||||
#include <sepol/sepol.h>
|
||||
|
||||
|
||||
int main(int argc, char *argv[])
|
||||
{
|
||||
FILE *fp;
|
||||
sepol_security_id_t oldsid, newsid, tasksid;
|
||||
sepol_security_class_t tclass;
|
||||
char *reason = NULL;
|
||||
int ret;
|
||||
|
||||
if (argc != 6) {
|
||||
printf("usage: %s policy oldcontext newcontext tclass taskcontext\n", argv[0]);
|
||||
return 1;
|
||||
}
|
||||
|
||||
fp = fopen(argv[1], "r");
|
||||
if (!fp) {
|
||||
fprintf(stderr, "Can't open policy %s: %s\n", argv[1], strerror(errno));
|
||||
return 1;
|
||||
}
|
||||
if (sepol_set_policydb_from_file(fp) < 0) {
|
||||
fprintf(stderr, "Error while processing policy %s: %s\n", argv[1], strerror(errno));
|
||||
fclose(fp);
|
||||
return 1;
|
||||
}
|
||||
fclose(fp);
|
||||
|
||||
if (sepol_context_to_sid(argv[2], strlen(argv[2]), &oldsid) < 0) {
|
||||
fprintf(stderr, "Invalid old context %s\n", argv[2]);
|
||||
return 1;
|
||||
}
|
||||
|
||||
if (sepol_context_to_sid(argv[3], strlen(argv[3]), &newsid) < 0) {
|
||||
fprintf(stderr, "Invalid new context %s\n", argv[3]);
|
||||
return 1;
|
||||
}
|
||||
|
||||
if (sepol_string_to_security_class(argv[4], &tclass) < 0) {
|
||||
fprintf(stderr, "Invalid security class %s\n", argv[4]);
|
||||
return 1;
|
||||
}
|
||||
|
||||
if (sepol_context_to_sid(argv[5], strlen(argv[5]), &tasksid) < 0) {
|
||||
fprintf(stderr, "Invalid task context %s\n", argv[5]);
|
||||
return 1;
|
||||
}
|
||||
|
||||
ret = sepol_validate_transition_reason_buffer(oldsid, newsid, tasksid, tclass, &reason, SHOW_GRANTED);
|
||||
switch (ret) {
|
||||
case 0:
|
||||
printf("allowed\n");
|
||||
ret = 0;
|
||||
break;
|
||||
case -EPERM:
|
||||
printf("denied\n");
|
||||
printf("%s\n", reason ? reason : "unknown - possible BUG()");
|
||||
ret = 7;
|
||||
break;
|
||||
default:
|
||||
printf("sepol_validate_transition_reason_buffer returned %d errno: %s\n", ret, strerror(errno));
|
||||
ret = 1;
|
||||
}
|
||||
|
||||
free(reason);
|
||||
|
||||
return ret;
|
||||
}
|
||||
Reference in New Issue
Block a user