chiark / gitweb /
util-lib: move formats-util.h from shared/ to basic/
[elogind.git] / src / login / logind-action.c
1 /*-*- Mode: C; c-basic-offset: 8; indent-tabs-mode: nil -*-*/
2
3 /***
4   This file is part of systemd.
5
6   Copyright 2012 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 <unistd.h>
23
24 #include "sd-messages.h"
25 #include "util.h"
26 #include "strv.h"
27 #include "fileio.h"
28 #include "conf-parser.h"
29 // #include "special.h"
30 #include "sleep-config.h"
31 #include "bus-error.h"
32 #include "bus-util.h"
33 #include "logind-action.h"
34 // #include "formats-util.h"
35 #include "process-util.h"
36 #include "terminal-util.h"
37
38 int manager_handle_action(
39                 Manager *m,
40                 InhibitWhat inhibit_key,
41                 HandleAction handle,
42                 bool ignore_inhibited,
43                 bool is_edge) {
44
45         static const char * const message_table[_HANDLE_ACTION_MAX] = {
46                 [HANDLE_POWEROFF] = "Powering Off...",
47                 [HANDLE_REBOOT] = "Rebooting...",
48                 [HANDLE_HALT] = "Halting...",
49                 [HANDLE_KEXEC] = "Rebooting via kexec...",
50                 [HANDLE_SUSPEND] = "Suspending...",
51                 [HANDLE_HIBERNATE] = "Hibernating...",
52                 [HANDLE_HYBRID_SLEEP] = "Hibernating and suspending..."
53         };
54
55 /// elogind does this itself. No target table required
56 #if 0
57         static const char * const target_table[_HANDLE_ACTION_MAX] = {
58                 [HANDLE_POWEROFF] = SPECIAL_POWEROFF_TARGET,
59                 [HANDLE_REBOOT] = SPECIAL_REBOOT_TARGET,
60                 [HANDLE_HALT] = SPECIAL_HALT_TARGET,
61                 [HANDLE_KEXEC] = SPECIAL_KEXEC_TARGET,
62                 [HANDLE_SUSPEND] = SPECIAL_SUSPEND_TARGET,
63                 [HANDLE_HIBERNATE] = SPECIAL_HIBERNATE_TARGET,
64                 [HANDLE_HYBRID_SLEEP] = SPECIAL_HYBRID_SLEEP_TARGET
65         };
66 #endif // 0
67
68         _cleanup_bus_error_free_ sd_bus_error error = SD_BUS_ERROR_NULL;
69         InhibitWhat inhibit_operation;
70         Inhibitor *offending = NULL;
71         bool supported;
72         int r;
73
74         assert(m);
75
76         /* If the key handling is turned off, don't do anything */
77         if (handle == HANDLE_IGNORE) {
78                 log_debug("Refusing operation, as it is turned off.");
79                 return 0;
80         }
81
82         if (inhibit_key == INHIBIT_HANDLE_LID_SWITCH) {
83                 /* If the last system suspend or startup is too close,
84                  * let's not suspend for now, to give USB docking
85                  * stations some time to settle so that we can
86                  * properly watch its displays. */
87                 if (m->lid_switch_ignore_event_source) {
88                         log_debug("Ignoring lid switch request, system startup or resume too close.");
89                         return 0;
90                 }
91         }
92
93         /* If the key handling is inhibited, don't do anything */
94         if (inhibit_key > 0) {
95                 if (manager_is_inhibited(m, inhibit_key, INHIBIT_BLOCK, NULL, true, false, 0, NULL)) {
96                         log_debug("Refusing operation, %s is inhibited.", inhibit_what_to_string(inhibit_key));
97                         return 0;
98                 }
99         }
100
101         /* Locking is handled differently from the rest. */
102         if (handle == HANDLE_LOCK) {
103
104                 if (!is_edge)
105                         return 0;
106
107                 log_info("Locking sessions...");
108                 session_send_lock_all(m, true);
109                 return 1;
110         }
111
112         if (handle == HANDLE_SUSPEND)
113                 supported = can_sleep("suspend") > 0;
114         else if (handle == HANDLE_HIBERNATE)
115                 supported = can_sleep("hibernate") > 0;
116         else if (handle == HANDLE_HYBRID_SLEEP)
117                 supported = can_sleep("hybrid-sleep") > 0;
118         else if (handle == HANDLE_KEXEC)
119                 supported = access(KEXEC, X_OK) >= 0;
120         else
121                 supported = true;
122
123         if (!supported) {
124                 log_warning("Requested operation not supported, ignoring.");
125                 return -EOPNOTSUPP;
126         }
127
128         if (m->action_what) {
129                 log_debug("Action already in progress, ignoring.");
130                 return -EALREADY;
131         }
132
133         inhibit_operation = handle == HANDLE_SUSPEND || handle == HANDLE_HIBERNATE || handle == HANDLE_HYBRID_SLEEP ? INHIBIT_SLEEP : INHIBIT_SHUTDOWN;
134
135         /* If the actual operation is inhibited, warn and fail */
136         if (!ignore_inhibited &&
137             manager_is_inhibited(m, inhibit_operation, INHIBIT_BLOCK, NULL, false, false, 0, &offending)) {
138                 _cleanup_free_ char *comm = NULL, *u = NULL;
139
140                 get_process_comm(offending->pid, &comm);
141                 u = uid_to_name(offending->uid);
142
143                 /* If this is just a recheck of the lid switch then don't warn about anything */
144                 if (!is_edge) {
145                         log_debug("Refusing operation, %s is inhibited by UID "UID_FMT"/%s, PID "PID_FMT"/%s.",
146                                   inhibit_what_to_string(inhibit_operation),
147                                   offending->uid, strna(u),
148                                   offending->pid, strna(comm));
149                         return 0;
150                 }
151
152                 log_error("Refusing operation, %s is inhibited by UID "UID_FMT"/%s, PID "PID_FMT"/%s.",
153                           inhibit_what_to_string(inhibit_operation),
154                           offending->uid, strna(u),
155                           offending->pid, strna(comm));
156
157                 return -EPERM;
158         }
159
160         log_info("%s", message_table[handle]);
161
162 /// elogind uses its own variant, which can use the handle directly.
163 #if 0
164         r = bus_manager_shutdown_or_sleep_now_or_later(m, target_table[handle], inhibit_operation, &error);
165 #else
166         r = bus_manager_shutdown_or_sleep_now_or_later(m, handle, inhibit_operation, &error);
167 #endif // 0
168         if (r < 0) {
169                 log_error("Failed to execute operation: %s", bus_error_message(&error, r));
170                 return r;
171         }
172
173         return 1;
174 }
175
176 static int run_helper(const char *helper) {
177         int pid = fork();
178         if (pid < 0) {
179                 return log_error_errno(errno, "Failed to fork: %m");
180         }
181
182         if (pid == 0) {
183                 /* Child */
184
185                 close_all_fds(NULL, 0);
186
187                 execlp(helper, helper, NULL);
188                 log_error_errno(errno, "Failed to execute %s: %m", helper);
189                 _exit(EXIT_FAILURE);
190         }
191
192         return wait_for_terminate_and_warn(helper, pid, true);
193 }
194
195 static int write_mode(char **modes) {
196         int r = 0;
197         char **mode;
198
199         STRV_FOREACH(mode, modes) {
200                 int k;
201
202                 k = write_string_file("/sys/power/disk", *mode, 0);
203                 if (k == 0)
204                         return 0;
205
206                 log_debug_errno(k, "Failed to write '%s' to /sys/power/disk: %m",
207                                 *mode);
208                 if (r == 0)
209                         r = k;
210         }
211
212         if (r < 0)
213                 log_error_errno(r, "Failed to write mode to /sys/power/disk: %m");
214
215         return r;
216 }
217
218 static int write_state(FILE **f, char **states) {
219         char **state;
220         int r = 0;
221
222         STRV_FOREACH(state, states) {
223                 int k;
224
225                 k = write_string_stream(*f, *state, true);
226                 if (k == 0)
227                         return 0;
228                 log_debug_errno(k, "Failed to write '%s' to /sys/power/state: %m",
229                                 *state);
230                 if (r == 0)
231                         r = k;
232
233                 fclose(*f);
234                 *f = fopen("/sys/power/state", "we");
235                 if (!*f)
236                         return log_error_errno(errno, "Failed to open /sys/power/state: %m");
237         }
238
239         return r;
240 }
241
242 static int do_sleep(const char *arg_verb, char **modes, char **states) {
243         char *arguments[] = {
244                 NULL,
245                 (char*) "pre",
246                 (char*) arg_verb,
247                 NULL
248         };
249         static const char* const dirs[] = {SYSTEM_SLEEP_PATH, NULL};
250
251         int r;
252         _cleanup_fclose_ FILE *f = NULL;
253
254         /* This file is opened first, so that if we hit an error,
255          * we can abort before modifying any state. */
256         f = fopen("/sys/power/state", "we");
257         if (!f)
258                 return log_error_errno(errno, "Failed to open /sys/power/state: %m");
259
260         /* Configure the hibernation mode */
261         r = write_mode(modes);
262         if (r < 0)
263                 return r;
264
265         execute_directories(dirs, DEFAULT_TIMEOUT_USEC, arguments);
266
267         log_struct(LOG_INFO,
268                    LOG_MESSAGE_ID(SD_MESSAGE_SLEEP_START),
269                    LOG_MESSAGE("Suspending system..."),
270                    "SLEEP=%s", arg_verb,
271                    NULL);
272
273         r = write_state(&f, states);
274         if (r < 0)
275                 return r;
276
277         log_struct(LOG_INFO,
278                    LOG_MESSAGE_ID(SD_MESSAGE_SLEEP_STOP),
279                    LOG_MESSAGE("System resumed."),
280                    "SLEEP=%s", arg_verb,
281                    NULL);
282
283         arguments[1] = (char*) "post";
284         execute_directories(dirs, DEFAULT_TIMEOUT_USEC, arguments);
285
286         return r;
287 }
288
289 int shutdown_or_sleep(Manager *m, HandleAction action) {
290
291         assert(m);
292
293         switch (action) {
294         case HANDLE_POWEROFF:
295                 return run_helper(HALT);
296         case HANDLE_REBOOT:
297                 return run_helper(REBOOT);
298         case HANDLE_HALT:
299                 return run_helper(HALT);
300         case HANDLE_KEXEC:
301                 return run_helper(KEXEC);
302         case HANDLE_SUSPEND:
303                 return do_sleep("suspend", m->suspend_mode, m->suspend_state);
304         case HANDLE_HIBERNATE:
305                 return do_sleep("hibernate", m->hibernate_mode, m->hibernate_state);
306         case HANDLE_HYBRID_SLEEP:
307                 return do_sleep("hybrid-sleep", m->hybrid_sleep_mode, m->hybrid_sleep_state);
308         default:
309                 return -EINVAL;
310         }
311 }
312
313 static const char* const handle_action_table[_HANDLE_ACTION_MAX] = {
314         [HANDLE_IGNORE] = "ignore",
315         [HANDLE_POWEROFF] = "poweroff",
316         [HANDLE_REBOOT] = "reboot",
317         [HANDLE_HALT] = "halt",
318         [HANDLE_KEXEC] = "kexec",
319         [HANDLE_SUSPEND] = "suspend",
320         [HANDLE_HIBERNATE] = "hibernate",
321         [HANDLE_HYBRID_SLEEP] = "hybrid-sleep",
322         [HANDLE_LOCK] = "lock"
323 };
324
325 DEFINE_STRING_TABLE_LOOKUP(handle_action, HandleAction);
326 DEFINE_CONFIG_PARSE_ENUM(config_parse_handle_action, handle_action, HandleAction, "Failed to parse handle action setting");