1 /*-*- Mode: C; c-basic-offset: 8; indent-tabs-mode: nil -*-*/
4 This file is part of systemd.
6 Copyright 2010 Lennart Poettering
8 systemd is free software; you can redistribute it and/or modify it
9 under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 2 of the License, or
11 (at your option) any later version.
13 systemd is distributed in the hope that it will be useful, but
14 WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with systemd; If not, see <http://www.gnu.org/licenses/>.
29 #include <selinux/selinux.h>
32 #include "selinux-setup.h"
33 #include "mount-setup.h"
39 int selinux_setup(bool *loaded_policy) {
43 usec_t before_load, after_load;
44 security_context_t con;
47 assert(loaded_policy);
49 /* Make sure getcon() works, which needs /proc and /sys */
52 /* Already initialized by somebody else? */
57 initialized = !streq(con, "kernel");
64 /* Make sure we have no fds open while loading the policy and
68 /* Now load the policy */
69 before_load = now(CLOCK_MONOTONIC);
70 r = selinux_init_load_policy(&enforce);
73 char timespan[FORMAT_TIMESPAN_MAX];
76 label_retest_selinux();
78 /* Transition to the new context */
79 r = label_get_create_label_from_exe(SYSTEMD_BINARY_PATH, &label);
80 if (r < 0 || label == NULL) {
82 log_error("Failed to compute init label, ignoring.");
88 log_error("Failed to transition into init label '%s', ignoring.", label);
93 after_load = now(CLOCK_MONOTONIC);
95 log_info("Successfully loaded SELinux policy in %s.",
96 format_timespan(timespan, sizeof(timespan), after_load - before_load));
98 *loaded_policy = true;
102 log_error("Failed to load SELinux policy.");
105 log_debug("Unable to load SELinux policy.");