chiark / gitweb /
SMACK: Add configuration options. (v3)
[elogind.git] / src / core / dbus-swap.c
1 /*-*- Mode: C; c-basic-offset: 8; indent-tabs-mode: nil -*-*/
2
3 /***
4   This file is part of systemd.
5
6   Copyright 2010 Lennart Poettering
7   Copyright 2010 Maarten Lankhorst
8
9   systemd is free software; you can redistribute it and/or modify it
10   under the terms of the GNU Lesser General Public License as published by
11   the Free Software Foundation; either version 2.1 of the License, or
12   (at your option) any later version.
13
14   systemd is distributed in the hope that it will be useful, but
15   WITHOUT ANY WARRANTY; without even the implied warranty of
16   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17   Lesser General Public License for more details.
18
19   You should have received a copy of the GNU Lesser General Public License
20   along with systemd; If not, see <http://www.gnu.org/licenses/>.
21 ***/
22
23 #include <errno.h>
24
25 #include "dbus-unit.h"
26 #include "dbus-swap.h"
27 #include "dbus-execute.h"
28 #include "dbus-kill.h"
29 #include "dbus-common.h"
30 #include "selinux-access.h"
31
32 #define BUS_SWAP_INTERFACE                                              \
33         " <interface name=\"org.freedesktop.systemd1.Swap\">\n"         \
34         "  <property name=\"What\" type=\"s\" access=\"read\"/>\n"      \
35         "  <property name=\"Priority\" type=\"i\" access=\"read\"/>\n"  \
36         "  <property name=\"TimeoutUSec\" type=\"t\" access=\"read\"/>\n" \
37         BUS_EXEC_COMMAND_INTERFACE("ExecActivate")                      \
38         BUS_EXEC_COMMAND_INTERFACE("ExecDeactivate")                    \
39         BUS_EXEC_CONTEXT_INTERFACE                                      \
40         BUS_KILL_CONTEXT_INTERFACE                                      \
41         "  <property name=\"ControlPID\" type=\"u\" access=\"read\"/>\n" \
42         "  <property name=\"Result\" type=\"s\" access=\"read\"/>\n"    \
43         " </interface>\n"
44
45 #define INTROSPECTION                                                   \
46         DBUS_INTROSPECT_1_0_XML_DOCTYPE_DECL_NODE                       \
47         "<node>\n"                                                      \
48         BUS_UNIT_INTERFACE                                              \
49         BUS_SWAP_INTERFACE                                              \
50         BUS_PROPERTIES_INTERFACE                                        \
51         BUS_PEER_INTERFACE                                              \
52         BUS_INTROSPECTABLE_INTERFACE                                    \
53         "</node>\n"
54
55 #define INTERFACES_LIST                              \
56         BUS_UNIT_INTERFACES_LIST                     \
57         "org.freedesktop.systemd1.Swap\0"
58
59 const char bus_swap_interface[] _introspect_("Swap") = BUS_SWAP_INTERFACE;
60
61 const char bus_swap_invalidating_properties[] =
62         "What\0"
63         "Priority\0"
64         "ExecActivate\0"
65         "ExecDeactivate\0"
66         "ControlPID\0"
67         "Result\0";
68
69 static int bus_swap_append_priority(DBusMessageIter *i, const char *property, void *data) {
70         Swap *s = data;
71         dbus_int32_t j;
72
73         assert(i);
74         assert(property);
75         assert(s);
76
77         if (s->from_proc_swaps)
78                 j = s->parameters_proc_swaps.priority;
79         else if (s->from_fragment)
80                 j = s->parameters_fragment.priority;
81         else
82                 j = -1;
83
84         if (!dbus_message_iter_append_basic(i, DBUS_TYPE_INT32, &j))
85                 return -ENOMEM;
86
87         return 0;
88 }
89
90 static DEFINE_BUS_PROPERTY_APPEND_ENUM(bus_swap_append_swap_result, swap_result, SwapResult);
91
92 static const BusProperty bus_swap_properties[] = {
93         { "What",       bus_property_append_string, "s", offsetof(Swap, what),  true },
94         { "Priority",   bus_swap_append_priority,   "i", 0 },
95         BUS_EXEC_COMMAND_PROPERTY("ExecActivate",   offsetof(Swap, exec_command[SWAP_EXEC_ACTIVATE]),   false),
96         BUS_EXEC_COMMAND_PROPERTY("ExecDeactivate", offsetof(Swap, exec_command[SWAP_EXEC_DEACTIVATE]), false),
97         { "ControlPID", bus_property_append_pid,    "u", offsetof(Swap, control_pid) },
98         { "Result",     bus_swap_append_swap_result,"s", offsetof(Swap, result)      },
99         { NULL, }
100 };
101
102 DBusHandlerResult bus_swap_message_handler(Unit *u, DBusConnection *c, DBusMessage *message) {
103         Swap *s = SWAP(u);
104         const BusBoundProperties bps[] = {
105                 { "org.freedesktop.systemd1.Unit", bus_unit_properties,         u },
106                 { "org.freedesktop.systemd1.Swap", bus_swap_properties,         s },
107                 { "org.freedesktop.systemd1.Swap", bus_exec_context_properties, &s->exec_context },
108                 { "org.freedesktop.systemd1.Swap", bus_kill_context_properties, &s->kill_context },
109                 { NULL, }
110         };
111
112         SELINUX_UNIT_ACCESS_CHECK(u, c, message, "status");
113
114         return bus_default_message_handler(c, message, INTROSPECTION, INTERFACES_LIST, bps);
115 }