chiark / gitweb /
tree-wide: warn when a directory path already exists but has bad mode/owner/type
[elogind.git] / src / login / logind-session.c
1 /* SPDX-License-Identifier: LGPL-2.1+ */
2 /***
3   This file is part of systemd.
4
5   Copyright 2011 Lennart Poettering
6
7   systemd is free software; you can redistribute it and/or modify it
8   under the terms of the GNU Lesser General Public License as published by
9   the Free Software Foundation; either version 2.1 of the License, or
10   (at your option) any later version.
11
12   systemd is distributed in the hope that it will be useful, but
13   WITHOUT ANY WARRANTY; without even the implied warranty of
14   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15   Lesser General Public License for more details.
16
17   You should have received a copy of the GNU Lesser General Public License
18   along with systemd; If not, see <http://www.gnu.org/licenses/>.
19 ***/
20
21 #include <errno.h>
22 #include <fcntl.h>
23 #include <linux/kd.h>
24 #include <linux/vt.h>
25 #include <signal.h>
26 #include <string.h>
27 #include <sys/ioctl.h>
28 #include <unistd.h>
29
30 #include "sd-messages.h"
31
32 #include "alloc-util.h"
33 #include "audit-util.h"
34 #include "bus-error.h"
35 #include "bus-util.h"
36 #include "escape.h"
37 #include "fd-util.h"
38 #include "fileio.h"
39 #include "format-util.h"
40 #include "io-util.h"
41 #include "logind-session.h"
42 #include "mkdir.h"
43 #include "parse-util.h"
44 #include "path-util.h"
45 #include "string-table.h"
46 #include "terminal-util.h"
47 #include "user-util.h"
48 #include "util.h"
49
50 /// Additional includes needed by elogind
51 #include "extract-word.h"
52 #include "process-util.h"
53
54 #define RELEASE_USEC (20*USEC_PER_SEC)
55
56 static void session_remove_fifo(Session *s);
57
58 Session* session_new(Manager *m, const char *id) {
59         Session *s;
60
61         assert(m);
62         assert(id);
63         assert(session_id_valid(id));
64
65         s = new0(Session, 1);
66         if (!s)
67                 return NULL;
68
69         s->state_file = strappend("/run/systemd/sessions/", id);
70         if (!s->state_file)
71                 return mfree(s);
72
73         s->devices = hashmap_new(&devt_hash_ops);
74         if (!s->devices) {
75                 free(s->state_file);
76                 return mfree(s);
77         }
78
79         s->id = basename(s->state_file);
80
81         if (hashmap_put(m->sessions, s->id, s) < 0) {
82                 hashmap_free(s->devices);
83                 free(s->state_file);
84                 return mfree(s);
85         }
86
87         s->manager = m;
88         s->fifo_fd = -1;
89         s->vtfd = -1;
90         s->audit_id = AUDIT_SESSION_INVALID;
91
92         return s;
93 }
94
95 void session_free(Session *s) {
96         SessionDevice *sd;
97
98         assert(s);
99
100         if (s->in_gc_queue)
101                 LIST_REMOVE(gc_queue, s->manager->session_gc_queue, s);
102
103         s->timer_event_source = sd_event_source_unref(s->timer_event_source);
104
105         session_remove_fifo(s);
106
107         session_drop_controller(s);
108
109         while ((sd = hashmap_first(s->devices)))
110                 session_device_free(sd);
111
112         hashmap_free(s->devices);
113
114         if (s->user) {
115                 LIST_REMOVE(sessions_by_user, s->user->sessions, s);
116
117                 if (s->user->display == s)
118                         s->user->display = NULL;
119         }
120
121         if (s->seat) {
122                 if (s->seat->active == s)
123                         s->seat->active = NULL;
124                 if (s->seat->pending_switch == s)
125                         s->seat->pending_switch = NULL;
126
127                 seat_evict_position(s->seat, s);
128                 LIST_REMOVE(sessions_by_seat, s->seat->sessions, s);
129         }
130
131         if (s->scope) {
132                 hashmap_remove(s->manager->session_units, s->scope);
133                 free(s->scope);
134         }
135
136 #if 0 /// elogind does not support systemd scope_jobs
137         free(s->scope_job);
138 #endif // 0
139
140         sd_bus_message_unref(s->create_message);
141
142         free(s->tty);
143         free(s->display);
144         free(s->remote_host);
145         free(s->remote_user);
146         free(s->service);
147         free(s->desktop);
148
149         hashmap_remove(s->manager->sessions, s->id);
150
151         free(s->state_file);
152         free(s);
153 }
154
155 void session_set_user(Session *s, User *u) {
156         assert(s);
157         assert(!s->user);
158
159         s->user = u;
160         LIST_PREPEND(sessions_by_user, u->sessions, s);
161 }
162
163 static void session_save_devices(Session *s, FILE *f) {
164         SessionDevice *sd;
165         Iterator i;
166
167         if (!hashmap_isempty(s->devices)) {
168                 fprintf(f, "DEVICES=");
169                 HASHMAP_FOREACH(sd, s->devices, i)
170                         fprintf(f, "%u:%u ", major(sd->dev), minor(sd->dev));
171                 fprintf(f, "\n");
172         }
173 }
174
175 int session_save(Session *s) {
176         _cleanup_free_ char *temp_path = NULL;
177         _cleanup_fclose_ FILE *f = NULL;
178         int r = 0;
179
180         assert(s);
181
182         if (!s->user)
183                 return -ESTALE;
184
185         if (!s->started)
186                 return 0;
187
188         r = mkdir_safe_label("/run/systemd/sessions", 0755, 0, 0, MKDIR_WARN_MODE);
189         if (r < 0)
190                 goto fail;
191
192         r = fopen_temporary(s->state_file, &f, &temp_path);
193         if (r < 0)
194                 goto fail;
195
196         assert(s->user);
197
198         fchmod(fileno(f), 0644);
199
200         fprintf(f,
201                 "# This is private data. Do not parse.\n"
202                 "UID="UID_FMT"\n"
203                 "USER=%s\n"
204                 "ACTIVE=%i\n"
205                 "STATE=%s\n"
206                 "REMOTE=%i\n",
207                 s->user->uid,
208                 s->user->name,
209                 session_is_active(s),
210                 session_state_to_string(session_get_state(s)),
211                 s->remote);
212
213         if (s->type >= 0)
214                 fprintf(f, "TYPE=%s\n", session_type_to_string(s->type));
215
216         if (s->class >= 0)
217                 fprintf(f, "CLASS=%s\n", session_class_to_string(s->class));
218
219         if (s->scope)
220                 fprintf(f, "SCOPE=%s\n", s->scope);
221 #if 0 /// elogind does not support systemd scope_jobs
222         if (s->scope_job)
223                 fprintf(f, "SCOPE_JOB=%s\n", s->scope_job);
224 #endif // 0
225
226         if (s->fifo_path)
227                 fprintf(f, "FIFO=%s\n", s->fifo_path);
228
229         if (s->seat)
230                 fprintf(f, "SEAT=%s\n", s->seat->id);
231
232         if (s->tty)
233                 fprintf(f, "TTY=%s\n", s->tty);
234
235         if (s->display)
236                 fprintf(f, "DISPLAY=%s\n", s->display);
237
238         if (s->remote_host) {
239                 _cleanup_free_ char *escaped;
240
241                 escaped = cescape(s->remote_host);
242                 if (!escaped) {
243                         r = -ENOMEM;
244                         goto fail;
245                 }
246
247                 fprintf(f, "REMOTE_HOST=%s\n", escaped);
248         }
249
250         if (s->remote_user) {
251                 _cleanup_free_ char *escaped;
252
253                 escaped = cescape(s->remote_user);
254                 if (!escaped) {
255                         r = -ENOMEM;
256                         goto fail;
257                 }
258
259                 fprintf(f, "REMOTE_USER=%s\n", escaped);
260         }
261
262         if (s->service) {
263                 _cleanup_free_ char *escaped;
264
265                 escaped = cescape(s->service);
266                 if (!escaped) {
267                         r = -ENOMEM;
268                         goto fail;
269                 }
270
271                 fprintf(f, "SERVICE=%s\n", escaped);
272         }
273
274         if (s->desktop) {
275                 _cleanup_free_ char *escaped;
276
277
278                 escaped = cescape(s->desktop);
279                 if (!escaped) {
280                         r = -ENOMEM;
281                         goto fail;
282                 }
283
284                 fprintf(f, "DESKTOP=%s\n", escaped);
285         }
286
287         if (s->seat && seat_has_vts(s->seat))
288                 fprintf(f, "VTNR=%u\n", s->vtnr);
289
290         if (!s->vtnr)
291                 fprintf(f, "POSITION=%u\n", s->position);
292
293         if (pid_is_valid(s->leader))
294                 fprintf(f, "LEADER="PID_FMT"\n", s->leader);
295
296         if (audit_session_is_valid(s->audit_id))
297                 fprintf(f, "AUDIT=%"PRIu32"\n", s->audit_id);
298
299         if (dual_timestamp_is_set(&s->timestamp))
300                 fprintf(f,
301                         "REALTIME="USEC_FMT"\n"
302                         "MONOTONIC="USEC_FMT"\n",
303                         s->timestamp.realtime,
304                         s->timestamp.monotonic);
305
306         if (s->controller) {
307                 fprintf(f, "CONTROLLER=%s\n", s->controller);
308                 session_save_devices(s, f);
309         }
310
311         r = fflush_and_check(f);
312         if (r < 0)
313                 goto fail;
314
315         if (rename(temp_path, s->state_file) < 0) {
316                 r = -errno;
317                 goto fail;
318         }
319
320         return 0;
321
322 fail:
323         (void) unlink(s->state_file);
324
325         if (temp_path)
326                 (void) unlink(temp_path);
327
328         return log_error_errno(r, "Failed to save session data %s: %m", s->state_file);
329 }
330
331 static int session_load_devices(Session *s, const char *devices) {
332         const char *p;
333         int r = 0;
334
335         assert(s);
336
337         for (p = devices;;) {
338                 _cleanup_free_ char *word = NULL;
339                 SessionDevice *sd;
340                 dev_t dev;
341                 int k;
342
343                 k = extract_first_word(&p, &word, NULL, 0);
344                 if (k == 0)
345                         break;
346                 if (k < 0) {
347                         r = k;
348                         break;
349                 }
350
351                 k = parse_dev(word, &dev);
352                 if (k < 0) {
353                         r = k;
354                         continue;
355                 }
356
357                 /* The file descriptors for loaded devices will be reattached later. */
358                 k = session_device_new(s, dev, false, &sd);
359                 if (k < 0)
360                         r = k;
361         }
362
363         if (r < 0)
364                 log_error_errno(r, "Loading session devices for session %s failed: %m", s->id);
365
366         return r;
367 }
368
369 int session_load(Session *s) {
370         _cleanup_free_ char *remote = NULL,
371                 *seat = NULL,
372                 *vtnr = NULL,
373                 *state = NULL,
374                 *position = NULL,
375                 *leader = NULL,
376                 *type = NULL,
377                 *class = NULL,
378                 *uid = NULL,
379                 *realtime = NULL,
380                 *monotonic = NULL,
381                 *controller = NULL,
382                 *active = NULL,
383                 *devices = NULL;
384
385         int k, r;
386
387         assert(s);
388
389         r = parse_env_file(s->state_file, NEWLINE,
390                            "REMOTE",         &remote,
391                            "SCOPE",          &s->scope,
392 #if 0 /// elogind does not support systemd scope_jobs
393                            "SCOPE_JOB",      &s->scope_job,
394 #endif // 0
395                            "FIFO",           &s->fifo_path,
396                            "SEAT",           &seat,
397                            "TTY",            &s->tty,
398                            "DISPLAY",        &s->display,
399                            "REMOTE_HOST",    &s->remote_host,
400                            "REMOTE_USER",    &s->remote_user,
401                            "SERVICE",        &s->service,
402                            "DESKTOP",        &s->desktop,
403                            "VTNR",           &vtnr,
404                            "STATE",          &state,
405                            "POSITION",       &position,
406                            "LEADER",         &leader,
407                            "TYPE",           &type,
408                            "CLASS",          &class,
409                            "UID",            &uid,
410                            "REALTIME",       &realtime,
411                            "MONOTONIC",      &monotonic,
412                            "CONTROLLER",     &controller,
413                            "ACTIVE",         &active,
414                            "DEVICES",        &devices,
415                            NULL);
416
417         if (r < 0)
418                 return log_error_errno(r, "Failed to read %s: %m", s->state_file);
419
420         if (!s->user) {
421                 uid_t u;
422                 User *user;
423
424                 if (!uid) {
425                         log_error("UID not specified for session %s", s->id);
426                         return -ENOENT;
427                 }
428
429                 r = parse_uid(uid, &u);
430                 if (r < 0)  {
431                         log_error("Failed to parse UID value %s for session %s.", uid, s->id);
432                         return r;
433                 }
434
435                 user = hashmap_get(s->manager->users, UID_TO_PTR(u));
436                 if (!user) {
437                         log_error("User of session %s not known.", s->id);
438                         return -ENOENT;
439                 }
440
441                 session_set_user(s, user);
442         }
443
444         if (remote) {
445                 k = parse_boolean(remote);
446                 if (k >= 0)
447                         s->remote = k;
448         }
449
450         if (vtnr)
451                 safe_atou(vtnr, &s->vtnr);
452
453         if (seat && !s->seat) {
454                 Seat *o;
455
456                 o = hashmap_get(s->manager->seats, seat);
457                 if (o)
458                         r = seat_attach_session(o, s);
459                 if (!o || r < 0)
460                         log_error("Cannot attach session %s to seat %s", s->id, seat);
461         }
462
463         if (!s->seat || !seat_has_vts(s->seat))
464                 s->vtnr = 0;
465
466         if (position && s->seat) {
467                 unsigned int npos;
468
469                 safe_atou(position, &npos);
470                 seat_claim_position(s->seat, s, npos);
471         }
472
473         if (leader) {
474                 if (parse_pid(leader, &s->leader) >= 0)
475                         (void) audit_session_from_pid(s->leader, &s->audit_id);
476         }
477
478         if (type) {
479                 SessionType t;
480
481                 t = session_type_from_string(type);
482                 if (t >= 0)
483                         s->type = t;
484         }
485
486         if (class) {
487                 SessionClass c;
488
489                 c = session_class_from_string(class);
490                 if (c >= 0)
491                         s->class = c;
492         }
493
494         if (state && streq(state, "closing"))
495                 s->stopping = true;
496
497         if (s->fifo_path) {
498                 int fd;
499
500                 /* If we open an unopened pipe for reading we will not
501                    get an EOF. to trigger an EOF we hence open it for
502                    writing, but close it right away which then will
503                    trigger the EOF. This will happen immediately if no
504                    other process has the FIFO open for writing, i. e.
505                    when the session died before logind (re)started. */
506
507                 fd = session_create_fifo(s);
508                 safe_close(fd);
509         }
510
511         if (realtime)
512                 timestamp_deserialize(realtime, &s->timestamp.realtime);
513         if (monotonic)
514                 timestamp_deserialize(monotonic, &s->timestamp.monotonic);
515
516         if (active) {
517                 k = parse_boolean(active);
518                 if (k >= 0)
519                         s->was_active = k;
520         }
521
522         if (controller) {
523                 if (bus_name_has_owner(s->manager->bus, controller, NULL) > 0) {
524                         session_set_controller(s, controller, false, false);
525                         session_load_devices(s, devices);
526                 } else
527                         session_restore_vt(s);
528         }
529
530         return r;
531 }
532
533 int session_activate(Session *s) {
534         unsigned int num_pending;
535
536         assert(s);
537         assert(s->user);
538
539         if (!s->seat)
540                 return -EOPNOTSUPP;
541
542         if (s->seat->active == s)
543                 return 0;
544
545         /* on seats with VTs, we let VTs manage session-switching */
546         if (seat_has_vts(s->seat)) {
547                 if (!s->vtnr)
548                         return -EOPNOTSUPP;
549
550                 return chvt(s->vtnr);
551         }
552
553         /* On seats without VTs, we implement session-switching in logind. We
554          * try to pause all session-devices and wait until the session
555          * controller acknowledged them. Once all devices are asleep, we simply
556          * switch the active session and be done.
557          * We save the session we want to switch to in seat->pending_switch and
558          * seat_complete_switch() will perform the final switch. */
559
560         s->seat->pending_switch = s;
561
562         /* if no devices are running, immediately perform the session switch */
563         num_pending = session_device_try_pause_all(s);
564         if (!num_pending)
565                 seat_complete_switch(s->seat);
566
567         return 0;
568 }
569
570 #if 0 /// UNNEEDED by elogind
571 static int session_start_scope(Session *s) {
572         int r;
573
574         assert(s);
575         assert(s->user);
576
577         if (!s->scope) {
578                 _cleanup_(sd_bus_error_free) sd_bus_error error = SD_BUS_ERROR_NULL;
579                 char *scope, *job = NULL;
580                 const char *description;
581
582                 scope = strjoin("session-", s->id, ".scope");
583                 if (!scope)
584                         return log_oom();
585
586                 description = strjoina("Session ", s->id, " of user ", s->user->name);
587
588                 r = manager_start_scope(
589                                 s->manager,
590                                 scope,
591                                 s->leader,
592                                 s->user->slice,
593                                 description,
594                                 "systemd-logind.service",
595                                 "systemd-user-sessions.service",
596                                 (uint64_t) -1, /* disable TasksMax= for the scope, rely on the slice setting for it */
597                                 &error,
598                                 &job);
599                 if (r < 0) {
600                         log_error_errno(r, "Failed to start session scope %s: %s", scope, bus_error_message(&error, r));
601                         free(scope);
602                         return r;
603                 } else {
604                         s->scope = scope;
605
606                         free(s->scope_job);
607                         s->scope_job = job;
608                 }
609         }
610
611         if (s->scope)
612                 (void) hashmap_put(s->manager->session_units, s->scope, s);
613
614         return 0;
615 }
616 #else
617 static int session_start_cgroup(Session *s) {
618         int r;
619
620         assert(s);
621         assert(s->user);
622         assert(s->leader > 0);
623
624         /* First, create our own group */
625         r = cg_create(SYSTEMD_CGROUP_CONTROLLER, s->id);
626         if (r < 0)
627                 return log_error_errno(r, "Failed to create cgroup %s: %m", s->id);
628
629         r = cg_attach(SYSTEMD_CGROUP_CONTROLLER, s->id, s->leader);
630         if (r < 0)
631                 log_warning_errno(r, "Failed to attach PID %d to cgroup %s: %m", s->leader, s->id);
632
633         return 0;
634 }
635 #endif // 0
636
637 int session_start(Session *s) {
638         int r;
639
640         assert(s);
641
642         if (!s->user)
643                 return -ESTALE;
644
645         if (s->started)
646                 return 0;
647
648         r = user_start(s->user);
649         if (r < 0)
650                 return r;
651
652         /* Create cgroup */
653 #if 0 /// elogind does its own session management
654         r = session_start_scope(s);
655 #else
656         r = session_start_cgroup(s);
657 #endif // 0
658         if (r < 0)
659                 return r;
660
661         log_struct(s->class == SESSION_BACKGROUND ? LOG_DEBUG : LOG_INFO,
662                    "MESSAGE_ID=" SD_MESSAGE_SESSION_START_STR,
663                    "SESSION_ID=%s", s->id,
664                    "USER_ID=%s", s->user->name,
665                    "LEADER="PID_FMT, s->leader,
666                    LOG_MESSAGE("New session %s of user %s.", s->id, s->user->name),
667                    NULL);
668
669         if (!dual_timestamp_is_set(&s->timestamp))
670                 dual_timestamp_get(&s->timestamp);
671
672         if (s->seat)
673                 seat_read_active_vt(s->seat);
674
675         s->started = true;
676
677         user_elect_display(s->user);
678
679         /* Save data */
680         session_save(s);
681         user_save(s->user);
682         if (s->seat)
683                 seat_save(s->seat);
684
685         /* Send signals */
686         session_send_signal(s, true);
687         user_send_changed(s->user, "Display", NULL);
688         if (s->seat) {
689                 if (s->seat->active == s)
690                         seat_send_changed(s->seat, "ActiveSession", NULL);
691         }
692
693         return 0;
694 }
695
696 #if 0 /// UNNEEDED by elogind
697 static int session_stop_scope(Session *s, bool force) {
698         _cleanup_(sd_bus_error_free) sd_bus_error error = SD_BUS_ERROR_NULL;
699         int r;
700
701         assert(s);
702
703         if (!s->scope)
704                 return 0;
705
706         /* Let's always abandon the scope first. This tells systemd that we are not interested anymore, and everything
707          * that is left in the scope is "left-over". Informing systemd about this has the benefit that it will log
708          * when killing any processes left after this point. */
709         r = manager_abandon_scope(s->manager, s->scope, &error);
710         if (r < 0)
711                 log_warning_errno(r, "Failed to abandon session scope, ignoring: %s", bus_error_message(&error, r));
712
713         /* Optionally, let's kill everything that's left now. */
714         if (force || manager_shall_kill(s->manager, s->user->name)) {
715                 char *job = NULL;
716
717                 r = manager_stop_unit(s->manager, s->scope, &error, &job);
718                 if (r < 0)
719                         return log_error_errno(r, "Failed to stop session scope: %s", bus_error_message(&error, r));
720
721                 free(s->scope_job);
722                 s->scope_job = job;
723         } else
724                 s->scope_job = mfree(s->scope_job);
725
726         return 0;
727 }
728 #else
729 static int session_stop_cgroup(Session *s, bool force) {
730         _cleanup_(sd_bus_error_free) sd_bus_error error = SD_BUS_ERROR_NULL;
731         int r;
732
733         assert(s);
734
735
736 int session_stop(Session *s, bool force) {
737         int r;
738
739         assert(s);
740
741         if (!s->user)
742                 return -ESTALE;
743
744         s->timer_event_source = sd_event_source_unref(s->timer_event_source);
745
746         if (s->seat)
747                 seat_evict_position(s->seat, s);
748
749         /* We are going down, don't care about FIFOs anymore */
750         session_remove_fifo(s);
751
752         /* Kill cgroup */
753         r = session_stop_scope(s, force);
754
755         s->stopping = true;
756
757         user_elect_display(s->user);
758
759         session_save(s);
760         user_save(s->user);
761
762         return r;
763 }
764
765 int session_finalize(Session *s) {
766         SessionDevice *sd;
767
768         assert(s);
769
770         if (!s->user)
771                 return -ESTALE;
772
773         if (s->started)
774                 log_struct(s->class == SESSION_BACKGROUND ? LOG_DEBUG : LOG_INFO,
775                            "MESSAGE_ID=" SD_MESSAGE_SESSION_STOP_STR,
776                            "SESSION_ID=%s", s->id,
777                            "USER_ID=%s", s->user->name,
778                            "LEADER="PID_FMT, s->leader,
779                            LOG_MESSAGE("Removed session %s.", s->id),
780                            NULL);
781
782         s->timer_event_source = sd_event_source_unref(s->timer_event_source);
783
784         if (s->seat)
785                 seat_evict_position(s->seat, s);
786
787         /* Kill session devices */
788         while ((sd = hashmap_first(s->devices)))
789                 session_device_free(sd);
790
791         (void) unlink(s->state_file);
792         session_add_to_gc_queue(s);
793         user_add_to_gc_queue(s->user);
794
795         if (s->started) {
796                 session_send_signal(s, false);
797                 s->started = false;
798         }
799
800         if (s->seat) {
801                 if (s->seat->active == s)
802                         seat_set_active(s->seat, NULL);
803
804                 seat_save(s->seat);
805         }
806
807         user_save(s->user);
808         user_send_changed(s->user, "Display", NULL);
809
810         return 0;
811 }
812
813 static int release_timeout_callback(sd_event_source *es, uint64_t usec, void *userdata) {
814         Session *s = userdata;
815
816         assert(es);
817         assert(s);
818
819         session_stop(s, false);
820         return 0;
821 }
822
823 int session_release(Session *s) {
824         assert(s);
825
826         if (!s->started || s->stopping)
827                 return 0;
828
829         if (s->timer_event_source)
830                 return 0;
831
832         return sd_event_add_time(s->manager->event,
833                                  &s->timer_event_source,
834                                  CLOCK_MONOTONIC,
835                                  now(CLOCK_MONOTONIC) + RELEASE_USEC, 0,
836                                  release_timeout_callback, s);
837 }
838
839 bool session_is_active(Session *s) {
840         assert(s);
841
842         if (!s->seat)
843                 return true;
844
845         return s->seat->active == s;
846 }
847
848 static int get_tty_atime(const char *tty, usec_t *atime) {
849         _cleanup_free_ char *p = NULL;
850         struct stat st;
851
852         assert(tty);
853         assert(atime);
854
855         if (!path_is_absolute(tty)) {
856                 p = strappend("/dev/", tty);
857                 if (!p)
858                         return -ENOMEM;
859
860                 tty = p;
861         } else if (!path_startswith(tty, "/dev/"))
862                 return -ENOENT;
863
864         if (lstat(tty, &st) < 0)
865                 return -errno;
866
867         *atime = timespec_load(&st.st_atim);
868         return 0;
869 }
870
871 static int get_process_ctty_atime(pid_t pid, usec_t *atime) {
872         _cleanup_free_ char *p = NULL;
873         int r;
874
875         assert(pid > 0);
876         assert(atime);
877
878         r = get_ctty(pid, NULL, &p);
879         if (r < 0)
880                 return r;
881
882         return get_tty_atime(p, atime);
883 }
884
885 int session_get_idle_hint(Session *s, dual_timestamp *t) {
886         usec_t atime = 0, n;
887         int r;
888
889         assert(s);
890
891         /* Explicit idle hint is set */
892         if (s->idle_hint) {
893                 if (t)
894                         *t = s->idle_hint_timestamp;
895
896                 return s->idle_hint;
897         }
898
899         /* Graphical sessions should really implement a real
900          * idle hint logic */
901         if (SESSION_TYPE_IS_GRAPHICAL(s->type))
902                 goto dont_know;
903
904         /* For sessions with an explicitly configured tty, let's check
905          * its atime */
906         if (s->tty) {
907                 r = get_tty_atime(s->tty, &atime);
908                 if (r >= 0)
909                         goto found_atime;
910         }
911
912         /* For sessions with a leader but no explicitly configured
913          * tty, let's check the controlling tty of the leader */
914         if (s->leader > 0) {
915                 r = get_process_ctty_atime(s->leader, &atime);
916                 if (r >= 0)
917                         goto found_atime;
918         }
919
920 dont_know:
921         if (t)
922                 *t = s->idle_hint_timestamp;
923
924         return 0;
925
926 found_atime:
927         if (t)
928                 dual_timestamp_from_realtime(t, atime);
929
930         n = now(CLOCK_REALTIME);
931
932         if (s->manager->idle_action_usec <= 0)
933                 return 0;
934
935         return atime + s->manager->idle_action_usec <= n;
936 }
937
938 void session_set_idle_hint(Session *s, bool b) {
939         assert(s);
940
941         if (s->idle_hint == b)
942                 return;
943
944         s->idle_hint = b;
945         dual_timestamp_get(&s->idle_hint_timestamp);
946
947         session_send_changed(s, "IdleHint", "IdleSinceHint", "IdleSinceHintMonotonic", NULL);
948
949         if (s->seat)
950                 seat_send_changed(s->seat, "IdleHint", "IdleSinceHint", "IdleSinceHintMonotonic", NULL);
951
952         user_send_changed(s->user, "IdleHint", "IdleSinceHint", "IdleSinceHintMonotonic", NULL);
953         manager_send_changed(s->manager, "IdleHint", "IdleSinceHint", "IdleSinceHintMonotonic", NULL);
954 }
955
956 int session_get_locked_hint(Session *s) {
957         assert(s);
958
959         return s->locked_hint;
960 }
961
962 void session_set_locked_hint(Session *s, bool b) {
963         assert(s);
964
965         if (s->locked_hint == b)
966                 return;
967
968         s->locked_hint = b;
969
970         session_send_changed(s, "LockedHint", NULL);
971 }
972
973 static int session_dispatch_fifo(sd_event_source *es, int fd, uint32_t revents, void *userdata) {
974         Session *s = userdata;
975
976         assert(s);
977         assert(s->fifo_fd == fd);
978
979         /* EOF on the FIFO means the session died abnormally. */
980
981         session_remove_fifo(s);
982         session_stop(s, false);
983
984         return 1;
985 }
986
987 int session_create_fifo(Session *s) {
988         int r;
989
990         assert(s);
991
992         /* Create FIFO */
993         if (!s->fifo_path) {
994                 r = mkdir_safe_label("/run/systemd/sessions", 0755, 0, 0, false);
995                 r = mkdir_safe_label("/run/systemd/sessions", 0755, 0, 0, 0);
996                 r = mkdir_safe_label("/run/systemd/sessions", 0755, 0, 0, MKDIR_WARN_MODE);
997                 if (r < 0)
998                         return r;
999
1000                 if (asprintf(&s->fifo_path, "/run/systemd/sessions/%s.ref", s->id) < 0)
1001                         return -ENOMEM;
1002
1003                 if (mkfifo(s->fifo_path, 0600) < 0 && errno != EEXIST)
1004                         return -errno;
1005         }
1006
1007         /* Open reading side */
1008         if (s->fifo_fd < 0) {
1009                 s->fifo_fd = open(s->fifo_path, O_RDONLY|O_CLOEXEC|O_NONBLOCK);
1010                 if (s->fifo_fd < 0)
1011                         return -errno;
1012
1013         }
1014
1015         if (!s->fifo_event_source) {
1016                 r = sd_event_add_io(s->manager->event, &s->fifo_event_source, s->fifo_fd, 0, session_dispatch_fifo, s);
1017                 if (r < 0)
1018                         return r;
1019
1020                 /* Let's make sure we noticed dead sessions before we process new bus requests (which might create new
1021                  * sessions). */
1022                 r = sd_event_source_set_priority(s->fifo_event_source, SD_EVENT_PRIORITY_NORMAL-10);
1023                 if (r < 0)
1024                         return r;
1025         }
1026
1027         /* Open writing side */
1028         r = open(s->fifo_path, O_WRONLY|O_CLOEXEC|O_NONBLOCK);
1029         if (r < 0)
1030                 return -errno;
1031
1032         return r;
1033 }
1034
1035 static void session_remove_fifo(Session *s) {
1036         assert(s);
1037
1038         s->fifo_event_source = sd_event_source_unref(s->fifo_event_source);
1039         s->fifo_fd = safe_close(s->fifo_fd);
1040
1041         if (s->fifo_path) {
1042                 unlink(s->fifo_path);
1043                 s->fifo_path = mfree(s->fifo_path);
1044         }
1045 }
1046
1047 bool session_may_gc(Session *s, bool drop_not_started) {
1048         assert(s);
1049
1050         if (drop_not_started && !s->started)
1051                 return true;
1052
1053         if (!s->user)
1054                 return true;
1055
1056         if (s->fifo_fd >= 0) {
1057                 if (pipe_eof(s->fifo_fd) <= 0)
1058                         return false;
1059         }
1060
1061         if (s->scope_job && manager_job_is_active(s->manager, s->scope_job))
1062                 return false;
1063
1064         if (s->scope && manager_unit_is_active(s->manager, s->scope))
1065                 return false;
1066
1067         return true;
1068 }
1069
1070 void session_add_to_gc_queue(Session *s) {
1071         assert(s);
1072
1073         if (s->in_gc_queue)
1074                 return;
1075
1076         LIST_PREPEND(gc_queue, s->manager->session_gc_queue, s);
1077         s->in_gc_queue = true;
1078 }
1079
1080 SessionState session_get_state(Session *s) {
1081         assert(s);
1082
1083         /* always check closing first */
1084         if (s->stopping || s->timer_event_source)
1085                 return SESSION_CLOSING;
1086
1087         if (s->scope_job || s->fifo_fd < 0)
1088                 return SESSION_OPENING;
1089
1090         if (session_is_active(s))
1091                 return SESSION_ACTIVE;
1092
1093         return SESSION_ONLINE;
1094 }
1095
1096 int session_kill(Session *s, KillWho who, int signo) {
1097         assert(s);
1098
1099         if (!s->scope)
1100                 return -ESRCH;
1101
1102         return manager_kill_unit(s->manager, s->scope, who, signo, NULL);
1103 }
1104
1105 static int session_open_vt(Session *s) {
1106         char path[sizeof("/dev/tty") + DECIMAL_STR_MAX(s->vtnr)];
1107
1108         if (s->vtnr < 1)
1109                 return -ENODEV;
1110
1111         if (s->vtfd >= 0)
1112                 return s->vtfd;
1113
1114         sprintf(path, "/dev/tty%u", s->vtnr);
1115         s->vtfd = open_terminal(path, O_RDWR | O_CLOEXEC | O_NONBLOCK | O_NOCTTY);
1116         if (s->vtfd < 0)
1117                 return log_error_errno(s->vtfd, "cannot open VT %s of session %s: %m", path, s->id);
1118
1119         return s->vtfd;
1120 }
1121
1122 int session_prepare_vt(Session *s) {
1123         int vt, r;
1124         struct vt_mode mode = { 0 };
1125
1126         if (s->vtnr < 1)
1127                 return 0;
1128
1129         vt = session_open_vt(s);
1130         if (vt < 0)
1131                 return vt;
1132
1133         r = fchown(vt, s->user->uid, -1);
1134         if (r < 0) {
1135                 r = log_error_errno(errno,
1136                                     "Cannot change owner of /dev/tty%u: %m",
1137                                     s->vtnr);
1138                 goto error;
1139         }
1140
1141         r = ioctl(vt, KDSKBMODE, K_OFF);
1142         if (r < 0) {
1143                 r = log_error_errno(errno,
1144                                     "Cannot set K_OFF on /dev/tty%u: %m",
1145                                     s->vtnr);
1146                 goto error;
1147         }
1148
1149         r = ioctl(vt, KDSETMODE, KD_GRAPHICS);
1150         if (r < 0) {
1151                 r = log_error_errno(errno,
1152                                     "Cannot set KD_GRAPHICS on /dev/tty%u: %m",
1153                                     s->vtnr);
1154                 goto error;
1155         }
1156
1157         /* Oh, thanks to the VT layer, VT_AUTO does not work with KD_GRAPHICS.
1158          * So we need a dummy handler here which just acknowledges *all* VT
1159          * switch requests. */
1160         mode.mode = VT_PROCESS;
1161         mode.relsig = SIGRTMIN;
1162         mode.acqsig = SIGRTMIN + 1;
1163         r = ioctl(vt, VT_SETMODE, &mode);
1164         if (r < 0) {
1165                 r = log_error_errno(errno,
1166                                     "Cannot set VT_PROCESS on /dev/tty%u: %m",
1167                                     s->vtnr);
1168                 goto error;
1169         }
1170
1171         return 0;
1172
1173 error:
1174         session_restore_vt(s);
1175         return r;
1176 }
1177
1178 void session_restore_vt(Session *s) {
1179
1180         static const struct vt_mode mode = {
1181                 .mode = VT_AUTO,
1182         };
1183
1184         int vt, old_fd;
1185
1186         /* We need to get a fresh handle to the virtual terminal,
1187          * since the old file-descriptor is potentially in a hung-up
1188          * state after the controlling process exited; we do a
1189          * little dance to avoid having the terminal be available
1190          * for reuse before we've cleaned it up.
1191          */
1192         old_fd = s->vtfd;
1193         s->vtfd = -1;
1194         old_fd = TAKE_FD(s->vtfd);
1195
1196         vt = session_open_vt(s);
1197         safe_close(old_fd);
1198
1199         if (vt < 0)
1200                 return;
1201
1202         (void) ioctl(vt, KDSETMODE, KD_TEXT);
1203
1204         (void) vt_reset_keyboard(vt);
1205
1206         (void) ioctl(vt, VT_SETMODE, &mode);
1207         (void) fchown(vt, 0, (gid_t) -1);
1208
1209         s->vtfd = safe_close(s->vtfd);
1210 }
1211
1212 void session_leave_vt(Session *s) {
1213         int r;
1214
1215         assert(s);
1216
1217         /* This is called whenever we get a VT-switch signal from the kernel.
1218          * We acknowledge all of them unconditionally. Note that session are
1219          * free to overwrite those handlers and we only register them for
1220          * sessions with controllers. Legacy sessions are not affected.
1221          * However, if we switch from a non-legacy to a legacy session, we must
1222          * make sure to pause all device before acknowledging the switch. We
1223          * process the real switch only after we are notified via sysfs, so the
1224          * legacy session might have already started using the devices. If we
1225          * don't pause the devices before the switch, we might confuse the
1226          * session we switch to. */
1227
1228         if (s->vtfd < 0)
1229                 return;
1230
1231         session_device_pause_all(s);
1232         r = ioctl(s->vtfd, VT_RELDISP, 1);
1233         if (r < 0)
1234                 log_debug_errno(errno, "Cannot release VT of session %s: %m", s->id);
1235 }
1236
1237 bool session_is_controller(Session *s, const char *sender) {
1238         assert(s);
1239
1240         return streq_ptr(s->controller, sender);
1241 }
1242
1243 static void session_release_controller(Session *s, bool notify) {
1244         _cleanup_free_ char *name = NULL;
1245         SessionDevice *sd;
1246
1247         if (!s->controller)
1248                 return;
1249
1250         name = s->controller;
1251
1252         /* By resetting the controller before releasing the devices, we won't
1253          * send notification signals. This avoids sending useless notifications
1254          * if the controller is released on disconnects. */
1255         if (!notify)
1256                 s->controller = NULL;
1257
1258         while ((sd = hashmap_first(s->devices)))
1259                 session_device_free(sd);
1260
1261         s->controller = NULL;
1262         s->track = sd_bus_track_unref(s->track);
1263 }
1264
1265 static int on_bus_track(sd_bus_track *track, void *userdata) {
1266         Session *s = userdata;
1267
1268         assert(track);
1269         assert(s);
1270
1271         session_drop_controller(s);
1272
1273         return 0;
1274 }
1275
1276 int session_set_controller(Session *s, const char *sender, bool force, bool prepare) {
1277         _cleanup_free_ char *name = NULL;
1278         int r;
1279
1280         assert(s);
1281         assert(sender);
1282
1283         if (session_is_controller(s, sender))
1284                 return 0;
1285         if (s->controller && !force)
1286                 return -EBUSY;
1287
1288         name = strdup(sender);
1289         if (!name)
1290                 return -ENOMEM;
1291
1292         s->track = sd_bus_track_unref(s->track);
1293         r = sd_bus_track_new(s->manager->bus, &s->track, on_bus_track, s);
1294         if (r < 0)
1295                 return r;
1296
1297         r = sd_bus_track_add_name(s->track, name);
1298         if (r < 0)
1299                 return r;
1300
1301         /* When setting a session controller, we forcibly mute the VT and set
1302          * it into graphics-mode. Applications can override that by changing
1303          * VT state after calling TakeControl(). However, this serves as a good
1304          * default and well-behaving controllers can now ignore VTs entirely.
1305          * Note that we reset the VT on ReleaseControl() and if the controller
1306          * exits.
1307          * If logind crashes/restarts, we restore the controller during restart
1308          * (without preparing the VT since the controller has probably overridden
1309          * VT state by now) or reset the VT in case it crashed/exited, too. */
1310         if (prepare) {
1311                 r = session_prepare_vt(s);
1312                 if (r < 0) {
1313                         s->track = sd_bus_track_unref(s->track);
1314                         return r;
1315                 }
1316         }
1317
1318         session_release_controller(s, true);
1319         s->controller = name;
1320         name = NULL;
1321         s->controller = TAKE_PTR(name);
1322         session_save(s);
1323
1324         return 0;
1325 }
1326
1327 void session_drop_controller(Session *s) {
1328         assert(s);
1329
1330         if (!s->controller)
1331                 return;
1332
1333         s->track = sd_bus_track_unref(s->track);
1334         session_release_controller(s, false);
1335         session_save(s);
1336         session_restore_vt(s);
1337 }
1338
1339 static const char* const session_state_table[_SESSION_STATE_MAX] = {
1340         [SESSION_OPENING] = "opening",
1341         [SESSION_ONLINE] = "online",
1342         [SESSION_ACTIVE] = "active",
1343         [SESSION_CLOSING] = "closing"
1344 };
1345
1346 DEFINE_STRING_TABLE_LOOKUP(session_state, SessionState);
1347
1348 static const char* const session_type_table[_SESSION_TYPE_MAX] = {
1349         [SESSION_UNSPECIFIED] = "unspecified",
1350         [SESSION_TTY] = "tty",
1351         [SESSION_X11] = "x11",
1352         [SESSION_WAYLAND] = "wayland",
1353         [SESSION_MIR] = "mir",
1354         [SESSION_WEB] = "web",
1355 };
1356
1357 DEFINE_STRING_TABLE_LOOKUP(session_type, SessionType);
1358
1359 static const char* const session_class_table[_SESSION_CLASS_MAX] = {
1360         [SESSION_USER] = "user",
1361         [SESSION_GREETER] = "greeter",
1362         [SESSION_LOCK_SCREEN] = "lock-screen",
1363         [SESSION_BACKGROUND] = "background"
1364 };
1365
1366 DEFINE_STRING_TABLE_LOOKUP(session_class, SessionClass);
1367
1368 static const char* const kill_who_table[_KILL_WHO_MAX] = {
1369         [KILL_LEADER] = "leader",
1370         [KILL_ALL] = "all"
1371 };
1372
1373 DEFINE_STRING_TABLE_LOOKUP(kill_who, KillWho);