chiark / gitweb /
tree-wide: drop license boilerplate
[elogind.git] / src / login / logind-seat.c
1 /* SPDX-License-Identifier: LGPL-2.1+ */
2 /***
3   This file is part of systemd.
4
5   Copyright 2011 Lennart Poettering
6 ***/
7
8 #include <errno.h>
9 #include <fcntl.h>
10 #include <stdio_ext.h>
11 #include <string.h>
12 #include <unistd.h>
13
14 #include "sd-messages.h"
15
16 #include "alloc-util.h"
17 #include "fd-util.h"
18 #include "fileio.h"
19 #include "format-util.h"
20 #include "logind-acl.h"
21 #include "logind-seat.h"
22 #include "mkdir.h"
23 #include "parse-util.h"
24 #include "stdio-util.h"
25 #include "string-util.h"
26 #include "terminal-util.h"
27 #include "util.h"
28
29 Seat *seat_new(Manager *m, const char *id) {
30         Seat *s;
31
32         assert(m);
33         assert(id);
34
35         s = new0(Seat, 1);
36         if (!s)
37                 return NULL;
38
39         s->state_file = strappend("/run/systemd/seats/", id);
40         if (!s->state_file)
41                 return mfree(s);
42
43         s->id = basename(s->state_file);
44         s->manager = m;
45
46         if (hashmap_put(m->seats, s->id, s) < 0) {
47                 free(s->state_file);
48                 return mfree(s);
49         }
50
51         return s;
52 }
53
54 void seat_free(Seat *s) {
55         assert(s);
56
57         if (s->in_gc_queue)
58                 LIST_REMOVE(gc_queue, s->manager->seat_gc_queue, s);
59
60         while (s->sessions)
61                 session_free(s->sessions);
62
63         assert(!s->active);
64
65         while (s->devices)
66                 device_free(s->devices);
67
68         hashmap_remove(s->manager->seats, s->id);
69
70         free(s->positions);
71         free(s->state_file);
72         free(s);
73 }
74
75 int seat_save(Seat *s) {
76         _cleanup_free_ char *temp_path = NULL;
77         _cleanup_fclose_ FILE *f = NULL;
78         int r;
79
80         assert(s);
81
82         if (!s->started)
83                 return 0;
84
85         r = mkdir_safe_label("/run/systemd/seats", 0755, 0, 0, MKDIR_WARN_MODE);
86         if (r < 0)
87                 goto fail;
88
89         r = fopen_temporary(s->state_file, &f, &temp_path);
90         if (r < 0)
91                 goto fail;
92
93         (void) __fsetlocking(f, FSETLOCKING_BYCALLER);
94         (void) fchmod(fileno(f), 0644);
95
96         fprintf(f,
97                 "# This is private data. Do not parse.\n"
98                 "IS_SEAT0=%i\n"
99                 "CAN_MULTI_SESSION=%i\n"
100                 "CAN_TTY=%i\n"
101                 "CAN_GRAPHICAL=%i\n",
102                 seat_is_seat0(s),
103                 seat_can_multi_session(s),
104                 seat_can_tty(s),
105                 seat_can_graphical(s));
106
107         if (s->active) {
108                 assert(s->active->user);
109
110                 fprintf(f,
111                         "ACTIVE=%s\n"
112                         "ACTIVE_UID="UID_FMT"\n",
113                         s->active->id,
114                         s->active->user->uid);
115         }
116
117         if (s->sessions) {
118                 Session *i;
119
120                 fputs("SESSIONS=", f);
121                 LIST_FOREACH(sessions_by_seat, i, s->sessions) {
122                         fprintf(f,
123                                 "%s%c",
124                                 i->id,
125                                 i->sessions_by_seat_next ? ' ' : '\n');
126                 }
127
128                 fputs("UIDS=", f);
129                 LIST_FOREACH(sessions_by_seat, i, s->sessions)
130                         fprintf(f,
131                                 UID_FMT"%c",
132                                 i->user->uid,
133                                 i->sessions_by_seat_next ? ' ' : '\n');
134         }
135
136         r = fflush_and_check(f);
137         if (r < 0)
138                 goto fail;
139
140         if (rename(temp_path, s->state_file) < 0) {
141                 r = -errno;
142                 goto fail;
143         }
144
145         return 0;
146
147 fail:
148         (void) unlink(s->state_file);
149
150         if (temp_path)
151                 (void) unlink(temp_path);
152
153         return log_error_errno(r, "Failed to save seat data %s: %m", s->state_file);
154 }
155
156 int seat_load(Seat *s) {
157         assert(s);
158
159         /* There isn't actually anything to read here ... */
160
161         return 0;
162 }
163
164 #if 0 /// UNNEEDED by elogind
165 static int vt_allocate(unsigned int vtnr) {
166         char p[sizeof("/dev/tty") + DECIMAL_STR_MAX(unsigned int)];
167         _cleanup_close_ int fd = -1;
168
169         assert(vtnr >= 1);
170
171         xsprintf(p, "/dev/tty%u", vtnr);
172         fd = open_terminal(p, O_RDWR|O_NOCTTY|O_CLOEXEC);
173         if (fd < 0)
174                 return -errno;
175
176         return 0;
177 }
178
179 int seat_preallocate_vts(Seat *s) {
180         int r = 0;
181         unsigned i;
182
183         assert(s);
184         assert(s->manager);
185
186         log_debug("Preallocating VTs...");
187
188         if (s->manager->n_autovts <= 0)
189                 return 0;
190
191         if (!seat_has_vts(s))
192                 return 0;
193
194         for (i = 1; i <= s->manager->n_autovts; i++) {
195                 int q;
196
197                 q = vt_allocate(i);
198                 if (q < 0) {
199                         log_error_errno(q, "Failed to preallocate VT %u: %m", i);
200                         r = q;
201                 }
202         }
203
204         return r;
205 }
206 #endif // 0
207
208 int seat_apply_acls(Seat *s, Session *old_active) {
209         int r;
210
211         assert(s);
212
213         r = devnode_acl_all(s->manager->udev,
214                             s->id,
215                             false,
216                             !!old_active, old_active ? old_active->user->uid : 0,
217                             !!s->active, s->active ? s->active->user->uid : 0);
218
219         if (r < 0)
220                 log_error_errno(r, "Failed to apply ACLs: %m");
221
222         return r;
223 }
224
225 int seat_set_active(Seat *s, Session *session) {
226         Session *old_active;
227
228         assert(s);
229         assert(!session || session->seat == s);
230
231         if (session == s->active)
232                 return 0;
233
234         old_active = s->active;
235         s->active = session;
236
237         if (old_active) {
238                 session_device_pause_all(old_active);
239                 session_send_changed(old_active, "Active", NULL);
240         }
241
242         seat_apply_acls(s, old_active);
243
244         if (session && session->started) {
245                 session_send_changed(session, "Active", NULL);
246                 session_device_resume_all(session);
247         }
248
249         if (!session || session->started)
250                 seat_send_changed(s, "ActiveSession", NULL);
251
252         seat_save(s);
253
254         if (session) {
255                 session_save(session);
256                 user_save(session->user);
257         }
258
259         if (old_active) {
260                 session_save(old_active);
261                 if (!session || session->user != old_active->user)
262                         user_save(old_active->user);
263         }
264
265         return 0;
266 }
267
268 int seat_switch_to(Seat *s, unsigned int num) {
269         /* Public session positions skip 0 (there is only F1-F12). Maybe it
270          * will get reassigned in the future, so return error for now. */
271         if (num == 0)
272                 return -EINVAL;
273
274         if (num >= s->position_count || !s->positions[num]) {
275                 /* allow switching to unused VTs to trigger auto-activate */
276                 if (seat_has_vts(s) && num < 64)
277                         return chvt(num);
278
279                 return -EINVAL;
280         }
281
282         return session_activate(s->positions[num]);
283 }
284
285 int seat_switch_to_next(Seat *s) {
286         unsigned int start, i;
287
288         if (s->position_count == 0)
289                 return -EINVAL;
290
291         start = 1;
292         if (s->active && s->active->position > 0)
293                 start = s->active->position;
294
295         for (i = start + 1; i < s->position_count; ++i)
296                 if (s->positions[i])
297                         return session_activate(s->positions[i]);
298
299         for (i = 1; i < start; ++i)
300                 if (s->positions[i])
301                         return session_activate(s->positions[i]);
302
303         return -EINVAL;
304 }
305
306 int seat_switch_to_previous(Seat *s) {
307         unsigned int start, i;
308
309         if (s->position_count == 0)
310                 return -EINVAL;
311
312         start = 1;
313         if (s->active && s->active->position > 0)
314                 start = s->active->position;
315
316         for (i = start - 1; i > 0; --i)
317                 if (s->positions[i])
318                         return session_activate(s->positions[i]);
319
320         for (i = s->position_count - 1; i > start; --i)
321                 if (s->positions[i])
322                         return session_activate(s->positions[i]);
323
324         return -EINVAL;
325 }
326
327 int seat_active_vt_changed(Seat *s, unsigned int vtnr) {
328         Session *i, *new_active = NULL;
329         int r;
330
331         assert(s);
332         assert(vtnr >= 1);
333
334         if (!seat_has_vts(s))
335                 return -EINVAL;
336
337         log_debug("VT changed to %u", vtnr);
338
339         /* we might have earlier closing sessions on the same VT, so try to
340          * find a running one first */
341         LIST_FOREACH(sessions_by_seat, i, s->sessions)
342                 if (i->vtnr == vtnr && !i->stopping) {
343                         new_active = i;
344                         break;
345                 }
346
347         if (!new_active) {
348                 /* no running one? then we can't decide which one is the
349                  * active one, let the first one win */
350                 LIST_FOREACH(sessions_by_seat, i, s->sessions)
351                         if (i->vtnr == vtnr) {
352                                 new_active = i;
353                                 break;
354                         }
355         }
356
357         r = seat_set_active(s, new_active);
358 #if 0 /// elogind does not spawn autovt
359         manager_spawn_autovt(s->manager, vtnr);
360 #endif // 0
361
362         return r;
363 }
364
365 int seat_read_active_vt(Seat *s) {
366         char t[64];
367         ssize_t k;
368         unsigned int vtnr;
369         int r;
370
371         assert(s);
372
373         if (!seat_has_vts(s))
374                 return 0;
375
376         if (lseek(s->manager->console_active_fd, SEEK_SET, 0) < 0)
377                 return log_error_errno(errno, "lseek on console_active_fd failed: %m");
378
379         k = read(s->manager->console_active_fd, t, sizeof(t)-1);
380         if (k <= 0) {
381                 log_error("Failed to read current console: %s", k < 0 ? strerror(-errno) : "EOF");
382                 return k < 0 ? -errno : -EIO;
383         }
384
385         t[k] = 0;
386         truncate_nl(t);
387
388         if (!startswith(t, "tty")) {
389                 log_error("Hm, /sys/class/tty/tty0/active is badly formatted.");
390                 return -EIO;
391         }
392
393         r = safe_atou(t+3, &vtnr);
394         if (r < 0)
395                 return log_error_errno(r, "Failed to parse VT number \"%s\": %m", t+3);
396
397         if (!vtnr) {
398                 log_error("VT number invalid: %s", t+3);
399                 return -EIO;
400         }
401
402         return seat_active_vt_changed(s, vtnr);
403 }
404
405 int seat_start(Seat *s) {
406         assert(s);
407
408         if (s->started)
409                 return 0;
410
411         log_struct(LOG_INFO,
412                    "MESSAGE_ID=" SD_MESSAGE_SEAT_START_STR,
413                    "SEAT_ID=%s", s->id,
414                    LOG_MESSAGE("New seat %s.", s->id),
415                    NULL);
416
417         /* Initialize VT magic stuff */
418 #if 0 /// elogind does not support autospawning vts
419         seat_preallocate_vts(s);
420 #endif // 0
421
422         /* Read current VT */
423         seat_read_active_vt(s);
424
425         s->started = true;
426
427         /* Save seat data */
428         seat_save(s);
429
430         seat_send_signal(s, true);
431
432         return 0;
433 }
434
435 int seat_stop(Seat *s, bool force) {
436         int r = 0;
437
438         assert(s);
439
440         if (s->started)
441                 log_struct(LOG_INFO,
442                            "MESSAGE_ID=" SD_MESSAGE_SEAT_STOP_STR,
443                            "SEAT_ID=%s", s->id,
444                            LOG_MESSAGE("Removed seat %s.", s->id),
445                            NULL);
446
447         seat_stop_sessions(s, force);
448
449         unlink(s->state_file);
450         seat_add_to_gc_queue(s);
451
452         if (s->started)
453                 seat_send_signal(s, false);
454
455         s->started = false;
456
457         return r;
458 }
459
460 int seat_stop_sessions(Seat *s, bool force) {
461         Session *session;
462         int r = 0, k;
463
464         assert(s);
465
466         LIST_FOREACH(sessions_by_seat, session, s->sessions) {
467                 k = session_stop(session, force);
468                 if (k < 0)
469                         r = k;
470         }
471
472         return r;
473 }
474
475 void seat_evict_position(Seat *s, Session *session) {
476         Session *iter;
477         unsigned int pos = session->position;
478
479         session->position = 0;
480
481         if (pos == 0)
482                 return;
483
484         if (pos < s->position_count && s->positions[pos] == session) {
485                 s->positions[pos] = NULL;
486
487                 /* There might be another session claiming the same
488                  * position (eg., during gdm->session transition), so let's look
489                  * for it and set it on the free slot. */
490                 LIST_FOREACH(sessions_by_seat, iter, s->sessions) {
491                         if (iter->position == pos && session_get_state(iter) != SESSION_CLOSING) {
492                                 s->positions[pos] = iter;
493                                 break;
494                         }
495                 }
496         }
497 }
498
499 void seat_claim_position(Seat *s, Session *session, unsigned int pos) {
500         /* with VTs, the position is always the same as the VTnr */
501         if (seat_has_vts(s))
502                 pos = session->vtnr;
503
504         if (!GREEDY_REALLOC0(s->positions, s->position_count, pos + 1))
505                 return;
506
507         seat_evict_position(s, session);
508
509         session->position = pos;
510         if (pos > 0)
511                 s->positions[pos] = session;
512 }
513
514 static void seat_assign_position(Seat *s, Session *session) {
515         unsigned int pos;
516
517         if (session->position > 0)
518                 return;
519
520         for (pos = 1; pos < s->position_count; ++pos)
521                 if (!s->positions[pos])
522                         break;
523
524         seat_claim_position(s, session, pos);
525 }
526
527 int seat_attach_session(Seat *s, Session *session) {
528         assert(s);
529         assert(session);
530         assert(!session->seat);
531
532         if (!seat_has_vts(s) != !session->vtnr)
533                 return -EINVAL;
534
535         session->seat = s;
536         LIST_PREPEND(sessions_by_seat, s->sessions, session);
537         seat_assign_position(s, session);
538
539         /* On seats with VTs, the VT logic defines which session is active. On
540          * seats without VTs, we automatically activate new sessions. */
541         if (!seat_has_vts(s))
542                 seat_set_active(s, session);
543
544         return 0;
545 }
546
547 void seat_complete_switch(Seat *s) {
548         Session *session;
549
550         assert(s);
551
552         /* if no session-switch is pending or if it got canceled, do nothing */
553         if (!s->pending_switch)
554                 return;
555
556         session = TAKE_PTR(s->pending_switch);
557
558         seat_set_active(s, session);
559 }
560
561 bool seat_has_vts(Seat *s) {
562         assert(s);
563
564         return seat_is_seat0(s) && s->manager->console_active_fd >= 0;
565 }
566
567 bool seat_is_seat0(Seat *s) {
568         assert(s);
569
570         return s->manager->seat0 == s;
571 }
572
573 bool seat_can_multi_session(Seat *s) {
574         assert(s);
575
576         return seat_has_vts(s);
577 }
578
579 bool seat_can_tty(Seat *s) {
580         assert(s);
581
582         return seat_has_vts(s);
583 }
584
585 bool seat_has_master_device(Seat *s) {
586         assert(s);
587
588         /* device list is ordered by "master" flag */
589         return !!s->devices && s->devices->master;
590 }
591
592 bool seat_can_graphical(Seat *s) {
593         assert(s);
594
595         return seat_has_master_device(s);
596 }
597
598 int seat_get_idle_hint(Seat *s, dual_timestamp *t) {
599         Session *session;
600         bool idle_hint = true;
601         dual_timestamp ts = DUAL_TIMESTAMP_NULL;
602
603         assert(s);
604
605         LIST_FOREACH(sessions_by_seat, session, s->sessions) {
606                 dual_timestamp k;
607                 int ih;
608
609                 ih = session_get_idle_hint(session, &k);
610                 if (ih < 0)
611                         return ih;
612
613                 if (!ih) {
614                         if (!idle_hint) {
615                                 if (k.monotonic > ts.monotonic)
616                                         ts = k;
617                         } else {
618                                 idle_hint = false;
619                                 ts = k;
620                         }
621                 } else if (idle_hint) {
622
623                         if (k.monotonic > ts.monotonic)
624                                 ts = k;
625                 }
626         }
627
628         if (t)
629                 *t = ts;
630
631         return idle_hint;
632 }
633
634 bool seat_may_gc(Seat *s, bool drop_not_started) {
635         assert(s);
636
637         if (drop_not_started && !s->started)
638                 return true;
639
640         if (seat_is_seat0(s))
641                 return false;
642
643         return !seat_has_master_device(s);
644 }
645
646 void seat_add_to_gc_queue(Seat *s) {
647         assert(s);
648
649         if (s->in_gc_queue)
650                 return;
651
652         LIST_PREPEND(gc_queue, s->manager->seat_gc_queue, s);
653         s->in_gc_queue = true;
654 }
655
656 static bool seat_name_valid_char(char c) {
657         return
658                 (c >= 'a' && c <= 'z') ||
659                 (c >= 'A' && c <= 'Z') ||
660                 (c >= '0' && c <= '9') ||
661                 IN_SET(c, '-', '_');
662 }
663
664 bool seat_name_is_valid(const char *name) {
665         const char *p;
666
667         assert(name);
668
669         if (!startswith(name, "seat"))
670                 return false;
671
672         if (!name[4])
673                 return false;
674
675         for (p = name; *p; p++)
676                 if (!seat_name_valid_char(*p))
677                         return false;
678
679         if (strlen(name) > 255)
680                 return false;
681
682         return true;
683 }