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
63
64
65
66
67
68
69
70
71
| #include <unistd.h>
| #include <fcntl.h>
| #include <string.h>
| #include <stdlib.h>
| #include <errno.h>
| #include <sys/xattr.h>
| #include "selinux_internal.h"
| #include "policy.h"
|
| int lgetfilecon_raw(const char *path, char ** context)
| {
| char *buf;
| ssize_t size;
| ssize_t ret;
|
| size = INITCONTEXTLEN + 1;
| buf = malloc(size);
| if (!buf)
| return -1;
| memset(buf, 0, size);
|
| ret = lgetxattr(path, XATTR_NAME_SELINUX, buf, size - 1);
| if (ret < 0 && errno == ERANGE) {
| char *newbuf;
|
| size = lgetxattr(path, XATTR_NAME_SELINUX, NULL, 0);
| if (size < 0)
| goto out;
|
| size++;
| newbuf = realloc(buf, size);
| if (!newbuf)
| goto out;
|
| buf = newbuf;
| memset(buf, 0, size);
| ret = lgetxattr(path, XATTR_NAME_SELINUX, buf, size - 1);
| }
| out:
| if (ret == 0) {
| /* Re-map empty attribute values to errors. */
| errno = ENOTSUP;
| ret = -1;
| }
| if (ret < 0)
| free(buf);
| else
| *context = buf;
| return ret;
| }
|
| hidden_def(lgetfilecon_raw)
|
| int lgetfilecon(const char *path, char ** context)
| {
| int ret;
| char * rcontext = NULL;
|
| *context = NULL;
|
| ret = lgetfilecon_raw(path, &rcontext);
|
| if (ret > 0) {
| ret = selinux_raw_to_trans_context(rcontext, context);
| freecon(rcontext);
| }
|
| if (ret >= 0 && *context)
| return strlen(*context) + 1;
| return ret;
| }
|
|