chiark / gitweb /
Classify processes from sessions into cgroups
[elogind.git] / src / cgroups-agent / cgroups-agent.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
8   systemd is free software; you can redistribute it and/or modify it
9   under the terms of the GNU Lesser General Public License as published by
10   the Free Software Foundation; either version 2.1 of the License, or
11   (at your option) any later version.
12
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   Lesser General Public License for more details.
17
18   You should have received a copy of the GNU Lesser General Public License
19   along with systemd; If not, see <http://www.gnu.org/licenses/>.
20 ***/
21
22 #include <stdlib.h>
23
24 #include "sd-bus.h"
25 #include "log.h"
26 #include "bus-util.h"
27
28 int main(int argc, char *argv[]) {
29         _cleanup_bus_flush_close_unref_ sd_bus *bus = NULL;
30         int r;
31
32         if (argc != 2) {
33                 log_error("Incorrect number of arguments.");
34                 return EXIT_FAILURE;
35         }
36
37         log_set_target(LOG_TARGET_AUTO);
38         log_parse_environment();
39         log_open();
40
41 #if 0
42         /* We send this event to the private D-Bus socket and then the
43          * system instance will forward this to the system bus. We do
44          * this to avoid an activation loop when we start dbus when we
45          * are called when the dbus service is shut down. */
46
47         r = bus_open_system_systemd(&bus);
48 #else
49         /* Unlike in systemd where this has to use a private socket,
50            since elogind doesn't associate control groups with services
51            and doesn't manage the dbus service, we can just use the
52            system bus.  */
53         r = sd_bus_open_system(&bus);
54 #endif // 0
55
56         if (r < 0) {
57 #if 0
58                 /* If we couldn't connect we assume this was triggered
59                  * while systemd got restarted/transitioned from
60                  * initrd to the system, so let's ignore this */
61                 log_debug_errno(r, "Failed to get D-Bus connection: %m");
62 #else
63                 /* If dbus isn't running or responding, there is nothing
64                  * we can do about it. */
65                 log_debug_errno(r, "Failed to open system bus: %m");
66 #endif
67                 return EXIT_FAILURE;
68         }
69
70         r = sd_bus_emit_signal(bus,
71                                "/org/freedesktop/systemd1/agent",
72                                "org.freedesktop.systemd1.Agent",
73                                "Released",
74                                "s", argv[1]);
75         if (r < 0) {
76 #if 0
77                 log_debug_errno(r, "Failed to send signal message on private connection: %m");
78 #else
79                 log_debug_errno(r, "Failed to send signal message: %m");
80 #endif
81                 return EXIT_FAILURE;
82         }
83
84         return EXIT_SUCCESS;
85 }