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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
|
/* SPDX-License-Identifier: GPL-3.0-or-later */
#include "fstree.h"
#include <selinux/selinux.h>
#include <selinux/label.h>
#include <string.h>
#include <stdlib.h>
#include <stdio.h>
#define XATTR_NAME_SELINUX "security.selinux"
#define XATTR_VALUE_SELINUX "system_u:object_r:unlabeled_t:s0"
static char *get_path(tree_node_t *node)
{
tree_node_t *it;
char *str, *ptr;
size_t len = 0;
if (node->parent == NULL) {
str = strdup("/");
if (str == NULL)
goto fail_alloc;
return str;
}
for (it = node; it != NULL && it->parent != NULL; it = it->parent) {
len += strlen(it->name) + 1;
}
str = malloc(len + 1);
if (str == NULL)
goto fail_alloc;
ptr = str + len;
*ptr = '\0';
for (it = node; it != NULL && it->parent != NULL; it = it->parent) {
len = strlen(it->name);
ptr -= len;
memcpy(ptr, it->name, len);
*(--ptr) = '/';
}
return str;
fail_alloc:
perror("relabeling files");
return NULL;
}
static int relable_node(fstree_t *fs, struct selabel_handle *sehnd,
tree_node_t *node)
{
char *context = NULL, *path;
tree_node_t *it;
int ret;
path = get_path(node);
if (path == NULL)
return -1;
if (selabel_lookup(sehnd, &context, path, node->mode) < 0) {
free(path);
ret = fstree_add_xattr(fs, node, XATTR_NAME_SELINUX,
XATTR_VALUE_SELINUX);
} else {
free(path);
ret = fstree_add_xattr(fs, node, XATTR_NAME_SELINUX, context);
free(context);
}
if (ret)
return -1;
if (S_ISDIR(node->mode)) {
it = node->data.dir->children;
while (it != NULL) {
if (relable_node(fs, sehnd, it))
return -1;
it = it->next;
}
}
return 0;
}
int fstree_relabel_selinux(fstree_t *fs, const char *filename)
{
struct selabel_handle *sehnd;
struct selinux_opt seopts[] = {
{ SELABEL_OPT_PATH, filename },
};
int ret;
sehnd = selabel_open(SELABEL_CTX_FILE, seopts, 1);
if (sehnd == NULL) {
perror(filename);
return -1;
}
ret = relable_node(fs, sehnd, fs->root);
selabel_close(sehnd);
return ret;
}
|