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
| #include <unistd.h>
| #include <sys/types.h>
| #include <stdio.h>
| #include <stdlib.h>
| #include <errno.h>
| #include <selinux/selinux.h>
|
| int main(int argc, char **argv)
| {
| char *buf;
| security_class_t tclass;
| int ret;
|
| if (argc != 4) {
| fprintf(stderr, "usage: %s scontext tcontext tclass\n",
| argv[0]);
| exit(1);
| }
|
| tclass = string_to_security_class(argv[3]);
| if (!tclass) {
| fprintf(stderr, "Invalid class '%s'\n", argv[3]);
| exit(2);
| }
|
| ret = security_compute_create(argv[1], argv[2], tclass, &buf);
| if (ret < 0) {
| fprintf(stderr, "%s: security_compute_create failed\n",
| argv[0]);
| exit(3);
| }
|
| printf("%s\n", buf);
| freecon(buf);
| exit(0);
| }
|
|