chiark / gitweb /
Prep v231.3: No authorization for setting the wall message.
[elogind.git] / src / login / logind-dbus.c
1 /***
2   This file is part of systemd.
3
4   Copyright 2011 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 <pwd.h>
22 #include <string.h>
23 #include <unistd.h>
24
25 #include "sd-messages.h"
26
27 #include "alloc-util.h"
28 #include "audit-util.h"
29 #include "bus-common-errors.h"
30 #include "bus-error.h"
31 #include "bus-util.h"
32 #include "dirent-util.h"
33 //#include "efivars.h"
34 #include "escape.h"
35 #include "fd-util.h"
36 #include "fileio-label.h"
37 #include "formats-util.h"
38 #include "fs-util.h"
39 #include "logind.h"
40 #include "mkdir.h"
41 #include "path-util.h"
42 #include "process-util.h"
43 #include "selinux-util.h"
44 #include "sleep-config.h"
45 //#include "special.h"
46 #include "strv.h"
47 #include "terminal-util.h"
48 #include "udev-util.h"
49 #include "unit-name.h"
50 #include "user-util.h"
51 #include "utmp-wtmp.h"
52
53 /// Additional includes needed by elogind
54 #include "elogind-dbus.h"
55 //#include "update-utmp.h"
56
57 int manager_get_session_from_creds(Manager *m, sd_bus_message *message, const char *name, sd_bus_error *error, Session **ret) {
58         _cleanup_(sd_bus_creds_unrefp) sd_bus_creds *creds = NULL;
59         Session *session;
60         int r;
61
62         assert(m);
63         assert(message);
64         assert(ret);
65
66         if (isempty(name)) {
67                 r = sd_bus_query_sender_creds(message, SD_BUS_CREDS_SESSION|SD_BUS_CREDS_AUGMENT, &creds);
68                 if (r < 0)
69                         return r;
70
71                 r = sd_bus_creds_get_session(creds, &name);
72                 if (r < 0)
73                         return r;
74         }
75
76         session = hashmap_get(m->sessions, name);
77         if (!session)
78                 return sd_bus_error_setf(error, BUS_ERROR_NO_SUCH_SESSION, "No session '%s' known", name);
79
80         *ret = session;
81         return 0;
82 }
83
84 int manager_get_user_from_creds(Manager *m, sd_bus_message *message, uid_t uid, sd_bus_error *error, User **ret) {
85         User *user;
86         int r;
87
88         assert(m);
89         assert(message);
90         assert(ret);
91
92         if (uid == UID_INVALID) {
93                 _cleanup_(sd_bus_creds_unrefp) sd_bus_creds *creds = NULL;
94
95                 /* Note that we get the owner UID of the session, not the actual client UID here! */
96                 r = sd_bus_query_sender_creds(message, SD_BUS_CREDS_OWNER_UID|SD_BUS_CREDS_AUGMENT, &creds);
97                 if (r < 0)
98                         return r;
99
100                 r = sd_bus_creds_get_owner_uid(creds, &uid);
101                 if (r < 0)
102                         return r;
103         }
104
105         user = hashmap_get(m->users, UID_TO_PTR(uid));
106         if (!user)
107                 return sd_bus_error_setf(error, BUS_ERROR_NO_SUCH_USER, "No user "UID_FMT" known or logged in", uid);
108
109         *ret = user;
110         return 0;
111 }
112
113 int manager_get_seat_from_creds(Manager *m, sd_bus_message *message, const char *name, sd_bus_error *error, Seat **ret) {
114         Seat *seat;
115         int r;
116
117         assert(m);
118         assert(message);
119         assert(ret);
120
121         if (isempty(name)) {
122                 Session *session;
123
124                 r = manager_get_session_from_creds(m, message, NULL, error, &session);
125                 if (r < 0)
126                         return r;
127
128                 seat = session->seat;
129                 if (!seat)
130                         return sd_bus_error_setf(error, BUS_ERROR_NO_SUCH_SEAT, "Session has no seat.");
131         } else {
132                 seat = hashmap_get(m->seats, name);
133                 if (!seat)
134                         return sd_bus_error_setf(error, BUS_ERROR_NO_SUCH_SEAT, "No seat '%s' known", name);
135         }
136
137         *ret = seat;
138         return 0;
139 }
140
141 static int property_get_idle_hint(
142                 sd_bus *bus,
143                 const char *path,
144                 const char *interface,
145                 const char *property,
146                 sd_bus_message *reply,
147                 void *userdata,
148                 sd_bus_error *error) {
149
150         Manager *m = userdata;
151
152         assert(bus);
153         assert(reply);
154         assert(m);
155
156         return sd_bus_message_append(reply, "b", manager_get_idle_hint(m, NULL) > 0);
157 }
158
159 static int property_get_idle_since_hint(
160                 sd_bus *bus,
161                 const char *path,
162                 const char *interface,
163                 const char *property,
164                 sd_bus_message *reply,
165                 void *userdata,
166                 sd_bus_error *error) {
167
168         Manager *m = userdata;
169         dual_timestamp t = DUAL_TIMESTAMP_NULL;
170
171         assert(bus);
172         assert(reply);
173         assert(m);
174
175         manager_get_idle_hint(m, &t);
176
177         return sd_bus_message_append(reply, "t", streq(property, "IdleSinceHint") ? t.realtime : t.monotonic);
178 }
179
180 static int property_get_inhibited(
181                 sd_bus *bus,
182                 const char *path,
183                 const char *interface,
184                 const char *property,
185                 sd_bus_message *reply,
186                 void *userdata,
187                 sd_bus_error *error) {
188
189         Manager *m = userdata;
190         InhibitWhat w;
191
192         assert(bus);
193         assert(reply);
194         assert(m);
195
196         w = manager_inhibit_what(m, streq(property, "BlockInhibited") ? INHIBIT_BLOCK : INHIBIT_DELAY);
197
198         return sd_bus_message_append(reply, "s", inhibit_what_to_string(w));
199 }
200
201 static int property_get_preparing(
202                 sd_bus *bus,
203                 const char *path,
204                 const char *interface,
205                 const char *property,
206                 sd_bus_message *reply,
207                 void *userdata,
208                 sd_bus_error *error) {
209
210         Manager *m = userdata;
211         bool b;
212
213         assert(bus);
214         assert(reply);
215         assert(m);
216
217         if (streq(property, "PreparingForShutdown"))
218                 b = !!(m->action_what & INHIBIT_SHUTDOWN);
219         else
220                 b = !!(m->action_what & INHIBIT_SLEEP);
221
222         return sd_bus_message_append(reply, "b", b);
223 }
224
225 static int property_get_scheduled_shutdown(
226                 sd_bus *bus,
227                 const char *path,
228                 const char *interface,
229                 const char *property,
230                 sd_bus_message *reply,
231                 void *userdata,
232                 sd_bus_error *error) {
233
234         Manager *m = userdata;
235         int r;
236
237         assert(bus);
238         assert(reply);
239         assert(m);
240
241         r = sd_bus_message_open_container(reply, 'r', "st");
242         if (r < 0)
243                 return r;
244
245         r = sd_bus_message_append(reply, "st", m->scheduled_shutdown_type, m->scheduled_shutdown_timeout);
246         if (r < 0)
247                 return r;
248
249         return sd_bus_message_close_container(reply);
250 }
251
252 static BUS_DEFINE_PROPERTY_GET_ENUM(property_get_handle_action, handle_action, HandleAction);
253
254 static int property_get_docked(
255                 sd_bus *bus,
256                 const char *path,
257                 const char *interface,
258                 const char *property,
259                 sd_bus_message *reply,
260                 void *userdata,
261                 sd_bus_error *error) {
262
263         Manager *m = userdata;
264
265         assert(bus);
266         assert(reply);
267         assert(m);
268
269         return sd_bus_message_append(reply, "b", manager_is_docked_or_external_displays(m));
270 }
271
272 static int property_get_current_sessions(
273                 sd_bus *bus,
274                 const char *path,
275                 const char *interface,
276                 const char *property,
277                 sd_bus_message *reply,
278                 void *userdata,
279                 sd_bus_error *error) {
280
281         Manager *m = userdata;
282
283         assert(bus);
284         assert(reply);
285         assert(m);
286
287         return sd_bus_message_append(reply, "t", (uint64_t) hashmap_size(m->sessions));
288 }
289
290 static int property_get_current_inhibitors(
291                 sd_bus *bus,
292                 const char *path,
293                 const char *interface,
294                 const char *property,
295                 sd_bus_message *reply,
296                 void *userdata,
297                 sd_bus_error *error) {
298
299         Manager *m = userdata;
300
301         assert(bus);
302         assert(reply);
303         assert(m);
304
305         return sd_bus_message_append(reply, "t", (uint64_t) hashmap_size(m->inhibitors));
306 }
307
308 static int method_get_session(sd_bus_message *message, void *userdata, sd_bus_error *error) {
309         _cleanup_free_ char *p = NULL;
310         Manager *m = userdata;
311         const char *name;
312         Session *session;
313         int r;
314
315         assert(message);
316         assert(m);
317
318         r = sd_bus_message_read(message, "s", &name);
319         if (r < 0)
320                 return r;
321
322         r = manager_get_session_from_creds(m, message, name, error, &session);
323         if (r < 0)
324                 return r;
325
326         p = session_bus_path(session);
327         if (!p)
328                 return -ENOMEM;
329
330         return sd_bus_reply_method_return(message, "o", p);
331 }
332
333 static int method_get_session_by_pid(sd_bus_message *message, void *userdata, sd_bus_error *error) {
334         _cleanup_free_ char *p = NULL;
335         Session *session = NULL;
336         Manager *m = userdata;
337         pid_t pid;
338         int r;
339
340         assert(message);
341         assert(m);
342
343         assert_cc(sizeof(pid_t) == sizeof(uint32_t));
344
345         r = sd_bus_message_read(message, "u", &pid);
346         if (r < 0)
347                 return r;
348         if (pid < 0)
349                 return -EINVAL;
350
351         if (pid == 0) {
352                 r = manager_get_session_from_creds(m, message, NULL, error, &session);
353                 if (r < 0)
354                         return r;
355         } else {
356                 r = manager_get_session_by_pid(m, pid, &session);
357                 if (r < 0)
358                         return r;
359
360                 if (!session)
361                         return sd_bus_error_setf(error, BUS_ERROR_NO_SESSION_FOR_PID, "PID "PID_FMT" does not belong to any known session", pid);
362         }
363
364         p = session_bus_path(session);
365         if (!p)
366                 return -ENOMEM;
367
368         return sd_bus_reply_method_return(message, "o", p);
369 }
370
371 static int method_get_user(sd_bus_message *message, void *userdata, sd_bus_error *error) {
372         _cleanup_free_ char *p = NULL;
373         Manager *m = userdata;
374         uint32_t uid;
375         User *user;
376         int r;
377
378         assert(message);
379         assert(m);
380
381         r = sd_bus_message_read(message, "u", &uid);
382         if (r < 0)
383                 return r;
384
385         r = manager_get_user_from_creds(m, message, uid, error, &user);
386         if (r < 0)
387                 return r;
388
389         p = user_bus_path(user);
390         if (!p)
391                 return -ENOMEM;
392
393         return sd_bus_reply_method_return(message, "o", p);
394 }
395
396 static int method_get_user_by_pid(sd_bus_message *message, void *userdata, sd_bus_error *error) {
397         _cleanup_free_ char *p = NULL;
398         Manager *m = userdata;
399         User *user = NULL;
400         pid_t pid;
401         int r;
402
403         assert(message);
404         assert(m);
405
406         assert_cc(sizeof(pid_t) == sizeof(uint32_t));
407
408         r = sd_bus_message_read(message, "u", &pid);
409         if (r < 0)
410                 return r;
411         if (pid < 0)
412                 return -EINVAL;
413
414         if (pid == 0) {
415                 r = manager_get_user_from_creds(m, message, UID_INVALID, error, &user);
416                 if (r < 0)
417                         return r;
418         } else {
419                 r = manager_get_user_by_pid(m, pid, &user);
420                 if (r < 0)
421                         return r;
422                 if (!user)
423                         return sd_bus_error_setf(error, BUS_ERROR_NO_USER_FOR_PID, "PID "PID_FMT" does not belong to any known or logged in user", pid);
424         }
425
426         p = user_bus_path(user);
427         if (!p)
428                 return -ENOMEM;
429
430         return sd_bus_reply_method_return(message, "o", p);
431 }
432
433 static int method_get_seat(sd_bus_message *message, void *userdata, sd_bus_error *error) {
434         _cleanup_free_ char *p = NULL;
435         Manager *m = userdata;
436         const char *name;
437         Seat *seat;
438         int r;
439
440         assert(message);
441         assert(m);
442
443         r = sd_bus_message_read(message, "s", &name);
444         if (r < 0)
445                 return r;
446
447         r = manager_get_seat_from_creds(m, message, name, error, &seat);
448         if (r < 0)
449                 return r;
450
451         p = seat_bus_path(seat);
452         if (!p)
453                 return -ENOMEM;
454
455         return sd_bus_reply_method_return(message, "o", p);
456 }
457
458 static int method_list_sessions(sd_bus_message *message, void *userdata, sd_bus_error *error) {
459         _cleanup_(sd_bus_message_unrefp) sd_bus_message *reply = NULL;
460         Manager *m = userdata;
461         Session *session;
462         Iterator i;
463         int r;
464
465         assert(message);
466         assert(m);
467
468         r = sd_bus_message_new_method_return(message, &reply);
469         if (r < 0)
470                 return r;
471
472         r = sd_bus_message_open_container(reply, 'a', "(susso)");
473         if (r < 0)
474                 return r;
475
476         HASHMAP_FOREACH(session, m->sessions, i) {
477                 _cleanup_free_ char *p = NULL;
478
479                 p = session_bus_path(session);
480                 if (!p)
481                         return -ENOMEM;
482
483                 r = sd_bus_message_append(reply, "(susso)",
484                                           session->id,
485                                           (uint32_t) session->user->uid,
486                                           session->user->name,
487                                           session->seat ? session->seat->id : "",
488                                           p);
489                 if (r < 0)
490                         return r;
491         }
492
493         r = sd_bus_message_close_container(reply);
494         if (r < 0)
495                 return r;
496
497         return sd_bus_send(NULL, reply, NULL);
498 }
499
500 static int method_list_users(sd_bus_message *message, void *userdata, sd_bus_error *error) {
501         _cleanup_(sd_bus_message_unrefp) sd_bus_message *reply = NULL;
502         Manager *m = userdata;
503         User *user;
504         Iterator i;
505         int r;
506
507         assert(message);
508         assert(m);
509
510         r = sd_bus_message_new_method_return(message, &reply);
511         if (r < 0)
512                 return r;
513
514         r = sd_bus_message_open_container(reply, 'a', "(uso)");
515         if (r < 0)
516                 return r;
517
518         HASHMAP_FOREACH(user, m->users, i) {
519                 _cleanup_free_ char *p = NULL;
520
521                 p = user_bus_path(user);
522                 if (!p)
523                         return -ENOMEM;
524
525                 r = sd_bus_message_append(reply, "(uso)",
526                                           (uint32_t) user->uid,
527                                           user->name,
528                                           p);
529                 if (r < 0)
530                         return r;
531         }
532
533         r = sd_bus_message_close_container(reply);
534         if (r < 0)
535                 return r;
536
537         return sd_bus_send(NULL, reply, NULL);
538 }
539
540 static int method_list_seats(sd_bus_message *message, void *userdata, sd_bus_error *error) {
541         _cleanup_(sd_bus_message_unrefp) sd_bus_message *reply = NULL;
542         Manager *m = userdata;
543         Seat *seat;
544         Iterator i;
545         int r;
546
547         assert(message);
548         assert(m);
549
550         r = sd_bus_message_new_method_return(message, &reply);
551         if (r < 0)
552                 return r;
553
554         r = sd_bus_message_open_container(reply, 'a', "(so)");
555         if (r < 0)
556                 return r;
557
558         HASHMAP_FOREACH(seat, m->seats, i) {
559                 _cleanup_free_ char *p = NULL;
560
561                 p = seat_bus_path(seat);
562                 if (!p)
563                         return -ENOMEM;
564
565                 r = sd_bus_message_append(reply, "(so)", seat->id, p);
566                 if (r < 0)
567                         return r;
568         }
569
570         r = sd_bus_message_close_container(reply);
571         if (r < 0)
572                 return r;
573
574         return sd_bus_send(NULL, reply, NULL);
575 }
576
577 static int method_list_inhibitors(sd_bus_message *message, void *userdata, sd_bus_error *error) {
578         _cleanup_(sd_bus_message_unrefp) sd_bus_message *reply = NULL;
579         Manager *m = userdata;
580         Inhibitor *inhibitor;
581         Iterator i;
582         int r;
583
584         assert(message);
585         assert(m);
586
587         r = sd_bus_message_new_method_return(message, &reply);
588         if (r < 0)
589                 return r;
590
591         r = sd_bus_message_open_container(reply, 'a', "(ssssuu)");
592         if (r < 0)
593                 return r;
594
595         HASHMAP_FOREACH(inhibitor, m->inhibitors, i) {
596
597                 r = sd_bus_message_append(reply, "(ssssuu)",
598                                           strempty(inhibit_what_to_string(inhibitor->what)),
599                                           strempty(inhibitor->who),
600                                           strempty(inhibitor->why),
601                                           strempty(inhibit_mode_to_string(inhibitor->mode)),
602                                           (uint32_t) inhibitor->uid,
603                                           (uint32_t) inhibitor->pid);
604                 if (r < 0)
605                         return r;
606         }
607
608         r = sd_bus_message_close_container(reply);
609         if (r < 0)
610                 return r;
611
612         return sd_bus_send(NULL, reply, NULL);
613 }
614
615 static int method_create_session(sd_bus_message *message, void *userdata, sd_bus_error *error) {
616         const char *service, *type, *class, *cseat, *tty, *display, *remote_user, *remote_host, *desktop;
617         uint32_t audit_id = 0;
618         _cleanup_free_ char *id = NULL;
619         Session *session = NULL;
620         Manager *m = userdata;
621         User *user = NULL;
622         Seat *seat = NULL;
623         pid_t leader;
624         uid_t uid;
625         int remote;
626         uint32_t vtnr = 0;
627         SessionType t;
628         SessionClass c;
629         int r;
630
631         assert(message);
632         assert(m);
633
634         assert_cc(sizeof(pid_t) == sizeof(uint32_t));
635         assert_cc(sizeof(uid_t) == sizeof(uint32_t));
636
637         r = sd_bus_message_read(message, "uusssssussbss", &uid, &leader, &service, &type, &class, &desktop, &cseat, &vtnr, &tty, &display, &remote, &remote_user, &remote_host);
638         if (r < 0)
639                 return r;
640
641         if (!uid_is_valid(uid))
642                 return sd_bus_error_setf(error, SD_BUS_ERROR_INVALID_ARGS, "Invalid UID");
643         if (leader < 0 || leader == 1)
644                 return sd_bus_error_setf(error, SD_BUS_ERROR_INVALID_ARGS, "Invalid leader PID");
645
646         if (isempty(type))
647                 t = _SESSION_TYPE_INVALID;
648         else {
649                 t = session_type_from_string(type);
650                 if (t < 0)
651                         return sd_bus_error_setf(error, SD_BUS_ERROR_INVALID_ARGS, "Invalid session type %s", type);
652         }
653
654         if (isempty(class))
655                 c = _SESSION_CLASS_INVALID;
656         else {
657                 c = session_class_from_string(class);
658                 if (c < 0)
659                         return sd_bus_error_setf(error, SD_BUS_ERROR_INVALID_ARGS, "Invalid session class %s", class);
660         }
661
662         if (isempty(desktop))
663                 desktop = NULL;
664         else {
665                 if (!string_is_safe(desktop))
666                         return sd_bus_error_setf(error, SD_BUS_ERROR_INVALID_ARGS, "Invalid desktop string %s", desktop);
667         }
668
669         if (isempty(cseat))
670                 seat = NULL;
671         else {
672                 seat = hashmap_get(m->seats, cseat);
673                 if (!seat)
674                         return sd_bus_error_setf(error, BUS_ERROR_NO_SUCH_SEAT, "No seat '%s' known", cseat);
675         }
676
677         if (tty_is_vc(tty)) {
678                 int v;
679
680                 if (!seat)
681                         seat = m->seat0;
682                 else if (seat != m->seat0)
683                         return sd_bus_error_setf(error, SD_BUS_ERROR_INVALID_ARGS, "TTY %s is virtual console but seat %s is not seat0", tty, seat->id);
684
685                 v = vtnr_from_tty(tty);
686                 if (v <= 0)
687                         return sd_bus_error_setf(error, SD_BUS_ERROR_INVALID_ARGS, "Cannot determine VT number from virtual console TTY %s", tty);
688
689                 if (!vtnr)
690                         vtnr = (uint32_t) v;
691                 else if (vtnr != (uint32_t) v)
692                         return sd_bus_error_setf(error, SD_BUS_ERROR_INVALID_ARGS, "Specified TTY and VT number do not match");
693
694         } else if (tty_is_console(tty)) {
695
696                 if (!seat)
697                         seat = m->seat0;
698                 else if (seat != m->seat0)
699                         return sd_bus_error_setf(error, SD_BUS_ERROR_INVALID_ARGS, "Console TTY specified but seat is not seat0");
700
701                 if (vtnr != 0)
702                         return sd_bus_error_setf(error, SD_BUS_ERROR_INVALID_ARGS, "Console TTY specified but VT number is not 0");
703         }
704
705         if (seat) {
706                 if (seat_has_vts(seat)) {
707                         if (!vtnr || vtnr > 63)
708                                 return sd_bus_error_setf(error, SD_BUS_ERROR_INVALID_ARGS, "VT number out of range");
709                 } else {
710                         if (vtnr != 0)
711                                 return sd_bus_error_setf(error, SD_BUS_ERROR_INVALID_ARGS, "Seat has no VTs but VT number not 0");
712                 }
713         }
714
715         r = sd_bus_message_enter_container(message, 'a', "(sv)");
716         if (r < 0)
717                 return r;
718
719         if (t == _SESSION_TYPE_INVALID) {
720                 if (!isempty(display))
721                         t = SESSION_X11;
722                 else if (!isempty(tty))
723                         t = SESSION_TTY;
724                 else
725                         t = SESSION_UNSPECIFIED;
726         }
727
728         if (c == _SESSION_CLASS_INVALID) {
729                 if (t == SESSION_UNSPECIFIED)
730                         c = SESSION_BACKGROUND;
731                 else
732                         c = SESSION_USER;
733         }
734
735         if (leader == 0) {
736                 _cleanup_(sd_bus_creds_unrefp) sd_bus_creds *creds = NULL;
737
738                 r = sd_bus_query_sender_creds(message, SD_BUS_CREDS_PID, &creds);
739                 if (r < 0)
740                         return r;
741
742                 r = sd_bus_creds_get_pid(creds, (pid_t*) &leader);
743                 if (r < 0)
744                         return r;
745         }
746
747         r = manager_get_session_by_pid(m, leader, NULL);
748         if (r > 0)
749                 return sd_bus_error_setf(error, BUS_ERROR_SESSION_BUSY, "Already running in a session");
750
751         /*
752          * Old gdm and lightdm start the user-session on the same VT as
753          * the greeter session. But they destroy the greeter session
754          * after the user-session and want the user-session to take
755          * over the VT. We need to support this for
756          * backwards-compatibility, so make sure we allow new sessions
757          * on a VT that a greeter is running on. Furthermore, to allow
758          * re-logins, we have to allow a greeter to take over a used VT for
759          * the exact same reasons.
760          */
761         if (c != SESSION_GREETER &&
762             vtnr > 0 &&
763             vtnr < m->seat0->position_count &&
764             m->seat0->positions[vtnr] &&
765             m->seat0->positions[vtnr]->class != SESSION_GREETER)
766                 return sd_bus_error_setf(error, BUS_ERROR_SESSION_BUSY, "Already occupied by a session");
767
768         if (hashmap_size(m->sessions) >= m->sessions_max)
769                 return sd_bus_error_setf(error, SD_BUS_ERROR_LIMITS_EXCEEDED, "Maximum number of sessions (%" PRIu64 ") reached, refusing further sessions.", m->sessions_max);
770
771         audit_session_from_pid(leader, &audit_id);
772         if (audit_id > 0) {
773                 /* Keep our session IDs and the audit session IDs in sync */
774
775                 if (asprintf(&id, "%"PRIu32, audit_id) < 0)
776                         return -ENOMEM;
777
778                 /* Wut? There's already a session by this name and we
779                  * didn't find it above? Weird, then let's not trust
780                  * the audit data and let's better register a new
781                  * ID */
782                 if (hashmap_get(m->sessions, id)) {
783                         log_warning("Existing logind session ID %s used by new audit session, ignoring", id);
784                         audit_id = 0;
785
786                         id = mfree(id);
787                 }
788         }
789
790         if (!id) {
791                 do {
792                         id = mfree(id);
793
794                         if (asprintf(&id, "c%lu", ++m->session_counter) < 0)
795                                 return -ENOMEM;
796
797                 } while (hashmap_get(m->sessions, id));
798         }
799
800         r = manager_add_user_by_uid(m, uid, &user);
801         if (r < 0)
802                 goto fail;
803
804         r = manager_add_session(m, id, &session);
805         if (r < 0)
806                 goto fail;
807
808         session_set_user(session, user);
809
810         session->leader = leader;
811         session->audit_id = audit_id;
812         session->type = t;
813         session->class = c;
814         session->remote = remote;
815         session->vtnr = vtnr;
816
817         if (!isempty(tty)) {
818                 session->tty = strdup(tty);
819                 if (!session->tty) {
820                         r = -ENOMEM;
821                         goto fail;
822                 }
823         }
824
825         if (!isempty(display)) {
826                 session->display = strdup(display);
827                 if (!session->display) {
828                         r = -ENOMEM;
829                         goto fail;
830                 }
831         }
832
833         if (!isempty(remote_user)) {
834                 session->remote_user = strdup(remote_user);
835                 if (!session->remote_user) {
836                         r = -ENOMEM;
837                         goto fail;
838                 }
839         }
840
841         if (!isempty(remote_host)) {
842                 session->remote_host = strdup(remote_host);
843                 if (!session->remote_host) {
844                         r = -ENOMEM;
845                         goto fail;
846                 }
847         }
848
849         if (!isempty(service)) {
850                 session->service = strdup(service);
851                 if (!session->service) {
852                         r = -ENOMEM;
853                         goto fail;
854                 }
855         }
856
857         if (!isempty(desktop)) {
858                 session->desktop = strdup(desktop);
859                 if (!session->desktop) {
860                         r = -ENOMEM;
861                         goto fail;
862                 }
863         }
864
865         if (seat) {
866                 r = seat_attach_session(seat, session);
867                 if (r < 0)
868                         goto fail;
869         }
870
871         r = session_start(session);
872         if (r < 0)
873                 goto fail;
874
875         session->create_message = sd_bus_message_ref(message);
876
877 #if 0 /// UNNEEDED by elogind
878         /* Now, let's wait until the slice unit and stuff got
879          * created. We send the reply back from
880          * session_send_create_reply(). */
881 #else
882         /* We reply directly. */
883
884         r = session_send_create_reply(session, NULL);
885         if (r < 0)
886                 goto fail;
887 #endif // 0
888
889         return 1;
890
891 fail:
892         if (session)
893                 session_add_to_gc_queue(session);
894
895         if (user)
896                 user_add_to_gc_queue(user);
897
898         return r;
899 }
900
901 static int method_release_session(sd_bus_message *message, void *userdata, sd_bus_error *error) {
902         Manager *m = userdata;
903         Session *session;
904         const char *name;
905         int r;
906
907         assert(message);
908         assert(m);
909
910         r = sd_bus_message_read(message, "s", &name);
911         if (r < 0)
912                 return r;
913
914         r = manager_get_session_from_creds(m, message, name, error, &session);
915         if (r < 0)
916                 return r;
917
918         r = session_release(session);
919         if (r < 0)
920                 return r;
921
922 #if 1 /// elogind must queue this session
923         session_add_to_gc_queue(session);
924 #endif // 1
925         return sd_bus_reply_method_return(message, NULL);
926 }
927
928 static int method_activate_session(sd_bus_message *message, void *userdata, sd_bus_error *error) {
929         Manager *m = userdata;
930         Session *session;
931         const char *name;
932         int r;
933
934         assert(message);
935         assert(m);
936
937         r = sd_bus_message_read(message, "s", &name);
938         if (r < 0)
939                 return r;
940
941         r = manager_get_session_from_creds(m, message, name, error, &session);
942         if (r < 0)
943                 return r;
944
945         return bus_session_method_activate(message, session, error);
946 }
947
948 static int method_activate_session_on_seat(sd_bus_message *message, void *userdata, sd_bus_error *error) {
949         const char *session_name, *seat_name;
950         Manager *m = userdata;
951         Session *session;
952         Seat *seat;
953         int r;
954
955         assert(message);
956         assert(m);
957
958         /* Same as ActivateSession() but refuses to work if
959          * the seat doesn't match */
960
961         r = sd_bus_message_read(message, "ss", &session_name, &seat_name);
962         if (r < 0)
963                 return r;
964
965         r = manager_get_session_from_creds(m, message, session_name, error, &session);
966         if (r < 0)
967                 return r;
968
969         r = manager_get_seat_from_creds(m, message, seat_name, error, &seat);
970         if (r < 0)
971                 return r;
972
973         if (session->seat != seat)
974                 return sd_bus_error_setf(error, BUS_ERROR_SESSION_NOT_ON_SEAT, "Session %s not on seat %s", session_name, seat_name);
975
976         r = session_activate(session);
977         if (r < 0)
978                 return r;
979
980         return sd_bus_reply_method_return(message, NULL);
981 }
982
983 static int method_lock_session(sd_bus_message *message, void *userdata, sd_bus_error *error) {
984         Manager *m = userdata;
985         Session *session;
986         const char *name;
987         int r;
988
989         assert(message);
990         assert(m);
991
992         r = sd_bus_message_read(message, "s", &name);
993         if (r < 0)
994                 return r;
995
996         r = manager_get_session_from_creds(m, message, name, error, &session);
997         if (r < 0)
998                 return r;
999
1000         return bus_session_method_lock(message, session, error);
1001 }
1002
1003 static int method_lock_sessions(sd_bus_message *message, void *userdata, sd_bus_error *error) {
1004         Manager *m = userdata;
1005         int r;
1006
1007         assert(message);
1008         assert(m);
1009
1010         r = bus_verify_polkit_async(
1011                         message,
1012                         CAP_SYS_ADMIN,
1013                         "org.freedesktop.login1.lock-sessions",
1014                         NULL,
1015                         false,
1016                         UID_INVALID,
1017                         &m->polkit_registry,
1018                         error);
1019         if (r < 0)
1020                 return r;
1021         if (r == 0)
1022                 return 1; /* Will call us back */
1023
1024         r = session_send_lock_all(m, streq(sd_bus_message_get_member(message), "LockSessions"));
1025         if (r < 0)
1026                 return r;
1027
1028         return sd_bus_reply_method_return(message, NULL);
1029 }
1030
1031 static int method_kill_session(sd_bus_message *message, void *userdata, sd_bus_error *error) {
1032         const char *name;
1033         Manager *m = userdata;
1034         Session *session;
1035         int r;
1036
1037         assert(message);
1038         assert(m);
1039
1040         r = sd_bus_message_read(message, "s", &name);
1041         if (r < 0)
1042                 return r;
1043
1044         r = manager_get_session_from_creds(m, message, name, error, &session);
1045         if (r < 0)
1046                 return r;
1047
1048         return bus_session_method_kill(message, session, error);
1049 }
1050
1051 static int method_kill_user(sd_bus_message *message, void *userdata, sd_bus_error *error) {
1052         Manager *m = userdata;
1053         uint32_t uid;
1054         User *user;
1055         int r;
1056
1057         assert(message);
1058         assert(m);
1059
1060         r = sd_bus_message_read(message, "u", &uid);
1061         if (r < 0)
1062                 return r;
1063
1064         r = manager_get_user_from_creds(m, message, uid, error, &user);
1065         if (r < 0)
1066                 return r;
1067
1068         return bus_user_method_kill(message, user, error);
1069 }
1070
1071 static int method_terminate_session(sd_bus_message *message, void *userdata, sd_bus_error *error) {
1072         Manager *m = userdata;
1073         const char *name;
1074         Session *session;
1075         int r;
1076
1077         assert(message);
1078         assert(m);
1079
1080         r = sd_bus_message_read(message, "s", &name);
1081         if (r < 0)
1082                 return r;
1083
1084         r = manager_get_session_from_creds(m, message, name, error, &session);
1085         if (r < 0)
1086                 return r;
1087
1088         return bus_session_method_terminate(message, session, error);
1089 }
1090
1091 static int method_terminate_user(sd_bus_message *message, void *userdata, sd_bus_error *error) {
1092         Manager *m = userdata;
1093         uint32_t uid;
1094         User *user;
1095         int r;
1096
1097         assert(message);
1098         assert(m);
1099
1100         r = sd_bus_message_read(message, "u", &uid);
1101         if (r < 0)
1102                 return r;
1103
1104         r = manager_get_user_from_creds(m, message, uid, error, &user);
1105         if (r < 0)
1106                 return r;
1107
1108         return bus_user_method_terminate(message, user, error);
1109 }
1110
1111 static int method_terminate_seat(sd_bus_message *message, void *userdata, sd_bus_error *error) {
1112         Manager *m = userdata;
1113         const char *name;
1114         Seat *seat;
1115         int r;
1116
1117         assert(message);
1118         assert(m);
1119
1120         r = sd_bus_message_read(message, "s", &name);
1121         if (r < 0)
1122                 return r;
1123
1124         r = manager_get_seat_from_creds(m, message, name, error, &seat);
1125         if (r < 0)
1126                 return r;
1127
1128         return bus_seat_method_terminate(message, seat, error);
1129 }
1130
1131 static int method_set_user_linger(sd_bus_message *message, void *userdata, sd_bus_error *error) {
1132         _cleanup_free_ char *cc = NULL;
1133         Manager *m = userdata;
1134         int r, b, interactive;
1135         struct passwd *pw;
1136         const char *path;
1137         uint32_t uid;
1138         bool self = false;
1139
1140         assert(message);
1141         assert(m);
1142
1143         r = sd_bus_message_read(message, "ubb", &uid, &b, &interactive);
1144         if (r < 0)
1145                 return r;
1146
1147         if (uid == UID_INVALID) {
1148                 _cleanup_(sd_bus_creds_unrefp) sd_bus_creds *creds = NULL;
1149
1150                 /* Note that we get the owner UID of the session, not the actual client UID here! */
1151                 r = sd_bus_query_sender_creds(message, SD_BUS_CREDS_OWNER_UID|SD_BUS_CREDS_AUGMENT, &creds);
1152                 if (r < 0)
1153                         return r;
1154
1155                 r = sd_bus_creds_get_owner_uid(creds, &uid);
1156                 if (r < 0)
1157                         return r;
1158
1159                 self = true;
1160
1161         } else if (!uid_is_valid(uid))
1162                 return -EINVAL;
1163
1164         errno = 0;
1165         pw = getpwuid(uid);
1166         if (!pw)
1167                 return errno > 0 ? -errno : -ENOENT;
1168
1169         r = bus_verify_polkit_async(
1170                         message,
1171                         CAP_SYS_ADMIN,
1172                         self ? "org.freedesktop.login1.set-self-linger" : "org.freedesktop.login1.set-user-linger",
1173                         NULL,
1174                         interactive,
1175                         UID_INVALID,
1176                         &m->polkit_registry,
1177                         error);
1178         if (r < 0)
1179                 return r;
1180         if (r == 0)
1181                 return 1; /* No authorization for now, but the async polkit stuff will call us again when it has it */
1182
1183         mkdir_p_label("/var/lib/systemd", 0755);
1184
1185         r = mkdir_safe_label("/var/lib/systemd/linger", 0755, 0, 0);
1186         if (r < 0)
1187                 return r;
1188
1189         cc = cescape(pw->pw_name);
1190         if (!cc)
1191                 return -ENOMEM;
1192
1193         path = strjoina("/var/lib/systemd/linger/", cc);
1194         if (b) {
1195                 User *u;
1196
1197                 r = touch(path);
1198                 if (r < 0)
1199                         return r;
1200
1201                 if (manager_add_user_by_uid(m, uid, &u) >= 0)
1202                         user_start(u);
1203
1204         } else {
1205                 User *u;
1206
1207                 r = unlink(path);
1208                 if (r < 0 && errno != ENOENT)
1209                         return -errno;
1210
1211                 u = hashmap_get(m->users, UID_TO_PTR(uid));
1212                 if (u)
1213                         user_add_to_gc_queue(u);
1214         }
1215
1216         return sd_bus_reply_method_return(message, NULL);
1217 }
1218
1219 static int trigger_device(Manager *m, struct udev_device *d) {
1220         _cleanup_udev_enumerate_unref_ struct udev_enumerate *e = NULL;
1221         struct udev_list_entry *first, *item;
1222         int r;
1223
1224         assert(m);
1225
1226         e = udev_enumerate_new(m->udev);
1227         if (!e)
1228                 return -ENOMEM;
1229
1230         if (d) {
1231                 r = udev_enumerate_add_match_parent(e, d);
1232                 if (r < 0)
1233                         return r;
1234         }
1235
1236         r = udev_enumerate_scan_devices(e);
1237         if (r < 0)
1238                 return r;
1239
1240         first = udev_enumerate_get_list_entry(e);
1241         udev_list_entry_foreach(item, first) {
1242                 _cleanup_free_ char *t = NULL;
1243                 const char *p;
1244
1245                 p = udev_list_entry_get_name(item);
1246
1247                 t = strappend(p, "/uevent");
1248                 if (!t)
1249                         return -ENOMEM;
1250
1251                 write_string_file(t, "change", WRITE_STRING_FILE_CREATE);
1252         }
1253
1254         return 0;
1255 }
1256
1257 static int attach_device(Manager *m, const char *seat, const char *sysfs) {
1258         _cleanup_udev_device_unref_ struct udev_device *d = NULL;
1259         _cleanup_free_ char *rule = NULL, *file = NULL;
1260         const char *id_for_seat;
1261         int r;
1262
1263         assert(m);
1264         assert(seat);
1265         assert(sysfs);
1266
1267         d = udev_device_new_from_syspath(m->udev, sysfs);
1268         if (!d)
1269                 return -ENODEV;
1270
1271         if (!udev_device_has_tag(d, "seat"))
1272                 return -ENODEV;
1273
1274         id_for_seat = udev_device_get_property_value(d, "ID_FOR_SEAT");
1275         if (!id_for_seat)
1276                 return -ENODEV;
1277
1278         if (asprintf(&file, "/etc/udev/rules.d/72-seat-%s.rules", id_for_seat) < 0)
1279                 return -ENOMEM;
1280
1281         if (asprintf(&rule, "TAG==\"seat\", ENV{ID_FOR_SEAT}==\"%s\", ENV{ID_SEAT}=\"%s\"", id_for_seat, seat) < 0)
1282                 return -ENOMEM;
1283
1284         mkdir_p_label("/etc/udev/rules.d", 0755);
1285         r = write_string_file_atomic_label(file, rule);
1286         if (r < 0)
1287                 return r;
1288
1289         return trigger_device(m, d);
1290 }
1291
1292 static int flush_devices(Manager *m) {
1293         _cleanup_closedir_ DIR *d;
1294
1295         assert(m);
1296
1297         d = opendir("/etc/udev/rules.d");
1298         if (!d) {
1299                 if (errno != ENOENT)
1300                         log_warning_errno(errno, "Failed to open /etc/udev/rules.d: %m");
1301         } else {
1302                 struct dirent *de;
1303
1304                 while ((de = readdir(d))) {
1305
1306                         if (!dirent_is_file(de))
1307                                 continue;
1308
1309                         if (!startswith(de->d_name, "72-seat-"))
1310                                 continue;
1311
1312                         if (!endswith(de->d_name, ".rules"))
1313                                 continue;
1314
1315                         if (unlinkat(dirfd(d), de->d_name, 0) < 0)
1316                                 log_warning_errno(errno, "Failed to unlink %s: %m", de->d_name);
1317                 }
1318         }
1319
1320         return trigger_device(m, NULL);
1321 }
1322
1323 static int method_attach_device(sd_bus_message *message, void *userdata, sd_bus_error *error) {
1324         const char *sysfs, *seat;
1325         Manager *m = userdata;
1326         int interactive, r;
1327
1328         assert(message);
1329         assert(m);
1330
1331         r = sd_bus_message_read(message, "ssb", &seat, &sysfs, &interactive);
1332         if (r < 0)
1333                 return r;
1334
1335         if (!path_startswith(sysfs, "/sys"))
1336                 return sd_bus_error_setf(error, SD_BUS_ERROR_INVALID_ARGS, "Path %s is not in /sys", sysfs);
1337
1338         if (!seat_name_is_valid(seat))
1339                 return sd_bus_error_setf(error, SD_BUS_ERROR_INVALID_ARGS, "Seat %s is not valid", seat);
1340
1341         r = bus_verify_polkit_async(
1342                         message,
1343                         CAP_SYS_ADMIN,
1344                         "org.freedesktop.login1.attach-device",
1345                         NULL,
1346                         interactive,
1347                         UID_INVALID,
1348                         &m->polkit_registry,
1349                         error);
1350         if (r < 0)
1351                 return r;
1352         if (r == 0)
1353                 return 1; /* No authorization for now, but the async polkit stuff will call us again when it has it */
1354
1355         r = attach_device(m, seat, sysfs);
1356         if (r < 0)
1357                 return r;
1358
1359         return sd_bus_reply_method_return(message, NULL);
1360 }
1361
1362 static int method_flush_devices(sd_bus_message *message, void *userdata, sd_bus_error *error) {
1363         Manager *m = userdata;
1364         int interactive, r;
1365
1366         assert(message);
1367         assert(m);
1368
1369         r = sd_bus_message_read(message, "b", &interactive);
1370         if (r < 0)
1371                 return r;
1372
1373         r = bus_verify_polkit_async(
1374                         message,
1375                         CAP_SYS_ADMIN,
1376                         "org.freedesktop.login1.flush-devices",
1377                         NULL,
1378                         interactive,
1379                         UID_INVALID,
1380                         &m->polkit_registry,
1381                         error);
1382         if (r < 0)
1383                 return r;
1384         if (r == 0)
1385                 return 1; /* No authorization for now, but the async polkit stuff will call us again when it has it */
1386
1387         r = flush_devices(m);
1388         if (r < 0)
1389                 return r;
1390
1391         return sd_bus_reply_method_return(message, NULL);
1392 }
1393
1394 #if 0 /// elogind has its own variant in elogind-dbus.c
1395 static int have_multiple_sessions(
1396                 Manager *m,
1397                 uid_t uid) {
1398
1399         Session *session;
1400         Iterator i;
1401
1402         assert(m);
1403
1404         /* Check for other users' sessions. Greeter sessions do not
1405          * count, and non-login sessions do not count either. */
1406         HASHMAP_FOREACH(session, m->sessions, i)
1407                 if (session->class == SESSION_USER &&
1408                     session->user->uid != uid)
1409                         return true;
1410
1411         return false;
1412 }
1413
1414 static int bus_manager_log_shutdown(
1415                 Manager *m,
1416                 InhibitWhat w,
1417                 const char *unit_name) {
1418
1419         const char *p, *q;
1420
1421         assert(m);
1422         assert(unit_name);
1423
1424         if (w != INHIBIT_SHUTDOWN)
1425                 return 0;
1426
1427         if (streq(unit_name, SPECIAL_POWEROFF_TARGET)) {
1428                 p = "MESSAGE=System is powering down";
1429                 q = "SHUTDOWN=power-off";
1430         } else if (streq(unit_name, SPECIAL_HALT_TARGET)) {
1431                 p = "MESSAGE=System is halting";
1432                 q = "SHUTDOWN=halt";
1433         } else if (streq(unit_name, SPECIAL_REBOOT_TARGET)) {
1434                 p = "MESSAGE=System is rebooting";
1435                 q = "SHUTDOWN=reboot";
1436         } else if (streq(unit_name, SPECIAL_KEXEC_TARGET)) {
1437                 p = "MESSAGE=System is rebooting with kexec";
1438                 q = "SHUTDOWN=kexec";
1439         } else {
1440                 p = "MESSAGE=System is shutting down";
1441                 q = NULL;
1442         }
1443
1444         if (isempty(m->wall_message))
1445                 p = strjoina(p, ".");
1446         else
1447                 p = strjoina(p, " (", m->wall_message, ").");
1448
1449         return log_struct(LOG_NOTICE,
1450                           LOG_MESSAGE_ID(SD_MESSAGE_SHUTDOWN),
1451                           p,
1452                           q,
1453                           NULL);
1454 }
1455 #endif // 0
1456
1457 static int lid_switch_ignore_handler(sd_event_source *e, uint64_t usec, void *userdata) {
1458         Manager *m = userdata;
1459
1460         assert(e);
1461         assert(m);
1462
1463         m->lid_switch_ignore_event_source = sd_event_source_unref(m->lid_switch_ignore_event_source);
1464         return 0;
1465 }
1466
1467 int manager_set_lid_switch_ignore(Manager *m, usec_t until) {
1468         int r;
1469
1470         assert(m);
1471
1472         if (until <= now(CLOCK_MONOTONIC))
1473                 return 0;
1474
1475         /* We want to ignore the lid switch for a while after each
1476          * suspend, and after boot-up. Hence let's install a timer for
1477          * this. As long as the event source exists we ignore the lid
1478          * switch. */
1479
1480         if (m->lid_switch_ignore_event_source) {
1481                 usec_t u;
1482
1483                 r = sd_event_source_get_time(m->lid_switch_ignore_event_source, &u);
1484                 if (r < 0)
1485                         return r;
1486
1487                 if (until <= u)
1488                         return 0;
1489
1490                 r = sd_event_source_set_time(m->lid_switch_ignore_event_source, until);
1491         } else
1492                 r = sd_event_add_time(
1493                                 m->event,
1494                                 &m->lid_switch_ignore_event_source,
1495                                 CLOCK_MONOTONIC,
1496                                 until, 0,
1497                                 lid_switch_ignore_handler, m);
1498
1499         return r;
1500 }
1501
1502 static void reset_scheduled_shutdown(Manager *m) {
1503         m->scheduled_shutdown_timeout_source = sd_event_source_unref(m->scheduled_shutdown_timeout_source);
1504         m->wall_message_timeout_source = sd_event_source_unref(m->wall_message_timeout_source);
1505         m->nologin_timeout_source = sd_event_source_unref(m->nologin_timeout_source);
1506         m->scheduled_shutdown_type = mfree(m->scheduled_shutdown_type);
1507         m->scheduled_shutdown_timeout = 0;
1508         m->shutdown_dry_run = false;
1509
1510         if (m->unlink_nologin) {
1511                 (void) unlink("/run/nologin");
1512                 m->unlink_nologin = false;
1513         }
1514 }
1515
1516 #if 0 /// elogind has its own variant in elogind-dbus.c
1517 static int execute_shutdown_or_sleep(
1518                 Manager *m,
1519                 InhibitWhat w,
1520                 const char *unit_name,
1521                 sd_bus_error *error) {
1522
1523         _cleanup_(sd_bus_message_unrefp) sd_bus_message *reply = NULL;
1524         char *c = NULL;
1525         const char *p;
1526         int r;
1527
1528         assert(m);
1529         assert(w >= 0);
1530         assert(w < _INHIBIT_WHAT_MAX);
1531         assert(unit_name);
1532
1533         bus_manager_log_shutdown(m, w, unit_name);
1534
1535         if (m->shutdown_dry_run) {
1536                 log_info("Running in dry run, suppressing action.");
1537                 reset_scheduled_shutdown(m);
1538         } else {
1539                 r = sd_bus_call_method(
1540                                 m->bus,
1541                                 "org.freedesktop.systemd1",
1542                                 "/org/freedesktop/systemd1",
1543                                 "org.freedesktop.systemd1.Manager",
1544                                 "StartUnit",
1545                                 error,
1546                                 &reply,
1547                                 "ss", unit_name, "replace-irreversibly");
1548                 if (r < 0)
1549                         return r;
1550
1551                 r = sd_bus_message_read(reply, "o", &p);
1552                 if (r < 0)
1553                         return r;
1554
1555                 c = strdup(p);
1556                 if (!c)
1557                         return -ENOMEM;
1558         }
1559
1560         m->action_unit = unit_name;
1561         free(m->action_job);
1562         m->action_job = c;
1563         m->action_what = w;
1564
1565         /* Make sure the lid switch is ignored for a while */
1566         manager_set_lid_switch_ignore(m, now(CLOCK_MONOTONIC) + m->holdoff_timeout_usec);
1567
1568         return 0;
1569 }
1570
1571 int manager_dispatch_delayed(Manager *manager, bool timeout) {
1572
1573         _cleanup_(sd_bus_error_free) sd_bus_error error = SD_BUS_ERROR_NULL;
1574         Inhibitor *offending = NULL;
1575         int r;
1576
1577         assert(manager);
1578
1579         if (manager->action_what == 0 || manager->action_job)
1580                 return 0;
1581
1582         if (manager_is_inhibited(manager, manager->action_what, INHIBIT_DELAY, NULL, false, false, 0, &offending)) {
1583                 _cleanup_free_ char *comm = NULL, *u = NULL;
1584
1585                 if (!timeout)
1586                         return 0;
1587
1588                 (void) get_process_comm(offending->pid, &comm);
1589                 u = uid_to_name(offending->uid);
1590
1591                 log_notice("Delay lock is active (UID "UID_FMT"/%s, PID "PID_FMT"/%s) but inhibitor timeout is reached.",
1592                            offending->uid, strna(u),
1593                            offending->pid, strna(comm));
1594         }
1595
1596         /* Actually do the operation */
1597         r = execute_shutdown_or_sleep(manager, manager->action_what, manager->action_unit, &error);
1598         if (r < 0) {
1599                 log_warning("Failed to send delayed message: %s", bus_error_message(&error, r));
1600
1601                 manager->action_unit = NULL;
1602                 manager->action_what = 0;
1603                 return r;
1604         }
1605
1606         return 1;
1607 }
1608
1609 static int manager_inhibit_timeout_handler(
1610                         sd_event_source *s,
1611                         uint64_t usec,
1612                         void *userdata) {
1613
1614         Manager *manager = userdata;
1615         int r;
1616
1617         assert(manager);
1618         assert(manager->inhibit_timeout_source == s);
1619
1620         r = manager_dispatch_delayed(manager, true);
1621         return (r < 0) ? r : 0;
1622 }
1623
1624 static int delay_shutdown_or_sleep(
1625                 Manager *m,
1626                 InhibitWhat w,
1627                 const char *unit_name) {
1628
1629         int r;
1630         usec_t timeout_val;
1631
1632         assert(m);
1633         assert(w >= 0);
1634         assert(w < _INHIBIT_WHAT_MAX);
1635         assert(unit_name);
1636
1637         timeout_val = now(CLOCK_MONOTONIC) + m->inhibit_delay_max;
1638
1639         if (m->inhibit_timeout_source) {
1640                 r = sd_event_source_set_time(m->inhibit_timeout_source, timeout_val);
1641                 if (r < 0)
1642                         return log_error_errno(r, "sd_event_source_set_time() failed: %m");
1643
1644                 r = sd_event_source_set_enabled(m->inhibit_timeout_source, SD_EVENT_ONESHOT);
1645                 if (r < 0)
1646                         return log_error_errno(r, "sd_event_source_set_enabled() failed: %m");
1647         } else {
1648                 r = sd_event_add_time(m->event, &m->inhibit_timeout_source, CLOCK_MONOTONIC,
1649                                       timeout_val, 0, manager_inhibit_timeout_handler, m);
1650                 if (r < 0)
1651                         return r;
1652         }
1653
1654         m->action_unit = unit_name;
1655         m->action_what = w;
1656
1657         return 0;
1658 }
1659
1660 static int send_prepare_for(Manager *m, InhibitWhat w, bool _active) {
1661
1662         static const char * const signal_name[_INHIBIT_WHAT_MAX] = {
1663                 [INHIBIT_SHUTDOWN] = "PrepareForShutdown",
1664                 [INHIBIT_SLEEP] = "PrepareForSleep"
1665         };
1666
1667         int active = _active;
1668
1669         assert(m);
1670         assert(w >= 0);
1671         assert(w < _INHIBIT_WHAT_MAX);
1672         assert(signal_name[w]);
1673
1674         return sd_bus_emit_signal(m->bus,
1675                                   "/org/freedesktop/login1",
1676                                   "org.freedesktop.login1.Manager",
1677                                   signal_name[w],
1678                                   "b",
1679                                   active);
1680 }
1681
1682 int bus_manager_shutdown_or_sleep_now_or_later(
1683                 Manager *m,
1684                 const char *unit_name,
1685                 InhibitWhat w,
1686                 sd_bus_error *error) {
1687
1688         bool delayed;
1689         int r;
1690
1691         assert(m);
1692         assert(unit_name);
1693         assert(w >= 0);
1694         assert(w <= _INHIBIT_WHAT_MAX);
1695         assert(!m->action_job);
1696
1697         /* Tell everybody to prepare for shutdown/sleep */
1698         send_prepare_for(m, w, true);
1699
1700         delayed =
1701                 m->inhibit_delay_max > 0 &&
1702                 manager_is_inhibited(m, w, INHIBIT_DELAY, NULL, false, false, 0, NULL);
1703
1704         log_debug_elogind("%s called for %s (%sdelayed)", __FUNCTION__,
1705                           handle_action_to_string(action),
1706                           delayed ? "" : "NOT ");
1707         if (delayed)
1708                 /* Shutdown is delayed, keep in mind what we
1709                  * want to do, and start a timeout */
1710                 r = delay_shutdown_or_sleep(m, w, unit_name);
1711         else
1712                 /* Shutdown is not delayed, execute it
1713                  * immediately */
1714                 r = execute_shutdown_or_sleep(m, w, unit_name, error);
1715
1716         return r;
1717 }
1718
1719 static int verify_shutdown_creds(
1720                 Manager *m,
1721                 sd_bus_message *message,
1722                 InhibitWhat w,
1723                 bool interactive,
1724                 const char *action,
1725                 const char *action_multiple_sessions,
1726                 const char *action_ignore_inhibit,
1727                 sd_bus_error *error) {
1728
1729         _cleanup_(sd_bus_creds_unrefp) sd_bus_creds *creds = NULL;
1730         bool multiple_sessions, blocked;
1731         uid_t uid;
1732         int r;
1733
1734         assert(m);
1735         assert(message);
1736         assert(w >= 0);
1737         assert(w <= _INHIBIT_WHAT_MAX);
1738
1739         r = sd_bus_query_sender_creds(message, SD_BUS_CREDS_EUID, &creds);
1740         if (r < 0)
1741                 return r;
1742
1743         r = sd_bus_creds_get_euid(creds, &uid);
1744         if (r < 0)
1745                 return r;
1746
1747         r = have_multiple_sessions(m, uid);
1748         if (r < 0)
1749                 return r;
1750
1751         multiple_sessions = r > 0;
1752         blocked = manager_is_inhibited(m, w, INHIBIT_BLOCK, NULL, false, true, uid, NULL);
1753
1754         if (multiple_sessions && action_multiple_sessions) {
1755                 r = bus_verify_polkit_async(message, CAP_SYS_BOOT, action_multiple_sessions, NULL, interactive, UID_INVALID, &m->polkit_registry, error);
1756                 if (r < 0)
1757                         return r;
1758                 if (r == 0)
1759                         return 1; /* No authorization for now, but the async polkit stuff will call us again when it has it */
1760         }
1761
1762         if (blocked && action_ignore_inhibit) {
1763                 r = bus_verify_polkit_async(message, CAP_SYS_BOOT, action_ignore_inhibit, NULL, interactive, UID_INVALID, &m->polkit_registry, error);
1764                 if (r < 0)
1765                         return r;
1766                 if (r == 0)
1767                         return 1; /* No authorization for now, but the async polkit stuff will call us again when it has it */
1768         }
1769
1770         if (!multiple_sessions && !blocked && action) {
1771                 r = bus_verify_polkit_async(message, CAP_SYS_BOOT, action, NULL, interactive, UID_INVALID, &m->polkit_registry, error);
1772                 if (r < 0)
1773                         return r;
1774                 if (r == 0)
1775                         return 1; /* No authorization for now, but the async polkit stuff will call us again when it has it */
1776         }
1777
1778         return 0;
1779 }
1780
1781 static int method_do_shutdown_or_sleep(
1782                 Manager *m,
1783                 sd_bus_message *message,
1784                 const char *unit_name,
1785                 InhibitWhat w,
1786                 const char *action,
1787                 const char *action_multiple_sessions,
1788                 const char *action_ignore_inhibit,
1789                 const char *sleep_verb,
1790                 sd_bus_error *error) {
1791
1792         int interactive, r;
1793
1794         assert(m);
1795         assert(message);
1796         assert(unit_name);
1797         assert(w >= 0);
1798         assert(w <= _INHIBIT_WHAT_MAX);
1799
1800         r = sd_bus_message_read(message, "b", &interactive);
1801         if (r < 0)
1802                 return r;
1803
1804         log_debug_elogind("%s called with action '%s', sleep '%s' (%sinteractive)",
1805                           __FUNCTION__, action, sleep_verb,
1806                           interactive ? "" : "NOT ");
1807         /* Don't allow multiple jobs being executed at the same time */
1808         if (m->action_what)
1809                 return sd_bus_error_setf(error, BUS_ERROR_OPERATION_IN_PROGRESS, "There's already a shutdown or sleep operation in progress");
1810
1811         if (sleep_verb) {
1812                 r = can_sleep(sleep_verb);
1813                 if (r < 0)
1814                         return r;
1815
1816                 if (r == 0)
1817                         return sd_bus_error_setf(error, BUS_ERROR_SLEEP_VERB_NOT_SUPPORTED, "Sleep verb not supported");
1818         }
1819
1820         r = verify_shutdown_creds(m, message, w, interactive, action, action_multiple_sessions,
1821                                   action_ignore_inhibit, error);
1822         log_debug_elogind("verify_shutdown_creds() returned %d", r);
1823         if (r != 0)
1824                 return r;
1825
1826         r = bus_manager_shutdown_or_sleep_now_or_later(m, unit_name, w, error);
1827         if (r < 0)
1828                 return r;
1829
1830         return sd_bus_reply_method_return(message, NULL);
1831 }
1832
1833 static int method_poweroff(sd_bus_message *message, void *userdata, sd_bus_error *error) {
1834         Manager *m = userdata;
1835
1836         log_debug_elogind("%s called", __FUNCTION__);
1837         return method_do_shutdown_or_sleep(
1838                         m, message,
1839                         SPECIAL_POWEROFF_TARGET,
1840                         INHIBIT_SHUTDOWN,
1841                         "org.freedesktop.login1.power-off",
1842                         "org.freedesktop.login1.power-off-multiple-sessions",
1843                         "org.freedesktop.login1.power-off-ignore-inhibit",
1844                         NULL,
1845                         error);
1846 }
1847
1848 static int method_reboot(sd_bus_message *message, void *userdata, sd_bus_error *error) {
1849         Manager *m = userdata;
1850
1851         log_debug_elogind("%s called", __FUNCTION__);
1852         return method_do_shutdown_or_sleep(
1853                         m, message,
1854                         SPECIAL_REBOOT_TARGET,
1855                         INHIBIT_SHUTDOWN,
1856                         "org.freedesktop.login1.reboot",
1857                         "org.freedesktop.login1.reboot-multiple-sessions",
1858                         "org.freedesktop.login1.reboot-ignore-inhibit",
1859                         NULL,
1860                         error);
1861 }
1862
1863 static int method_suspend(sd_bus_message *message, void *userdata, sd_bus_error *error) {
1864         Manager *m = userdata;
1865
1866         log_debug_elogind("%s called", __FUNCTION__);
1867         return method_do_shutdown_or_sleep(
1868                         m, message,
1869                         SPECIAL_SUSPEND_TARGET,
1870                         INHIBIT_SLEEP,
1871                         "org.freedesktop.login1.suspend",
1872                         "org.freedesktop.login1.suspend-multiple-sessions",
1873                         "org.freedesktop.login1.suspend-ignore-inhibit",
1874                         "suspend",
1875                         error);
1876 }
1877 #endif // 0
1878
1879 static int nologin_timeout_handler(
1880                         sd_event_source *s,
1881                         uint64_t usec,
1882                         void *userdata) {
1883
1884         Manager *m = userdata;
1885         int r;
1886
1887         log_info("Creating /run/nologin, blocking further logins...");
1888
1889         r = write_string_file_atomic_label("/run/nologin", "System is going down.");
1890         if (r < 0)
1891                 log_error_errno(r, "Failed to create /run/nologin: %m");
1892         else
1893                 m->unlink_nologin = true;
1894
1895         return 0;
1896 }
1897
1898 static int update_schedule_file(Manager *m) {
1899         _cleanup_free_ char *temp_path = NULL;
1900         _cleanup_fclose_ FILE *f = NULL;
1901         int r;
1902
1903         assert(m);
1904
1905         r = mkdir_safe_label("/run/systemd/shutdown", 0755, 0, 0);
1906         if (r < 0)
1907                 return log_error_errno(r, "Failed to create shutdown subdirectory: %m");
1908
1909         r = fopen_temporary("/run/systemd/shutdown/scheduled", &f, &temp_path);
1910         if (r < 0)
1911                 return log_error_errno(r, "Failed to save information about scheduled shutdowns: %m");
1912
1913         (void) fchmod(fileno(f), 0644);
1914
1915         fprintf(f,
1916                 "USEC="USEC_FMT"\n"
1917                 "WARN_WALL=%i\n"
1918                 "MODE=%s\n",
1919                 m->scheduled_shutdown_timeout,
1920                 m->enable_wall_messages,
1921                 m->scheduled_shutdown_type);
1922
1923         if (!isempty(m->wall_message)) {
1924                 _cleanup_free_ char *t;
1925
1926                 t = cescape(m->wall_message);
1927                 if (!t) {
1928                         r = -ENOMEM;
1929                         goto fail;
1930                 }
1931
1932                 fprintf(f, "WALL_MESSAGE=%s\n", t);
1933         }
1934
1935         r = fflush_and_check(f);
1936         if (r < 0)
1937                 goto fail;
1938
1939         if (rename(temp_path, "/run/systemd/shutdown/scheduled") < 0) {
1940                 r = -errno;
1941                 goto fail;
1942         }
1943
1944         return 0;
1945
1946 fail:
1947         (void) unlink(temp_path);
1948         (void) unlink("/run/systemd/shutdown/scheduled");
1949
1950         return log_error_errno(r, "Failed to write information about scheduled shutdowns: %m");
1951 }
1952
1953 #if 0 /// elogind has its own variant in elogind-dbus.c
1954 static int manager_scheduled_shutdown_handler(
1955                         sd_event_source *s,
1956                         uint64_t usec,
1957                         void *userdata) {
1958
1959         _cleanup_(sd_bus_error_free) sd_bus_error error = SD_BUS_ERROR_NULL;
1960         Manager *m = userdata;
1961         const char *target;
1962         int r;
1963
1964         assert(m);
1965
1966         if (isempty(m->scheduled_shutdown_type))
1967                 return 0;
1968
1969         if (streq(m->scheduled_shutdown_type, "halt"))
1970                 target = SPECIAL_HALT_TARGET;
1971         else if (streq(m->scheduled_shutdown_type, "poweroff"))
1972                 target = SPECIAL_POWEROFF_TARGET;
1973         else
1974                 target = SPECIAL_REBOOT_TARGET;
1975
1976         r = execute_shutdown_or_sleep(m, 0, target, &error);
1977         if (r < 0)
1978                 return log_error_errno(r, "Unable to execute transition to %s: %m", target);
1979
1980         return 0;
1981 }
1982 #endif // 0
1983
1984 static int method_schedule_shutdown(sd_bus_message *message, void *userdata, sd_bus_error *error) {
1985         Manager *m = userdata;
1986         _cleanup_(sd_bus_creds_unrefp) sd_bus_creds *creds = NULL;
1987         const char *action_multiple_sessions = NULL;
1988         const char *action_ignore_inhibit = NULL;
1989         const char *action = NULL;
1990         uint64_t elapse;
1991         char *type;
1992         int r;
1993
1994         assert(m);
1995         assert(message);
1996
1997         log_debug_elogind("%s called", __FUNCTION__);
1998         r = sd_bus_message_read(message, "st", &type, &elapse);
1999         if (r < 0)
2000                 return r;
2001
2002         if (startswith(type, "dry-")) {
2003                 type += 4;
2004                 m->shutdown_dry_run = true;
2005         }
2006
2007         if (streq(type, "reboot")) {
2008                 action = "org.freedesktop.login1.reboot";
2009                 action_multiple_sessions = "org.freedesktop.login1.reboot-multiple-sessions";
2010                 action_ignore_inhibit = "org.freedesktop.login1.reboot-ignore-inhibit";
2011         } else if (streq(type, "halt")) {
2012                 action = "org.freedesktop.login1.halt";
2013                 action_multiple_sessions = "org.freedesktop.login1.halt-multiple-sessions";
2014                 action_ignore_inhibit = "org.freedesktop.login1.halt-ignore-inhibit";
2015         } else if (streq(type, "poweroff")) {
2016                 action = "org.freedesktop.login1.power-off";
2017                 action_multiple_sessions = "org.freedesktop.login1.power-off-multiple-sessions";
2018                 action_ignore_inhibit = "org.freedesktop.login1.power-off-ignore-inhibit";
2019         } else
2020                 return sd_bus_error_setf(error, SD_BUS_ERROR_INVALID_ARGS, "Unsupported shutdown type");
2021
2022         r = verify_shutdown_creds(m, message, INHIBIT_SHUTDOWN, false,
2023                                   action, action_multiple_sessions, action_ignore_inhibit, error);
2024         if (r != 0)
2025                 return r;
2026
2027         if (m->scheduled_shutdown_timeout_source) {
2028                 r = sd_event_source_set_time(m->scheduled_shutdown_timeout_source, elapse);
2029                 if (r < 0)
2030                         return log_error_errno(r, "sd_event_source_set_time() failed: %m");
2031
2032                 r = sd_event_source_set_enabled(m->scheduled_shutdown_timeout_source, SD_EVENT_ONESHOT);
2033                 if (r < 0)
2034                         return log_error_errno(r, "sd_event_source_set_enabled() failed: %m");
2035         } else {
2036                 r = sd_event_add_time(m->event, &m->scheduled_shutdown_timeout_source,
2037                                       CLOCK_REALTIME, elapse, 0, manager_scheduled_shutdown_handler, m);
2038                 if (r < 0)
2039                         return log_error_errno(r, "sd_event_add_time() failed: %m");
2040         }
2041
2042         r = free_and_strdup(&m->scheduled_shutdown_type, type);
2043         if (r < 0) {
2044                 m->scheduled_shutdown_timeout_source = sd_event_source_unref(m->scheduled_shutdown_timeout_source);
2045                 return log_oom();
2046         }
2047
2048         if (m->nologin_timeout_source) {
2049                 r = sd_event_source_set_time(m->nologin_timeout_source, elapse);
2050                 if (r < 0)
2051                         return log_error_errno(r, "sd_event_source_set_time() failed: %m");
2052
2053                 r = sd_event_source_set_enabled(m->nologin_timeout_source, SD_EVENT_ONESHOT);
2054                 if (r < 0)
2055                         return log_error_errno(r, "sd_event_source_set_enabled() failed: %m");
2056         } else {
2057                 r = sd_event_add_time(m->event, &m->nologin_timeout_source,
2058                                       CLOCK_REALTIME, elapse - 5 * USEC_PER_MINUTE, 0, nologin_timeout_handler, m);
2059                 if (r < 0)
2060                         return log_error_errno(r, "sd_event_add_time() failed: %m");
2061         }
2062
2063         m->scheduled_shutdown_timeout = elapse;
2064
2065         r = sd_bus_query_sender_creds(message, SD_BUS_CREDS_AUGMENT|SD_BUS_CREDS_TTY|SD_BUS_CREDS_UID, &creds);
2066         if (r >= 0) {
2067                 const char *tty = NULL;
2068
2069                 (void) sd_bus_creds_get_uid(creds, &m->scheduled_shutdown_uid);
2070                 (void) sd_bus_creds_get_tty(creds, &tty);
2071
2072                 r = free_and_strdup(&m->scheduled_shutdown_tty, tty);
2073                 if (r < 0) {
2074                         m->scheduled_shutdown_timeout_source = sd_event_source_unref(m->scheduled_shutdown_timeout_source);
2075                         return log_oom();
2076                 }
2077         }
2078
2079         r = manager_setup_wall_message_timer(m);
2080         if (r < 0)
2081                 return r;
2082
2083         if (!isempty(type)) {
2084                 r = update_schedule_file(m);
2085                 if (r < 0)
2086                         return r;
2087         } else
2088                 (void) unlink("/run/systemd/shutdown/scheduled");
2089
2090         return sd_bus_reply_method_return(message, NULL);
2091 }
2092
2093 static int method_cancel_scheduled_shutdown(sd_bus_message *message, void *userdata, sd_bus_error *error) {
2094         Manager *m = userdata;
2095         bool cancelled;
2096 #if 1 /// elogind needs to construct the message to allow extra wall messages
2097         _cleanup_free_ char *l = NULL;
2098 #endif // 1
2099
2100         assert(m);
2101         assert(message);
2102
2103         log_debug_elogind("%s called", __FUNCTION__);
2104         cancelled = m->scheduled_shutdown_type != NULL;
2105         reset_scheduled_shutdown(m);
2106
2107         if (cancelled) {
2108                 _cleanup_(sd_bus_creds_unrefp) sd_bus_creds *creds = NULL;
2109                 const char *tty = NULL;
2110                 uid_t uid = 0;
2111                 int r;
2112
2113                 r = sd_bus_query_sender_creds(message, SD_BUS_CREDS_AUGMENT|SD_BUS_CREDS_TTY|SD_BUS_CREDS_UID, &creds);
2114                 if (r >= 0) {
2115                         (void) sd_bus_creds_get_uid(creds, &uid);
2116                         (void) sd_bus_creds_get_tty(creds, &tty);
2117                 }
2118
2119 #if 0 /// elogind wants to allow extra cancellation messages
2120                 utmp_wall("The system shutdown has been cancelled",
2121                           uid_to_name(uid), tty, logind_wall_tty_filter, m);
2122 #else
2123                 r = asprintf(&l, "%s%sThe system shutdown has been cancelled!",
2124                              strempty(m->wall_message),
2125                              isempty(m->wall_message) ? "" : "\n");
2126                 if (r < 0) {
2127                         log_oom();
2128                         return 0;
2129                 }
2130
2131                 utmp_wall(l, uid_to_name(uid), tty, logind_wall_tty_filter, m);
2132 #endif // 0
2133         }
2134
2135         return sd_bus_reply_method_return(message, "b", cancelled);
2136 }
2137
2138 #if 0 /// elogind has its own variant in elogind-dbus.c
2139 static int method_hibernate(sd_bus_message *message, void *userdata, sd_bus_error *error) {
2140         Manager *m = userdata;
2141
2142         log_debug_elogind("%s called", __FUNCTION__);
2143         return method_do_shutdown_or_sleep(
2144                         m, message,
2145                         SPECIAL_HIBERNATE_TARGET,
2146                         INHIBIT_SLEEP,
2147                         "org.freedesktop.login1.hibernate",
2148                         "org.freedesktop.login1.hibernate-multiple-sessions",
2149                         "org.freedesktop.login1.hibernate-ignore-inhibit",
2150                         "hibernate",
2151                         error);
2152 }
2153
2154 static int method_hybrid_sleep(sd_bus_message *message, void *userdata, sd_bus_error *error) {
2155         Manager *m = userdata;
2156
2157         log_debug_elogind("%s called", __FUNCTION__);
2158         return method_do_shutdown_or_sleep(
2159                         m, message,
2160                         SPECIAL_HYBRID_SLEEP_TARGET,
2161                         INHIBIT_SLEEP,
2162                         "org.freedesktop.login1.hibernate",
2163                         "org.freedesktop.login1.hibernate-multiple-sessions",
2164                         "org.freedesktop.login1.hibernate-ignore-inhibit",
2165                         "hybrid-sleep",
2166                         error);
2167 }
2168 #endif // 0
2169
2170 static int method_can_shutdown_or_sleep(
2171                 Manager *m,
2172                 sd_bus_message *message,
2173                 InhibitWhat w,
2174                 const char *action,
2175                 const char *action_multiple_sessions,
2176                 const char *action_ignore_inhibit,
2177                 const char *sleep_verb,
2178                 sd_bus_error *error) {
2179
2180         _cleanup_(sd_bus_creds_unrefp) sd_bus_creds *creds = NULL;
2181         bool multiple_sessions, challenge, blocked;
2182         const char *result = NULL;
2183         uid_t uid;
2184         int r;
2185
2186         assert(m);
2187         assert(message);
2188         assert(w >= 0);
2189         assert(w <= _INHIBIT_WHAT_MAX);
2190         assert(action);
2191         assert(action_multiple_sessions);
2192         assert(action_ignore_inhibit);
2193
2194         if (sleep_verb) {
2195 #if 0 /// elogind needs to have the manager being passed
2196                 r = can_sleep(sleep_verb);
2197 #else
2198                 r = can_sleep(m, sleep_verb);
2199 #endif // 0
2200                 if (r < 0)
2201                         return r;
2202                 if (r == 0)
2203                         return sd_bus_reply_method_return(message, "s", "na");
2204         }
2205
2206         r = sd_bus_query_sender_creds(message, SD_BUS_CREDS_EUID, &creds);
2207         if (r < 0)
2208                 return r;
2209
2210         r = sd_bus_creds_get_euid(creds, &uid);
2211         if (r < 0)
2212                 return r;
2213
2214         r = have_multiple_sessions(m, uid);
2215         if (r < 0)
2216                 return r;
2217
2218         multiple_sessions = r > 0;
2219         blocked = manager_is_inhibited(m, w, INHIBIT_BLOCK, NULL, false, true, uid, NULL);
2220
2221         if (multiple_sessions) {
2222                 r = bus_test_polkit(message, CAP_SYS_BOOT, action_multiple_sessions, NULL, UID_INVALID, &challenge, error);
2223                 if (r < 0)
2224                         return r;
2225
2226                 if (r > 0)
2227                         result = "yes";
2228                 else if (challenge)
2229                         result = "challenge";
2230                 else
2231                         result = "no";
2232         }
2233
2234         if (blocked) {
2235                 r = bus_test_polkit(message, CAP_SYS_BOOT, action_ignore_inhibit, NULL, UID_INVALID, &challenge, error);
2236                 if (r < 0)
2237                         return r;
2238
2239                 if (r > 0 && !result)
2240                         result = "yes";
2241                 else if (challenge && (!result || streq(result, "yes")))
2242                         result = "challenge";
2243                 else
2244                         result = "no";
2245         }
2246
2247         if (!multiple_sessions && !blocked) {
2248                 /* If neither inhibit nor multiple sessions
2249                  * apply then just check the normal policy */
2250
2251                 r = bus_test_polkit(message, CAP_SYS_BOOT, action, NULL, UID_INVALID, &challenge, error);
2252                 if (r < 0)
2253                         return r;
2254
2255                 if (r > 0)
2256                         result = "yes";
2257                 else if (challenge)
2258                         result = "challenge";
2259                 else
2260                         result = "no";
2261         }
2262
2263         return sd_bus_reply_method_return(message, "s", result);
2264 }
2265
2266 static int method_can_poweroff(sd_bus_message *message, void *userdata, sd_bus_error *error) {
2267         Manager *m = userdata;
2268
2269         return method_can_shutdown_or_sleep(
2270                         m, message,
2271                         INHIBIT_SHUTDOWN,
2272                         "org.freedesktop.login1.power-off",
2273                         "org.freedesktop.login1.power-off-multiple-sessions",
2274                         "org.freedesktop.login1.power-off-ignore-inhibit",
2275                         NULL,
2276                         error);
2277 }
2278
2279 static int method_can_reboot(sd_bus_message *message, void *userdata, sd_bus_error *error) {
2280         Manager *m = userdata;
2281
2282         return method_can_shutdown_or_sleep(
2283                         m, message,
2284                         INHIBIT_SHUTDOWN,
2285                         "org.freedesktop.login1.reboot",
2286                         "org.freedesktop.login1.reboot-multiple-sessions",
2287                         "org.freedesktop.login1.reboot-ignore-inhibit",
2288                         NULL,
2289                         error);
2290 }
2291
2292 static int method_can_suspend(sd_bus_message *message, void *userdata, sd_bus_error *error) {
2293         Manager *m = userdata;
2294
2295         return method_can_shutdown_or_sleep(
2296                         m, message,
2297                         INHIBIT_SLEEP,
2298                         "org.freedesktop.login1.suspend",
2299                         "org.freedesktop.login1.suspend-multiple-sessions",
2300                         "org.freedesktop.login1.suspend-ignore-inhibit",
2301                         "suspend",
2302                         error);
2303 }
2304
2305 static int method_can_hibernate(sd_bus_message *message, void *userdata, sd_bus_error *error) {
2306         Manager *m = userdata;
2307
2308         return method_can_shutdown_or_sleep(
2309                         m, message,
2310                         INHIBIT_SLEEP,
2311                         "org.freedesktop.login1.hibernate",
2312                         "org.freedesktop.login1.hibernate-multiple-sessions",
2313                         "org.freedesktop.login1.hibernate-ignore-inhibit",
2314                         "hibernate",
2315                         error);
2316 }
2317
2318 static int method_can_hybrid_sleep(sd_bus_message *message, void *userdata, sd_bus_error *error) {
2319         Manager *m = userdata;
2320
2321         return method_can_shutdown_or_sleep(
2322                         m, message,
2323                         INHIBIT_SLEEP,
2324                         "org.freedesktop.login1.hibernate",
2325                         "org.freedesktop.login1.hibernate-multiple-sessions",
2326                         "org.freedesktop.login1.hibernate-ignore-inhibit",
2327                         "hybrid-sleep",
2328                         error);
2329 }
2330
2331 static int property_get_reboot_to_firmware_setup(
2332                 sd_bus *bus,
2333                 const char *path,
2334                 const char *interface,
2335                 const char *property,
2336                 sd_bus_message *reply,
2337                 void *userdata,
2338                 sd_bus_error *error) {
2339 #if 0 /// elogind does not support EFI
2340         int r;
2341
2342         assert(bus);
2343         assert(reply);
2344         assert(userdata);
2345
2346         r = efi_get_reboot_to_firmware();
2347         if (r < 0 && r != -EOPNOTSUPP)
2348                 return r;
2349
2350         return sd_bus_message_append(reply, "b", r > 0);
2351 #else
2352         return sd_bus_message_append(reply, "b", false);
2353 #endif // 0
2354 }
2355
2356 static int method_set_reboot_to_firmware_setup(
2357                 sd_bus_message *message,
2358                 void *userdata,
2359                 sd_bus_error *error) {
2360
2361         int b, r;
2362         Manager *m = userdata;
2363
2364         assert(message);
2365         assert(m);
2366
2367         r = sd_bus_message_read(message, "b", &b);
2368         if (r < 0)
2369                 return r;
2370
2371         r = bus_verify_polkit_async(message,
2372                                     CAP_SYS_ADMIN,
2373                                     "org.freedesktop.login1.set-reboot-to-firmware-setup",
2374                                     NULL,
2375                                     false,
2376                                     UID_INVALID,
2377                                     &m->polkit_registry,
2378                                     error);
2379         if (r < 0)
2380                 return r;
2381         if (r == 0)
2382                 return 1; /* No authorization for now, but the async polkit stuff will call us again when it has it */
2383
2384 #if 0 /// elogind does not support EFI
2385         r = efi_set_reboot_to_firmware(b);
2386         if (r < 0)
2387                 return r;
2388 #endif // 0
2389
2390         return sd_bus_reply_method_return(message, NULL);
2391 }
2392
2393 static int method_can_reboot_to_firmware_setup(
2394                 sd_bus_message *message,
2395                 void *userdata,
2396                 sd_bus_error *error) {
2397
2398 #if 0 /// elogind does not support EFI
2399         int r;
2400         bool challenge;
2401         const char *result;
2402         Manager *m = userdata;
2403
2404         assert(message);
2405         assert(m);
2406
2407         r = efi_reboot_to_firmware_supported();
2408         if (r == -EOPNOTSUPP)
2409                 return sd_bus_reply_method_return(message, "s", "na");
2410         else if (r < 0)
2411                 return r;
2412
2413         r = bus_test_polkit(message,
2414                             CAP_SYS_ADMIN,
2415                             "org.freedesktop.login1.set-reboot-to-firmware-setup",
2416                             NULL,
2417                             UID_INVALID,
2418                             &challenge,
2419                             error);
2420         if (r < 0)
2421                 return r;
2422
2423         if (r > 0)
2424                 result = "yes";
2425         else if (challenge)
2426                 result = "challenge";
2427         else
2428                 result = "no";
2429
2430         return sd_bus_reply_method_return(message, "s", result);
2431 #else
2432         return sd_bus_reply_method_return(message, "s", "no");
2433 #endif // 0
2434 }
2435
2436 static int method_set_wall_message(
2437                 sd_bus_message *message,
2438                 void *userdata,
2439                 sd_bus_error *error) {
2440
2441         int r;
2442         Manager *m = userdata;
2443         char *wall_message;
2444         int enable_wall_messages;
2445
2446         assert(message);
2447         assert(m);
2448
2449         r = sd_bus_message_read(message, "sb", &wall_message, &enable_wall_messages);
2450         if (r < 0)
2451                 return r;
2452
2453 #if 0 /// elogind only calls this for shutdown/reboot, which already needs authorization.
2454         r = bus_verify_polkit_async(message,
2455                                     CAP_SYS_ADMIN,
2456                                     "org.freedesktop.login1.set-wall-message",
2457                                     NULL,
2458                                     false,
2459                                     UID_INVALID,
2460                                     &m->polkit_registry,
2461                                     error);
2462         if (r < 0)
2463                 return r;
2464         if (r == 0)
2465                 return 1; /* Will call us back */
2466 #endif // 0
2467
2468         if (isempty(wall_message))
2469                 m->wall_message = mfree(m->wall_message);
2470         else {
2471                 r = free_and_strdup(&m->wall_message, wall_message);
2472                 if (r < 0)
2473                         return log_oom();
2474         }
2475
2476         m->enable_wall_messages = enable_wall_messages;
2477
2478         return sd_bus_reply_method_return(message, NULL);
2479 }
2480
2481 static int method_inhibit(sd_bus_message *message, void *userdata, sd_bus_error *error) {
2482         _cleanup_(sd_bus_creds_unrefp) sd_bus_creds *creds = NULL;
2483         const char *who, *why, *what, *mode;
2484         _cleanup_free_ char *id = NULL;
2485         _cleanup_close_ int fifo_fd = -1;
2486         Manager *m = userdata;
2487         Inhibitor *i = NULL;
2488         InhibitMode mm;
2489         InhibitWhat w;
2490         pid_t pid;
2491         uid_t uid;
2492         int r;
2493
2494         assert(message);
2495         assert(m);
2496
2497         r = sd_bus_message_read(message, "ssss", &what, &who, &why, &mode);
2498         if (r < 0)
2499                 return r;
2500
2501         w = inhibit_what_from_string(what);
2502         if (w <= 0)
2503                 return sd_bus_error_setf(error, SD_BUS_ERROR_INVALID_ARGS, "Invalid what specification %s", what);
2504
2505         mm = inhibit_mode_from_string(mode);
2506         if (mm < 0)
2507                 return sd_bus_error_setf(error, SD_BUS_ERROR_INVALID_ARGS, "Invalid mode specification %s", mode);
2508
2509         /* Delay is only supported for shutdown/sleep */
2510         if (mm == INHIBIT_DELAY && (w & ~(INHIBIT_SHUTDOWN|INHIBIT_SLEEP)))
2511                 return sd_bus_error_setf(error, SD_BUS_ERROR_INVALID_ARGS, "Delay inhibitors only supported for shutdown and sleep");
2512
2513         /* Don't allow taking delay locks while we are already
2514          * executing the operation. We shouldn't create the impression
2515          * that the lock was successful if the machine is about to go
2516          * down/suspend any moment. */
2517         if (m->action_what & w)
2518                 return sd_bus_error_setf(error, BUS_ERROR_OPERATION_IN_PROGRESS, "The operation inhibition has been requested for is already running");
2519
2520         r = bus_verify_polkit_async(
2521                         message,
2522                         CAP_SYS_BOOT,
2523                         w == INHIBIT_SHUTDOWN             ? (mm == INHIBIT_BLOCK ? "org.freedesktop.login1.inhibit-block-shutdown" : "org.freedesktop.login1.inhibit-delay-shutdown") :
2524                         w == INHIBIT_SLEEP                ? (mm == INHIBIT_BLOCK ? "org.freedesktop.login1.inhibit-block-sleep"    : "org.freedesktop.login1.inhibit-delay-sleep") :
2525                         w == INHIBIT_IDLE                 ? "org.freedesktop.login1.inhibit-block-idle" :
2526                         w == INHIBIT_HANDLE_POWER_KEY     ? "org.freedesktop.login1.inhibit-handle-power-key" :
2527                         w == INHIBIT_HANDLE_SUSPEND_KEY   ? "org.freedesktop.login1.inhibit-handle-suspend-key" :
2528                         w == INHIBIT_HANDLE_HIBERNATE_KEY ? "org.freedesktop.login1.inhibit-handle-hibernate-key" :
2529                                                             "org.freedesktop.login1.inhibit-handle-lid-switch",
2530                         NULL,
2531                         false,
2532                         UID_INVALID,
2533                         &m->polkit_registry,
2534                         error);
2535         if (r < 0)
2536                 return r;
2537         if (r == 0)
2538                 return 1; /* No authorization for now, but the async polkit stuff will call us again when it has it */
2539
2540         r = sd_bus_query_sender_creds(message, SD_BUS_CREDS_EUID|SD_BUS_CREDS_PID, &creds);
2541         if (r < 0)
2542                 return r;
2543
2544         r = sd_bus_creds_get_euid(creds, &uid);
2545         if (r < 0)
2546                 return r;
2547
2548         r = sd_bus_creds_get_pid(creds, &pid);
2549         if (r < 0)
2550                 return r;
2551
2552         if (hashmap_size(m->inhibitors) >= m->inhibitors_max)
2553                 return sd_bus_error_setf(error, SD_BUS_ERROR_LIMITS_EXCEEDED, "Maximum number of inhibitors (%" PRIu64 ") reached, refusing further inhibitors.", m->inhibitors_max);
2554
2555         do {
2556                 id = mfree(id);
2557
2558                 if (asprintf(&id, "%lu", ++m->inhibit_counter) < 0)
2559                         return -ENOMEM;
2560
2561         } while (hashmap_get(m->inhibitors, id));
2562
2563         r = manager_add_inhibitor(m, id, &i);
2564         if (r < 0)
2565                 return r;
2566
2567         i->what = w;
2568         i->mode = mm;
2569         i->pid = pid;
2570         i->uid = uid;
2571         i->why = strdup(why);
2572         i->who = strdup(who);
2573
2574         if (!i->why || !i->who) {
2575                 r = -ENOMEM;
2576                 goto fail;
2577         }
2578
2579         fifo_fd = inhibitor_create_fifo(i);
2580         if (fifo_fd < 0) {
2581                 r = fifo_fd;
2582                 goto fail;
2583         }
2584
2585         inhibitor_start(i);
2586
2587         return sd_bus_reply_method_return(message, "h", fifo_fd);
2588
2589 fail:
2590         if (i)
2591                 inhibitor_free(i);
2592
2593         return r;
2594 }
2595
2596 const sd_bus_vtable manager_vtable[] = {
2597         SD_BUS_VTABLE_START(0),
2598
2599         SD_BUS_WRITABLE_PROPERTY("EnableWallMessages", "b", NULL, NULL, offsetof(Manager, enable_wall_messages), 0),
2600         SD_BUS_WRITABLE_PROPERTY("WallMessage", "s", NULL, NULL, offsetof(Manager, wall_message), 0),
2601
2602 #if 0 /// UNNEEDED by elogind
2603         SD_BUS_PROPERTY("NAutoVTs", "u", NULL, offsetof(Manager, n_autovts), SD_BUS_VTABLE_PROPERTY_CONST),
2604 #endif // 0
2605         SD_BUS_PROPERTY("KillOnlyUsers", "as", NULL, offsetof(Manager, kill_only_users), SD_BUS_VTABLE_PROPERTY_CONST),
2606         SD_BUS_PROPERTY("KillExcludeUsers", "as", NULL, offsetof(Manager, kill_exclude_users), SD_BUS_VTABLE_PROPERTY_CONST),
2607         SD_BUS_PROPERTY("KillUserProcesses", "b", NULL, offsetof(Manager, kill_user_processes), SD_BUS_VTABLE_PROPERTY_CONST),
2608         SD_BUS_PROPERTY("RebootToFirmwareSetup", "b", property_get_reboot_to_firmware_setup, 0, SD_BUS_VTABLE_PROPERTY_CONST),
2609         SD_BUS_PROPERTY("IdleHint", "b", property_get_idle_hint, 0, SD_BUS_VTABLE_PROPERTY_EMITS_CHANGE),
2610         SD_BUS_PROPERTY("IdleSinceHint", "t", property_get_idle_since_hint, 0, SD_BUS_VTABLE_PROPERTY_EMITS_CHANGE),
2611         SD_BUS_PROPERTY("IdleSinceHintMonotonic", "t", property_get_idle_since_hint, 0, SD_BUS_VTABLE_PROPERTY_EMITS_CHANGE),
2612         SD_BUS_PROPERTY("BlockInhibited", "s", property_get_inhibited, 0, SD_BUS_VTABLE_PROPERTY_EMITS_CHANGE),
2613         SD_BUS_PROPERTY("DelayInhibited", "s", property_get_inhibited, 0, SD_BUS_VTABLE_PROPERTY_EMITS_CHANGE),
2614         SD_BUS_PROPERTY("InhibitDelayMaxUSec", "t", NULL, offsetof(Manager, inhibit_delay_max), SD_BUS_VTABLE_PROPERTY_CONST),
2615         SD_BUS_PROPERTY("HandlePowerKey", "s", property_get_handle_action, offsetof(Manager, handle_power_key), SD_BUS_VTABLE_PROPERTY_CONST),
2616         SD_BUS_PROPERTY("HandleSuspendKey", "s", property_get_handle_action, offsetof(Manager, handle_suspend_key), SD_BUS_VTABLE_PROPERTY_CONST),
2617         SD_BUS_PROPERTY("HandleHibernateKey", "s", property_get_handle_action, offsetof(Manager, handle_hibernate_key), SD_BUS_VTABLE_PROPERTY_CONST),
2618         SD_BUS_PROPERTY("HandleLidSwitch", "s", property_get_handle_action, offsetof(Manager, handle_lid_switch), SD_BUS_VTABLE_PROPERTY_CONST),
2619         SD_BUS_PROPERTY("HandleLidSwitchDocked", "s", property_get_handle_action, offsetof(Manager, handle_lid_switch_docked), SD_BUS_VTABLE_PROPERTY_CONST),
2620         SD_BUS_PROPERTY("HoldoffTimeoutUSec", "t", NULL, offsetof(Manager, holdoff_timeout_usec), SD_BUS_VTABLE_PROPERTY_CONST),
2621         SD_BUS_PROPERTY("IdleAction", "s", property_get_handle_action, offsetof(Manager, idle_action), SD_BUS_VTABLE_PROPERTY_CONST),
2622         SD_BUS_PROPERTY("IdleActionUSec", "t", NULL, offsetof(Manager, idle_action_usec), SD_BUS_VTABLE_PROPERTY_CONST),
2623         SD_BUS_PROPERTY("PreparingForShutdown", "b", property_get_preparing, 0, 0),
2624         SD_BUS_PROPERTY("PreparingForSleep", "b", property_get_preparing, 0, 0),
2625         SD_BUS_PROPERTY("ScheduledShutdown", "(st)", property_get_scheduled_shutdown, 0, 0),
2626         SD_BUS_PROPERTY("Docked", "b", property_get_docked, 0, 0),
2627         SD_BUS_PROPERTY("RemoveIPC", "b", bus_property_get_bool, offsetof(Manager, remove_ipc), SD_BUS_VTABLE_PROPERTY_CONST),
2628         SD_BUS_PROPERTY("RuntimeDirectorySize", "t", bus_property_get_size, offsetof(Manager, runtime_dir_size), SD_BUS_VTABLE_PROPERTY_CONST),
2629         SD_BUS_PROPERTY("InhibitorsMax", "t", NULL, offsetof(Manager, inhibitors_max), SD_BUS_VTABLE_PROPERTY_CONST),
2630         SD_BUS_PROPERTY("NCurrentInhibitors", "t", property_get_current_inhibitors, 0, 0),
2631         SD_BUS_PROPERTY("SessionsMax", "t", NULL, offsetof(Manager, sessions_max), SD_BUS_VTABLE_PROPERTY_CONST),
2632         SD_BUS_PROPERTY("NCurrentSessions", "t", property_get_current_sessions, 0, 0),
2633         SD_BUS_PROPERTY("UserTasksMax", "t", NULL, offsetof(Manager, user_tasks_max), SD_BUS_VTABLE_PROPERTY_CONST),
2634
2635         SD_BUS_METHOD("GetSession", "s", "o", method_get_session, SD_BUS_VTABLE_UNPRIVILEGED),
2636         SD_BUS_METHOD("GetSessionByPID", "u", "o", method_get_session_by_pid, SD_BUS_VTABLE_UNPRIVILEGED),
2637         SD_BUS_METHOD("GetUser", "u", "o", method_get_user, SD_BUS_VTABLE_UNPRIVILEGED),
2638         SD_BUS_METHOD("GetUserByPID", "u", "o", method_get_user_by_pid, SD_BUS_VTABLE_UNPRIVILEGED),
2639         SD_BUS_METHOD("GetSeat", "s", "o", method_get_seat, SD_BUS_VTABLE_UNPRIVILEGED),
2640         SD_BUS_METHOD("ListSessions", NULL, "a(susso)", method_list_sessions, SD_BUS_VTABLE_UNPRIVILEGED),
2641         SD_BUS_METHOD("ListUsers", NULL, "a(uso)", method_list_users, SD_BUS_VTABLE_UNPRIVILEGED),
2642         SD_BUS_METHOD("ListSeats", NULL, "a(so)", method_list_seats, SD_BUS_VTABLE_UNPRIVILEGED),
2643         SD_BUS_METHOD("ListInhibitors", NULL, "a(ssssuu)", method_list_inhibitors, SD_BUS_VTABLE_UNPRIVILEGED),
2644         SD_BUS_METHOD("CreateSession", "uusssssussbssa(sv)", "soshusub", method_create_session, 0),
2645         SD_BUS_METHOD("ReleaseSession", "s", NULL, method_release_session, 0),
2646         SD_BUS_METHOD("ActivateSession", "s", NULL, method_activate_session, SD_BUS_VTABLE_UNPRIVILEGED),
2647         SD_BUS_METHOD("ActivateSessionOnSeat", "ss", NULL, method_activate_session_on_seat, SD_BUS_VTABLE_UNPRIVILEGED),
2648         SD_BUS_METHOD("LockSession", "s", NULL, method_lock_session, SD_BUS_VTABLE_UNPRIVILEGED),
2649         SD_BUS_METHOD("UnlockSession", "s", NULL, method_lock_session, SD_BUS_VTABLE_UNPRIVILEGED),
2650         SD_BUS_METHOD("LockSessions", NULL, NULL, method_lock_sessions, SD_BUS_VTABLE_UNPRIVILEGED),
2651         SD_BUS_METHOD("UnlockSessions", NULL, NULL, method_lock_sessions, SD_BUS_VTABLE_UNPRIVILEGED),
2652         SD_BUS_METHOD("KillSession", "ssi", NULL, method_kill_session, SD_BUS_VTABLE_UNPRIVILEGED),
2653         SD_BUS_METHOD("KillUser", "ui", NULL, method_kill_user, SD_BUS_VTABLE_UNPRIVILEGED),
2654         SD_BUS_METHOD("TerminateSession", "s", NULL, method_terminate_session, SD_BUS_VTABLE_UNPRIVILEGED),
2655         SD_BUS_METHOD("TerminateUser", "u", NULL, method_terminate_user, SD_BUS_VTABLE_UNPRIVILEGED),
2656         SD_BUS_METHOD("TerminateSeat", "s", NULL, method_terminate_seat, SD_BUS_VTABLE_UNPRIVILEGED),
2657         SD_BUS_METHOD("SetUserLinger", "ubb", NULL, method_set_user_linger, SD_BUS_VTABLE_UNPRIVILEGED),
2658         SD_BUS_METHOD("AttachDevice", "ssb", NULL, method_attach_device, SD_BUS_VTABLE_UNPRIVILEGED),
2659         SD_BUS_METHOD("FlushDevices", "b", NULL, method_flush_devices, SD_BUS_VTABLE_UNPRIVILEGED),
2660         SD_BUS_METHOD("PowerOff", "b", NULL, method_poweroff, SD_BUS_VTABLE_UNPRIVILEGED),
2661         SD_BUS_METHOD("Reboot", "b", NULL, method_reboot, SD_BUS_VTABLE_UNPRIVILEGED),
2662         SD_BUS_METHOD("Suspend", "b", NULL, method_suspend, SD_BUS_VTABLE_UNPRIVILEGED),
2663         SD_BUS_METHOD("Hibernate", "b", NULL, method_hibernate, SD_BUS_VTABLE_UNPRIVILEGED),
2664         SD_BUS_METHOD("HybridSleep", "b", NULL, method_hybrid_sleep, SD_BUS_VTABLE_UNPRIVILEGED),
2665         SD_BUS_METHOD("CanPowerOff", NULL, "s", method_can_poweroff, SD_BUS_VTABLE_UNPRIVILEGED),
2666         SD_BUS_METHOD("CanReboot", NULL, "s", method_can_reboot, SD_BUS_VTABLE_UNPRIVILEGED),
2667         SD_BUS_METHOD("CanSuspend", NULL, "s", method_can_suspend, SD_BUS_VTABLE_UNPRIVILEGED),
2668         SD_BUS_METHOD("CanHibernate", NULL, "s", method_can_hibernate, SD_BUS_VTABLE_UNPRIVILEGED),
2669         SD_BUS_METHOD("CanHybridSleep", NULL, "s", method_can_hybrid_sleep, SD_BUS_VTABLE_UNPRIVILEGED),
2670         SD_BUS_METHOD("ScheduleShutdown", "st", NULL, method_schedule_shutdown, SD_BUS_VTABLE_UNPRIVILEGED),
2671         SD_BUS_METHOD("CancelScheduledShutdown", NULL, "b", method_cancel_scheduled_shutdown, SD_BUS_VTABLE_UNPRIVILEGED),
2672         SD_BUS_METHOD("Inhibit", "ssss", "h", method_inhibit, SD_BUS_VTABLE_UNPRIVILEGED),
2673         SD_BUS_METHOD("CanRebootToFirmwareSetup", NULL, "s", method_can_reboot_to_firmware_setup, SD_BUS_VTABLE_UNPRIVILEGED),
2674         SD_BUS_METHOD("SetRebootToFirmwareSetup", "b", NULL, method_set_reboot_to_firmware_setup, SD_BUS_VTABLE_UNPRIVILEGED),
2675         SD_BUS_METHOD("SetWallMessage", "sb", NULL, method_set_wall_message, SD_BUS_VTABLE_UNPRIVILEGED),
2676
2677         SD_BUS_SIGNAL("SessionNew", "so", 0),
2678         SD_BUS_SIGNAL("SessionRemoved", "so", 0),
2679         SD_BUS_SIGNAL("UserNew", "uo", 0),
2680         SD_BUS_SIGNAL("UserRemoved", "uo", 0),
2681         SD_BUS_SIGNAL("SeatNew", "so", 0),
2682         SD_BUS_SIGNAL("SeatRemoved", "so", 0),
2683         SD_BUS_SIGNAL("PrepareForShutdown", "b", 0),
2684         SD_BUS_SIGNAL("PrepareForSleep", "b", 0),
2685
2686         SD_BUS_VTABLE_END
2687 };
2688
2689 #if 0 /// UNNEEDED by elogind
2690 static int session_jobs_reply(Session *s, const char *unit, const char *result) {
2691         int r = 0;
2692
2693         assert(s);
2694         assert(unit);
2695
2696         if (!s->started)
2697                 return r;
2698
2699         if (streq(result, "done"))
2700                 r = session_send_create_reply(s, NULL);
2701         else {
2702                 _cleanup_(sd_bus_error_free) sd_bus_error e = SD_BUS_ERROR_NULL;
2703
2704                 sd_bus_error_setf(&e, BUS_ERROR_JOB_FAILED, "Start job for unit %s failed with '%s'", unit, result);
2705                 r = session_send_create_reply(s, &e);
2706         }
2707
2708         return r;
2709 }
2710
2711 int match_job_removed(sd_bus_message *message, void *userdata, sd_bus_error *error) {
2712         const char *path, *result, *unit;
2713         Manager *m = userdata;
2714         Session *session;
2715         uint32_t id;
2716         User *user;
2717         int r;
2718
2719         assert(message);
2720         assert(m);
2721
2722         r = sd_bus_message_read(message, "uoss", &id, &path, &unit, &result);
2723         if (r < 0) {
2724                 bus_log_parse_error(r);
2725                 return 0;
2726         }
2727
2728         if (m->action_job && streq(m->action_job, path)) {
2729                 log_info("Operation '%s' finished.", inhibit_what_to_string(m->action_what));
2730
2731                 /* Tell people that they now may take a lock again */
2732                 send_prepare_for(m, m->action_what, false);
2733
2734                 m->action_job = mfree(m->action_job);
2735                 m->action_unit = NULL;
2736                 m->action_what = 0;
2737                 return 0;
2738         }
2739
2740         session = hashmap_get(m->session_units, unit);
2741         if (session && streq_ptr(path, session->scope_job)) {
2742                 session->scope_job = mfree(session->scope_job);
2743                 session_jobs_reply(session, unit, result);
2744
2745                 session_save(session);
2746                 user_save(session->user);
2747                 session_add_to_gc_queue(session);
2748         }
2749
2750         user = hashmap_get(m->user_units, unit);
2751         if (user &&
2752             (streq_ptr(path, user->service_job) ||
2753              streq_ptr(path, user->slice_job))) {
2754
2755                 if (streq_ptr(path, user->service_job))
2756                         user->service_job = mfree(user->service_job);
2757
2758                 if (streq_ptr(path, user->slice_job))
2759                         user->slice_job = mfree(user->slice_job);
2760
2761                 LIST_FOREACH(sessions_by_user, session, user->sessions)
2762                         session_jobs_reply(session, unit, result);
2763
2764                 user_save(user);
2765                 user_add_to_gc_queue(user);
2766         }
2767
2768         return 0;
2769 }
2770
2771 int match_unit_removed(sd_bus_message *message, void *userdata, sd_bus_error *error) {
2772         const char *path, *unit;
2773         Manager *m = userdata;
2774         Session *session;
2775         User *user;
2776         int r;
2777
2778         assert(message);
2779         assert(m);
2780
2781         r = sd_bus_message_read(message, "so", &unit, &path);
2782         if (r < 0) {
2783                 bus_log_parse_error(r);
2784                 return 0;
2785         }
2786
2787         session = hashmap_get(m->session_units, unit);
2788         if (session)
2789                 session_add_to_gc_queue(session);
2790
2791         user = hashmap_get(m->user_units, unit);
2792         if (user)
2793                 user_add_to_gc_queue(user);
2794
2795         return 0;
2796 }
2797
2798 int match_properties_changed(sd_bus_message *message, void *userdata, sd_bus_error *error) {
2799         _cleanup_free_ char *unit = NULL;
2800         Manager *m = userdata;
2801         const char *path;
2802         Session *session;
2803         User *user;
2804         int r;
2805
2806         assert(message);
2807         assert(m);
2808
2809         path = sd_bus_message_get_path(message);
2810         if (!path)
2811                 return 0;
2812
2813         r = unit_name_from_dbus_path(path, &unit);
2814         if (r == -EINVAL) /* not a unit */
2815                 return 0;
2816         if (r < 0) {
2817                 log_oom();
2818                 return 0;
2819         }
2820
2821         session = hashmap_get(m->session_units, unit);
2822         if (session)
2823                 session_add_to_gc_queue(session);
2824
2825         user = hashmap_get(m->user_units, unit);
2826         if (user)
2827                 user_add_to_gc_queue(user);
2828
2829         return 0;
2830 }
2831
2832 int match_reloading(sd_bus_message *message, void *userdata, sd_bus_error *error) {
2833         Manager *m = userdata;
2834         Session *session;
2835         Iterator i;
2836         int b, r;
2837
2838         assert(message);
2839         assert(m);
2840
2841         r = sd_bus_message_read(message, "b", &b);
2842         if (r < 0) {
2843                 bus_log_parse_error(r);
2844                 return 0;
2845         }
2846
2847         if (b)
2848                 return 0;
2849
2850         /* systemd finished reloading, let's recheck all our sessions */
2851         log_debug("System manager has been reloaded, rechecking sessions...");
2852
2853         HASHMAP_FOREACH(session, m->sessions, i)
2854                 session_add_to_gc_queue(session);
2855
2856         return 0;
2857 }
2858 #endif // 0
2859
2860 int manager_send_changed(Manager *manager, const char *property, ...) {
2861         char **l;
2862
2863         assert(manager);
2864
2865         l = strv_from_stdarg_alloca(property);
2866
2867         return sd_bus_emit_properties_changed_strv(
2868                         manager->bus,
2869                         "/org/freedesktop/login1",
2870                         "org.freedesktop.login1.Manager",
2871                         l);
2872 }
2873
2874 #if 0 /// UNNEEDED by elogind
2875 static int strdup_job(sd_bus_message *reply, char **job) {
2876         const char *j;
2877         char *copy;
2878         int r;
2879
2880         r = sd_bus_message_read(reply, "o", &j);
2881         if (r < 0)
2882                 return r;
2883
2884         copy = strdup(j);
2885         if (!copy)
2886                 return -ENOMEM;
2887
2888         *job = copy;
2889         return 1;
2890 }
2891
2892 int manager_start_slice(
2893                 Manager *manager,
2894                 const char *slice,
2895                 const char *description,
2896                 const char *after,
2897                 const char *after2,
2898                 uint64_t tasks_max,
2899                 sd_bus_error *error,
2900                 char **job) {
2901
2902         _cleanup_(sd_bus_message_unrefp) sd_bus_message *m = NULL, *reply = NULL;
2903         int r;
2904
2905         assert(manager);
2906         assert(slice);
2907         assert(job);
2908
2909         r = sd_bus_message_new_method_call(
2910                         manager->bus,
2911                         &m,
2912                         "org.freedesktop.systemd1",
2913                         "/org/freedesktop/systemd1",
2914                         "org.freedesktop.systemd1.Manager",
2915                         "StartTransientUnit");
2916         if (r < 0)
2917                 return r;
2918
2919         r = sd_bus_message_append(m, "ss", strempty(slice), "fail");
2920         if (r < 0)
2921                 return r;
2922
2923         r = sd_bus_message_open_container(m, 'a', "(sv)");
2924         if (r < 0)
2925                 return r;
2926
2927         if (!isempty(description)) {
2928                 r = sd_bus_message_append(m, "(sv)", "Description", "s", description);
2929                 if (r < 0)
2930                         return r;
2931         }
2932
2933         if (!isempty(after)) {
2934                 r = sd_bus_message_append(m, "(sv)", "After", "as", 1, after);
2935                 if (r < 0)
2936                         return r;
2937         }
2938
2939         if (!isempty(after2)) {
2940                 r = sd_bus_message_append(m, "(sv)", "After", "as", 1, after2);
2941                 if (r < 0)
2942                         return r;
2943         }
2944
2945         r = sd_bus_message_append(m, "(sv)", "TasksMax", "t", tasks_max);
2946         if (r < 0)
2947                 return r;
2948
2949         r = sd_bus_message_close_container(m);
2950         if (r < 0)
2951                 return r;
2952
2953         r = sd_bus_message_append(m, "a(sa(sv))", 0);
2954         if (r < 0)
2955                 return r;
2956
2957         r = sd_bus_call(manager->bus, m, 0, error, &reply);
2958         if (r < 0)
2959                 return r;
2960
2961         return strdup_job(reply, job);
2962 }
2963
2964 int manager_start_scope(
2965                 Manager *manager,
2966                 const char *scope,
2967                 pid_t pid,
2968                 const char *slice,
2969                 const char *description,
2970                 const char *after,
2971                 const char *after2,
2972                 uint64_t tasks_max,
2973                 sd_bus_error *error,
2974                 char **job) {
2975
2976         _cleanup_(sd_bus_message_unrefp) sd_bus_message *m = NULL, *reply = NULL;
2977         int r;
2978
2979         assert(manager);
2980         assert(scope);
2981         assert(pid > 1);
2982         assert(job);
2983
2984         r = sd_bus_message_new_method_call(
2985                         manager->bus,
2986                         &m,
2987                         "org.freedesktop.systemd1",
2988                         "/org/freedesktop/systemd1",
2989                         "org.freedesktop.systemd1.Manager",
2990                         "StartTransientUnit");
2991         if (r < 0)
2992                 return r;
2993
2994         r = sd_bus_message_append(m, "ss", strempty(scope), "fail");
2995         if (r < 0)
2996                 return r;
2997
2998         r = sd_bus_message_open_container(m, 'a', "(sv)");
2999         if (r < 0)
3000                 return r;
3001
3002         if (!isempty(slice)) {
3003                 r = sd_bus_message_append(m, "(sv)", "Slice", "s", slice);
3004                 if (r < 0)
3005                         return r;
3006         }
3007
3008         if (!isempty(description)) {
3009                 r = sd_bus_message_append(m, "(sv)", "Description", "s", description);
3010                 if (r < 0)
3011                         return r;
3012         }
3013
3014         if (!isempty(after)) {
3015                 r = sd_bus_message_append(m, "(sv)", "After", "as", 1, after);
3016                 if (r < 0)
3017                         return r;
3018         }
3019
3020         if (!isempty(after2)) {
3021                 r = sd_bus_message_append(m, "(sv)", "After", "as", 1, after2);
3022                 if (r < 0)
3023                         return r;
3024         }
3025
3026         /* cgroup empty notification is not available in containers
3027          * currently. To make this less problematic, let's shorten the
3028          * stop timeout for sessions, so that we don't wait
3029          * forever. */
3030
3031         /* Make sure that the session shells are terminated with
3032          * SIGHUP since bash and friends tend to ignore SIGTERM */
3033         r = sd_bus_message_append(m, "(sv)", "SendSIGHUP", "b", true);
3034         if (r < 0)
3035                 return r;
3036
3037         r = sd_bus_message_append(m, "(sv)", "PIDs", "au", 1, pid);
3038         if (r < 0)
3039                 return r;
3040
3041         r = sd_bus_message_append(m, "(sv)", "TasksMax", "t", tasks_max);
3042         if (r < 0)
3043                 return r;
3044
3045         r = sd_bus_message_close_container(m);
3046         if (r < 0)
3047                 return r;
3048
3049         r = sd_bus_message_append(m, "a(sa(sv))", 0);
3050         if (r < 0)
3051                 return r;
3052
3053         r = sd_bus_call(manager->bus, m, 0, error, &reply);
3054         if (r < 0)
3055                 return r;
3056
3057         return strdup_job(reply, job);
3058 }
3059
3060 int manager_start_unit(Manager *manager, const char *unit, sd_bus_error *error, char **job) {
3061         _cleanup_(sd_bus_message_unrefp) sd_bus_message *reply = NULL;
3062         int r;
3063
3064         assert(manager);
3065         assert(unit);
3066         assert(job);
3067
3068         r = sd_bus_call_method(
3069                         manager->bus,
3070                         "org.freedesktop.systemd1",
3071                         "/org/freedesktop/systemd1",
3072                         "org.freedesktop.systemd1.Manager",
3073                         "StartUnit",
3074                         error,
3075                         &reply,
3076                         "ss", unit, "replace");
3077         if (r < 0)
3078                 return r;
3079
3080         return strdup_job(reply, job);
3081 }
3082
3083 int manager_stop_unit(Manager *manager, const char *unit, sd_bus_error *error, char **job) {
3084         _cleanup_(sd_bus_message_unrefp) sd_bus_message *reply = NULL;
3085         int r;
3086
3087         assert(manager);
3088         assert(unit);
3089         assert(job);
3090
3091         r = sd_bus_call_method(
3092                         manager->bus,
3093                         "org.freedesktop.systemd1",
3094                         "/org/freedesktop/systemd1",
3095                         "org.freedesktop.systemd1.Manager",
3096                         "StopUnit",
3097                         error,
3098                         &reply,
3099                         "ss", unit, "fail");
3100         if (r < 0) {
3101                 if (sd_bus_error_has_name(error, BUS_ERROR_NO_SUCH_UNIT) ||
3102                     sd_bus_error_has_name(error, BUS_ERROR_LOAD_FAILED)) {
3103
3104                         *job = NULL;
3105                         sd_bus_error_free(error);
3106                         return 0;
3107                 }
3108
3109                 return r;
3110         }
3111
3112         return strdup_job(reply, job);
3113 }
3114
3115 int manager_abandon_scope(Manager *manager, const char *scope, sd_bus_error *error) {
3116         _cleanup_free_ char *path = NULL;
3117         int r;
3118
3119         assert(manager);
3120         assert(scope);
3121
3122         path = unit_dbus_path_from_name(scope);
3123         if (!path)
3124                 return -ENOMEM;
3125
3126         r = sd_bus_call_method(
3127                         manager->bus,
3128                         "org.freedesktop.systemd1",
3129                         path,
3130                         "org.freedesktop.systemd1.Scope",
3131                         "Abandon",
3132                         error,
3133                         NULL,
3134                         NULL);
3135         if (r < 0) {
3136                 if (sd_bus_error_has_name(error, BUS_ERROR_NO_SUCH_UNIT) ||
3137                     sd_bus_error_has_name(error, BUS_ERROR_LOAD_FAILED) ||
3138                     sd_bus_error_has_name(error, BUS_ERROR_SCOPE_NOT_RUNNING)) {
3139                         sd_bus_error_free(error);
3140                         return 0;
3141                 }
3142
3143                 return r;
3144         }
3145
3146         return 1;
3147 }
3148
3149 int manager_kill_unit(Manager *manager, const char *unit, KillWho who, int signo, sd_bus_error *error) {
3150         assert(manager);
3151         assert(unit);
3152
3153         return sd_bus_call_method(
3154                         manager->bus,
3155                         "org.freedesktop.systemd1",
3156                         "/org/freedesktop/systemd1",
3157                         "org.freedesktop.systemd1.Manager",
3158                         "KillUnit",
3159                         error,
3160                         NULL,
3161                         "ssi", unit, who == KILL_LEADER ? "main" : "all", signo);
3162 }
3163
3164 int manager_unit_is_active(Manager *manager, const char *unit) {
3165         _cleanup_(sd_bus_error_free) sd_bus_error error = SD_BUS_ERROR_NULL;
3166         _cleanup_(sd_bus_message_unrefp) sd_bus_message *reply = NULL;
3167         _cleanup_free_ char *path = NULL;
3168         const char *state;
3169         int r;
3170
3171         assert(manager);
3172         assert(unit);
3173
3174         path = unit_dbus_path_from_name(unit);
3175         if (!path)
3176                 return -ENOMEM;
3177
3178         r = sd_bus_get_property(
3179                         manager->bus,
3180                         "org.freedesktop.systemd1",
3181                         path,
3182                         "org.freedesktop.systemd1.Unit",
3183                         "ActiveState",
3184                         &error,
3185                         &reply,
3186                         "s");
3187         if (r < 0) {
3188                 /* systemd might have droppped off momentarily, let's
3189                  * not make this an error */
3190                 if (sd_bus_error_has_name(&error, SD_BUS_ERROR_NO_REPLY) ||
3191                     sd_bus_error_has_name(&error, SD_BUS_ERROR_DISCONNECTED))
3192                         return true;
3193
3194                 /* If the unit is already unloaded then it's not
3195                  * active */
3196                 if (sd_bus_error_has_name(&error, BUS_ERROR_NO_SUCH_UNIT) ||
3197                     sd_bus_error_has_name(&error, BUS_ERROR_LOAD_FAILED))
3198                         return false;
3199
3200                 return r;
3201         }
3202
3203         r = sd_bus_message_read(reply, "s", &state);
3204         if (r < 0)
3205                 return -EINVAL;
3206
3207         return !streq(state, "inactive") && !streq(state, "failed");
3208 }
3209
3210 int manager_job_is_active(Manager *manager, const char *path) {
3211         _cleanup_(sd_bus_error_free) sd_bus_error error = SD_BUS_ERROR_NULL;
3212         _cleanup_(sd_bus_message_unrefp) sd_bus_message *reply = NULL;
3213         int r;
3214
3215         assert(manager);
3216         assert(path);
3217
3218         r = sd_bus_get_property(
3219                         manager->bus,
3220                         "org.freedesktop.systemd1",
3221                         path,
3222                         "org.freedesktop.systemd1.Job",
3223                         "State",
3224                         &error,
3225                         &reply,
3226                         "s");
3227         if (r < 0) {
3228                 if (sd_bus_error_has_name(&error, SD_BUS_ERROR_NO_REPLY) ||
3229                     sd_bus_error_has_name(&error, SD_BUS_ERROR_DISCONNECTED))
3230                         return true;
3231
3232                 if (sd_bus_error_has_name(&error, SD_BUS_ERROR_UNKNOWN_OBJECT))
3233                         return false;
3234
3235                 return r;
3236         }
3237
3238         /* We don't actually care about the state really. The fact
3239          * that we could read the job state is enough for us */
3240
3241         return true;
3242 }
3243 #endif // 0