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