selinux-util.c revision 24154879845c6aa68a82d3a606f037e9df7527e0
/*-*- 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 <malloc.h>
#ifdef HAVE_SELINUX
#endif
#include "strv.h"
#include "path-util.h"
#include "selinux-util.h"
#ifdef HAVE_SELINUX
static int cached_use = -1;
#endif
bool mac_selinux_use(void) {
#ifdef HAVE_SELINUX
if (cached_use < 0)
cached_use = is_selinux_enabled() > 0;
return cached_use;
#else
return false;
#endif
}
void mac_selinux_retest(void) {
#ifdef HAVE_SELINUX
cached_use = -1;
#endif
}
int mac_selinux_init(const char *prefix) {
int r = 0;
#ifdef HAVE_SELINUX
if (!mac_selinux_use())
return 0;
if (label_hnd)
return 0;
before_mallinfo = mallinfo();
if (prefix) {
struct selinux_opt options[] = {
};
} else
if (!label_hnd) {
log_enforcing("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;
}
void mac_selinux_finish(void) {
#ifdef HAVE_SELINUX
if (!label_hnd)
return;
#endif
}
#ifdef HAVE_SELINUX
int r;
/* if mac_selinux_init() wasn't called before we are a NOOP */
if (!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 */
if (r < 0 && errno == EOPNOTSUPP)
return 0;
}
}
if (r < 0) {
/* Ignore ENOENT in some cases */
return 0;
return 0;
if (security_getenforce() == 1)
return -errno;
}
#endif
return 0;
}
#ifdef HAVE_SELINUX
if (!mac_selinux_use())
return 0;
if (security_getenforce() == 1)
return -errno;
}
#endif
return 0;
}
int r = -EOPNOTSUPP;
#ifdef HAVE_SELINUX
if (!mac_selinux_use())
return -EOPNOTSUPP;
r = getcon_raw(&mycon);
if (r < 0)
return -errno;
if (r < 0)
return -errno;
if (r < 0)
return -errno;
#endif
return r;
}
int mac_selinux_get_our_label(char **label) {
int r = -EOPNOTSUPP;
#ifdef HAVE_SELINUX
if (!mac_selinux_use())
return -EOPNOTSUPP;
r = getcon_raw(label);
if (r < 0)
return -errno;
#endif
return r;
}
int mac_selinux_get_child_mls_label(int socket_fd, const char *exe, const char *exec_label, char **label) {
int r = -EOPNOTSUPP;
#ifdef HAVE_SELINUX
if (!mac_selinux_use())
return -EOPNOTSUPP;
r = getcon_raw(&mycon);
if (r < 0)
return -errno;
if (r < 0)
return -errno;
if (!exec_label) {
/* If there is no context set for next exec let's use context
of target executable */
if (r < 0)
return -errno;
}
if (!bcon)
return -ENOMEM;
if (!pcon)
return -ENOMEM;
if (!range)
return -errno;
if (r)
return -errno;
if (!mycon)
return -ENOMEM;
if (r < 0)
return -errno;
#endif
return r;
}
void mac_selinux_free(char *label) {
#ifdef HAVE_SELINUX
if (!mac_selinux_use())
return;
#endif
}
int r = 0;
#ifdef HAVE_SELINUX
if (!label_hnd)
return 0;
if (path_is_absolute(path))
else {
_cleanup_free_ char *newpath;
if (!newpath)
return -ENOMEM;
}
/* No context specified by the policy? Proceed without setting it. */
return 0;
if (r < 0)
r = -errno;
else {
r = setfscreatecon(filecon);
if (r < 0) {
r = -errno;
}
}
if (r < 0 && security_getenforce() == 0)
r = 0;
#endif
return r;
}
void mac_selinux_create_file_clear(void) {
#ifdef HAVE_SELINUX
if (!mac_selinux_use())
return;
#endif
}
int mac_selinux_create_socket_prepare(const char *label) {
#ifdef HAVE_SELINUX
if (!mac_selinux_use())
return 0;
if (security_getenforce() == 1)
return -errno;
}
#endif
return 0;
}
void mac_selinux_create_socket_clear(void) {
#ifdef HAVE_SELINUX
if (!mac_selinux_use())
return;
#endif
}
/* Binds a socket and label its file system object according to the SELinux policy */
#ifdef HAVE_SELINUX
const struct sockaddr_un *un;
char *path;
int r;
if (!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_is_absolute(path))
else {
_cleanup_free_ 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
}