selinux-util.c revision 7f416dae9bcf1cfb63689ee9ac851adf738f072b
/*-*- 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>
#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) {
"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 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 */
return 0;
}
}
if (r < 0) {
/* Ignore ENOENT in some cases */
return 0;
return 0;
log_full(security_getenforce() == 1 ? LOG_ERR : LOG_DEBUG, "Unable to fix SELinux label of %s: %m", path);
}
#endif
return r;
}
void mac_selinux_finish(void) {
#ifdef HAVE_SELINUX
if (!label_hnd)
return;
#endif
}
int r = -EOPNOTSUPP;
#ifdef HAVE_SELINUX
if (!mac_selinux_use())
return -EOPNOTSUPP;
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;
if (r < 0)
return -errno;
#endif
return r;
}
int r = -EOPNOTSUPP;
#ifdef HAVE_SELINUX
if (!mac_selinux_use())
return -EOPNOTSUPP;
if (r < 0)
return -errno;
if (r < 0)
return -errno;
r = getexeccon(&fcon);
if (r < 0)
return -errno;
if (!fcon) {
/* 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;
}
int r = 0;
#ifdef HAVE_SELINUX
if (!mac_selinux_use() || !label_hnd)
return 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 mac_selinux_socket_set(const char *label) {
#ifdef HAVE_SELINUX
if (!mac_selinux_use())
return 0;
"Failed to set SELinux context (%s) on socket: %m", label);
if (security_getenforce() == 1)
return -errno;
}
#endif
return 0;
}
void mac_selinux_context_clear(void) {
#ifdef HAVE_SELINUX
if (!mac_selinux_use())
return;
#endif
}
void mac_selinux_socket_clear(void) {
#ifdef HAVE_SELINUX
if (!mac_selinux_use())
return;
#endif
}
void mac_selinux_free(const char *label) {
#ifdef HAVE_SELINUX
if (!mac_selinux_use())
return;
#endif
}
int r = 0;
#ifdef HAVE_SELINUX
/* Creates a directory and labels it according to the SELinux policy */
if (!label_hnd)
return 0;
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;
#endif
return r;
}
/* 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 (!mac_selinux_use() || !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
}
int r = 0;
#ifdef HAVE_SELINUX
if (!mac_selinux_use())
return 0;
#endif
return r;
}