[systemd-commits] 5 commits - Makefile.am TODO src/core src/shared

Lennart Poettering lennart at kemper.freedesktop.org
Mon Sep 17 17:20:31 PDT 2012


 Makefile.am               |    3 
 TODO                      |    2 
 src/core/bus-errors.h     |    1 
 src/core/dbus-manager.c   |    4 
 src/core/dbus-unit.c      |   13 
 src/core/manager.c        |    6 
 src/core/selinux-access.c |  605 ++++++++++++++++++++++++++++++++++++++++++++++
 src/core/selinux-access.h |   28 ++
 src/shared/util.c         |   14 -
 src/shared/util.h         |    1 
 10 files changed, 670 insertions(+), 7 deletions(-)

New commits:
commit 5f29d24decf9f48227b4970a65122b1adac84ffa
Author: Lennart Poettering <lennart at poettering.net>
Date:   Tue Sep 18 02:19:54 2012 +0200

    selinux: rework method tail, make it into a nulstr array

diff --git a/src/core/selinux-access.c b/src/core/selinux-access.c
index b207b0d..8a84071 100644
--- a/src/core/selinux-access.c
+++ b/src/core/selinux-access.c
@@ -65,79 +65,77 @@ struct auditstruct {
    check will be called.
 */
 
-static const char * const unit_methods[][2] = {{ "DisableUnitFiles", "disable" },
-                                               { "EnableUnitFiles", "enable" },
-                                               { "GetUnit", "status" },
-                                               { "GetUnitFileState",  "status" },
-                                               { "Kill", "stop" },
-                                               { "KillUnit", "stop" },
-                                               { "LinkUnitFiles", "enable" },
-                                               { "MaskUnitFiles", "disable" },
-                                               { "PresetUnitFiles", "enable" },
-                                               { "ReenableUnitFiles", "enable" },
-                                               { "Reexecute", "start" },
-                                               { "ReloadOrRestart", "start" },
-                                               { "ReloadOrRestartUnit", "start" },
-                                               { "ReloadOrTryRestart", "start" },
-                                               { "ReloadOrTryRestartUnit", "start" },
-                                               { "ReloadUnit", "reload" },
-                                               { "ResetFailedUnit", "stop" },
-                                               { "Restart", "start" },
-                                               { "RestartUnit", "start" },
-                                               { "Start", "start" },
-                                               { "StartUnit", "start" },
-                                               { "StartUnitReplace", "start" },
-                                               { "Stop", "stop" },
-                                               { "StopUnit", "stop" },
-                                               { "TryRestart", "start" },
-                                               { "TryRestartUnit", "start" },
-                                               { "UnmaskUnitFiles", "enable" },
-                                               { NULL, NULL }
-};
-
-static const char * const system_methods[][2] = { { "ClearJobs", "reboot" },
-                                                  { "CreateSnapshot", "status" },
-                                                  { "Dump", "status" },
-                                                  { "Exit", "halt" },
-                                                  { "FlushDevices", "halt" },
-                                                  { "Get", "status" },
-                                                  { "GetAll", "status" },
-                                                  { "GetJob", "status" },
-                                                  { "GetSeat", "status" },
-                                                  { "GetSession", "status" },
-                                                  { "GetSessionByPID", "status" },
-                                                  { "GetUnitByPID", "status" },
-                                                  { "GetUser", "status" },
-                                                  { "Halt", "halt" },
-                                                  { "Introspect", "status" },
-                                                  { "KExec", "reboot" },
-                                                  { "KillSession", "halt" },
-                                                  { "KillUser", "halt" },
-                                                  { "LoadUnit", "reload" },
-                                                  { "ListJobs", "status" },
-                                                  { "ListSeats", "status" },
-                                                  { "ListSessions", "status" },
-                                                  { "ListUnits", "status" },
-                                                  { "ListUnitFiles", "status" },
-                                                  { "ListUsers", "status" },
-                                                  { "LockSession", "halt" },
-                                                  { "PowerOff", "halt" },
-                                                  { "Reboot", "reboot" },
-                                                  { "Reload", "reload" },
-                                                  { "Reexecute", "reload" },
-                                                  { "ResetFailed", "reload" },
-                                                  { "Subscribe", "status" },
-                                                  { "SwithcRoot", "reboot" },
-                                                  { "SetEnvironment", "status" },
-                                                  { "SetUserLinger", "halt" },
-                                                  { "TerminateSeat", "halt" },
-                                                  { "TerminateSession", "halt" },
-                                                  { "TerminateUser", "halt" },
-                                                  { "Unsubscribe", "status" },
-                                                  { "UnsetEnvironment", "status" },
-                                                  { "UnsetAndSetEnvironment", "status" },
-                                                  { NULL, NULL }
-};
+static const char unit_methods[] =
+        "DisableUnitFiles\0"       "disable\0"
+        "EnableUnitFiles\0"        "enable\0"
+        "GetUnit\0"                "status\0"
+        "GetUnitFileState\0"       "status\0"
+        "Kill\0"                   "stop\0"
+        "KillUnit\0"               "stop\0"
+        "LinkUnitFiles\0"          "enable\0"
+        "MaskUnitFiles\0"          "disable\0"
+        "PresetUnitFiles\0"        "enable\0"
+        "ReenableUnitFiles\0"      "enable\0"
+        "ReloadOrRestart\0"        "start\0"
+        "ReloadOrRestartUnit\0"    "start\0"
+        "ReloadOrTryRestart\0"     "start\0"
+        "ReloadOrTryRestartUnit\0" "start\0"
+        "Reload\0"                 "reload\0"
+        "ReloadUnit\0"             "reload\0"
+        "ResetFailedUnit\0"        "stop\0"
+        "Restart\0"                "start\0"
+        "RestartUnit\0"            "start\0"
+        "Start\0"                  "start\0"
+        "StartUnit\0"              "start\0"
+        "StartUnitReplace\0"       "start\0"
+        "Stop\0"                   "stop\0"
+        "StopUnit\0"               "stop\0"
+        "TryRestart\0"             "start\0"
+        "TryRestartUnit\0"         "start\0"
+        "UnmaskUnitFiles\0"        "enable\0";
+
+static const char system_methods[] =
+        "ClearJobs\0"              "reboot\0"
+        "CreateSnapshot\0"         "status\0"
+        "Dump\0"                   "status\0"
+        "Exit\0"                   "halt\0"
+        "FlushDevices\0"           "halt\0"
+        "Get\0"                    "status\0"
+        "GetAll\0"                 "status\0"
+        "GetJob\0"                 "status\0"
+        "GetSeat\0"                "status\0"
+        "GetSession\0"             "status\0"
+        "GetSessionByPID\0"        "status\0"
+        "GetUnitByPID\0"           "status\0"
+        "GetUser\0"                "status\0"
+        "Halt\0"                   "halt\0"
+        "Introspect\0"             "status\0"
+        "KExec\0"                  "reboot\0"
+        "KillSession\0"            "halt\0"
+        "KillUser\0"               "halt\0"
+        "LoadUnit\0"               "reload\0"
+        "ListJobs\0"               "status\0"
+        "ListSeats\0"              "status\0"
+        "ListSessions\0"           "status\0"
+        "ListUnits\0"              "status\0"
+        "ListUnitFiles\0"          "status\0"
+        "ListUsers\0"              "status\0"
+        "LockSession\0"            "halt\0"
+        "PowerOff\0"               "halt\0"
+        "Reboot\0"                 "reboot\0"
+        "Reload\0"                 "reload\0"
+        "Reexecute\0"              "reload\0"
+        "ResetFailed\0"            "reload\0"
+        "Subscribe\0"              "status\0"
+        "SwithcRoot\0"             "reboot\0"
+        "SetEnvironment\0"         "status\0"
+        "SetUserLinger\0"          "halt\0"
+        "TerminateSeat\0"          "halt\0"
+        "TerminateSession\0"       "halt\0"
+        "TerminateUser\0"          "halt\0"
+        "Unsubscribe\0"            "status\0"
+        "UnsetEnvironment\0"       "status\0"
+        "UnsetAndSetEnvironment\0" "status\0";
 
 /*
    If the admin toggles the selinux enforcment mode this callback
@@ -422,32 +420,25 @@ static int get_calling_context(
    This function returns the SELinux permission to check and whether or not the
    check requires a unit file.
 */
-static void selinux_perm_lookup(const char *method, const char **perm, int *require_unit)
-{
-        int i;
-        *require_unit = -1;
-
-        for (i = 0; unit_methods[i][0]; i++) {
-                if (streq(method, unit_methods[i][0])) {
-                        *perm = unit_methods[i][1];
-                        *require_unit = 1;
-                        break;
+static void selinux_perm_lookup(const char *method, const char **perm, bool *require_unit) {
+        const char *m, *p;
+
+        NULSTR_FOREACH_PAIR(m, p, unit_methods)
+                if (streq(method, m)) {
+                        *perm = p;
+                        *require_unit = true;
+                        return;
                 }
-        }
 
-        if (*require_unit < 0) {
-                for (i = 0; system_methods[i][0]; i++) {
-                        if (streq(method, system_methods[i][0])) {
-                                *perm = system_methods[i][1];
-                                *require_unit = 0;
-                                break;
-                        }
+        NULSTR_FOREACH_PAIR(m, p, system_methods)
+                if (streq(method, m)) {
+                        *perm = p;
+                        *require_unit = false;
+                        return;
                 }
-        }
-        if (*require_unit < 0) {
-                *require_unit = 0;
-                *perm = "undefined";
-        }
+
+        *require_unit = false;
+        *perm = "undefined";
 }
 
 /*
@@ -524,7 +515,7 @@ void selinux_access_finish(void) {
 
 int selinux_unit_access_check(DBusConnection *connection, DBusMessage *message, Manager *m, const char *path, DBusError *error) {
         const char *perm;
-        int require_unit;
+        bool require_unit;
         const char *member;
         int r;
 
@@ -552,7 +543,7 @@ int selinux_unit_access_check(DBusConnection *connection, DBusMessage *message,
 int selinux_manager_access_check(DBusConnection *connection, DBusMessage *message, Manager *m, DBusError *error) {
         int r = -1;
         const char *member;
-        int require_unit;
+        bool require_unit;
         const char *perm;
         char *path = NULL;
 

commit c3090674833c8bd34fbdb0e743f1c47d85dd14fb
Author: Lennart Poettering <lennart at poettering.net>
Date:   Tue Sep 18 01:55:49 2012 +0200

    selinux: use existing library calls for audit data

diff --git a/Makefile.am b/Makefile.am
index 637a536..c7aff78 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -1038,6 +1038,7 @@ libsystemd_core_la_LIBADD = \
 	libsystemd-label.la \
 	libsystemd-shared.la \
 	libsystemd-dbus.la \
+	libsystemd-audit.la \
 	libsystemd-id128-internal.la \
 	libudev.la \
 	$(LIBWRAP_LIBS) \
diff --git a/TODO b/TODO
index 22d8473..bdfbffb 100644
--- a/TODO
+++ b/TODO
@@ -26,6 +26,8 @@ F18:
 
 * https://bugzilla.gnome.org/show_bug.cgi?id=680689
 
+* Retest multi-seat
+
 * selinux: merge systemd selinux access controls (dwalsh)
 
 Features:
diff --git a/src/core/dbus-manager.c b/src/core/dbus-manager.c
index ae88546..2235e36 100644
--- a/src/core/dbus-manager.c
+++ b/src/core/dbus-manager.c
@@ -580,7 +580,7 @@ static DBusHandlerResult bus_manager_message_handler(DBusConnection *connection,
 
         member = dbus_message_get_member(message);
         r = selinux_manager_access_check(connection, message, m, &error);
-        if (r)
+        if (r < 0)
                 return bus_send_error_reply(connection, message, &error, r);
 
         if (dbus_message_is_method_call(message, "org.freedesktop.systemd1.Manager", "GetUnit")) {
diff --git a/src/core/manager.c b/src/core/manager.c
index cf06917..f56d390 100644
--- a/src/core/manager.c
+++ b/src/core/manager.c
@@ -734,7 +734,8 @@ int manager_add_job_by_name(Manager *m, JobType type, const char *name, JobMode
         assert(name);
         assert(mode < _JOB_MODE_MAX);
 
-        if ((r = manager_load_unit(m, name, NULL, NULL, &unit)) < 0)
+        r = manager_load_unit(m, name, NULL, NULL, &unit);
+        if (r < 0)
                 return r;
 
         return manager_add_job(m, type, unit, mode, override, e, _ret);
@@ -846,7 +847,8 @@ int manager_load_unit(Manager *m, const char *name, const char *path, DBusError
         /* This will load the service information files, but not actually
          * start any services or anything. */
 
-        if ((r = manager_load_unit_prepare(m, name, path, e, _ret)) != 0)
+        r = manager_load_unit_prepare(m, name, path, e, _ret);
+        if (r != 0)
                 return r;
 
         manager_dispatch_load_queue(m);
diff --git a/src/core/selinux-access.c b/src/core/selinux-access.c
index fc1df86..b207b0d 100644
--- a/src/core/selinux-access.c
+++ b/src/core/selinux-access.c
@@ -1,4 +1,3 @@
-
 /*-*- Mode: C; c-basic-offset: 8; indent-tabs-mode: nil -*-*/
 
 /***
@@ -31,6 +30,7 @@
 #include "dbus-unit.h"
 #include "bus-errors.h"
 #include "dbus-common.h"
+#include "audit.h"
 
 #include <stdio.h>
 #include <string.h>
@@ -212,49 +212,6 @@ finish:
         return r;
 }
 
-static int get_cmdline(pid_t pid, char **cmdline) {
-        char buf[PATH_MAX];
-        FILE *f;
-        int count;
-        int n;
-
-        snprintf(buf, sizeof(buf), "/proc/%lu/cmdline", (unsigned long) pid);
-        f = fopen(buf, "re");
-        if (!f) {
-                return -errno;
-        }
-        count = fread(buf, 1, sizeof(buf), f);
-        fclose(f);
-        if (! count) {
-                return -errno;
-        }
-        for (n = 0; n < count - 1; n++)
-        {
-                if (buf[n] == '\0')
-                        buf[n] = ' ';
-        }
-        (*cmdline) = strdup(buf);
-        if (! (*cmdline)) {
-                return -errno;
-        }
-        return 0;
-}
-
-static int get_pid_id(pid_t pid, const char *file, uid_t *id) {
-        char buf[PATH_MAX];
-        int r = 0;
-        FILE *f;
-        snprintf(buf, sizeof(buf), "/proc/%lu/%s", (unsigned long) pid, file);
-        f = fopen(buf, "re");
-        if (!f)
-                return -errno;
-        fscanf(f, "%d", id);
-        if (ferror(f))
-                r = -errno;
-        fclose(f);
-        return r;
-}
-
 /* This mimics dbus_bus_get_unix_user() */
 static int bus_get_audit_data(
                 DBusConnection *connection,
@@ -263,74 +220,29 @@ static int bus_get_audit_data(
                 DBusError *error) {
 
         pid_t pid;
-        DBusMessage *m = NULL, *reply = NULL;
-        int r = -1;
-
-        m = dbus_message_new_method_call(
-                        DBUS_SERVICE_DBUS,
-                        DBUS_PATH_DBUS,
-                        DBUS_INTERFACE_DBUS,
-                        "GetConnectionUnixProcessID");
-        if (!m) {
-                r = -errno;
-                dbus_set_error_const(error, DBUS_ERROR_NO_MEMORY, NULL);
-                goto finish;
-        }
-
-        r = dbus_message_append_args(
-                m,
-                DBUS_TYPE_STRING, &name,
-                DBUS_TYPE_INVALID);
-        if (!r) {
-                r = -errno;
-                dbus_set_error_const(error, DBUS_ERROR_NO_MEMORY, NULL);
-                goto finish;
-        }
-
-        reply = dbus_connection_send_with_reply_and_block(connection, m, -1, error);
-        if (!reply) {
-                r = -errno;
-                goto finish;
-        }
-
-        r = dbus_set_error_from_message(error, reply);
-        if (!r) {
-                r = -errno;
-                goto finish;
-        }
+        int r;
 
-        r = dbus_message_get_args(
-                reply, error,
-                DBUS_TYPE_UINT32, &pid,
-                DBUS_TYPE_INVALID);
-        if (!r) {
-                r = -errno;
-                goto finish;
-        }
+        pid = bus_get_unix_process_id(connection, name, error);
+        if (pid <= 0)
+                return -EINVAL;
 
-        r = get_pid_id(pid, "loginuid", &(audit->loginuid));
-        if (r)
-                goto finish;
+        r = audit_loginuid_from_pid(pid, &audit->loginuid);
+        if (r < 0)
+                return r;
 
-        r = get_pid_id(pid, "uid", &(audit->uid));
-        if (r)
-                goto finish;
+        r = get_process_uid(pid, &audit->uid);
+        if (r < 0)
+                return r;
 
-        r = get_pid_id(pid, "gid", &(audit->gid));
-        if (r)
-                goto finish;
+        r = get_process_gid(pid, &audit->gid);
+        if (r < 0)
+                return r;
 
-        r = get_cmdline(pid, &(audit->cmdline));
-        if (r)
-                goto finish;
+        r = get_process_cmdline(pid, LINE_MAX, true, &audit->cmdline);
+        if (r < 0)
+                return r;
 
-        r = 0;
-finish:
-        if (m)
-                dbus_message_unref(m);
-        if (reply)
-                dbus_message_unref(reply);
-        return r;
+        return 0;
 }
 
 /*
@@ -435,49 +347,38 @@ static int get_audit_data(
         DBusError *error) {
 
         const char *sender;
-        int r = -1;
+        int r;
 
         sender = dbus_message_get_sender(message);
-        if (sender) {
-                r = bus_get_audit_data(
-                        connection,
-                        sender,
-                        audit,
-                        error);
-                if (r)
-                        goto finish;
-        } else {
+        if (sender)
+                return bus_get_audit_data(connection, sender, audit, error);
+        else {
                 int fd;
                 struct ucred ucred;
                 socklen_t len;
-                r = dbus_connection_get_unix_fd(connection, &fd);
-                if (!r) {
-                        r = -EINVAL;
-                        goto finish;
-                }
+
+                if (!dbus_connection_get_unix_fd(connection, &fd))
+                        return -EINVAL;
 
                 r = getsockopt(fd, SOL_SOCKET, SO_PEERCRED, &ucred, &len);
                 if (r < 0) {
-                        r = -errno;
                         log_error("Failed to determine peer credentials: %m");
-                        goto finish;
+                        return -errno;
                 }
+
                 audit->uid = ucred.uid;
                 audit->gid = ucred.gid;
 
-                r = get_pid_id(ucred.pid, "loginuid", &(audit->loginuid));
-                if (r)
-                        goto finish;
-
-                r = get_cmdline(ucred.pid, &(audit->cmdline));
-                if (r)
-                        goto finish;
-        }
+                r = audit_loginuid_from_pid(ucred.pid, &audit->loginuid);
+                if (r < 0)
+                        return r;
 
-        r = 0;
+                r = get_process_cmdline(ucred.pid, LINE_MAX, true, &audit->cmdline);
+                if (r < 0)
+                        return r;
 
-finish:
-        return r;
+                return 0;
+        }
 }
 
 /*
@@ -561,7 +462,9 @@ static int selinux_access_check(DBusConnection *connection, DBusMessage *message
         int r = 0;
         const char *tclass = NULL;
         struct auditstruct audit;
-        audit.uid = audit.loginuid = audit.gid = -1;
+
+        audit.uid = audit.loginuid = (uid_t) -1;
+        audit.gid = (gid_t) -1;
         audit.cmdline = NULL;
         audit.path = path;
 
@@ -589,9 +492,9 @@ static int selinux_access_check(DBusConnection *connection, DBusMessage *message
 
         (void) get_audit_data(connection, message, &audit, error);
 
-        errno=0;
+        errno= 0;
         r = selinux_check_access(scon, fcon, tclass, perm, &audit);
-        if ( r < 0) {
+        if (r < 0) {
                 r = -errno;
                 log_error("SELinux Denied \"%s\"", audit.cmdline);
 
@@ -622,21 +525,23 @@ void selinux_access_finish(void) {
 int selinux_unit_access_check(DBusConnection *connection, DBusMessage *message, Manager *m, const char *path, DBusError *error) {
         const char *perm;
         int require_unit;
-        const char *member = dbus_message_get_member(message);
+        const char *member;
         int r;
 
         r = selinux_init(m, error);
-        if (r)
+        if (r < 0)
                 return r;
 
         if (! selinux_enabled)
                 return 0;
 
+        member = dbus_message_get_member(message);
+
         selinux_perm_lookup(member, &perm, &require_unit);
         log_debug("SELinux dbus-unit Look %s up perm %s require_unit %d", member, perm, require_unit);
 
         r = selinux_access_check(connection, message, m, error, perm, path);
-        if ((r < 0) && (!selinux_enforcing)) {
+        if (r < 0 && !selinux_enforcing) {
                 dbus_error_init(error);
                 r = 0;
         }
@@ -652,7 +557,7 @@ int selinux_manager_access_check(DBusConnection *connection, DBusMessage *messag
         char *path = NULL;
 
         r = selinux_init(m, error);
-        if (r)
+        if (r < 0)
                 return r;
 
         if (! selinux_enabled)
@@ -667,21 +572,19 @@ int selinux_manager_access_check(DBusConnection *connection, DBusMessage *messag
                 const char *name;
                 Unit *u;
 
-                r = dbus_message_get_args(
+                if (!dbus_message_get_args(
                         message,
                         error,
                         DBUS_TYPE_STRING, &name,
-                        DBUS_TYPE_INVALID);
-                if (!r)
+                        DBUS_TYPE_INVALID)) {
+                        r = -EINVAL;
                         goto finish;
+                }
 
-                u = manager_get_unit(m, name);
-                if ( !u ) {
-                        if ((r = manager_load_unit(m, name, NULL, error, &u)) < 0) {
-                                r = -errno;
-                                dbus_set_error(error, BUS_ERROR_NO_SUCH_UNIT, "Unit %s is not loaded.", name);
-                                goto finish;
-                        }
+                r = manager_load_unit(m, name, NULL, error, &u);
+                if (r < 0) {
+                        dbus_set_error(error, BUS_ERROR_NO_SUCH_UNIT, "Unit %s is not loaded.", name);
+                        goto finish;
                 }
 
                 path = u->source_path ? u->source_path : u->fragment_path;
@@ -706,5 +609,6 @@ int selinux_manager_access_check(DBusConnection *connection, DBusMessage *messag
         return 0;
 }
 
-void selinux_access_finish(void) {}
+void selinux_access_finish(void) {
+}
 #endif

commit aba15a0391a04d5444319a609737c6b05f71e7c9
Author: Lennart Poettering <lennart at poettering.net>
Date:   Tue Sep 18 01:55:24 2012 +0200

    selinux: prefer source path over fragment path

diff --git a/src/core/dbus-unit.c b/src/core/dbus-unit.c
index d86f60e..3d3458b 100644
--- a/src/core/dbus-unit.c
+++ b/src/core/dbus-unit.c
@@ -420,9 +420,9 @@ static DBusHandlerResult bus_unit_message_dispatch(Unit *u, DBusConnection *conn
                 connection,
                 message,
                 m,
-                (u->fragment_path ? u->fragment_path: u->source_path),
+                u->source_path ? u->source_path : u->fragment_path,
                 &error);
-        if (r)
+        if (r < 0)
                 return bus_send_error_reply(connection, message, &error, r);
 
         if (dbus_message_is_method_call(message, "org.freedesktop.systemd1.Unit", "Start"))
diff --git a/src/core/selinux-access.c b/src/core/selinux-access.c
index 30eab68..fc1df86 100644
--- a/src/core/selinux-access.c
+++ b/src/core/selinux-access.c
@@ -684,7 +684,7 @@ int selinux_manager_access_check(DBusConnection *connection, DBusMessage *messag
                         }
                 }
 
-                path = (u->fragment_path ? u->fragment_path: u->source_path);
+                path = u->source_path ? u->source_path : u->fragment_path;
         }
         r = selinux_access_check(connection, message, m, error, perm, path);
 

commit 901c3d0d85628e6a4708bc9748766029cf5c7f97
Author: Lennart Poettering <lennart at poettering.net>
Date:   Tue Sep 18 01:53:15 2012 +0200

    util: introduce get_process_gid()

diff --git a/src/shared/util.c b/src/shared/util.c
index 20e5faf..59c1417 100644
--- a/src/shared/util.c
+++ b/src/shared/util.c
@@ -1108,7 +1108,7 @@ int get_process_exe(pid_t pid, char **name) {
         return r;
 }
 
-int get_process_uid(pid_t pid, uid_t *uid) {
+static int get_process_id(pid_t pid, const char *field, uid_t *uid) {
         char *p;
         FILE *f;
         int r;
@@ -1140,8 +1140,8 @@ int get_process_uid(pid_t pid, uid_t *uid) {
 
                 l = strstrip(line);
 
-                if (startswith(l, "Uid:")) {
-                        l += 4;
+                if (startswith(l, field)) {
+                        l += strlen(field);
                         l += strspn(l, WHITESPACE);
 
                         l[strcspn(l, WHITESPACE)] = 0;
@@ -1159,6 +1159,14 @@ finish:
         return r;
 }
 
+int get_process_uid(pid_t pid, uid_t *uid) {
+        return get_process_id(pid, "Uid:", uid);
+}
+
+int get_process_gid(pid_t pid, gid_t *gid) {
+        return get_process_id(pid, "Gid:", gid);
+}
+
 char *strnappend(const char *s, const char *suffix, size_t b) {
         size_t a;
         char *r;
diff --git a/src/shared/util.h b/src/shared/util.h
index 71b5c52..2429339 100644
--- a/src/shared/util.h
+++ b/src/shared/util.h
@@ -246,6 +246,7 @@ int get_process_comm(pid_t pid, char **name);
 int get_process_cmdline(pid_t pid, size_t max_length, bool comm_fallback, char **line);
 int get_process_exe(pid_t pid, char **name);
 int get_process_uid(pid_t pid, uid_t *uid);
+int get_process_gid(pid_t pid, gid_t *gid);
 
 char hexchar(int x);
 int unhexchar(char c);

commit e2417e4143bb892e4599b01de7b031763421bb64
Author: Daniel J Walsh <dwalsh at redhat.com>
Date:   Thu Sep 6 16:23:11 2012 -0400

    selinux: add bus service access control
    
    -----BEGIN PGP SIGNED MESSAGE-----
    Hash: SHA1
    
    This patch adds the ability to look at the calling process that is trying to
    do dbus calls into systemd, then it checks with the SELinux policy to see if
    the calling process is allowed to do the activity.
    
    The basic idea is we want to allow NetworkManager_t to be able to start and
    stop ntpd.service, but not necessarly mysqld.service.
    
    Similarly we want to allow a root admin webadm_t that can only manage the
    apache environment.  systemctl enable httpd.service, systemctl disable
    iptables.service bad.
    
    To make this code cleaner, we really need to refactor the dbus-manager.c code.
     This has just become a huge if-then-else blob, which makes doing the correct
    check difficult.
    
    -----BEGIN PGP SIGNATURE-----
    Version: GnuPG v1.4.12 (GNU/Linux)
    Comment: Using GnuPG with Mozilla - http://www.enigmail.net/
    
    iEYEARECAAYFAlBJBi8ACgkQrlYvE4MpobOzTwCdEUikbvRWUCwOb83KlVF0Nuy5
    lRAAnjZZNuc19Z+aNxm3k3nwD4p/JYco
    =yops
    -----END PGP SIGNATURE-----

diff --git a/Makefile.am b/Makefile.am
index 6d21140..637a536 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -977,6 +977,8 @@ libsystemd_core_la_SOURCES = \
 	src/core/dbus-path.h \
 	src/core/cgroup.c \
 	src/core/cgroup.h \
+	src/core/selinux-access.c \
+	src/core/selinux-access.h \
 	src/core/selinux-setup.c \
 	src/core/selinux-setup.h \
 	src/core/ima-setup.c \
diff --git a/src/core/bus-errors.h b/src/core/bus-errors.h
index 04c1b28..dca7824 100644
--- a/src/core/bus-errors.h
+++ b/src/core/bus-errors.h
@@ -43,6 +43,7 @@
 #define BUS_ERROR_TRANSACTION_ORDER_IS_CYCLIC "org.freedesktop.systemd1.TransactionOrderIsCyclic"
 #define BUS_ERROR_SHUTTING_DOWN "org.freedesktop.systemd1.ShuttingDown"
 #define BUS_ERROR_NO_SUCH_PROCESS "org.freedesktop.systemd1.NoSuchProcess"
+#define BUS_ERROR_ACCESS_DENIED "org.freedesktop.systemd1.AccessDenied"
 
 static inline const char *bus_error(const DBusError *e, int r) {
         if (e && e->message)
diff --git a/src/core/dbus-manager.c b/src/core/dbus-manager.c
index 557b3e4..ae88546 100644
--- a/src/core/dbus-manager.c
+++ b/src/core/dbus-manager.c
@@ -30,6 +30,7 @@
 #include "build.h"
 #include "dbus-common.h"
 #include "install.h"
+#include "selinux-access.h"
 #include "watchdog.h"
 #include "hwclock.h"
 #include "path-util.h"
@@ -578,6 +579,9 @@ static DBusHandlerResult bus_manager_message_handler(DBusConnection *connection,
         dbus_error_init(&error);
 
         member = dbus_message_get_member(message);
+        r = selinux_manager_access_check(connection, message, m, &error);
+        if (r)
+                return bus_send_error_reply(connection, message, &error, r);
 
         if (dbus_message_is_method_call(message, "org.freedesktop.systemd1.Manager", "GetUnit")) {
                 const char *name;
diff --git a/src/core/dbus-unit.c b/src/core/dbus-unit.c
index fdfa5ee..d86f60e 100644
--- a/src/core/dbus-unit.c
+++ b/src/core/dbus-unit.c
@@ -26,6 +26,7 @@
 #include "dbus-unit.h"
 #include "bus-errors.h"
 #include "dbus-common.h"
+#include "selinux-access.h"
 
 const char bus_unit_interface[] _introspect_("Unit") = BUS_UNIT_INTERFACE;
 
@@ -411,9 +412,19 @@ static DBusHandlerResult bus_unit_message_dispatch(Unit *u, DBusConnection *conn
         JobType job_type = _JOB_TYPE_INVALID;
         char *path = NULL;
         bool reload_if_possible = false;
+        int r;
 
         dbus_error_init(&error);
 
+        r = selinux_unit_access_check(
+                connection,
+                message,
+                m,
+                (u->fragment_path ? u->fragment_path: u->source_path),
+                &error);
+        if (r)
+                return bus_send_error_reply(connection, message, &error, r);
+
         if (dbus_message_is_method_call(message, "org.freedesktop.systemd1.Unit", "Start"))
                 job_type = JOB_START;
         else if (dbus_message_is_method_call(message, "org.freedesktop.systemd1.Unit", "Stop"))
@@ -434,7 +445,6 @@ static DBusHandlerResult bus_unit_message_dispatch(Unit *u, DBusConnection *conn
                 const char *swho;
                 int32_t signo;
                 KillWho who;
-                int r;
 
                 if (!dbus_message_get_args(
                                     message,
@@ -479,7 +489,6 @@ static DBusHandlerResult bus_unit_message_dispatch(Unit *u, DBusConnection *conn
                 const char *smode;
                 JobMode mode;
                 Job *j;
-                int r;
 
                 if ((job_type == JOB_START && u->refuse_manual_start) ||
                     (job_type == JOB_STOP && u->refuse_manual_stop) ||
diff --git a/src/core/selinux-access.c b/src/core/selinux-access.c
new file mode 100644
index 0000000..30eab68
--- /dev/null
+++ b/src/core/selinux-access.c
@@ -0,0 +1,710 @@
+
+/*-*- Mode: C; c-basic-offset: 8; indent-tabs-mode: nil -*-*/
+
+/***
+  This file is part of systemd.
+
+  Copyright 2012 Dan Walsh
+
+  systemd is free software; you can redistribute it and/or modify it
+  under the terms of the GNU General Public License as published by
+  the Free Software Foundation; either version 2 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
+  General Public License for more details.
+
+  You should have received a copy of the GNU General Public License
+  along with systemd; If not, see <http://www.gnu.org/licenses/>.
+***/
+
+#include "util.h"
+#include "job.h"
+#include "manager.h"
+#include "selinux-access.h"
+
+#ifdef HAVE_SELINUX
+#include "dbus.h"
+#include "log.h"
+#include "dbus-unit.h"
+#include "bus-errors.h"
+#include "dbus-common.h"
+
+#include <stdio.h>
+#include <string.h>
+#include <errno.h>
+#include <selinux/selinux.h>
+#include <selinux/avc.h>
+#ifdef HAVE_AUDIT
+#include <libaudit.h>
+#endif
+#include <limits.h>
+
+/* FD to send audit messages to */
+static int audit_fd = -1;
+static int selinux_enabled = -1;
+static int first_time = 1;
+static int selinux_enforcing = 0;
+
+struct auditstruct {
+        const char *path;
+        char *cmdline;
+        uid_t loginuid;
+        uid_t uid;
+        gid_t gid;
+};
+
+/*
+   Define a mapping between the systemd method calls and the SELinux access to check.
+   We define two tables, one for access checks on unit files, and one for
+   access checks for the system in general.
+
+   If we do not find a match in either table, then the "undefined" system
+   check will be called.
+*/
+
+static const char * const unit_methods[][2] = {{ "DisableUnitFiles", "disable" },
+                                               { "EnableUnitFiles", "enable" },
+                                               { "GetUnit", "status" },
+                                               { "GetUnitFileState",  "status" },
+                                               { "Kill", "stop" },
+                                               { "KillUnit", "stop" },
+                                               { "LinkUnitFiles", "enable" },
+                                               { "MaskUnitFiles", "disable" },
+                                               { "PresetUnitFiles", "enable" },
+                                               { "ReenableUnitFiles", "enable" },
+                                               { "Reexecute", "start" },
+                                               { "ReloadOrRestart", "start" },
+                                               { "ReloadOrRestartUnit", "start" },
+                                               { "ReloadOrTryRestart", "start" },
+                                               { "ReloadOrTryRestartUnit", "start" },
+                                               { "ReloadUnit", "reload" },
+                                               { "ResetFailedUnit", "stop" },
+                                               { "Restart", "start" },
+                                               { "RestartUnit", "start" },
+                                               { "Start", "start" },
+                                               { "StartUnit", "start" },
+                                               { "StartUnitReplace", "start" },
+                                               { "Stop", "stop" },
+                                               { "StopUnit", "stop" },
+                                               { "TryRestart", "start" },
+                                               { "TryRestartUnit", "start" },
+                                               { "UnmaskUnitFiles", "enable" },
+                                               { NULL, NULL }
+};
+
+static const char * const system_methods[][2] = { { "ClearJobs", "reboot" },
+                                                  { "CreateSnapshot", "status" },
+                                                  { "Dump", "status" },
+                                                  { "Exit", "halt" },
+                                                  { "FlushDevices", "halt" },
+                                                  { "Get", "status" },
+                                                  { "GetAll", "status" },
+                                                  { "GetJob", "status" },
+                                                  { "GetSeat", "status" },
+                                                  { "GetSession", "status" },
+                                                  { "GetSessionByPID", "status" },
+                                                  { "GetUnitByPID", "status" },
+                                                  { "GetUser", "status" },
+                                                  { "Halt", "halt" },
+                                                  { "Introspect", "status" },
+                                                  { "KExec", "reboot" },
+                                                  { "KillSession", "halt" },
+                                                  { "KillUser", "halt" },
+                                                  { "LoadUnit", "reload" },
+                                                  { "ListJobs", "status" },
+                                                  { "ListSeats", "status" },
+                                                  { "ListSessions", "status" },
+                                                  { "ListUnits", "status" },
+                                                  { "ListUnitFiles", "status" },
+                                                  { "ListUsers", "status" },
+                                                  { "LockSession", "halt" },
+                                                  { "PowerOff", "halt" },
+                                                  { "Reboot", "reboot" },
+                                                  { "Reload", "reload" },
+                                                  { "Reexecute", "reload" },
+                                                  { "ResetFailed", "reload" },
+                                                  { "Subscribe", "status" },
+                                                  { "SwithcRoot", "reboot" },
+                                                  { "SetEnvironment", "status" },
+                                                  { "SetUserLinger", "halt" },
+                                                  { "TerminateSeat", "halt" },
+                                                  { "TerminateSession", "halt" },
+                                                  { "TerminateUser", "halt" },
+                                                  { "Unsubscribe", "status" },
+                                                  { "UnsetEnvironment", "status" },
+                                                  { "UnsetAndSetEnvironment", "status" },
+                                                  { NULL, NULL }
+};
+
+/*
+   If the admin toggles the selinux enforcment mode this callback
+   will get called before the next access check
+*/
+static int setenforce_callback(int enforcing)
+{
+        selinux_enforcing = enforcing;
+        return 0;
+}
+
+/* This mimics dbus_bus_get_unix_user() */
+static int bus_get_selinux_security_context(
+                DBusConnection *connection,
+                const char *name,
+                char **scon,
+                DBusError *error) {
+
+        DBusMessage *m = NULL, *reply = NULL;
+        int r;
+
+        m = dbus_message_new_method_call(
+                        DBUS_SERVICE_DBUS,
+                        DBUS_PATH_DBUS,
+                        DBUS_INTERFACE_DBUS,
+                        "GetConnectionSELinuxSecurityContext");
+        if (!m) {
+                r = -errno;
+                dbus_set_error_const(error, DBUS_ERROR_NO_MEMORY, NULL);
+                goto finish;
+        }
+
+        r = dbus_message_append_args(
+                m,
+                DBUS_TYPE_STRING, &name,
+                DBUS_TYPE_INVALID);
+        if (!r) {
+                r = -errno;
+                dbus_set_error_const(error, DBUS_ERROR_NO_MEMORY, NULL);
+                goto finish;
+        }
+
+        reply = dbus_connection_send_with_reply_and_block(connection, m, -1, error);
+        if (!reply) {
+                r = -errno;
+                goto finish;
+        }
+
+        r = dbus_set_error_from_message(error, reply);
+        if (!r) {
+                r = -errno;
+                goto finish;
+        }
+
+        r = dbus_message_get_args(
+                reply, error,
+                DBUS_TYPE_STRING, scon,
+                DBUS_TYPE_INVALID);
+        if (!r) {
+                r = -errno;
+                goto finish;
+        }
+
+        r = 0;
+finish:
+        if (m)
+                dbus_message_unref(m);
+
+        if (reply)
+                dbus_message_unref(reply);
+
+        return r;
+}
+
+static int get_cmdline(pid_t pid, char **cmdline) {
+        char buf[PATH_MAX];
+        FILE *f;
+        int count;
+        int n;
+
+        snprintf(buf, sizeof(buf), "/proc/%lu/cmdline", (unsigned long) pid);
+        f = fopen(buf, "re");
+        if (!f) {
+                return -errno;
+        }
+        count = fread(buf, 1, sizeof(buf), f);
+        fclose(f);
+        if (! count) {
+                return -errno;
+        }
+        for (n = 0; n < count - 1; n++)
+        {
+                if (buf[n] == '\0')
+                        buf[n] = ' ';
+        }
+        (*cmdline) = strdup(buf);
+        if (! (*cmdline)) {
+                return -errno;
+        }
+        return 0;
+}
+
+static int get_pid_id(pid_t pid, const char *file, uid_t *id) {
+        char buf[PATH_MAX];
+        int r = 0;
+        FILE *f;
+        snprintf(buf, sizeof(buf), "/proc/%lu/%s", (unsigned long) pid, file);
+        f = fopen(buf, "re");
+        if (!f)
+                return -errno;
+        fscanf(f, "%d", id);
+        if (ferror(f))
+                r = -errno;
+        fclose(f);
+        return r;
+}
+
+/* This mimics dbus_bus_get_unix_user() */
+static int bus_get_audit_data(
+                DBusConnection *connection,
+                const char *name,
+                struct auditstruct *audit,
+                DBusError *error) {
+
+        pid_t pid;
+        DBusMessage *m = NULL, *reply = NULL;
+        int r = -1;
+
+        m = dbus_message_new_method_call(
+                        DBUS_SERVICE_DBUS,
+                        DBUS_PATH_DBUS,
+                        DBUS_INTERFACE_DBUS,
+                        "GetConnectionUnixProcessID");
+        if (!m) {
+                r = -errno;
+                dbus_set_error_const(error, DBUS_ERROR_NO_MEMORY, NULL);
+                goto finish;
+        }
+
+        r = dbus_message_append_args(
+                m,
+                DBUS_TYPE_STRING, &name,
+                DBUS_TYPE_INVALID);
+        if (!r) {
+                r = -errno;
+                dbus_set_error_const(error, DBUS_ERROR_NO_MEMORY, NULL);
+                goto finish;
+        }
+
+        reply = dbus_connection_send_with_reply_and_block(connection, m, -1, error);
+        if (!reply) {
+                r = -errno;
+                goto finish;
+        }
+
+        r = dbus_set_error_from_message(error, reply);
+        if (!r) {
+                r = -errno;
+                goto finish;
+        }
+
+        r = dbus_message_get_args(
+                reply, error,
+                DBUS_TYPE_UINT32, &pid,
+                DBUS_TYPE_INVALID);
+        if (!r) {
+                r = -errno;
+                goto finish;
+        }
+
+        r = get_pid_id(pid, "loginuid", &(audit->loginuid));
+        if (r)
+                goto finish;
+
+        r = get_pid_id(pid, "uid", &(audit->uid));
+        if (r)
+                goto finish;
+
+        r = get_pid_id(pid, "gid", &(audit->gid));
+        if (r)
+                goto finish;
+
+        r = get_cmdline(pid, &(audit->cmdline));
+        if (r)
+                goto finish;
+
+        r = 0;
+finish:
+        if (m)
+                dbus_message_unref(m);
+        if (reply)
+                dbus_message_unref(reply);
+        return r;
+}
+
+/*
+   Any time an access gets denied this callback will be called
+   with the aduit data.  We then need to just copy the audit data into the msgbuf.
+*/
+static int audit_callback(void *auditdata, security_class_t cls,
+                          char *msgbuf, size_t msgbufsize)
+{
+        struct auditstruct *audit = (struct auditstruct *) auditdata;
+        snprintf(msgbuf, msgbufsize,
+                 "name=\"%s\" cmdline=\"%s\" auid=%d uid=%d gid=%d",
+                 audit->path, audit->cmdline, audit->loginuid,
+                 audit->uid, audit->gid);
+        return 0;
+}
+
+/*
+   Any time an access gets denied this callback will be called
+   code copied from dbus. If audit is turned on the messages will go as
+   user_avc's into the /var/log/audit/audit.log, otherwise they will be
+   sent to syslog.
+*/
+static int log_callback(int type, const char *fmt, ...)
+{
+        va_list ap;
+
+        va_start(ap, fmt);
+#ifdef HAVE_AUDIT
+        if (audit_fd >= 0) {
+                char buf[LINE_MAX*2];
+
+                vsnprintf(buf, sizeof(buf), fmt, ap);
+                audit_log_user_avc_message(audit_fd, AUDIT_USER_AVC,
+                                           buf, NULL, NULL, NULL, 0);
+                return 0;
+        }
+#endif
+        log_metav(LOG_USER | LOG_INFO, __FILE__, __LINE__, __FUNCTION__, fmt, ap);
+        va_end(ap);
+        return 0;
+}
+
+/*
+   Function must be called once to initialize the SELinux AVC environment.
+   Sets up callbacks.
+   If you want to cleanup memory you should need to call selinux_access_finish.
+*/
+static int access_init(void) {
+
+        int r = -1;
+
+        if (avc_open(NULL, 0)) {
+                log_full(LOG_ERR, "avc_open failed: %m\n");
+                return -errno;
+        }
+
+        selinux_set_callback(SELINUX_CB_AUDIT, (union selinux_callback) &audit_callback);
+        selinux_set_callback(SELINUX_CB_LOG, (union selinux_callback) &log_callback);
+        selinux_set_callback(SELINUX_CB_SETENFORCE, (union selinux_callback) &setenforce_callback);
+
+        if ((r = security_getenforce()) >= 0) {
+                setenforce_callback(r);
+                return 0;
+        }
+        r = -errno;
+        avc_destroy();
+        return r;
+}
+
+static int selinux_init(Manager *m, DBusError *error) {
+
+        int r;
+
+#ifdef HAVE_AUDIT
+        audit_fd = m->audit_fd;
+#endif
+        if (!first_time)
+                return 0;
+
+        if (selinux_enabled < 0)
+                selinux_enabled = is_selinux_enabled() == 1;
+
+        if (selinux_enabled) {
+                /* if not first time is not set, then initialize access */
+                r = access_init();
+                if (r < 0) {
+                        dbus_set_error(error, BUS_ERROR_ACCESS_DENIED, "Unable to initialize SELinux.");
+
+                        return r;
+                }
+                first_time = 0;
+        }
+
+        return 0;
+}
+
+static int get_audit_data(
+        DBusConnection *connection,
+        DBusMessage *message,
+        struct auditstruct *audit,
+        DBusError *error) {
+
+        const char *sender;
+        int r = -1;
+
+        sender = dbus_message_get_sender(message);
+        if (sender) {
+                r = bus_get_audit_data(
+                        connection,
+                        sender,
+                        audit,
+                        error);
+                if (r)
+                        goto finish;
+        } else {
+                int fd;
+                struct ucred ucred;
+                socklen_t len;
+                r = dbus_connection_get_unix_fd(connection, &fd);
+                if (!r) {
+                        r = -EINVAL;
+                        goto finish;
+                }
+
+                r = getsockopt(fd, SOL_SOCKET, SO_PEERCRED, &ucred, &len);
+                if (r < 0) {
+                        r = -errno;
+                        log_error("Failed to determine peer credentials: %m");
+                        goto finish;
+                }
+                audit->uid = ucred.uid;
+                audit->gid = ucred.gid;
+
+                r = get_pid_id(ucred.pid, "loginuid", &(audit->loginuid));
+                if (r)
+                        goto finish;
+
+                r = get_cmdline(ucred.pid, &(audit->cmdline));
+                if (r)
+                        goto finish;
+        }
+
+        r = 0;
+
+finish:
+        return r;
+}
+
+/*
+   This function returns the security context of the remote end of the dbus
+   connections.  Whether it is on the bus or a local connection.
+*/
+static int get_calling_context(
+        DBusConnection *connection,
+        DBusMessage *message,
+        security_context_t *scon,
+        DBusError *error) {
+
+        const char *sender;
+        int r;
+
+        /*
+           If sender exists then
+           if sender is NULL this indicates a local connection.  Grab the fd
+           from dbus and do an getpeercon to peers process context
+        */
+        sender = dbus_message_get_sender(message);
+        if (sender) {
+                r = bus_get_selinux_security_context(connection, sender, scon, error);
+                if (r < 0)
+                        return -EINVAL;
+        } else {
+                int fd;
+                r = dbus_connection_get_unix_fd(connection, &fd);
+                if (! r)
+                        return -EINVAL;
+
+                r = getpeercon(fd, scon);
+                if (r < 0)
+                        return -errno;
+        }
+
+        return 0;
+}
+
+/*
+   This function returns the SELinux permission to check and whether or not the
+   check requires a unit file.
+*/
+static void selinux_perm_lookup(const char *method, const char **perm, int *require_unit)
+{
+        int i;
+        *require_unit = -1;
+
+        for (i = 0; unit_methods[i][0]; i++) {
+                if (streq(method, unit_methods[i][0])) {
+                        *perm = unit_methods[i][1];
+                        *require_unit = 1;
+                        break;
+                }
+        }
+
+        if (*require_unit < 0) {
+                for (i = 0; system_methods[i][0]; i++) {
+                        if (streq(method, system_methods[i][0])) {
+                                *perm = system_methods[i][1];
+                                *require_unit = 0;
+                                break;
+                        }
+                }
+        }
+        if (*require_unit < 0) {
+                *require_unit = 0;
+                *perm = "undefined";
+        }
+}
+
+/*
+   This function communicates with the kernel to check whether or not it should
+   allow the access.
+   If the machine is in permissive mode it will return ok.  Audit messages will
+   still be generated if the access would be denied in enforcing mode.
+*/
+static int selinux_access_check(DBusConnection *connection, DBusMessage *message, Manager *m, DBusError *error, const char *perm, const char *path) {
+        security_context_t scon = NULL;
+        security_context_t fcon = NULL;
+        int r = 0;
+        const char *tclass = NULL;
+        struct auditstruct audit;
+        audit.uid = audit.loginuid = audit.gid = -1;
+        audit.cmdline = NULL;
+        audit.path = path;
+
+        r = get_calling_context(connection, message, &scon, error);
+        if (r != 0)
+                goto finish;
+
+        if (path) {
+                tclass = "service";
+                /* get the file context of the unit file */
+                r = getfilecon(path, &fcon);
+                if (r < 0) {
+                        log_full(LOG_ERR, "Failed to get security context on: %s %m\n",path);
+                        goto finish;
+                }
+
+        } else {
+                tclass = "system";
+                r = getcon(&fcon);
+                if (r < 0) {
+                        dbus_set_error(error, BUS_ERROR_ACCESS_DENIED, "Unable to get current context, SELinux policy denies access.");
+                        goto finish;
+                }
+        }
+
+        (void) get_audit_data(connection, message, &audit, error);
+
+        errno=0;
+        r = selinux_check_access(scon, fcon, tclass, perm, &audit);
+        if ( r < 0) {
+                r = -errno;
+                log_error("SELinux Denied \"%s\"", audit.cmdline);
+
+                dbus_set_error(error, BUS_ERROR_ACCESS_DENIED, "SELinux policy denies access.");
+        }
+
+        log_debug("SELinux checkaccess scon %s tcon %s tclass %s perm %s path %s: %d", scon, fcon, tclass, perm, path, r);
+finish:
+        if (r)
+                r = -errno;
+
+        free(audit.cmdline);
+        freecon(scon);
+        freecon(fcon);
+
+        return r;
+}
+
+/*
+  Clean up memory allocated in selinux_avc_init
+*/
+void selinux_access_finish(void) {
+        if (!first_time)
+                avc_destroy();
+        first_time = 1;
+}
+
+int selinux_unit_access_check(DBusConnection *connection, DBusMessage *message, Manager *m, const char *path, DBusError *error) {
+        const char *perm;
+        int require_unit;
+        const char *member = dbus_message_get_member(message);
+        int r;
+
+        r = selinux_init(m, error);
+        if (r)
+                return r;
+
+        if (! selinux_enabled)
+                return 0;
+
+        selinux_perm_lookup(member, &perm, &require_unit);
+        log_debug("SELinux dbus-unit Look %s up perm %s require_unit %d", member, perm, require_unit);
+
+        r = selinux_access_check(connection, message, m, error, perm, path);
+        if ((r < 0) && (!selinux_enforcing)) {
+                dbus_error_init(error);
+                r = 0;
+        }
+
+        return r;
+}
+
+int selinux_manager_access_check(DBusConnection *connection, DBusMessage *message, Manager *m, DBusError *error) {
+        int r = -1;
+        const char *member;
+        int require_unit;
+        const char *perm;
+        char *path = NULL;
+
+        r = selinux_init(m, error);
+        if (r)
+                return r;
+
+        if (! selinux_enabled)
+                return 0;
+
+        member = dbus_message_get_member(message);
+
+        selinux_perm_lookup(member, &perm, &require_unit);
+        log_debug("SELinux dbus-manager Lookup %s perm %s require_unit %d", member, perm, require_unit);
+
+        if (require_unit) {
+                const char *name;
+                Unit *u;
+
+                r = dbus_message_get_args(
+                        message,
+                        error,
+                        DBUS_TYPE_STRING, &name,
+                        DBUS_TYPE_INVALID);
+                if (!r)
+                        goto finish;
+
+                u = manager_get_unit(m, name);
+                if ( !u ) {
+                        if ((r = manager_load_unit(m, name, NULL, error, &u)) < 0) {
+                                r = -errno;
+                                dbus_set_error(error, BUS_ERROR_NO_SUCH_UNIT, "Unit %s is not loaded.", name);
+                                goto finish;
+                        }
+                }
+
+                path = (u->fragment_path ? u->fragment_path: u->source_path);
+        }
+        r = selinux_access_check(connection, message, m, error, perm, path);
+
+finish:
+        /* if SELinux is in permissive mode return 0 */
+        if (r && (!selinux_enforcing)) {
+                dbus_error_init(error);
+                r = 0;
+        }
+        return r;
+}
+
+#else
+int selinux_unit_access_check(DBusConnection *connection, DBusMessage *message, Manager *m, const char *path, DBusError *error) {
+        return 0;
+}
+
+int selinux_manager_access_check(DBusConnection *connection, DBusMessage *message, Manager *m, DBusError *error) {
+        return 0;
+}
+
+void selinux_access_finish(void) {}
+#endif
diff --git a/src/core/selinux-access.h b/src/core/selinux-access.h
new file mode 100644
index 0000000..a426e0e
--- /dev/null
+++ b/src/core/selinux-access.h
@@ -0,0 +1,28 @@
+/*-*- Mode: C; c-basic-offset: 8; indent-tabs-mode: nil -*-*/
+
+#ifndef selinuxaccesshfoo
+#define selinuxaccesshfoo
+
+/***
+  This file is part of systemd.
+
+  Copyright 2012 Dan Walsh
+
+  systemd is free software; you can redistribute it and/or modify it
+  under the terms of the GNU General Public License as published by
+  the Free Software Foundation; either version 2 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
+  General Public License for more details.
+
+  You should have received a copy of the GNU General Public License
+  along with systemd; If not, see <http://www.gnu.org/licenses/>.
+***/
+
+void selinux_access_finish(void);
+int selinux_manager_access_check(DBusConnection *connection, DBusMessage *message, Manager *m, DBusError *error);
+int selinux_unit_access_check(DBusConnection *connection, DBusMessage *message, Manager *m, const char *path, DBusError *error);
+#endif



More information about the systemd-commits mailing list