-
Notifications
You must be signed in to change notification settings - Fork 135
/
Copy pathload_policy.c
38 lines (30 loc) · 873 Bytes
/
load_policy.c
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
32
33
34
35
36
37
38
/*
* load_policy
* Author: Yuichi Nakamura <ynakam@hitachisoft.jp>
*
* Licensed under GPLv2, see file LICENSE in this source tree.
*/
//config:config LOAD_POLICY
//config: bool "load_policy (1.6 kb)"
//config: default n
//config: depends on SELINUX
//config: help
//config: Enable support to load SELinux policy.
//applet:IF_LOAD_POLICY(APPLET(load_policy, BB_DIR_USR_SBIN, BB_SUID_DROP))
//kbuild:lib-$(CONFIG_LOAD_POLICY) += load_policy.o
//usage:#define load_policy_trivial_usage NOUSAGE_STR
//usage:#define load_policy_full_usage ""
#include "libbb.h"
int load_policy_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
int load_policy_main(int argc UNUSED_PARAM, char **argv UNUSED_PARAM)
{
int rc;
if (argv[1]) {
bb_show_usage();
}
rc = selinux_mkload_policy(1);
if (rc < 0) {
bb_simple_perror_msg_and_die("can't load policy");
}
return 0;
}