aboutsummaryrefslogtreecommitdiff
path: root/selinux/load_policy.c
blob: 5d5d7d5a8e4c8f415d1eff646573d1af7406f128 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
/*
 * load_policy
 * This implementation is based on old load_policy to be small.
 * Author: Yuichi Nakamura <ynakam@hitachisoft.jp>
 */
#include "busybox.h"

int load_policy_main(int argc, char **argv);
int load_policy_main(int argc, char **argv)
{
	int fd;
	struct stat st;
	void *data;
	if (argc != 2) {
		bb_show_usage();
	}

	fd = xopen(argv[1], O_RDONLY);
	if (fstat(fd, &st) < 0) {
		bb_perror_msg_and_die("can't fstat");
	}
	data = mmap(NULL, st.st_size, PROT_READ, MAP_SHARED, fd, 0);
	if (data == MAP_FAILED) {
		bb_perror_msg_and_die("can't mmap");
	}
	if (security_load_policy(data, st.st_size) < 0) {
		bb_perror_msg_and_die("can't load policy");
	}

	return 0;
}