Branch data Line data Source code
1 : : /* SPDX-License-Identifier: LGPL-2.1+ */
2 : :
3 : : #include <errno.h>
4 : : #include <string.h>
5 : : #include <sys/stat.h>
6 : : #include <sys/types.h>
7 : : #include <unistd.h>
8 : :
9 : : #if HAVE_AUDIT
10 : : #include <libaudit.h>
11 : : #endif
12 : :
13 : : #include "sd-bus.h"
14 : :
15 : : #include "alloc-util.h"
16 : : #include "bus-error.h"
17 : : #include "bus-util.h"
18 : : #include "format-util.h"
19 : : #include "log.h"
20 : : #include "macro.h"
21 : : #include "process-util.h"
22 : : #include "special.h"
23 : : #include "strv.h"
24 : : #include "unit-name.h"
25 : : #include "util.h"
26 : : #include "utmp-wtmp.h"
27 : :
28 : : typedef struct Context {
29 : : sd_bus *bus;
30 : : #if HAVE_AUDIT
31 : : int audit_fd;
32 : : #endif
33 : : } Context;
34 : :
35 : 0 : static void context_clear(Context *c) {
36 [ # # ]: 0 : assert(c);
37 : :
38 : 0 : c->bus = sd_bus_flush_close_unref(c->bus);
39 : : #if HAVE_AUDIT
40 [ # # ]: 0 : if (c->audit_fd >= 0)
41 : 0 : audit_close(c->audit_fd);
42 : 0 : c->audit_fd = -1;
43 : : #endif
44 : 0 : }
45 : :
46 : 0 : static usec_t get_startup_time(Context *c) {
47 : 0 : _cleanup_(sd_bus_error_free) sd_bus_error error = SD_BUS_ERROR_NULL;
48 : 0 : usec_t t = 0;
49 : : int r;
50 : :
51 [ # # ]: 0 : assert(c);
52 : :
53 : 0 : r = sd_bus_get_property_trivial(
54 : : c->bus,
55 : : "org.freedesktop.systemd1",
56 : : "/org/freedesktop/systemd1",
57 : : "org.freedesktop.systemd1.Manager",
58 : : "UserspaceTimestamp",
59 : : &error,
60 : : 't', &t);
61 [ # # ]: 0 : if (r < 0) {
62 [ # # ]: 0 : log_error_errno(r, "Failed to get timestamp: %s", bus_error_message(&error, r));
63 : 0 : return 0;
64 : : }
65 : :
66 : 0 : return t;
67 : : }
68 : :
69 : 0 : static int get_current_runlevel(Context *c) {
70 : : static const struct {
71 : : const int runlevel;
72 : : const char *special;
73 : : } table[] = {
74 : : /* The first target of this list that is active or has
75 : : * a job scheduled wins. We prefer runlevels 5 and 3
76 : : * here over the others, since these are the main
77 : : * runlevels used on Fedora. It might make sense to
78 : : * change the order on some distributions. */
79 : : { '5', SPECIAL_GRAPHICAL_TARGET },
80 : : { '3', SPECIAL_MULTI_USER_TARGET },
81 : : { '1', SPECIAL_RESCUE_TARGET },
82 : : };
83 : :
84 : 0 : _cleanup_(sd_bus_error_free) sd_bus_error error = SD_BUS_ERROR_NULL;
85 : : int r;
86 : : unsigned i;
87 : :
88 [ # # ]: 0 : assert(c);
89 : :
90 [ # # ]: 0 : for (i = 0; i < ELEMENTSOF(table); i++) {
91 [ # # # # ]: 0 : _cleanup_free_ char *state = NULL, *path = NULL;
92 : :
93 : 0 : path = unit_dbus_path_from_name(table[i].special);
94 [ # # ]: 0 : if (!path)
95 : 0 : return log_oom();
96 : :
97 : 0 : r = sd_bus_get_property_string(
98 : : c->bus,
99 : : "org.freedesktop.systemd1",
100 : : path,
101 : : "org.freedesktop.systemd1.Unit",
102 : : "ActiveState",
103 : : &error,
104 : : &state);
105 [ # # ]: 0 : if (r < 0)
106 [ # # ]: 0 : return log_warning_errno(r, "Failed to get state: %s", bus_error_message(&error, r));
107 : :
108 [ # # ]: 0 : if (STR_IN_SET(state, "active", "reloading"))
109 : 0 : return table[i].runlevel;
110 : : }
111 : :
112 : 0 : return 0;
113 : : }
114 : :
115 : 0 : static int on_reboot(Context *c) {
116 : 0 : int r = 0, q;
117 : : usec_t t;
118 : :
119 [ # # ]: 0 : assert(c);
120 : :
121 : : /* We finished start-up, so let's write the utmp
122 : : * record and send the audit msg */
123 : :
124 : : #if HAVE_AUDIT
125 [ # # ]: 0 : if (c->audit_fd >= 0)
126 [ # # ]: 0 : if (audit_log_user_comm_message(c->audit_fd, AUDIT_SYSTEM_BOOT, "", "systemd-update-utmp", NULL, NULL, NULL, 1) < 0 &&
127 [ # # ]: 0 : errno != EPERM) {
128 [ # # ]: 0 : r = log_error_errno(errno, "Failed to send audit message: %m");
129 : : }
130 : : #endif
131 : :
132 : : /* If this call fails it will return 0, which
133 : : * utmp_put_reboot() will then fix to the current time */
134 : 0 : t = get_startup_time(c);
135 : :
136 : 0 : q = utmp_put_reboot(t);
137 [ # # ]: 0 : if (q < 0) {
138 [ # # ]: 0 : log_error_errno(q, "Failed to write utmp record: %m");
139 : 0 : r = q;
140 : : }
141 : :
142 : 0 : return r;
143 : : }
144 : :
145 : 0 : static int on_shutdown(Context *c) {
146 : 0 : int r = 0, q;
147 : :
148 [ # # ]: 0 : assert(c);
149 : :
150 : : /* We started shut-down, so let's write the utmp
151 : : * record and send the audit msg */
152 : :
153 : : #if HAVE_AUDIT
154 [ # # ]: 0 : if (c->audit_fd >= 0)
155 [ # # ]: 0 : if (audit_log_user_comm_message(c->audit_fd, AUDIT_SYSTEM_SHUTDOWN, "", "systemd-update-utmp", NULL, NULL, NULL, 1) < 0 &&
156 [ # # ]: 0 : errno != EPERM) {
157 [ # # ]: 0 : r = log_error_errno(errno, "Failed to send audit message: %m");
158 : : }
159 : : #endif
160 : :
161 : 0 : q = utmp_put_shutdown();
162 [ # # ]: 0 : if (q < 0) {
163 [ # # ]: 0 : log_error_errno(q, "Failed to write utmp record: %m");
164 : 0 : r = q;
165 : : }
166 : :
167 : 0 : return r;
168 : : }
169 : :
170 : 0 : static int on_runlevel(Context *c) {
171 : 0 : int r = 0, q, previous, runlevel;
172 : :
173 [ # # ]: 0 : assert(c);
174 : :
175 : : /* We finished changing runlevel, so let's write the
176 : : * utmp record and send the audit msg */
177 : :
178 : : /* First, get last runlevel */
179 : 0 : q = utmp_get_runlevel(&previous, NULL);
180 : :
181 [ # # ]: 0 : if (q < 0) {
182 [ # # # # ]: 0 : if (!IN_SET(q, -ESRCH, -ENOENT))
183 [ # # ]: 0 : return log_error_errno(q, "Failed to get current runlevel: %m");
184 : :
185 : 0 : previous = 0;
186 : : }
187 : :
188 : : /* Secondly, get new runlevel */
189 : 0 : runlevel = get_current_runlevel(c);
190 : :
191 [ # # ]: 0 : if (runlevel < 0)
192 : 0 : return runlevel;
193 : :
194 [ # # ]: 0 : if (runlevel == 0)
195 [ # # ]: 0 : return log_warning("Failed to get new runlevel, utmp update skipped.");
196 : :
197 [ # # ]: 0 : if (previous == runlevel)
198 : 0 : return 0;
199 : :
200 : : #if HAVE_AUDIT
201 [ # # ]: 0 : if (c->audit_fd >= 0) {
202 [ # # ]: 0 : _cleanup_free_ char *s = NULL;
203 : :
204 [ # # # # ]: 0 : if (asprintf(&s, "old-level=%c new-level=%c",
205 [ # # ]: 0 : previous > 0 ? previous : 'N',
206 : : runlevel > 0 ? runlevel : 'N') < 0)
207 : 0 : return log_oom();
208 : :
209 [ # # # # ]: 0 : if (audit_log_user_comm_message(c->audit_fd, AUDIT_SYSTEM_RUNLEVEL, s, "systemd-update-utmp", NULL, NULL, NULL, 1) < 0 && errno != EPERM)
210 [ # # ]: 0 : r = log_error_errno(errno, "Failed to send audit message: %m");
211 : : }
212 : : #endif
213 : :
214 : 0 : q = utmp_put_runlevel(runlevel, previous);
215 [ # # # # : 0 : if (q < 0 && !IN_SET(q, -ESRCH, -ENOENT)) {
# # ]
216 [ # # ]: 0 : log_error_errno(q, "Failed to write utmp record: %m");
217 : 0 : r = q;
218 : : }
219 : :
220 : 0 : return r;
221 : : }
222 : :
223 : 0 : int main(int argc, char *argv[]) {
224 : 0 : _cleanup_(context_clear) Context c = {
225 : : #if HAVE_AUDIT
226 : : .audit_fd = -1
227 : : #endif
228 : : };
229 : : int r;
230 : :
231 [ # # ]: 0 : if (getppid() != 1) {
232 [ # # ]: 0 : log_error("This program should be invoked by init only.");
233 : 0 : return EXIT_FAILURE;
234 : : }
235 : :
236 [ # # ]: 0 : if (argc != 2) {
237 [ # # ]: 0 : log_error("This program requires one argument.");
238 : 0 : return EXIT_FAILURE;
239 : : }
240 : :
241 : 0 : log_setup_service();
242 : :
243 : 0 : umask(0022);
244 : :
245 : : #if HAVE_AUDIT
246 : : /* If the kernel lacks netlink or audit support,
247 : : * don't worry about it. */
248 : 0 : c.audit_fd = audit_open();
249 [ # # # # : 0 : if (c.audit_fd < 0 && !IN_SET(errno, EAFNOSUPPORT, EPROTONOSUPPORT))
# # ]
250 [ # # ]: 0 : log_error_errno(errno, "Failed to connect to audit log: %m");
251 : : #endif
252 : 0 : r = bus_connect_system_systemd(&c.bus);
253 [ # # ]: 0 : if (r < 0) {
254 [ # # ]: 0 : log_error_errno(r, "Failed to get D-Bus connection: %m");
255 : 0 : return EXIT_FAILURE;
256 : : }
257 : :
258 [ # # ]: 0 : log_debug("systemd-update-utmp running as pid "PID_FMT, getpid_cached());
259 : :
260 [ # # ]: 0 : if (streq(argv[1], "reboot"))
261 : 0 : r = on_reboot(&c);
262 [ # # ]: 0 : else if (streq(argv[1], "shutdown"))
263 : 0 : r = on_shutdown(&c);
264 [ # # ]: 0 : else if (streq(argv[1], "runlevel"))
265 : 0 : r = on_runlevel(&c);
266 : : else {
267 [ # # ]: 0 : log_error("Unknown command %s", argv[1]);
268 : 0 : return EXIT_FAILURE;
269 : : }
270 : :
271 [ # # ]: 0 : log_debug("systemd-update-utmp stopped as pid "PID_FMT, getpid_cached());
272 : :
273 : 0 : return r < 0 ? EXIT_FAILURE : EXIT_SUCCESS;
274 : : }
|