chiark / gitweb /
Prep 234: Rename pam-systemd to pam-elogind in pam module init log message.
[elogind.git] / src / login / logind-user.c
1 /***
2   This file is part of systemd.
3
4   Copyright 2011 Lennart Poettering
5
6   systemd is free software; you can redistribute it and/or modify it
7   under the terms of the GNU Lesser General Public License as published by
8   the Free Software Foundation; either version 2.1 of the License, or
9   (at your option) any later version.
10
11   systemd is distributed in the hope that it will be useful, but
12   WITHOUT ANY WARRANTY; without even the implied warranty of
13   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14   Lesser General Public License for more details.
15
16   You should have received a copy of the GNU Lesser General Public License
17   along with systemd; If not, see <http://www.gnu.org/licenses/>.
18 ***/
19
20 #include <errno.h>
21 #include <string.h>
22 #include <sys/mount.h>
23 #include <unistd.h>
24
25 #include "alloc-util.h"
26 #include "bus-common-errors.h"
27 #include "bus-error.h"
28 #include "bus-util.h"
29 #include "cgroup-util.h"
30 #include "clean-ipc.h"
31 #include "conf-parser.h"
32 #include "escape.h"
33 #include "fd-util.h"
34 #include "fileio.h"
35 #include "format-util.h"
36 #include "fs-util.h"
37 #include "hashmap.h"
38 #include "label.h"
39 #include "logind-user.h"
40 #include "mkdir.h"
41 #include "mount-util.h"
42 #include "parse-util.h"
43 #include "path-util.h"
44 #include "rm-rf.h"
45 #include "smack-util.h"
46 //#include "special.h"
47 #include "stdio-util.h"
48 #include "string-table.h"
49 #include "unit-name.h"
50 #include "user-util.h"
51 #include "util.h"
52
53 #if 1 /// elogind uses a static value here
54 #  define SPECIAL_USER_SLICE "user.slice"
55 #endif // 1
56 int user_new(User **out, Manager *m, uid_t uid, gid_t gid, const char *name) {
57         _cleanup_(user_freep) User *u = NULL;
58         char lu[DECIMAL_STR_MAX(uid_t) + 1];
59         int r;
60
61         assert(out);
62         assert(m);
63         assert(name);
64
65         u = new0(User, 1);
66         if (!u)
67                 return -ENOMEM;
68
69         u->manager = m;
70         u->uid = uid;
71         u->gid = gid;
72         xsprintf(lu, UID_FMT, uid);
73
74         u->name = strdup(name);
75         if (!u->name)
76                 return -ENOMEM;
77
78         if (asprintf(&u->state_file, "/run/systemd/users/"UID_FMT, uid) < 0)
79                 return -ENOMEM;
80
81         if (asprintf(&u->runtime_path, "/run/user/"UID_FMT, uid) < 0)
82                 return -ENOMEM;
83
84         r = slice_build_subslice(SPECIAL_USER_SLICE, lu, &u->slice);
85         if (r < 0)
86                 return r;
87
88         r = unit_name_build("user", lu, ".service", &u->service);
89         if (r < 0)
90                 return r;
91
92         r = hashmap_put(m->users, UID_TO_PTR(uid), u);
93         if (r < 0)
94                 return r;
95
96         r = hashmap_put(m->user_units, u->slice, u);
97         if (r < 0)
98                 return r;
99
100         r = hashmap_put(m->user_units, u->service, u);
101         if (r < 0)
102                 return r;
103
104         *out = u;
105         u = NULL;
106         return 0;
107 }
108
109 User *user_free(User *u) {
110         if (!u)
111                 return NULL;
112
113         if (u->in_gc_queue)
114                 LIST_REMOVE(gc_queue, u->manager->user_gc_queue, u);
115
116         while (u->sessions)
117                 session_free(u->sessions);
118
119         if (u->service)
120                 hashmap_remove_value(u->manager->user_units, u->service, u);
121
122         if (u->slice)
123                 hashmap_remove_value(u->manager->user_units, u->slice, u);
124
125         hashmap_remove_value(u->manager->users, UID_TO_PTR(u->uid), u);
126
127 #if 0 /// elogind neither supports slice nor service jobs.
128         u->slice_job = mfree(u->slice_job);
129         u->service_job = mfree(u->service_job);
130 #endif // 0
131
132         u->service = mfree(u->service);
133         u->slice = mfree(u->slice);
134         u->runtime_path = mfree(u->runtime_path);
135         u->state_file = mfree(u->state_file);
136         u->name = mfree(u->name);
137
138         return mfree(u);
139 }
140
141 static int user_save_internal(User *u) {
142         _cleanup_free_ char *temp_path = NULL;
143         _cleanup_fclose_ FILE *f = NULL;
144         int r;
145
146         assert(u);
147         assert(u->state_file);
148
149         r = mkdir_safe_label("/run/systemd/users", 0755, 0, 0);
150         if (r < 0)
151                 goto fail;
152
153         r = fopen_temporary(u->state_file, &f, &temp_path);
154         if (r < 0)
155                 goto fail;
156
157         fchmod(fileno(f), 0644);
158
159         fprintf(f,
160                 "# This is private data. Do not parse.\n"
161                 "NAME=%s\n"
162                 "STATE=%s\n",
163                 u->name,
164                 user_state_to_string(user_get_state(u)));
165
166         /* LEGACY: no-one reads RUNTIME= anymore, drop it at some point */
167         if (u->runtime_path)
168                 fprintf(f, "RUNTIME=%s\n", u->runtime_path);
169
170 #if 0 /// elogind neither supports service nor slice jobs
171         if (u->service_job)
172                 fprintf(f, "SERVICE_JOB=%s\n", u->service_job);
173
174         if (u->slice_job)
175                 fprintf(f, "SLICE_JOB=%s\n", u->slice_job);
176 #endif // 0
177
178         if (u->display)
179                 fprintf(f, "DISPLAY=%s\n", u->display->id);
180
181         if (dual_timestamp_is_set(&u->timestamp))
182                 fprintf(f,
183                         "REALTIME="USEC_FMT"\n"
184                         "MONOTONIC="USEC_FMT"\n",
185                         u->timestamp.realtime,
186                         u->timestamp.monotonic);
187
188         if (u->sessions) {
189                 Session *i;
190                 bool first;
191
192                 fputs("SESSIONS=", f);
193                 first = true;
194                 LIST_FOREACH(sessions_by_user, i, u->sessions) {
195                         if (first)
196                                 first = false;
197                         else
198                                 fputc(' ', f);
199
200                         fputs(i->id, f);
201                 }
202
203                 fputs("\nSEATS=", f);
204                 first = true;
205                 LIST_FOREACH(sessions_by_user, i, u->sessions) {
206                         if (!i->seat)
207                                 continue;
208
209                         if (first)
210                                 first = false;
211                         else
212                                 fputc(' ', f);
213
214                         fputs(i->seat->id, f);
215                 }
216
217                 fputs("\nACTIVE_SESSIONS=", f);
218                 first = true;
219                 LIST_FOREACH(sessions_by_user, i, u->sessions) {
220                         if (!session_is_active(i))
221                                 continue;
222
223                         if (first)
224                                 first = false;
225                         else
226                                 fputc(' ', f);
227
228                         fputs(i->id, f);
229                 }
230
231                 fputs("\nONLINE_SESSIONS=", f);
232                 first = true;
233                 LIST_FOREACH(sessions_by_user, i, u->sessions) {
234                         if (session_get_state(i) == SESSION_CLOSING)
235                                 continue;
236
237                         if (first)
238                                 first = false;
239                         else
240                                 fputc(' ', f);
241
242                         fputs(i->id, f);
243                 }
244
245                 fputs("\nACTIVE_SEATS=", f);
246                 first = true;
247                 LIST_FOREACH(sessions_by_user, i, u->sessions) {
248                         if (!session_is_active(i) || !i->seat)
249                                 continue;
250
251                         if (first)
252                                 first = false;
253                         else
254                                 fputc(' ', f);
255
256                         fputs(i->seat->id, f);
257                 }
258
259                 fputs("\nONLINE_SEATS=", f);
260                 first = true;
261                 LIST_FOREACH(sessions_by_user, i, u->sessions) {
262                         if (session_get_state(i) == SESSION_CLOSING || !i->seat)
263                                 continue;
264
265                         if (first)
266                                 first = false;
267                         else
268                                 fputc(' ', f);
269
270                         fputs(i->seat->id, f);
271                 }
272                 fputc('\n', f);
273         }
274
275         r = fflush_and_check(f);
276         if (r < 0)
277                 goto fail;
278
279         if (rename(temp_path, u->state_file) < 0) {
280                 r = -errno;
281                 goto fail;
282         }
283
284         return 0;
285
286 fail:
287         (void) unlink(u->state_file);
288
289         if (temp_path)
290                 (void) unlink(temp_path);
291
292         return log_error_errno(r, "Failed to save user data %s: %m", u->state_file);
293 }
294
295 int user_save(User *u) {
296         assert(u);
297
298         if (!u->started)
299                 return 0;
300
301         return user_save_internal (u);
302 }
303
304 int user_load(User *u) {
305         _cleanup_free_ char *display = NULL, *realtime = NULL, *monotonic = NULL;
306         Session *s = NULL;
307         int r;
308
309         assert(u);
310
311         r = parse_env_file(u->state_file, NEWLINE,
312 #if 0 /// elogind neither supports service nor slice jobs
313                            "SERVICE_JOB", &u->service_job,
314                            "SLICE_JOB",   &u->slice_job,
315 #endif // 0
316                            "DISPLAY",     &display,
317                            "REALTIME",    &realtime,
318                            "MONOTONIC",   &monotonic,
319                            NULL);
320         if (r < 0) {
321                 if (r == -ENOENT)
322                         return 0;
323
324                 return log_error_errno(r, "Failed to read %s: %m", u->state_file);
325         }
326
327         if (display)
328                 s = hashmap_get(u->manager->sessions, display);
329
330         if (s && s->display && display_is_local(s->display))
331                 u->display = s;
332
333         if (realtime)
334                 timestamp_deserialize(realtime, &u->timestamp.realtime);
335         if (monotonic)
336                 timestamp_deserialize(monotonic, &u->timestamp.monotonic);
337
338         return r;
339 }
340
341 static int user_mkdir_runtime_path(User *u) {
342         int r;
343
344         assert(u);
345
346         r = mkdir_safe_label("/run/user", 0755, 0, 0);
347         if (r < 0)
348                 return log_error_errno(r, "Failed to create /run/user: %m");
349
350         if (path_is_mount_point(u->runtime_path, NULL, 0) <= 0) {
351                 _cleanup_free_ char *t = NULL;
352
353                 (void) mkdir_label(u->runtime_path, 0700);
354
355                 if (mac_smack_use())
356                         r = asprintf(&t, "mode=0700,smackfsroot=*,uid=" UID_FMT ",gid=" GID_FMT ",size=%zu", u->uid, u->gid, u->manager->runtime_dir_size);
357                 else
358                         r = asprintf(&t, "mode=0700,uid=" UID_FMT ",gid=" GID_FMT ",size=%zu", u->uid, u->gid, u->manager->runtime_dir_size);
359                 if (r < 0) {
360                         r = log_oom();
361                         goto fail;
362                 }
363
364                 r = mount("tmpfs", u->runtime_path, "tmpfs", MS_NODEV|MS_NOSUID, t);
365                 if (r < 0) {
366                         if (errno != EPERM && errno != EACCES) {
367                                 r = log_error_errno(errno, "Failed to mount per-user tmpfs directory %s: %m", u->runtime_path);
368                                 goto fail;
369                         }
370
371                         log_debug_errno(errno, "Failed to mount per-user tmpfs directory %s, assuming containerized execution, ignoring: %m", u->runtime_path);
372
373                         r = chmod_and_chown(u->runtime_path, 0700, u->uid, u->gid);
374                         if (r < 0) {
375                                 log_error_errno(r, "Failed to change runtime directory ownership and mode: %m");
376                                 goto fail;
377                         }
378                 }
379
380                 r = label_fix(u->runtime_path, false, false);
381                 if (r < 0)
382                         log_warning_errno(r, "Failed to fix label of '%s', ignoring: %m", u->runtime_path);
383         }
384
385         return 0;
386
387 fail:
388         /* Try to clean up, but ignore errors */
389         (void) rmdir(u->runtime_path);
390         return r;
391 }
392
393 static int user_start_slice(User *u) {
394 #if 0 /// elogind can not ask systemd via dbus to start user services
395         _cleanup_(sd_bus_error_free) sd_bus_error error = SD_BUS_ERROR_NULL;
396         const char *description;
397         char *job;
398         int r;
399
400         assert(u);
401
402         u->slice_job = mfree(u->slice_job);
403         description = strjoina("User Slice of ", u->name);
404
405         r = manager_start_slice(
406                         u->manager,
407                         u->slice,
408                         description,
409                         "systemd-logind.service",
410                         "systemd-user-sessions.service",
411                         u->manager->user_tasks_max,
412                         &error,
413                         &job);
414         if (r >= 0)
415                 u->slice_job = job;
416         else if (!sd_bus_error_has_name(&error, BUS_ERROR_UNIT_EXISTS))
417                 /* we don't fail due to this, let's try to continue */
418                 log_error_errno(r, "Failed to start user slice %s, ignoring: %s (%s)",
419                                 u->slice, bus_error_message(&error, r), error.name);
420 #else
421         assert(u);
422
423         hashmap_put(u->manager->user_units, u->slice, u);
424 #endif // 0
425
426         return 0;
427 }
428
429 static int user_start_service(User *u) {
430 #if 0 /// elogind can not ask systemd via dbus to start user services
431         _cleanup_(sd_bus_error_free) sd_bus_error error = SD_BUS_ERROR_NULL;
432         char *job;
433         int r;
434
435         assert(u);
436
437         u->service_job = mfree(u->service_job);
438
439         r = manager_start_unit(
440                         u->manager,
441                         u->service,
442                         &error,
443                         &job);
444         if (r < 0) {
445                 /* we don't fail due to this, let's try to continue */
446                 log_error_errno(r, "Failed to start user service, ignoring: %s", bus_error_message(&error, r));
447         } else {
448                 u->service_job = job;
449         }
450 #else
451         assert(u);
452
453         hashmap_put(u->manager->user_units, u->service, u);
454 #endif // 0
455
456         return 0;
457 }
458
459 int user_start(User *u) {
460         int r;
461
462         assert(u);
463
464         if (u->started && !u->stopping)
465                 return 0;
466
467         /*
468          * If u->stopping is set, the user is marked for removal and the slice
469          * and service stop-jobs are queued. We have to clear that flag before
470          * queing the start-jobs again. If they succeed, the user object can be
471          * re-used just fine (pid1 takes care of job-ordering and proper
472          * restart), but if they fail, we want to force another user_stop() so
473          * possibly pending units are stopped.
474          * Note that we don't clear u->started, as we have no clue what state
475          * the user is in on failure here. Hence, we pretend the user is
476          * running so it will be properly taken down by GC. However, we clearly
477          * return an error from user_start() in that case, so no further
478          * reference to the user is taken.
479          */
480         u->stopping = false;
481
482         if (!u->started) {
483                 log_debug("New user %s logged in.", u->name);
484
485                 /* Make XDG_RUNTIME_DIR */
486                 r = user_mkdir_runtime_path(u);
487                 if (r < 0)
488                         return r;
489         }
490
491         /* Create cgroup */
492         r = user_start_slice(u);
493         if (r < 0)
494                 return r;
495
496         /* Save the user data so far, because pam_systemd will read the
497          * XDG_RUNTIME_DIR out of it while starting up systemd --user.
498          * We need to do user_save_internal() because we have not
499          * "officially" started yet. */
500         user_save_internal(u);
501
502         /* Spawn user systemd */
503         r = user_start_service(u);
504         if (r < 0)
505                 return r;
506
507         if (!u->started) {
508                 if (!dual_timestamp_is_set(&u->timestamp))
509                         dual_timestamp_get(&u->timestamp);
510                 user_send_signal(u, true);
511                 u->started = true;
512         }
513
514         /* Save new user data */
515         user_save(u);
516
517         return 0;
518 }
519
520 #if 0 /// UNNEEDED by elogind
521 static int user_stop_slice(User *u) {
522         _cleanup_(sd_bus_error_free) sd_bus_error error = SD_BUS_ERROR_NULL;
523         char *job;
524         int r;
525
526         assert(u);
527
528         r = manager_stop_unit(u->manager, u->slice, &error, &job);
529         if (r < 0) {
530                 log_error("Failed to stop user slice: %s", bus_error_message(&error, r));
531                 return r;
532         }
533
534         free(u->slice_job);
535         u->slice_job = job;
536
537         return r;
538 }
539
540 static int user_stop_service(User *u) {
541         _cleanup_(sd_bus_error_free) sd_bus_error error = SD_BUS_ERROR_NULL;
542         char *job;
543         int r;
544
545         assert(u);
546
547         r = manager_stop_unit(u->manager, u->service, &error, &job);
548         if (r < 0) {
549                 log_error("Failed to stop user service: %s", bus_error_message(&error, r));
550                 return r;
551         }
552
553         free(u->service_job);
554         u->service_job = job;
555
556         return r;
557 }
558 #endif // 0
559
560 static int user_remove_runtime_path(User *u) {
561         int r;
562
563         assert(u);
564
565         r = rm_rf(u->runtime_path, 0);
566         if (r < 0)
567                 log_error_errno(r, "Failed to remove runtime directory %s: %m", u->runtime_path);
568
569         /* Ignore cases where the directory isn't mounted, as that's
570          * quite possible, if we lacked the permissions to mount
571          * something */
572         r = umount2(u->runtime_path, MNT_DETACH);
573         if (r < 0 && errno != EINVAL && errno != ENOENT)
574                 log_error_errno(errno, "Failed to unmount user runtime directory %s: %m", u->runtime_path);
575
576         r = rm_rf(u->runtime_path, REMOVE_ROOT);
577         if (r < 0)
578                 log_error_errno(r, "Failed to remove runtime directory %s: %m", u->runtime_path);
579
580         return r;
581 }
582
583 int user_stop(User *u, bool force) {
584         Session *s;
585         int r = 0, k;
586         assert(u);
587
588         /* Stop jobs have already been queued */
589         if (u->stopping) {
590                 user_save(u);
591                 return r;
592         }
593
594         LIST_FOREACH(sessions_by_user, s, u->sessions) {
595                 k = session_stop(s, force);
596                 if (k < 0)
597                         r = k;
598         }
599
600         /* Kill systemd */
601 #if 0 /// elogind does not support service or slice jobs
602         k = user_stop_service(u);
603         if (k < 0)
604                 r = k;
605
606         /* Kill cgroup */
607         k = user_stop_slice(u);
608         if (k < 0)
609                 r = k;
610 #endif // 0
611
612         u->stopping = true;
613
614         user_save(u);
615
616 #if 1 /// elogind must queue this user again
617         user_add_to_gc_queue(u);
618 #endif // 1
619
620         return r;
621 }
622
623 int user_finalize(User *u) {
624         Session *s;
625         int r = 0, k;
626
627         assert(u);
628
629         if (u->started)
630                 log_debug("User %s logged out.", u->name);
631
632         LIST_FOREACH(sessions_by_user, s, u->sessions) {
633                 k = session_finalize(s);
634                 if (k < 0)
635                         r = k;
636         }
637
638         /* Kill XDG_RUNTIME_DIR */
639         k = user_remove_runtime_path(u);
640         if (k < 0)
641                 r = k;
642
643         /* Clean SysV + POSIX IPC objects, but only if this is not a system user. Background: in many setups cronjobs
644          * are run in full PAM and thus logind sessions, even if the code run doesn't belong to actual users but to
645          * system components. Since enable RemoveIPC= globally for all users, we need to be a bit careful with such
646          * cases, as we shouldn't accidentally remove a system service's IPC objects while it is running, just because
647          * a cronjob running as the same user just finished. Hence: exclude system users generally from IPC clean-up,
648          * and do it only for normal users. */
649         if (u->manager->remove_ipc && u->uid > SYSTEM_UID_MAX) {
650                 k = clean_ipc_by_uid(u->uid);
651                 if (k < 0)
652                         r = k;
653         }
654
655         unlink(u->state_file);
656         user_add_to_gc_queue(u);
657
658         if (u->started) {
659                 user_send_signal(u, false);
660                 u->started = false;
661         }
662
663         return r;
664 }
665
666 int user_get_idle_hint(User *u, dual_timestamp *t) {
667         Session *s;
668         bool idle_hint = true;
669         dual_timestamp ts = DUAL_TIMESTAMP_NULL;
670
671         assert(u);
672
673         LIST_FOREACH(sessions_by_user, s, u->sessions) {
674                 dual_timestamp k;
675                 int ih;
676
677                 ih = session_get_idle_hint(s, &k);
678                 if (ih < 0)
679                         return ih;
680
681                 if (!ih) {
682                         if (!idle_hint) {
683                                 if (k.monotonic < ts.monotonic)
684                                         ts = k;
685                         } else {
686                                 idle_hint = false;
687                                 ts = k;
688                         }
689                 } else if (idle_hint) {
690
691                         if (k.monotonic > ts.monotonic)
692                                 ts = k;
693                 }
694         }
695
696         if (t)
697                 *t = ts;
698
699         return idle_hint;
700 }
701
702 int user_check_linger_file(User *u) {
703         _cleanup_free_ char *cc = NULL;
704         char *p = NULL;
705
706         cc = cescape(u->name);
707         if (!cc)
708                 return -ENOMEM;
709
710         p = strjoina("/var/lib/systemd/linger/", cc);
711
712         return access(p, F_OK) >= 0;
713 }
714
715 bool user_check_gc(User *u, bool drop_not_started) {
716         assert(u);
717
718         if (drop_not_started && !u->started)
719                 return false;
720
721         if (u->sessions)
722                 return true;
723
724         if (user_check_linger_file(u) > 0)
725                 return true;
726
727 #if 0 /// elogind neither supports service nor slice jobs
728         if (u->slice_job && manager_job_is_active(u->manager, u->slice_job))
729                 return true;
730
731         if (u->service_job && manager_job_is_active(u->manager, u->service_job))
732                 return true;
733 #endif // 0
734
735         return false;
736 }
737
738 void user_add_to_gc_queue(User *u) {
739         assert(u);
740
741         if (u->in_gc_queue)
742                 return;
743
744         LIST_PREPEND(gc_queue, u->manager->user_gc_queue, u);
745         u->in_gc_queue = true;
746 }
747
748 UserState user_get_state(User *u) {
749         Session *i;
750
751         assert(u);
752
753         if (u->stopping)
754                 return USER_CLOSING;
755
756 #if 0 /// elogind neither supports service nor slice jobs.
757         if (!u->started || u->slice_job || u->service_job)
758 #else
759         if (!u->started)
760 #endif // 0
761                 return USER_OPENING;
762
763         if (u->sessions) {
764                 bool all_closing = true;
765
766                 LIST_FOREACH(sessions_by_user, i, u->sessions) {
767                         SessionState state;
768
769                         state = session_get_state(i);
770                         if (state == SESSION_ACTIVE)
771                                 return USER_ACTIVE;
772                         if (state != SESSION_CLOSING)
773                                 all_closing = false;
774                 }
775
776                 return all_closing ? USER_CLOSING : USER_ONLINE;
777         }
778
779         if (user_check_linger_file(u) > 0)
780                 return USER_LINGERING;
781
782         return USER_CLOSING;
783 }
784
785 int user_kill(User *u, int signo) {
786 #if 0 /// Without systemd unit support, elogind has to rely on its session system
787         assert(u);
788
789         return manager_kill_unit(u->manager, u->slice, KILL_ALL, signo, NULL);
790 #else
791         Session *s;
792         int res = 0;
793
794         assert(u);
795
796         LIST_FOREACH(sessions_by_user, s, u->sessions) {
797                 int r = session_kill(s, KILL_ALL, signo);
798                 if (res == 0 && r < 0)
799                         res = r;
800         }
801
802         return res;
803 #endif // 0
804 }
805
806 static bool elect_display_filter(Session *s) {
807         /* Return true if the session is a candidate for the user’s ‘primary
808          * session’ or ‘display’. */
809         assert(s);
810
811         return (s->class == SESSION_USER && !s->stopping);
812 }
813
814 static int elect_display_compare(Session *s1, Session *s2) {
815         /* Indexed by SessionType. Lower numbers mean more preferred. */
816         const int type_ranks[_SESSION_TYPE_MAX] = {
817                 [SESSION_UNSPECIFIED] = 0,
818                 [SESSION_TTY] = -2,
819                 [SESSION_X11] = -3,
820                 [SESSION_WAYLAND] = -3,
821                 [SESSION_MIR] = -3,
822                 [SESSION_WEB] = -1,
823         };
824
825         /* Calculate the partial order relationship between s1 and s2,
826          * returning < 0 if s1 is preferred as the user’s ‘primary session’,
827          * 0 if s1 and s2 are equally preferred or incomparable, or > 0 if s2
828          * is preferred.
829          *
830          * s1 or s2 may be NULL. */
831         if (!s1 && !s2)
832                 return 0;
833
834         if ((s1 == NULL) != (s2 == NULL))
835                 return (s1 == NULL) - (s2 == NULL);
836
837         if (s1->stopping != s2->stopping)
838                 return s1->stopping - s2->stopping;
839
840         if ((s1->class != SESSION_USER) != (s2->class != SESSION_USER))
841                 return (s1->class != SESSION_USER) - (s2->class != SESSION_USER);
842
843         if ((s1->type == _SESSION_TYPE_INVALID) != (s2->type == _SESSION_TYPE_INVALID))
844                 return (s1->type == _SESSION_TYPE_INVALID) - (s2->type == _SESSION_TYPE_INVALID);
845
846         if (s1->type != s2->type)
847                 return type_ranks[s1->type] - type_ranks[s2->type];
848
849         return 0;
850 }
851
852 void user_elect_display(User *u) {
853         Session *s;
854
855         assert(u);
856
857         /* This elects a primary session for each user, which we call
858          * the "display". We try to keep the assignment stable, but we
859          * "upgrade" to better choices. */
860         log_debug("Electing new display for user %s", u->name);
861
862         LIST_FOREACH(sessions_by_user, s, u->sessions) {
863                 if (!elect_display_filter(s)) {
864                         log_debug("Ignoring session %s", s->id);
865                         continue;
866                 }
867
868                 if (elect_display_compare(s, u->display) < 0) {
869                         log_debug("Choosing session %s in preference to %s", s->id, u->display ? u->display->id : "-");
870                         u->display = s;
871                 }
872         }
873 }
874
875 static const char* const user_state_table[_USER_STATE_MAX] = {
876         [USER_OFFLINE] = "offline",
877         [USER_OPENING] = "opening",
878         [USER_LINGERING] = "lingering",
879         [USER_ONLINE] = "online",
880         [USER_ACTIVE] = "active",
881         [USER_CLOSING] = "closing"
882 };
883
884 DEFINE_STRING_TABLE_LOOKUP(user_state, UserState);
885
886 int config_parse_tmpfs_size(
887                 const char* unit,
888                 const char *filename,
889                 unsigned line,
890                 const char *section,
891                 unsigned section_line,
892                 const char *lvalue,
893                 int ltype,
894                 const char *rvalue,
895                 void *data,
896                 void *userdata) {
897
898         size_t *sz = data;
899         int r;
900
901         assert(filename);
902         assert(lvalue);
903         assert(rvalue);
904         assert(data);
905
906         /* First, try to parse as percentage */
907         r = parse_percent(rvalue);
908         if (r > 0 && r < 100)
909                 *sz = physical_memory_scale(r, 100U);
910         else {
911                 uint64_t k;
912
913                 /* If the passed argument was not a percentage, or out of range, parse as byte size */
914
915                 r = parse_size(rvalue, 1024, &k);
916                 if (r < 0 || k <= 0 || (uint64_t) (size_t) k != k) {
917                         log_syntax(unit, LOG_ERR, filename, line, r, "Failed to parse size value, ignoring: %s", rvalue);
918                         return 0;
919                 }
920
921                 *sz = PAGE_ALIGN((size_t) k);
922         }
923
924         return 0;
925 }
926
927 int config_parse_user_tasks_max(
928                 const char* unit,
929                 const char *filename,
930                 unsigned line,
931                 const char *section,
932                 unsigned section_line,
933                 const char *lvalue,
934                 int ltype,
935                 const char *rvalue,
936                 void *data,
937                 void *userdata) {
938
939         uint64_t *m = data;
940         uint64_t k;
941         int r;
942
943         assert(filename);
944         assert(lvalue);
945         assert(rvalue);
946         assert(data);
947
948         if (isempty(rvalue)) {
949                 *m = system_tasks_max_scale(DEFAULT_USER_TASKS_MAX_PERCENTAGE, 100U);
950                 return 0;
951         }
952
953         if (streq(rvalue, "infinity")) {
954                 *m = CGROUP_LIMIT_MAX;
955                 return 0;
956         }
957
958         /* Try to parse as percentage */
959         r = parse_percent(rvalue);
960         if (r >= 0)
961                 k = system_tasks_max_scale(r, 100U);
962         else {
963
964                 /* If the passed argument was not a percentage, or out of range, parse as byte size */
965
966                 r = safe_atou64(rvalue, &k);
967                 if (r < 0) {
968                         log_syntax(unit, LOG_ERR, filename, line, r, "Failed to parse tasks maximum, ignoring: %s", rvalue);
969                         return 0;
970                 }
971         }
972
973         if (k <= 0 || k >= UINT64_MAX) {
974                 log_syntax(unit, LOG_ERR, filename, line, 0, "Tasks maximum out of range, ignoring: %s", rvalue);
975                 return 0;
976         }
977
978         *m = k;
979         return 0;
980 }