diff options
Diffstat (limited to 'libselinux/utils/getpidcon.c')
-rw-r--r-- | libselinux/utils/getpidcon.c | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/libselinux/utils/getpidcon.c b/libselinux/utils/getpidcon.c new file mode 100644 index 00000000..3df0da1f --- /dev/null +++ b/libselinux/utils/getpidcon.c @@ -0,0 +1,31 @@ +#include <unistd.h> +#include <stdio.h> +#include <stdlib.h> +#include <selinux/selinux.h> + +int main(int argc, char **argv) +{ + pid_t pid; + char *buf; + int rc; + + if (argc != 2) { + fprintf(stderr, "usage: %s pid\n", argv[0]); + exit(1); + } + + if (sscanf(argv[1], "%d", &pid) != 1) { + fprintf(stderr, "%s: invalid pid %s\n", argv[0], argv[1]); + exit(2); + } + + rc = getpidcon(pid, &buf); + if (rc < 0) { + fprintf(stderr, "%s: getpidcon() failed\n", argv[0]); + exit(3); + } + + printf("%s\n", buf); + freecon(buf); + exit(0); +} |