2 This file is part of systemd.
4 Copyright 2011 Lennart Poettering
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.
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.
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/>.
25 #include "sd-messages.h"
27 #include "alloc-util.h"
30 #include "format-util.h"
31 #include "logind-acl.h"
32 #include "logind-seat.h"
34 #include "parse-util.h"
35 #include "stdio-util.h"
36 #include "string-util.h"
37 #include "terminal-util.h"
40 Seat *seat_new(Manager *m, const char *id) {
50 s->state_file = strappend("/run/systemd/seats/", id);
54 s->id = basename(s->state_file);
57 if (hashmap_put(m->seats, s->id, s) < 0) {
65 void seat_free(Seat *s) {
69 LIST_REMOVE(gc_queue, s->manager->seat_gc_queue, s);
72 session_free(s->sessions);
77 device_free(s->devices);
79 hashmap_remove(s->manager->seats, s->id);
86 int seat_save(Seat *s) {
87 _cleanup_free_ char *temp_path = NULL;
88 _cleanup_fclose_ FILE *f = NULL;
96 r = mkdir_safe_label("/run/systemd/seats", 0755, 0, 0);
100 r = fopen_temporary(s->state_file, &f, &temp_path);
104 fchmod(fileno(f), 0644);
107 "# This is private data. Do not parse.\n"
109 "CAN_MULTI_SESSION=%i\n"
111 "CAN_GRAPHICAL=%i\n",
113 seat_can_multi_session(s),
115 seat_can_graphical(s));
118 assert(s->active->user);
122 "ACTIVE_UID="UID_FMT"\n",
124 s->active->user->uid);
130 fputs("SESSIONS=", f);
131 LIST_FOREACH(sessions_by_seat, i, s->sessions) {
135 i->sessions_by_seat_next ? ' ' : '\n');
139 LIST_FOREACH(sessions_by_seat, i, s->sessions)
143 i->sessions_by_seat_next ? ' ' : '\n');
146 r = fflush_and_check(f);
150 if (rename(temp_path, s->state_file) < 0) {
158 (void) unlink(s->state_file);
161 (void) unlink(temp_path);
163 return log_error_errno(r, "Failed to save seat data %s: %m", s->state_file);
166 int seat_load(Seat *s) {
169 /* There isn't actually anything to read here ... */
174 #if 0 /// UNNEEDED by elogind
175 static int vt_allocate(unsigned int vtnr) {
176 char p[sizeof("/dev/tty") + DECIMAL_STR_MAX(unsigned int)];
177 _cleanup_close_ int fd = -1;
181 xsprintf(p, "/dev/tty%u", vtnr);
182 fd = open_terminal(p, O_RDWR|O_NOCTTY|O_CLOEXEC);
189 int seat_preallocate_vts(Seat *s) {
196 log_debug("Preallocating VTs...");
198 if (s->manager->n_autovts <= 0)
201 if (!seat_has_vts(s))
204 for (i = 1; i <= s->manager->n_autovts; i++) {
209 log_error_errno(q, "Failed to preallocate VT %u: %m", i);
218 int seat_apply_acls(Seat *s, Session *old_active) {
223 r = devnode_acl_all(s->manager->udev,
226 !!old_active, old_active ? old_active->user->uid : 0,
227 !!s->active, s->active ? s->active->user->uid : 0);
230 log_error_errno(r, "Failed to apply ACLs: %m");
235 int seat_set_active(Seat *s, Session *session) {
239 assert(!session || session->seat == s);
241 if (session == s->active)
244 old_active = s->active;
248 session_device_pause_all(old_active);
249 session_send_changed(old_active, "Active", NULL);
252 seat_apply_acls(s, old_active);
254 if (session && session->started) {
255 session_send_changed(session, "Active", NULL);
256 session_device_resume_all(session);
259 if (!session || session->started)
260 seat_send_changed(s, "ActiveSession", NULL);
265 session_save(session);
266 user_save(session->user);
270 session_save(old_active);
271 if (!session || session->user != old_active->user)
272 user_save(old_active->user);
278 int seat_switch_to(Seat *s, unsigned int num) {
279 /* Public session positions skip 0 (there is only F1-F12). Maybe it
280 * will get reassigned in the future, so return error for now. */
284 if (num >= s->position_count || !s->positions[num]) {
285 /* allow switching to unused VTs to trigger auto-activate */
286 if (seat_has_vts(s) && num < 64)
292 return session_activate(s->positions[num]);
295 int seat_switch_to_next(Seat *s) {
296 unsigned int start, i;
298 if (s->position_count == 0)
302 if (s->active && s->active->position > 0)
303 start = s->active->position;
305 for (i = start + 1; i < s->position_count; ++i)
307 return session_activate(s->positions[i]);
309 for (i = 1; i < start; ++i)
311 return session_activate(s->positions[i]);
316 int seat_switch_to_previous(Seat *s) {
317 unsigned int start, i;
319 if (s->position_count == 0)
323 if (s->active && s->active->position > 0)
324 start = s->active->position;
326 for (i = start - 1; i > 0; --i)
328 return session_activate(s->positions[i]);
330 for (i = s->position_count - 1; i > start; --i)
332 return session_activate(s->positions[i]);
337 int seat_active_vt_changed(Seat *s, unsigned int vtnr) {
338 Session *i, *new_active = NULL;
344 if (!seat_has_vts(s))
347 log_debug("VT changed to %u", vtnr);
349 /* we might have earlier closing sessions on the same VT, so try to
350 * find a running one first */
351 LIST_FOREACH(sessions_by_seat, i, s->sessions)
352 if (i->vtnr == vtnr && !i->stopping) {
358 /* no running one? then we can't decide which one is the
359 * active one, let the first one win */
360 LIST_FOREACH(sessions_by_seat, i, s->sessions)
361 if (i->vtnr == vtnr) {
367 r = seat_set_active(s, new_active);
368 #if 0 /// elogind does not spawn autovt
369 manager_spawn_autovt(s->manager, vtnr);
375 int seat_read_active_vt(Seat *s) {
383 if (!seat_has_vts(s))
386 lseek(s->manager->console_active_fd, SEEK_SET, 0);
388 k = read(s->manager->console_active_fd, t, sizeof(t)-1);
390 log_error("Failed to read current console: %s", k < 0 ? strerror(-errno) : "EOF");
391 return k < 0 ? -errno : -EIO;
397 if (!startswith(t, "tty")) {
398 log_error("Hm, /sys/class/tty/tty0/active is badly formatted.");
402 r = safe_atou(t+3, &vtnr);
404 log_error("Failed to parse VT number %s", t+3);
409 log_error("VT number invalid: %s", t+3);
413 return seat_active_vt_changed(s, vtnr);
416 int seat_start(Seat *s) {
423 LOG_MESSAGE_ID(SD_MESSAGE_SEAT_START),
425 LOG_MESSAGE("New seat %s.", s->id),
428 /* Initialize VT magic stuff */
429 #if 0 /// elogind does not support autospawning vts
430 seat_preallocate_vts(s);
433 /* Read current VT */
434 seat_read_active_vt(s);
441 seat_send_signal(s, true);
446 int seat_stop(Seat *s, bool force) {
453 LOG_MESSAGE_ID(SD_MESSAGE_SEAT_STOP),
455 LOG_MESSAGE("Removed seat %s.", s->id),
458 seat_stop_sessions(s, force);
460 unlink(s->state_file);
461 seat_add_to_gc_queue(s);
464 seat_send_signal(s, false);
471 int seat_stop_sessions(Seat *s, bool force) {
477 LIST_FOREACH(sessions_by_seat, session, s->sessions) {
478 k = session_stop(session, force);
486 void seat_evict_position(Seat *s, Session *session) {
488 unsigned int pos = session->position;
490 session->position = 0;
495 if (pos < s->position_count && s->positions[pos] == session) {
496 s->positions[pos] = NULL;
498 /* There might be another session claiming the same
499 * position (eg., during gdm->session transition), so let's look
500 * for it and set it on the free slot. */
501 LIST_FOREACH(sessions_by_seat, iter, s->sessions) {
502 if (iter->position == pos && session_get_state(iter) != SESSION_CLOSING) {
503 s->positions[pos] = iter;
510 void seat_claim_position(Seat *s, Session *session, unsigned int pos) {
511 /* with VTs, the position is always the same as the VTnr */
515 if (!GREEDY_REALLOC0(s->positions, s->position_count, pos + 1))
518 seat_evict_position(s, session);
520 session->position = pos;
522 s->positions[pos] = session;
525 static void seat_assign_position(Seat *s, Session *session) {
528 if (session->position > 0)
531 for (pos = 1; pos < s->position_count; ++pos)
532 if (!s->positions[pos])
535 seat_claim_position(s, session, pos);
538 int seat_attach_session(Seat *s, Session *session) {
541 assert(!session->seat);
543 if (!seat_has_vts(s) != !session->vtnr)
547 LIST_PREPEND(sessions_by_seat, s->sessions, session);
548 seat_assign_position(s, session);
550 seat_send_changed(s, "Sessions", NULL);
552 /* On seats with VTs, the VT logic defines which session is active. On
553 * seats without VTs, we automatically activate new sessions. */
554 if (!seat_has_vts(s))
555 seat_set_active(s, session);
560 void seat_complete_switch(Seat *s) {
565 /* if no session-switch is pending or if it got canceled, do nothing */
566 if (!s->pending_switch)
569 session = s->pending_switch;
570 s->pending_switch = NULL;
572 seat_set_active(s, session);
575 bool seat_has_vts(Seat *s) {
578 return seat_is_seat0(s) && s->manager->console_active_fd >= 0;
581 bool seat_is_seat0(Seat *s) {
584 return s->manager->seat0 == s;
587 bool seat_can_multi_session(Seat *s) {
590 return seat_has_vts(s);
593 bool seat_can_tty(Seat *s) {
596 return seat_has_vts(s);
599 bool seat_has_master_device(Seat *s) {
602 /* device list is ordered by "master" flag */
603 return !!s->devices && s->devices->master;
606 bool seat_can_graphical(Seat *s) {
609 return seat_has_master_device(s);
612 int seat_get_idle_hint(Seat *s, dual_timestamp *t) {
614 bool idle_hint = true;
615 dual_timestamp ts = DUAL_TIMESTAMP_NULL;
619 LIST_FOREACH(sessions_by_seat, session, s->sessions) {
623 ih = session_get_idle_hint(session, &k);
629 if (k.monotonic > ts.monotonic)
635 } else if (idle_hint) {
637 if (k.monotonic > ts.monotonic)
648 bool seat_check_gc(Seat *s, bool drop_not_started) {
651 if (drop_not_started && !s->started)
654 if (seat_is_seat0(s))
657 return seat_has_master_device(s);
660 void seat_add_to_gc_queue(Seat *s) {
666 LIST_PREPEND(gc_queue, s->manager->seat_gc_queue, s);
667 s->in_gc_queue = true;
670 static bool seat_name_valid_char(char c) {
672 (c >= 'a' && c <= 'z') ||
673 (c >= 'A' && c <= 'Z') ||
674 (c >= '0' && c <= '9') ||
679 bool seat_name_is_valid(const char *name) {
684 if (!startswith(name, "seat"))
690 for (p = name; *p; p++)
691 if (!seat_name_valid_char(*p))
694 if (strlen(name) > 255)