9eb9c93275
In attempting to enable building various part of Android with -Wall -Werror, we found that the const security_context_t declarations in libselinux are incorrect; const char * was intended, but const security_context_t translates to char * const and triggers warnings on passing const char * from the caller. Easiest fix is to replace them all with const char *. And while we are at it, just get rid of all usage of security_context_t itself as it adds no value - there is no true encapsulation of the security context strings and callers already directly use string functions on them. typedef left to permit building legacy users until such a time as all are updated. This is a port of Change-Id I2f9df7bb9f575f76024c3e5f5b660345da2931a7 from Android, augmented to deal with all of the other code in upstream libselinux and updating the man pages too. Signed-off-by: Stephen Smalley <sds@tycho.nsa.gov> Acked-by: Eric Paris <eparis@redhat.com>
60 lines
1.2 KiB
C
60 lines
1.2 KiB
C
#include <unistd.h>
|
|
#include <sys/types.h>
|
|
#include <fcntl.h>
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <errno.h>
|
|
#include <string.h>
|
|
#include <ctype.h>
|
|
#include <selinux/flask.h>
|
|
#include <selinux/selinux.h>
|
|
|
|
static void usage(const char *name, const char *detail, int rc)
|
|
{
|
|
fprintf(stderr, "usage: %s command [ fromcon ]\n", name);
|
|
if (detail)
|
|
fprintf(stderr, "%s: %s\n", name, detail);
|
|
exit(rc);
|
|
}
|
|
|
|
static char * get_selinux_proc_context(const char *command, char * execcon) {
|
|
char * fcon = NULL, *newcon = NULL;
|
|
|
|
int ret = getfilecon(command, &fcon);
|
|
if (ret < 0) goto err;
|
|
ret = security_compute_create(execcon, fcon, SECCLASS_PROCESS, &newcon);
|
|
if (ret < 0) goto err;
|
|
|
|
err:
|
|
freecon(fcon);
|
|
return newcon;
|
|
}
|
|
|
|
int main(int argc, char **argv)
|
|
{
|
|
int ret = -1;
|
|
char * proccon = NULL, *con = NULL;
|
|
if (argc < 2 || argc > 3)
|
|
usage(argv[0], "Invalid number of arguments", -1);
|
|
|
|
if (argc == 2) {
|
|
if (getcon(&con) < 0) {
|
|
perror(argv[0]);
|
|
return -1;
|
|
}
|
|
} else {
|
|
con = strdup(argv[2]);
|
|
}
|
|
|
|
proccon = get_selinux_proc_context(argv[1], con);
|
|
if (proccon) {
|
|
printf("%s\n", proccon);
|
|
ret = 0;
|
|
} else {
|
|
perror(argv[0]);
|
|
}
|
|
|
|
free(proccon);
|
|
free(con);
|
|
return ret;
|
|
}
|