4 * Based on libselinux 1.33.1
5 * Port to BusyBox Hiroshi Shinji <shiroshi@my.email.ne.jp>
7 * Licensed under GPLv2, see file LICENSE in this source tree.
9 //config:config GETENFORCE
10 //config: bool "getenforce (1.7 kb)"
12 //config: depends on SELINUX
14 //config: Enable support to get the current mode of SELinux.
16 //applet:IF_GETENFORCE(APPLET(getenforce, BB_DIR_USR_SBIN, BB_SUID_DROP))
18 //kbuild:lib-$(CONFIG_GETENFORCE) += getenforce.o
20 //usage:#define getenforce_trivial_usage NOUSAGE_STR
21 //usage:#define getenforce_full_usage ""
25 int getenforce_main(int argc
, char **argv
) MAIN_EXTERNALLY_VISIBLE
;
26 int getenforce_main(int argc UNUSED_PARAM
, char **argv UNUSED_PARAM
)
30 rc
= is_selinux_enabled();
32 bb_simple_error_msg_and_die("is_selinux_enabled() failed");
35 rc
= security_getenforce();
37 bb_simple_error_msg_and_die("getenforce() failed");