chiark / gitweb /
Prep v231.2: Add mor debug messages to find out, why 'loginctl suspend' isn't working.
[elogind.git] / src / login / logind-session-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 <string.h>
22
23 #include "alloc-util.h"
24 #include "bus-common-errors.h"
25 #include "bus-label.h"
26 #include "bus-util.h"
27 #include "fd-util.h"
28 #include "logind-session-device.h"
29 #include "logind-session.h"
30 #include "logind.h"
31 #include "signal-util.h"
32 #include "strv.h"
33 #include "util.h"
34
35 static int property_get_user(
36                 sd_bus *bus,
37                 const char *path,
38                 const char *interface,
39                 const char *property,
40                 sd_bus_message *reply,
41                 void *userdata,
42                 sd_bus_error *error) {
43
44         _cleanup_free_ char *p = NULL;
45         Session *s = userdata;
46
47         assert(bus);
48         assert(reply);
49         assert(s);
50
51         p = user_bus_path(s->user);
52         if (!p)
53                 return -ENOMEM;
54
55         return sd_bus_message_append(reply, "(uo)", (uint32_t) s->user->uid, p);
56 }
57
58 static int property_get_name(
59                 sd_bus *bus,
60                 const char *path,
61                 const char *interface,
62                 const char *property,
63                 sd_bus_message *reply,
64                 void *userdata,
65                 sd_bus_error *error) {
66
67         Session *s = userdata;
68
69         assert(bus);
70         assert(reply);
71         assert(s);
72
73         return sd_bus_message_append(reply, "s", s->user->name);
74 }
75
76 static int property_get_seat(
77                 sd_bus *bus,
78                 const char *path,
79                 const char *interface,
80                 const char *property,
81                 sd_bus_message *reply,
82                 void *userdata,
83                 sd_bus_error *error) {
84
85         _cleanup_free_ char *p = NULL;
86         Session *s = userdata;
87
88         assert(bus);
89         assert(reply);
90         assert(s);
91
92         p = s->seat ? seat_bus_path(s->seat) : strdup("/");
93         if (!p)
94                 return -ENOMEM;
95
96         return sd_bus_message_append(reply, "(so)", s->seat ? s->seat->id : "", p);
97 }
98
99 static BUS_DEFINE_PROPERTY_GET_ENUM(property_get_type, session_type, SessionType);
100 static BUS_DEFINE_PROPERTY_GET_ENUM(property_get_class, session_class, SessionClass);
101
102 static int property_get_active(
103                 sd_bus *bus,
104                 const char *path,
105                 const char *interface,
106                 const char *property,
107                 sd_bus_message *reply,
108                 void *userdata,
109                 sd_bus_error *error) {
110
111         Session *s = userdata;
112
113         assert(bus);
114         assert(reply);
115         assert(s);
116
117         return sd_bus_message_append(reply, "b", session_is_active(s));
118 }
119
120 static int property_get_state(
121                 sd_bus *bus,
122                 const char *path,
123                 const char *interface,
124                 const char *property,
125                 sd_bus_message *reply,
126                 void *userdata,
127                 sd_bus_error *error) {
128
129         Session *s = userdata;
130
131         assert(bus);
132         assert(reply);
133         assert(s);
134
135         return sd_bus_message_append(reply, "s", session_state_to_string(session_get_state(s)));
136 }
137
138 static int property_get_idle_hint(
139                 sd_bus *bus,
140                 const char *path,
141                 const char *interface,
142                 const char *property,
143                 sd_bus_message *reply,
144                 void *userdata,
145                 sd_bus_error *error) {
146
147         Session *s = userdata;
148
149         assert(bus);
150         assert(reply);
151         assert(s);
152
153         return sd_bus_message_append(reply, "b", session_get_idle_hint(s, NULL) > 0);
154 }
155
156 static int property_get_idle_since_hint(
157                 sd_bus *bus,
158                 const char *path,
159                 const char *interface,
160                 const char *property,
161                 sd_bus_message *reply,
162                 void *userdata,
163                 sd_bus_error *error) {
164
165         Session *s = userdata;
166         dual_timestamp t = DUAL_TIMESTAMP_NULL;
167         uint64_t u;
168         int r;
169
170         assert(bus);
171         assert(reply);
172         assert(s);
173
174         r = session_get_idle_hint(s, &t);
175         if (r < 0)
176                 return r;
177
178         u = streq(property, "IdleSinceHint") ? t.realtime : t.monotonic;
179
180         return sd_bus_message_append(reply, "t", u);
181 }
182
183 static int property_get_locked_hint(
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         Session *s = userdata;
193
194         assert(bus);
195         assert(reply);
196         assert(s);
197
198         return sd_bus_message_append(reply, "b", session_get_locked_hint(s) > 0);
199 }
200
201 int bus_session_method_terminate(sd_bus_message *message, void *userdata, sd_bus_error *error) {
202         Session *s = userdata;
203         int r;
204
205         assert(message);
206         assert(s);
207
208         r = bus_verify_polkit_async(
209                         message,
210                         CAP_KILL,
211                         "org.freedesktop.login1.manage",
212                         NULL,
213                         false,
214                         s->user->uid,
215                         &s->manager->polkit_registry,
216                         error);
217         if (r < 0)
218                 return r;
219         if (r == 0)
220                 return 1; /* Will call us back */
221
222         r = session_stop(s, true);
223         if (r < 0)
224                 return r;
225
226         return sd_bus_reply_method_return(message, NULL);
227 }
228
229 int bus_session_method_activate(sd_bus_message *message, void *userdata, sd_bus_error *error) {
230         Session *s = userdata;
231         int r;
232
233         assert(message);
234         assert(s);
235
236         r = session_activate(s);
237         if (r < 0)
238                 return r;
239
240         return sd_bus_reply_method_return(message, NULL);
241 }
242
243 int bus_session_method_lock(sd_bus_message *message, void *userdata, sd_bus_error *error) {
244         Session *s = userdata;
245         int r;
246
247         assert(message);
248         assert(s);
249
250         r = bus_verify_polkit_async(
251                         message,
252                         CAP_SYS_ADMIN,
253                         "org.freedesktop.login1.lock-sessions",
254                         NULL,
255                         false,
256                         s->user->uid,
257                         &s->manager->polkit_registry,
258                         error);
259         if (r < 0)
260                 return r;
261         if (r == 0)
262                 return 1; /* Will call us back */
263
264         r = session_send_lock(s, strstr(sd_bus_message_get_member(message), "Lock"));
265         if (r < 0)
266                 return r;
267
268         return sd_bus_reply_method_return(message, NULL);
269 }
270
271 static int method_set_idle_hint(sd_bus_message *message, void *userdata, sd_bus_error *error) {
272         _cleanup_(sd_bus_creds_unrefp) sd_bus_creds *creds = NULL;
273         Session *s = userdata;
274         uid_t uid;
275         int r, b;
276
277         assert(message);
278         assert(s);
279
280         r = sd_bus_message_read(message, "b", &b);
281         if (r < 0)
282                 return r;
283
284         r = sd_bus_query_sender_creds(message, SD_BUS_CREDS_EUID, &creds);
285         if (r < 0)
286                 return r;
287
288         r = sd_bus_creds_get_euid(creds, &uid);
289         if (r < 0)
290                 return r;
291
292         if (uid != 0 && uid != s->user->uid)
293                 return sd_bus_error_setf(error, SD_BUS_ERROR_ACCESS_DENIED, "Only owner of session may set idle hint");
294
295         session_set_idle_hint(s, b);
296
297         return sd_bus_reply_method_return(message, NULL);
298 }
299
300 static int method_set_locked_hint(sd_bus_message *message, void *userdata, sd_bus_error *error) {
301         _cleanup_(sd_bus_creds_unrefp) sd_bus_creds *creds = NULL;
302         Session *s = userdata;
303         uid_t uid;
304         int r, b;
305
306         assert(message);
307         assert(s);
308
309         r = sd_bus_message_read(message, "b", &b);
310         if (r < 0)
311                 return r;
312
313         r = sd_bus_query_sender_creds(message, SD_BUS_CREDS_EUID, &creds);
314         if (r < 0)
315                 return r;
316
317         r = sd_bus_creds_get_euid(creds, &uid);
318         if (r < 0)
319                 return r;
320
321         if (uid != 0 && uid != s->user->uid)
322                 return sd_bus_error_setf(error, SD_BUS_ERROR_ACCESS_DENIED, "Only owner of session may set locked hint");
323
324         session_set_locked_hint(s, b);
325
326         return sd_bus_reply_method_return(message, NULL);
327 }
328
329 int bus_session_method_kill(sd_bus_message *message, void *userdata, sd_bus_error *error) {
330         Session *s = userdata;
331         const char *swho;
332         int32_t signo;
333         KillWho who;
334         int r;
335
336         assert(message);
337         assert(s);
338
339         r = sd_bus_message_read(message, "si", &swho, &signo);
340         if (r < 0)
341                 return r;
342
343         if (isempty(swho))
344                 who = KILL_ALL;
345         else {
346                 who = kill_who_from_string(swho);
347                 if (who < 0)
348                         return sd_bus_error_setf(error, SD_BUS_ERROR_INVALID_ARGS, "Invalid kill parameter '%s'", swho);
349         }
350
351         if (!SIGNAL_VALID(signo))
352                 return sd_bus_error_setf(error, SD_BUS_ERROR_INVALID_ARGS, "Invalid signal %i", signo);
353
354         r = bus_verify_polkit_async(
355                         message,
356                         CAP_KILL,
357                         "org.freedesktop.login1.manage",
358                         NULL,
359                         false,
360                         s->user->uid,
361                         &s->manager->polkit_registry,
362                         error);
363         if (r < 0)
364                 return r;
365         if (r == 0)
366                 return 1; /* Will call us back */
367
368         r = session_kill(s, who, signo);
369         if (r < 0)
370                 return r;
371
372         return sd_bus_reply_method_return(message, NULL);
373 }
374
375 static int method_take_control(sd_bus_message *message, void *userdata, sd_bus_error *error) {
376         _cleanup_(sd_bus_creds_unrefp) sd_bus_creds *creds = NULL;
377         Session *s = userdata;
378         int r, force;
379         uid_t uid;
380
381         assert(message);
382         assert(s);
383
384         r = sd_bus_message_read(message, "b", &force);
385         if (r < 0)
386                 return r;
387
388         r = sd_bus_query_sender_creds(message, SD_BUS_CREDS_EUID, &creds);
389         if (r < 0)
390                 return r;
391
392         r = sd_bus_creds_get_euid(creds, &uid);
393         if (r < 0)
394                 return r;
395
396         if (uid != 0 && (force || uid != s->user->uid))
397                 return sd_bus_error_setf(error, SD_BUS_ERROR_ACCESS_DENIED, "Only owner of session may take control");
398
399         r = session_set_controller(s, sd_bus_message_get_sender(message), force);
400         if (r < 0)
401                 return r;
402
403         return sd_bus_reply_method_return(message, NULL);
404 }
405
406 static int method_release_control(sd_bus_message *message, void *userdata, sd_bus_error *error) {
407         Session *s = userdata;
408
409         assert(message);
410         assert(s);
411
412         if (!session_is_controller(s, sd_bus_message_get_sender(message)))
413                 return sd_bus_error_setf(error, BUS_ERROR_NOT_IN_CONTROL, "You are not in control of this session");
414
415         session_drop_controller(s);
416
417         return sd_bus_reply_method_return(message, NULL);
418 }
419
420 static int method_take_device(sd_bus_message *message, void *userdata, sd_bus_error *error) {
421         Session *s = userdata;
422         uint32_t major, minor;
423         SessionDevice *sd;
424         dev_t dev;
425         int r;
426
427         assert(message);
428         assert(s);
429
430         r = sd_bus_message_read(message, "uu", &major, &minor);
431         if (r < 0)
432                 return r;
433
434         if (!session_is_controller(s, sd_bus_message_get_sender(message)))
435                 return sd_bus_error_setf(error, BUS_ERROR_NOT_IN_CONTROL, "You are not in control of this session");
436
437         dev = makedev(major, minor);
438         sd = hashmap_get(s->devices, &dev);
439         if (sd)
440                 /* We don't allow retrieving a device multiple times.
441                  * The related ReleaseDevice call is not ref-counted.
442                  * The caller should use dup() if it requires more
443                  * than one fd (it would be functionally
444                  * equivalent). */
445                 return sd_bus_error_setf(error, BUS_ERROR_DEVICE_IS_TAKEN, "Device already taken");
446
447         r = session_device_new(s, dev, &sd);
448         if (r < 0)
449                 return r;
450
451         r = sd_bus_reply_method_return(message, "hb", sd->fd, !sd->active);
452         if (r < 0)
453                 session_device_free(sd);
454
455         return r;
456 }
457
458 static int method_release_device(sd_bus_message *message, void *userdata, sd_bus_error *error) {
459         Session *s = userdata;
460         uint32_t major, minor;
461         SessionDevice *sd;
462         dev_t dev;
463         int r;
464
465         assert(message);
466         assert(s);
467
468         r = sd_bus_message_read(message, "uu", &major, &minor);
469         if (r < 0)
470                 return r;
471
472         if (!session_is_controller(s, sd_bus_message_get_sender(message)))
473                 return sd_bus_error_setf(error, BUS_ERROR_NOT_IN_CONTROL, "You are not in control of this session");
474
475         dev = makedev(major, minor);
476         sd = hashmap_get(s->devices, &dev);
477         if (!sd)
478                 return sd_bus_error_setf(error, BUS_ERROR_DEVICE_NOT_TAKEN, "Device not taken");
479
480         session_device_free(sd);
481         return sd_bus_reply_method_return(message, NULL);
482 }
483
484 static int method_pause_device_complete(sd_bus_message *message, void *userdata, sd_bus_error *error) {
485         Session *s = userdata;
486         uint32_t major, minor;
487         SessionDevice *sd;
488         dev_t dev;
489         int r;
490
491         assert(message);
492         assert(s);
493
494         r = sd_bus_message_read(message, "uu", &major, &minor);
495         if (r < 0)
496                 return r;
497
498         if (!session_is_controller(s, sd_bus_message_get_sender(message)))
499                 return sd_bus_error_setf(error, BUS_ERROR_NOT_IN_CONTROL, "You are not in control of this session");
500
501         dev = makedev(major, minor);
502         sd = hashmap_get(s->devices, &dev);
503         if (!sd)
504                 return sd_bus_error_setf(error, BUS_ERROR_DEVICE_NOT_TAKEN, "Device not taken");
505
506         session_device_complete_pause(sd);
507
508         return sd_bus_reply_method_return(message, NULL);
509 }
510
511 const sd_bus_vtable session_vtable[] = {
512         SD_BUS_VTABLE_START(0),
513
514         SD_BUS_PROPERTY("Id", "s", NULL, offsetof(Session, id), SD_BUS_VTABLE_PROPERTY_CONST),
515         SD_BUS_PROPERTY("User", "(uo)", property_get_user, 0, SD_BUS_VTABLE_PROPERTY_CONST),
516         SD_BUS_PROPERTY("Name", "s", property_get_name, 0, SD_BUS_VTABLE_PROPERTY_CONST),
517         BUS_PROPERTY_DUAL_TIMESTAMP("Timestamp", offsetof(Session, timestamp), SD_BUS_VTABLE_PROPERTY_CONST),
518         SD_BUS_PROPERTY("VTNr", "u", NULL, offsetof(Session, vtnr), SD_BUS_VTABLE_PROPERTY_CONST),
519         SD_BUS_PROPERTY("Seat", "(so)", property_get_seat, 0, SD_BUS_VTABLE_PROPERTY_CONST),
520         SD_BUS_PROPERTY("TTY", "s", NULL, offsetof(Session, tty), SD_BUS_VTABLE_PROPERTY_CONST),
521         SD_BUS_PROPERTY("Display", "s", NULL, offsetof(Session, display), SD_BUS_VTABLE_PROPERTY_CONST),
522         SD_BUS_PROPERTY("Remote", "b", bus_property_get_bool, offsetof(Session, remote), SD_BUS_VTABLE_PROPERTY_CONST),
523         SD_BUS_PROPERTY("RemoteHost", "s", NULL, offsetof(Session, remote_host), SD_BUS_VTABLE_PROPERTY_CONST),
524         SD_BUS_PROPERTY("RemoteUser", "s", NULL, offsetof(Session, remote_user), SD_BUS_VTABLE_PROPERTY_CONST),
525         SD_BUS_PROPERTY("Service", "s", NULL, offsetof(Session, service), SD_BUS_VTABLE_PROPERTY_CONST),
526         SD_BUS_PROPERTY("Desktop", "s", NULL, offsetof(Session, desktop), SD_BUS_VTABLE_PROPERTY_CONST),
527         SD_BUS_PROPERTY("Scope", "s", NULL, offsetof(Session, scope), SD_BUS_VTABLE_PROPERTY_CONST),
528         SD_BUS_PROPERTY("Leader", "u", bus_property_get_pid, offsetof(Session, leader), SD_BUS_VTABLE_PROPERTY_CONST),
529         SD_BUS_PROPERTY("Audit", "u", NULL, offsetof(Session, audit_id), SD_BUS_VTABLE_PROPERTY_CONST),
530         SD_BUS_PROPERTY("Type", "s", property_get_type, offsetof(Session, type), SD_BUS_VTABLE_PROPERTY_CONST),
531         SD_BUS_PROPERTY("Class", "s", property_get_class, offsetof(Session, class), SD_BUS_VTABLE_PROPERTY_CONST),
532         SD_BUS_PROPERTY("Active", "b", property_get_active, 0, SD_BUS_VTABLE_PROPERTY_EMITS_CHANGE),
533         SD_BUS_PROPERTY("State", "s", property_get_state, 0, 0),
534         SD_BUS_PROPERTY("IdleHint", "b", property_get_idle_hint, 0, SD_BUS_VTABLE_PROPERTY_EMITS_CHANGE),
535         SD_BUS_PROPERTY("IdleSinceHint", "t", property_get_idle_since_hint, 0, SD_BUS_VTABLE_PROPERTY_EMITS_CHANGE),
536         SD_BUS_PROPERTY("IdleSinceHintMonotonic", "t", property_get_idle_since_hint, 0, SD_BUS_VTABLE_PROPERTY_EMITS_CHANGE),
537         SD_BUS_PROPERTY("LockedHint", "b", property_get_locked_hint, 0, SD_BUS_VTABLE_PROPERTY_EMITS_CHANGE),
538
539         SD_BUS_METHOD("Terminate", NULL, NULL, bus_session_method_terminate, SD_BUS_VTABLE_UNPRIVILEGED),
540         SD_BUS_METHOD("Activate", NULL, NULL, bus_session_method_activate, SD_BUS_VTABLE_UNPRIVILEGED),
541         SD_BUS_METHOD("Lock", NULL, NULL, bus_session_method_lock, SD_BUS_VTABLE_UNPRIVILEGED),
542         SD_BUS_METHOD("Unlock", NULL, NULL, bus_session_method_lock, SD_BUS_VTABLE_UNPRIVILEGED),
543         SD_BUS_METHOD("SetIdleHint", "b", NULL, method_set_idle_hint, SD_BUS_VTABLE_UNPRIVILEGED),
544         SD_BUS_METHOD("SetLockedHint", "b", NULL, method_set_locked_hint, SD_BUS_VTABLE_UNPRIVILEGED),
545         SD_BUS_METHOD("Kill", "si", NULL, bus_session_method_kill, SD_BUS_VTABLE_UNPRIVILEGED),
546         SD_BUS_METHOD("TakeControl", "b", NULL, method_take_control, SD_BUS_VTABLE_UNPRIVILEGED),
547         SD_BUS_METHOD("ReleaseControl", NULL, NULL, method_release_control, SD_BUS_VTABLE_UNPRIVILEGED),
548         SD_BUS_METHOD("TakeDevice", "uu", "hb", method_take_device, SD_BUS_VTABLE_UNPRIVILEGED),
549         SD_BUS_METHOD("ReleaseDevice", "uu", NULL, method_release_device, SD_BUS_VTABLE_UNPRIVILEGED),
550         SD_BUS_METHOD("PauseDeviceComplete", "uu", NULL, method_pause_device_complete, SD_BUS_VTABLE_UNPRIVILEGED),
551
552         SD_BUS_SIGNAL("PauseDevice", "uus", 0),
553         SD_BUS_SIGNAL("ResumeDevice", "uuh", 0),
554         SD_BUS_SIGNAL("Lock", NULL, 0),
555         SD_BUS_SIGNAL("Unlock", NULL, 0),
556
557         SD_BUS_VTABLE_END
558 };
559
560 int session_object_find(sd_bus *bus, const char *path, const char *interface, void *userdata, void **found, sd_bus_error *error) {
561         Manager *m = userdata;
562         Session *session;
563         int r;
564
565         assert(bus);
566         assert(path);
567         assert(interface);
568         assert(found);
569         assert(m);
570
571         if (streq(path, "/org/freedesktop/login1/session/self")) {
572                 _cleanup_(sd_bus_creds_unrefp) sd_bus_creds *creds = NULL;
573                 sd_bus_message *message;
574                 const char *name;
575
576                 message = sd_bus_get_current_message(bus);
577                 if (!message)
578                         return 0;
579
580                 r = sd_bus_query_sender_creds(message, SD_BUS_CREDS_SESSION|SD_BUS_CREDS_AUGMENT, &creds);
581                 if (r < 0)
582                         return r;
583
584                 r = sd_bus_creds_get_session(creds, &name);
585                 if (r < 0)
586                         return r;
587
588                 session = hashmap_get(m->sessions, name);
589         } else {
590                 _cleanup_free_ char *e = NULL;
591                 const char *p;
592
593                 p = startswith(path, "/org/freedesktop/login1/session/");
594                 if (!p)
595                         return 0;
596
597                 e = bus_label_unescape(p);
598                 if (!e)
599                         return -ENOMEM;
600
601                 session = hashmap_get(m->sessions, e);
602         }
603
604         if (!session)
605                 return 0;
606
607         *found = session;
608         return 1;
609 }
610
611 char *session_bus_path(Session *s) {
612         _cleanup_free_ char *t = NULL;
613
614         assert(s);
615
616         t = bus_label_escape(s->id);
617         if (!t)
618                 return NULL;
619
620         return strappend("/org/freedesktop/login1/session/", t);
621 }
622
623 int session_node_enumerator(sd_bus *bus, const char *path, void *userdata, char ***nodes, sd_bus_error *error) {
624         _cleanup_strv_free_ char **l = NULL;
625         sd_bus_message *message;
626         Manager *m = userdata;
627         Session *session;
628         Iterator i;
629         int r;
630
631         assert(bus);
632         assert(path);
633         assert(nodes);
634
635         HASHMAP_FOREACH(session, m->sessions, i) {
636                 char *p;
637
638                 p = session_bus_path(session);
639                 if (!p)
640                         return -ENOMEM;
641
642                 r = strv_consume(&l, p);
643                 if (r < 0)
644                         return r;
645         }
646
647         message = sd_bus_get_current_message(bus);
648         if (message) {
649                 _cleanup_(sd_bus_creds_unrefp) sd_bus_creds *creds = NULL;
650                 const char *name;
651
652                 r = sd_bus_query_sender_creds(message, SD_BUS_CREDS_SESSION|SD_BUS_CREDS_AUGMENT, &creds);
653                 if (r >= 0) {
654                         r = sd_bus_creds_get_session(creds, &name);
655                         if (r >= 0) {
656                                 session = hashmap_get(m->sessions, name);
657                                 if (session) {
658                                         r = strv_extend(&l, "/org/freedesktop/login1/session/self");
659                                         if (r < 0)
660                                                 return r;
661                                 }
662                         }
663                 }
664         }
665
666         *nodes = l;
667         l = NULL;
668
669         return 1;
670 }
671
672 int session_send_signal(Session *s, bool new_session) {
673         _cleanup_free_ char *p = NULL;
674
675         assert(s);
676
677         p = session_bus_path(s);
678         if (!p)
679                 return -ENOMEM;
680
681         return sd_bus_emit_signal(
682                         s->manager->bus,
683                         "/org/freedesktop/login1",
684                         "org.freedesktop.login1.Manager",
685                         new_session ? "SessionNew" : "SessionRemoved",
686                         "so", s->id, p);
687 }
688
689 int session_send_changed(Session *s, const char *properties, ...) {
690         _cleanup_free_ char *p = NULL;
691         char **l;
692
693         assert(s);
694
695         if (!s->started)
696                 return 0;
697
698         p = session_bus_path(s);
699         if (!p)
700                 return -ENOMEM;
701
702         l = strv_from_stdarg_alloca(properties);
703
704         return sd_bus_emit_properties_changed_strv(s->manager->bus, p, "org.freedesktop.login1.Session", l);
705 }
706
707 int session_send_lock(Session *s, bool lock) {
708         _cleanup_free_ char *p = NULL;
709
710         assert(s);
711
712         p = session_bus_path(s);
713         if (!p)
714                 return -ENOMEM;
715
716         return sd_bus_emit_signal(
717                         s->manager->bus,
718                         p,
719                         "org.freedesktop.login1.Session",
720                         lock ? "Lock" : "Unlock",
721                         NULL);
722 }
723
724 int session_send_lock_all(Manager *m, bool lock) {
725         Session *session;
726         Iterator i;
727         int r = 0;
728
729         assert(m);
730
731         HASHMAP_FOREACH(session, m->sessions, i) {
732                 int k;
733
734                 k = session_send_lock(session, lock);
735                 if (k < 0)
736                         r = k;
737         }
738
739         return r;
740 }
741
742 int session_send_create_reply(Session *s, sd_bus_error *error) {
743         _cleanup_(sd_bus_message_unrefp) sd_bus_message *c = NULL;
744         _cleanup_close_ int fifo_fd = -1;
745         _cleanup_free_ char *p = NULL;
746
747         assert(s);
748
749         /* This is called after the session scope and the user service
750          * were successfully created, and finishes where
751          * bus_manager_create_session() left off. */
752
753         if (!s->create_message)
754                 return 0;
755
756 #if 0 /// elogind does not support scope and service jobs
757         if (!sd_bus_error_is_set(error) && (s->scope_job || s->user->service_job))
758                 return 0;
759 #endif // 0
760
761         c = s->create_message;
762         s->create_message = NULL;
763
764         if (error)
765                 return sd_bus_reply_method_error(c, error);
766
767         fifo_fd = session_create_fifo(s);
768         if (fifo_fd < 0)
769                 return fifo_fd;
770
771         /* Update the session state file before we notify the client
772          * about the result. */
773         session_save(s);
774
775         p = session_bus_path(s);
776         if (!p)
777                 return -ENOMEM;
778
779         log_debug("Sending reply about created session: "
780                   "id=%s object_path=%s uid=%u runtime_path=%s "
781                   "session_fd=%d seat=%s vtnr=%u",
782                   s->id,
783                   p,
784                   (uint32_t) s->user->uid,
785                   s->user->runtime_path,
786                   fifo_fd,
787                   s->seat ? s->seat->id : "",
788                   (uint32_t) s->vtnr);
789
790         return sd_bus_reply_method_return(
791                         c, "soshusub",
792                         s->id,
793                         p,
794                         s->user->runtime_path,
795                         fifo_fd,
796                         (uint32_t) s->user->uid,
797                         s->seat ? s->seat->id : "",
798                         (uint32_t) s->vtnr,
799                         false);
800 }