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