2008-08-19 21:30:36 +02:00
|
|
|
#include <unistd.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <getopt.h>
|
|
|
|
#include <errno.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/stat.h>
|
|
|
|
#include <sys/errno.h>
|
|
|
|
#include <selinux/selinux.h>
|
|
|
|
|
2012-01-23 16:41:19 +01:00
|
|
|
static void usage(const char *progname)
|
2008-08-19 21:30:36 +02:00
|
|
|
{
|
|
|
|
fprintf(stderr, "usage: %s tty_context...\n", progname);
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
int main(int argc, char **argv)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
if (argc < 2)
|
|
|
|
usage(argv[0]);
|
|
|
|
|
|
|
|
for (i = 1; i < argc; i++) {
|
|
|
|
switch (selinux_check_securetty_context(argv[i])) {
|
|
|
|
case 0:
|
|
|
|
printf("%s securetty.\n", argv[i]);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
printf("%s not securetty.\n", argv[i]);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|