X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=elogind.git;a=blobdiff_plain;f=src%2Fcore%2Fselinux-setup.c;h=7a32ed59a0a8020c3f1b9431e119242eafc1d07d;hp=52df7a7221f98c54256589ff45feedf87c63bc2e;hb=d003f514dab2dbf1a66e11800a50aeaf039d036c;hpb=2f6f1bc30c528ca7346b4c93f08b65682aa2876f diff --git a/src/core/selinux-setup.c b/src/core/selinux-setup.c index 52df7a722..7a32ed59a 100644 --- a/src/core/selinux-setup.c +++ b/src/core/selinux-setup.c @@ -30,11 +30,12 @@ #endif #include "selinux-setup.h" +#include "selinux-util.h" +#include "label.h" #include "mount-setup.h" #include "macro.h" #include "util.h" #include "log.h" -#include "label.h" #ifdef HAVE_SELINUX static int null_log(int type, const char *fmt, ...) { @@ -57,9 +58,6 @@ int selinux_setup(bool *loaded_policy) { cb.func_log = null_log; selinux_set_callback(SELINUX_CB_LOG, cb); - /* Make sure getcon() works, which needs /proc and /sys */ - mount_setup_early(); - /* Already initialized by somebody else? */ r = getcon_raw(&con); if (r == 0) { @@ -83,7 +81,7 @@ int selinux_setup(bool *loaded_policy) { char timespan[FORMAT_TIMESPAN_MAX]; char *label; - label_retest_selinux(); + retest_selinux(); /* Transition to the new context */ r = label_get_create_label_from_exe(SYSTEMD_BINARY_PATH, &label); @@ -103,7 +101,7 @@ int selinux_setup(bool *loaded_policy) { after_load = now(CLOCK_MONOTONIC); log_info("Successfully loaded SELinux policy in %s.", - format_timespan(timespan, sizeof(timespan), after_load - before_load)); + format_timespan(timespan, sizeof(timespan), after_load - before_load, 0)); *loaded_policy = true;