label.c revision c904f64d84db8c4eebedf210ba10893f19ba05ed
/*-*- Mode: C; c-basic-offset: 8; indent-tabs-mode: nil -*-*/
/***
This file is part of systemd.
Copyright 2010 Lennart Poettering
under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
systemd is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
General Public License for more details.
You should have received a copy of the GNU General Public License
along with systemd; If not, see <http://www.gnu.org/licenses/>.
***/
#include <errno.h>
#include <unistd.h>
#include "label.h"
#include "util.h"
#ifdef HAVE_SELINUX
static inline bool use_selinux(void) {
static int use_selinux_ind = -1;
if (use_selinux_ind < 0)
use_selinux_ind = is_selinux_enabled() > 0;
return use_selinux_ind;
}
#endif
int label_init(void) {
int r = 0;
#ifdef HAVE_SELINUX
if (!use_selinux())
return 0;
if (label_hnd)
return 0;
if (!label_hnd) {
"Failed to initialize SELinux context: %m");
}
#endif
return r;
}
int r = 0;
#ifdef HAVE_SELINUX
if (!use_selinux() || !label_hnd)
return 0;
if (r == 0) {
/* If there's no label to set, then exit without warning */
return 0;
if (r == 0) {
/* If the FS doesn't support labels, then exit without warning */
return 0;
/* Ignore ENOENT in some cases */
return 0;
}
}
if (r < 0) {
"Unable to fix label of %s: %m", path);
}
#endif
return r;
}
void label_finish(void) {
#ifdef HAVE_SELINUX
if (use_selinux() && label_hnd)
#endif
}
int r = 0;
#ifdef HAVE_SELINUX
if (!use_selinux()) {
return 0;
}
if (r < 0)
goto fail;
if (r < 0)
goto fail;
if (r == 0)
fail:
if (r < 0 && security_getenforce() == 1)
r = -errno;
#endif
return r;
}
int label_fifofile_set(const char *path) {
int r = 0;
#ifdef HAVE_SELINUX
if (!use_selinux() || !label_hnd)
return 0;
if ((r = setfscreatecon(filecon)) < 0) {
r = -errno;
}
}
if (r < 0 && security_getenforce() == 0)
r = 0;
#endif
return r;
}
int label_symlinkfile_set(const char *path) {
int r = 0;
#ifdef HAVE_SELINUX
if (!use_selinux() || !label_hnd)
return 0;
if ((r = setfscreatecon(filecon)) < 0) {
r = -errno;
}
}
if (r < 0 && security_getenforce() == 0)
r = 0;
#endif
return r;
}
int label_socket_set(const char *label) {
#ifdef HAVE_SELINUX
if (!use_selinux())
return 0;
"Failed to set SELinux context (%s) on socket: %m", label);
if (security_getenforce() == 1)
return -errno;
}
#endif
return 0;
}
void label_file_clear(void) {
#ifdef HAVE_SELINUX
if (!use_selinux())
return;
#endif
}
void label_socket_clear(void) {
#ifdef HAVE_SELINUX
if (!use_selinux())
return;
#endif
}
void label_free(const char *label) {
#ifdef HAVE_SELINUX
if (!use_selinux())
return;
#endif
}
int label_mkdir(
const char *path,
/* Creates a directory and labels it according to the SELinux policy */
#ifdef HAVE_SELINUX
int r;
if (use_selinux() && label_hnd) {
if (path_is_absolute(path))
else {
return -ENOMEM;
}
if (r == 0)
r = setfscreatecon(fcon);
r = -errno;
if (security_getenforce() == 1)
goto finish;
}
}
r = -errno;
if (use_selinux() && label_hnd) {
}
return r;
#else
#endif
}