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