label.c revision 9b5af248f04b6cad8a5bca836e89a39e9f6823d9
/*-*- 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 Lesser General Public License as published by
the Free Software Foundation; either version 2.1 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
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public License
along with systemd; If not, see <http://www.gnu.org/licenses/>.
***/
#include <errno.h>
#include <unistd.h>
#include <malloc.h>
#include "label.h"
#include "util.h"
#include "path-util.h"
#ifdef HAVE_SELINUX
static int use_selinux_cached = -1;
static inline bool use_selinux(void) {
if (use_selinux_cached < 0)
use_selinux_cached = is_selinux_enabled() > 0;
return use_selinux_cached;
}
void label_retest_selinux(void) {
use_selinux_cached = -1;
}
#endif
int label_init(const char *prefixes[]) {
int r = 0;
#ifdef HAVE_SELINUX
if (!use_selinux())
return 0;
if (label_hnd)
return 0;
before_mallinfo = mallinfo();
if (prefixes) {
struct selinux_opt options[] = {
};
} else
if (!label_hnd) {
"Failed to initialize SELinux context: %m");
} else {
char timespan[FORMAT_TIMESPAN_MAX];
int l;
after_mallinfo = mallinfo();
l = after_mallinfo.uordblks > before_mallinfo.uordblks ? after_mallinfo.uordblks - before_mallinfo.uordblks : 0;
log_debug("Successfully loaded SELinux database in %s, size on heap is %iK.",
(l+1023)/1024);
}
#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;
}
}
if (r < 0) {
/* Ignore ENOENT in some cases */
return 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 r = 0;
#ifdef HAVE_SELINUX
if (!use_selinux() || !label_hnd)
return 0;
if (r < 0)
r = -errno;
else if (r == 0) {
r = setfscreatecon(filecon);
if (r < 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_context_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
}
/* Creates a directory and labels it according to the SELinux policy */
#ifdef HAVE_SELINUX
int r;
if (!use_selinux() || !label_hnd)
goto skipped;
if (path_is_absolute(path))
else {
char *newpath;
if (!newpath)
return -ENOMEM;
}
if (r == 0)
r = setfscreatecon(fcon);
if (security_getenforce() == 1) {
r = -errno;
goto finish;
}
}
if (r < 0)
r = -errno;
return r;
#endif
}
/* Binds a socket and label its file system object according to the SELinux policy */
#ifdef HAVE_SELINUX
int r;
const struct sockaddr_un *un;
if (!use_selinux() || !label_hnd)
goto skipped;
/* Filter out non-local sockets */
goto skipped;
/* Filter out anonymous sockets */
goto skipped;
/* Filter out abstract namespace sockets */
goto skipped;
if (!path)
return -ENOMEM;
if (path_is_absolute(path))
else {
char *newpath;
if (!newpath) {
return -ENOMEM;
}
}
if (r == 0)
r = setfscreatecon(fcon);
if (security_getenforce() == 1) {
r = -errno;
goto finish;
}
}
if (r < 0)
r = -errno;
return r;
#endif
}