blob: 35686254dc8899d7de48ff591b2bde108f24943e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
|
#include <unistd.h>
#include <stdio.h>
#include <stdlib.h>
#include <errno.h>
#include <selinux/selinux.h>
#include <selinux/android.h>
static const char *progname;
static void usage(void)
{
fprintf(stderr, "usage: %s [-DFnrRv] pathname...\n", progname);
exit(1);
}
int restorecon_main(int argc, char **argv)
{
int ch, i, rc;
unsigned int flags = 0;
progname = argv[0];
do {
ch = getopt(argc, argv, "DFnrRv");
if (ch == EOF)
break;
switch (ch) {
case 'D':
flags |= SELINUX_ANDROID_RESTORECON_DATADATA;
break;
case 'F':
flags |= SELINUX_ANDROID_RESTORECON_FORCE;
break;
case 'n':
flags |= SELINUX_ANDROID_RESTORECON_NOCHANGE;
break;
case 'r':
case 'R':
flags |= SELINUX_ANDROID_RESTORECON_RECURSE;
break;
case 'v':
flags |= SELINUX_ANDROID_RESTORECON_VERBOSE;
break;
default:
usage();
}
} while (1);
argc -= optind;
argv += optind;
if (!argc)
usage();
for (i = 0; i < argc; i++) {
rc = selinux_android_restorecon(argv[i], flags);
if (rc < 0)
fprintf(stderr, "Could not restorecon %s: %s\n", argv[i],
strerror(errno));
}
return 0;
}
|