diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2007-03-24 15:38:49 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2007-03-24 15:38:49 +0000 |
commit | 644849a3aa0c834a942fb7777ec449d8098bcfc9 (patch) | |
tree | 0d34ff399cd6c04ab0cd7adf6c939f5291c169da /selinux | |
parent | 1fc6e56684dafddf00c3e9689a77e273f0126ea4 (diff) | |
download | busybox-644849a3aa0c834a942fb7777ec449d8098bcfc9.tar.gz |
SELinux: load_policy applet - this time with svn add
Diffstat (limited to 'selinux')
-rw-r--r-- | selinux/load_policy.c | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/selinux/load_policy.c b/selinux/load_policy.c new file mode 100644 index 000000000..83051e697 --- /dev/null +++ b/selinux/load_policy.c @@ -0,0 +1,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; +} |