platform_system_core/toolbox/runcon.c
Stephen Smalley 8290d1083e Extend toolbox with SE Android support.
Add -Z option to ls and ps for displaying security contexts.
Modify id to display security context.
Add new SELinux commands: chcon, getenforce, getsebool, load_policy, restorecon, runcon, setenforce, setsebool.

Change-Id: Ia20941be4a6cd706fe392fed6e38a37d880ec5f1
2012-02-03 11:11:15 -05:00

28 lines
608 B
C

#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include <errno.h>
#include <selinux/selinux.h>
int runcon_main(int argc, char **argv)
{
int rc;
if (argc < 3) {
fprintf(stderr, "usage: %s context program args...\n", argv[0]);
exit(1);
}
rc = setexeccon(argv[1]);
if (rc < 0) {
fprintf(stderr, "Could not set context to %s: %s\n", argv[1], strerror(errno));
exit(2);
}
argv += 2;
argc -= 2;
execvp(argv[0], argv);
fprintf(stderr, "Could not exec %s: %s\n", argv[0], strerror(errno));
exit(3);
}