chiark / gitweb /
Prep v231: Add missing line breaks in loginctl help text
[elogind.git] / src / update-utmp / update-utmp.c
1 /***
2   This file is part of systemd.
3
4   Copyright 2010 Lennart Poettering
5
6   systemd is free software; you can redistribute it and/or modify it
7   under the terms of the GNU Lesser General Public License as published by
8   the Free Software Foundation; either version 2.1 of the License, or
9   (at your option) any later version.
10
11   systemd is distributed in the hope that it will be useful, but
12   WITHOUT ANY WARRANTY; without even the implied warranty of
13   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14   Lesser General Public License for more details.
15
16   You should have received a copy of the GNU Lesser General Public License
17   along with systemd; If not, see <http://www.gnu.org/licenses/>.
18 ***/
19
20 #include <errno.h>
21 #include <string.h>
22 #include <unistd.h>
23
24 #ifdef HAVE_AUDIT
25 #include <libaudit.h>
26 #endif
27
28 #include "sd-bus.h"
29
30 //#include "alloc-util.h"
31 #include "bus-error.h"
32 //#include "bus-util.h"
33 //#include "formats-util.h"
34 //#include "log.h"
35 //#include "macro.h"
36 //#include "special.h"
37 //#include "unit-name.h"
38 //#include "util.h"
39 #include "utmp-wtmp.h"
40
41 /// Additional includes needed by elogind
42 #include "string-util.h"
43 #include "time-util.h"
44 #include "update-utmp.h"
45 typedef struct Context {
46         sd_bus *bus;
47 #ifdef HAVE_AUDIT
48         int audit_fd;
49 #endif
50 } Context;
51
52 static usec_t get_startup_time(Context *c) {
53         _cleanup_(sd_bus_error_free) sd_bus_error error = SD_BUS_ERROR_NULL;
54         usec_t t = 0;
55         int r;
56
57         assert(c);
58
59         r = sd_bus_get_property_trivial(
60                         c->bus,
61                         "org.freedesktop.systemd1",
62                         "/org/freedesktop/systemd1",
63                         "org.freedesktop.systemd1.Manager",
64                         "UserspaceTimestamp",
65                         &error,
66                         't', &t);
67         if (r < 0) {
68                 log_error_errno(r, "Failed to get timestamp: %s", bus_error_message(&error, r));
69                 return 0;
70         }
71
72         return t;
73 }
74
75 #if 0 /// UNNEEDED by elogind
76 static int get_current_runlevel(Context *c) {
77         static const struct {
78                 const int runlevel;
79                 const char *special;
80         } table[] = {
81                 /* The first target of this list that is active or has
82                  * a job scheduled wins. We prefer runlevels 5 and 3
83                  * here over the others, since these are the main
84                  * runlevels used on Fedora. It might make sense to
85                  * change the order on some distributions. */
86                 { '5', SPECIAL_GRAPHICAL_TARGET  },
87                 { '3', SPECIAL_MULTI_USER_TARGET },
88                 { '1', SPECIAL_RESCUE_TARGET     },
89         };
90
91         _cleanup_(sd_bus_error_free) sd_bus_error error = SD_BUS_ERROR_NULL;
92         int r;
93         unsigned i;
94
95         assert(c);
96
97         for (i = 0; i < ELEMENTSOF(table); i++) {
98                 _cleanup_free_ char *state = NULL, *path = NULL;
99
100                 path = unit_dbus_path_from_name(table[i].special);
101                 if (!path)
102                         return log_oom();
103
104                 r = sd_bus_get_property_string(
105                                 c->bus,
106                                 "org.freedesktop.systemd1",
107                                 path,
108                                 "org.freedesktop.systemd1.Unit",
109                                 "ActiveState",
110                                 &error,
111                                 &state);
112                 if (r < 0)
113                         return log_warning_errno(r, "Failed to get state: %s", bus_error_message(&error, r));
114
115                 if (streq(state, "active") || streq(state, "reloading"))
116                         return table[i].runlevel;
117         }
118
119         return 0;
120 }
121 #endif // 0
122
123 static int on_reboot(Context *c) {
124         int r = 0, q;
125         usec_t t;
126
127         assert(c);
128
129         /* We finished start-up, so let's write the utmp
130          * record and send the audit msg */
131
132 #ifdef HAVE_AUDIT
133         if (c->audit_fd >= 0)
134                 if (audit_log_user_comm_message(c->audit_fd, AUDIT_SYSTEM_BOOT, "", "systemd-update-utmp", NULL, NULL, NULL, 1) < 0 &&
135                     errno != EPERM) {
136                         r = log_error_errno(errno, "Failed to send audit message: %m");
137                 }
138 #endif
139
140         /* If this call fails it will return 0, which
141          * utmp_put_reboot() will then fix to the current time */
142         t = get_startup_time(c);
143
144         q = utmp_put_reboot(t);
145         if (q < 0) {
146                 log_error_errno(q, "Failed to write utmp record: %m");
147                 r = q;
148         }
149
150         return r;
151 }
152
153 static int on_shutdown(Context *c) {
154         int r = 0, q;
155
156         assert(c);
157
158         /* We started shut-down, so let's write the utmp
159          * record and send the audit msg */
160
161 #ifdef HAVE_AUDIT
162         if (c->audit_fd >= 0)
163                 if (audit_log_user_comm_message(c->audit_fd, AUDIT_SYSTEM_SHUTDOWN, "", "systemd-update-utmp", NULL, NULL, NULL, 1) < 0 &&
164                     errno != EPERM) {
165                         r = log_error_errno(errno, "Failed to send audit message: %m");
166                 }
167 #endif
168
169         q = utmp_put_shutdown();
170         if (q < 0) {
171                 log_error_errno(q, "Failed to write utmp record: %m");
172                 r = q;
173         }
174
175         return r;
176 }
177
178 #if 0 /// UNNEEDED by elogind
179 static int on_runlevel(Context *c) {
180         int r = 0, q, previous, runlevel;
181
182         assert(c);
183
184         /* We finished changing runlevel, so let's write the
185          * utmp record and send the audit msg */
186
187         /* First, get last runlevel */
188         q = utmp_get_runlevel(&previous, NULL);
189
190         if (q < 0) {
191                 if (q != -ESRCH && q != -ENOENT)
192                         return log_error_errno(q, "Failed to get current runlevel: %m");
193
194                 previous = 0;
195         }
196
197         /* Secondly, get new runlevel */
198         runlevel = get_current_runlevel(c);
199
200         if (runlevel < 0)
201                 return runlevel;
202
203         if (previous == runlevel)
204                 return 0;
205
206 #ifdef HAVE_AUDIT
207         if (c->audit_fd >= 0) {
208                 _cleanup_free_ char *s = NULL;
209
210                 if (asprintf(&s, "old-level=%c new-level=%c",
211                              previous > 0 ? previous : 'N',
212                              runlevel > 0 ? runlevel : 'N') < 0)
213                         return log_oom();
214
215                 if (audit_log_user_comm_message(c->audit_fd, AUDIT_SYSTEM_RUNLEVEL, s, "systemd-update-utmp", NULL, NULL, NULL, 1) < 0 && errno != EPERM)
216                         r = log_error_errno(errno, "Failed to send audit message: %m");
217         }
218 #endif
219
220         q = utmp_put_runlevel(runlevel, previous);
221         if (q < 0 && q != -ESRCH && q != -ENOENT) {
222                 log_error_errno(q, "Failed to write utmp record: %m");
223                 r = q;
224         }
225
226         return r;
227 }
228 #endif // 0
229
230 #if 0 /// elogind needs this to be a callable function
231 int main(int argc, char *argv[]) {
232 #else
233 void update_utmp(int argc, char* argv[], sd_bus *bus) {
234 #endif // 0
235         Context c = {
236 #ifdef HAVE_AUDIT
237                 .audit_fd = -1
238 #endif
239         };
240 #if 0 /// UNNEEDED by elogind
241         int r;
242
243         if (getppid() != 1) {
244                 log_error("This program should be invoked by init only.");
245                 return EXIT_FAILURE;
246         }
247
248         if (argc != 2) {
249                 log_error("This program requires one argument.");
250                 return EXIT_FAILURE;
251         }
252
253         log_set_target(LOG_TARGET_AUTO);
254         log_parse_environment();
255         log_open();
256
257         umask(0022);
258 #else
259         assert(2 == argc);
260         assert(argv[1]);
261         assert(bus);
262 #endif // 0
263
264 #ifdef HAVE_AUDIT
265         /* If the kernel lacks netlink or audit support,
266          * don't worry about it. */
267         c.audit_fd = audit_open();
268         if (c.audit_fd < 0 && errno != EAFNOSUPPORT && errno != EPROTONOSUPPORT)
269                 log_error_errno(errno, "Failed to connect to audit log: %m");
270 #endif
271 #if 0 /// UNNEEDED by elogind
272         r = bus_connect_system_systemd(&c.bus);
273         if (r < 0) {
274                 log_error_errno(r, "Failed to get D-Bus connection: %m");
275                 r = -EIO;
276                 goto finish;
277         }
278
279         log_debug("systemd-update-utmp running as pid "PID_FMT, getpid());
280
281         if (streq(argv[1], "reboot"))
282                 r = on_reboot(&c);
283         else if (streq(argv[1], "shutdown"))
284                 r = on_shutdown(&c);
285         else if (streq(argv[1], "runlevel"))
286                 r = on_runlevel(&c);
287         else {
288                 log_error("Unknown command %s", argv[1]);
289                 r = -EINVAL;
290         }
291
292         log_debug("systemd-update-utmp stopped as pid "PID_FMT, getpid());
293
294 finish:
295 #else
296         c.bus = bus;
297         if (streq(argv[1], "reboot"))
298                 (void)on_reboot(&c);
299         else if (streq(argv[1], "shutdown"))
300                 (void)on_shutdown(&c);
301 #endif // 0
302 #ifdef HAVE_AUDIT
303         if (c.audit_fd >= 0)
304                 audit_close(c.audit_fd);
305 #endif
306
307         sd_bus_flush_close_unref(c.bus);
308 #if 0 /// UNNEEDED by elogind
309         return r < 0 ? EXIT_FAILURE : EXIT_SUCCESS;
310 #endif // 0
311 }