summaryrefslogtreecommitdiffstats
path: root/src/tools/files.c
diff options
context:
space:
mode:
authorJakub Hrozek <jhrozek@redhat.com>2010-03-17 15:47:56 +0100
committerStephen Gallagher <sgallagh@redhat.com>2010-04-08 08:53:35 -0400
commit81020661d35772b5499525b76a19c9a3794c953e (patch)
treea27d680a3dee842419334b6c9bd05ec0c8beee2a /src/tools/files.c
parent03aaa2b31e9769bce7f725abe80686b8bba85cdf (diff)
downloadsssd-81020661d35772b5499525b76a19c9a3794c953e.tar.gz
sssd-81020661d35772b5499525b76a19c9a3794c953e.tar.xz
sssd-81020661d35772b5499525b76a19c9a3794c953e.zip
Move SELinux related functions into its own module
Fix whitespace errors
Diffstat (limited to 'src/tools/files.c')
-rw-r--r--src/tools/files.c57
1 files changed, 0 insertions, 57 deletions
diff --git a/src/tools/files.c b/src/tools/files.c
index 90920b6cf..b3b516ea4 100644
--- a/src/tools/files.c
+++ b/src/tools/files.c
@@ -66,10 +66,6 @@
#include "util/util.h"
#include "tools/tools_util.h"
-#ifdef HAVE_SELINUX
-#include <selinux/selinux.h>
-#endif
-
int copy_tree(const char *src_root, const char *dst_root,
uid_t uid, gid_t gid);
@@ -79,59 +75,6 @@ struct copy_ctx {
dev_t src_dev;
};
-#ifdef HAVE_SELINUX
-/*
- * selinux_file_context - Set the security context before any file or
- * directory creation.
- *
- * selinux_file_context () should be called before any creation of file,
- * symlink, directory, ...
- *
- * Callers may have to Reset SELinux to create files with default
- * contexts:
- * reset_selinux_file_context();
- */
-int selinux_file_context(const char *dst_name)
-{
- security_context_t scontext = NULL;
-
- if (is_selinux_enabled() == 1) {
- /* Get the default security context for this file */
- if (matchpathcon(dst_name, 0, &scontext) < 0) {
- if (security_getenforce () != 0) {
- return 1;
- }
- }
- /* Set the security context for the next created file */
- if (setfscreatecon(scontext) < 0) {
- if (security_getenforce() != 0) {
- return 1;
- }
- }
- freecon(scontext);
- }
-
- return 0;
-}
-
-int reset_selinux_file_context(void)
-{
- setfscreatecon(NULL);
- return EOK;
-}
-
-#else /* HAVE_SELINUX */
-int selinux_file_context(const char *dst_name)
-{
- return EOK;
-}
-
-int reset_selinux_file_context(void)
-{
- return EOK;
-}
-#endif /* HAVE_SELINUX */
-
/* wrapper in order not to create a temporary context in
* every iteration */
static int remove_tree_with_ctx(TALLOC_CTX *mem_ctx,