From 0742ee3943192434d69092f11946f791f0f25502 Mon Sep 17 00:00:00 2001 From: David Oberhollenzer Date: Mon, 10 Jun 2019 22:41:34 +0200 Subject: Add generic function to produce a full path from an fstree node Signed-off-by: David Oberhollenzer --- lib/fstree/get_path.c | 36 ++++++++++++++++++++++++++++++++++++ lib/fstree/selinux.c | 45 ++++----------------------------------------- 2 files changed, 40 insertions(+), 41 deletions(-) create mode 100644 lib/fstree/get_path.c (limited to 'lib/fstree') diff --git a/lib/fstree/get_path.c b/lib/fstree/get_path.c new file mode 100644 index 0000000..4b6f61e --- /dev/null +++ b/lib/fstree/get_path.c @@ -0,0 +1,36 @@ +/* SPDX-License-Identifier: GPL-3.0-or-later */ +#include "fstree.h" + +#include +#include + +char *fstree_get_path(tree_node_t *node) +{ + tree_node_t *it; + char *str, *ptr; + size_t len = 0; + + if (node->parent == NULL) + return strdup("/"); + + for (it = node; it != NULL && it->parent != NULL; it = it->parent) { + len += strlen(it->name) + 1; + } + + str = malloc(len + 1); + if (str == NULL) + return NULL; + + 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; +} diff --git a/lib/fstree/selinux.c b/lib/fstree/selinux.c index ef858f2..ec14a93 100644 --- a/lib/fstree/selinux.c +++ b/lib/fstree/selinux.c @@ -10,45 +10,6 @@ #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) { @@ -56,9 +17,11 @@ static int relable_node(fstree_t *fs, struct selabel_handle *sehnd, tree_node_t *it; int ret; - path = get_path(node); - if (path == NULL) + path = fstree_get_path(node); + if (path == NULL) { + perror("relabeling files"); return -1; + } if (selabel_lookup(sehnd, &context, path, node->mode) < 0) { free(path); -- cgit v1.2.3