diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2007-02-06 19:28:50 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2007-02-06 19:28:50 +0000 |
commit | d46d3c292e9aff0550f6540ab631d742fe353964 (patch) | |
tree | 05f6461f18eba790a90a971c41ddb91163ae7847 /selinux/getenforce.c | |
parent | b292264bfd7064b651192b966f30d76b75161c70 (diff) | |
download | busybox-w32-d46d3c292e9aff0550f6540ab631d742fe353964.tar.gz busybox-w32-d46d3c292e9aff0550f6540ab631d742fe353964.tar.bz2 busybox-w32-d46d3c292e9aff0550f6540ab631d742fe353964.zip |
new applets: selinux utils by KaiGai Kohei <kaigai@kaigai.gr.jp>
Diffstat (limited to 'selinux/getenforce.c')
-rw-r--r-- | selinux/getenforce.c | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/selinux/getenforce.c b/selinux/getenforce.c new file mode 100644 index 000000000..e240e4dca --- /dev/null +++ b/selinux/getenforce.c | |||
@@ -0,0 +1,33 @@ | |||
1 | /* | ||
2 | * getenforce | ||
3 | * | ||
4 | * Based on libselinux 1.33.1 | ||
5 | * Port to BusyBox Hiroshi Shinji <shiroshi@my.email.ne.jp> | ||
6 | * | ||
7 | */ | ||
8 | |||
9 | #include "busybox.h" | ||
10 | |||
11 | int getenforce_main(int argc, char **argv) | ||
12 | { | ||
13 | int rc; | ||
14 | |||
15 | rc = is_selinux_enabled(); | ||
16 | if (rc < 0) | ||
17 | bb_error_msg_and_die("is_selinux_enabled() failed"); | ||
18 | |||
19 | if (rc == 1) { | ||
20 | rc = security_getenforce(); | ||
21 | if (rc < 0) | ||
22 | bb_error_msg_and_die("getenforce() failed"); | ||
23 | |||
24 | if (rc) | ||
25 | puts("Enforcing"); | ||
26 | else | ||
27 | puts("Permissive"); | ||
28 | } else { | ||
29 | puts("Disabled"); | ||
30 | } | ||
31 | |||
32 | return 0; | ||
33 | } | ||