platform_external_selinux/libselinux/utils/getpidprevcon.c
Christian Göttsche 494eb683f3 libselinux: add getpidprevcon
Add the public interfaces getpidprevcon(3) and getpidprevcon_raw(3), and
the utility getpidprevcon to gather the previous context before the last
exec of a given process.

Signed-off-by: Christian Göttsche <cgzones@googlemail.com>
Acked-by: Jason Zaman <jason@perfinion.com>
2023-02-10 22:23:11 -08:00

33 lines
600 B
C

#include <unistd.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <errno.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 = getpidprevcon(pid, &buf);
if (rc < 0) {
fprintf(stderr, "%s: getpidprevcon() failed: %s\n", argv[0], strerror(errno));
exit(3);
}
printf("%s\n", buf);
freecon(buf);
exit(EXIT_SUCCESS);
}