chiark / gitweb /
core: add RemoveIPC= setting
[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) {
366                                 r = log_error_errno(errno, "Failed to mount per-user tmpfs directory %s: %m", u->runtime_path);
367                                 goto fail;
368                         }
369
370                         /* Lacking permissions, maybe
371                          * CAP_SYS_ADMIN-less container? In this case,
372                          * just use a normal directory. */
373
374                         r = chmod_and_chown(u->runtime_path, 0700, u->uid, u->gid);
375                         if (r < 0) {
376                                 log_error_errno(r, "Failed to change runtime directory ownership and mode: %m");
377                                 goto fail;
378                         }
379                 }
380
381                 r = label_fix(u->runtime_path, false, false);
382                 if (r < 0)
383                         log_warning_errno(r, "Failed to fix label of '%s', ignoring: %m", u->runtime_path);
384         }
385
386         return 0;
387
388 fail:
389         /* Try to clean up, but ignore errors */
390         (void) rmdir(u->runtime_path);
391         return r;
392 }
393
394 static int user_start_slice(User *u) {
395 #if 0 /// elogind can not ask systemd via dbus to start user services
396         _cleanup_(sd_bus_error_free) sd_bus_error error = SD_BUS_ERROR_NULL;
397         const char *description;
398         char *job;
399         int r;
400
401         assert(u);
402
403         u->slice_job = mfree(u->slice_job);
404         description = strjoina("User Slice of ", u->name);
405
406         r = manager_start_slice(
407                         u->manager,
408                         u->slice,
409                         description,
410                         "systemd-logind.service",
411                         "systemd-user-sessions.service",
412                         u->manager->user_tasks_max,
413                         &error,
414                         &job);
415         if (r >= 0)
416                 u->slice_job = job;
417         else if (!sd_bus_error_has_name(&error, BUS_ERROR_UNIT_EXISTS))
418                 /* we don't fail due to this, let's try to continue */
419                 log_error_errno(r, "Failed to start user slice %s, ignoring: %s (%s)",
420                                 u->slice, bus_error_message(&error, r), error.name);
421 #else
422         assert(u);
423
424         hashmap_put(u->manager->user_units, u->slice, u);
425 #endif // 0
426
427         return 0;
428 }
429
430 static int user_start_service(User *u) {
431 #if 0 /// elogind can not ask systemd via dbus to start user services
432         _cleanup_(sd_bus_error_free) sd_bus_error error = SD_BUS_ERROR_NULL;
433         char *job;
434         int r;
435
436         assert(u);
437
438         u->service_job = mfree(u->service_job);
439
440         r = manager_start_unit(
441                         u->manager,
442                         u->service,
443                         &error,
444                         &job);
445         if (r < 0) {
446                 /* we don't fail due to this, let's try to continue */
447                 log_error_errno(r, "Failed to start user service, ignoring: %s", bus_error_message(&error, r));
448         } else {
449                 u->service_job = job;
450         }
451 #else
452         assert(u);
453
454         hashmap_put(u->manager->user_units, u->service, u);
455 #endif // 0
456
457         return 0;
458 }
459
460 int user_start(User *u) {
461         int r;
462
463         assert(u);
464
465         if (u->started && !u->stopping)
466                 return 0;
467
468         /*
469          * If u->stopping is set, the user is marked for removal and the slice
470          * and service stop-jobs are queued. We have to clear that flag before
471          * queing the start-jobs again. If they succeed, the user object can be
472          * re-used just fine (pid1 takes care of job-ordering and proper
473          * restart), but if they fail, we want to force another user_stop() so
474          * possibly pending units are stopped.
475          * Note that we don't clear u->started, as we have no clue what state
476          * the user is in on failure here. Hence, we pretend the user is
477          * running so it will be properly taken down by GC. However, we clearly
478          * return an error from user_start() in that case, so no further
479          * reference to the user is taken.
480          */
481         u->stopping = false;
482
483         if (!u->started) {
484                 log_debug("New user %s logged in.", u->name);
485
486                 /* Make XDG_RUNTIME_DIR */
487                 r = user_mkdir_runtime_path(u);
488                 if (r < 0)
489                         return r;
490         }
491
492         /* Create cgroup */
493         r = user_start_slice(u);
494         if (r < 0)
495                 return r;
496
497         /* Save the user data so far, because pam_systemd will read the
498          * XDG_RUNTIME_DIR out of it while starting up systemd --user.
499          * We need to do user_save_internal() because we have not
500          * "officially" started yet. */
501         user_save_internal(u);
502
503         /* Spawn user systemd */
504         r = user_start_service(u);
505         if (r < 0)
506                 return r;
507
508         if (!u->started) {
509                 if (!dual_timestamp_is_set(&u->timestamp))
510                         dual_timestamp_get(&u->timestamp);
511                 user_send_signal(u, true);
512                 u->started = true;
513         }
514
515         /* Save new user data */
516         user_save(u);
517
518         return 0;
519 }
520
521 #if 0 /// UNNEEDED by elogind
522 static int user_stop_slice(User *u) {
523         _cleanup_(sd_bus_error_free) sd_bus_error error = SD_BUS_ERROR_NULL;
524         char *job;
525         int r;
526
527         assert(u);
528
529         r = manager_stop_unit(u->manager, u->slice, &error, &job);
530         if (r < 0) {
531                 log_error("Failed to stop user slice: %s", bus_error_message(&error, r));
532                 return r;
533         }
534
535         free(u->slice_job);
536         u->slice_job = job;
537
538         return r;
539 }
540
541 static int user_stop_service(User *u) {
542         _cleanup_(sd_bus_error_free) sd_bus_error error = SD_BUS_ERROR_NULL;
543         char *job;
544         int r;
545
546         assert(u);
547
548         r = manager_stop_unit(u->manager, u->service, &error, &job);
549         if (r < 0) {
550                 log_error("Failed to stop user service: %s", bus_error_message(&error, r));
551                 return r;
552         }
553
554         free(u->service_job);
555         u->service_job = job;
556
557         return r;
558 }
559 #endif // 0
560
561 static int user_remove_runtime_path(User *u) {
562         int r;
563
564         assert(u);
565
566         r = rm_rf(u->runtime_path, 0);
567         if (r < 0)
568                 log_error_errno(r, "Failed to remove runtime directory %s: %m", u->runtime_path);
569
570         /* Ignore cases where the directory isn't mounted, as that's
571          * quite possible, if we lacked the permissions to mount
572          * something */
573         r = umount2(u->runtime_path, MNT_DETACH);
574         if (r < 0 && errno != EINVAL && errno != ENOENT)
575                 log_error_errno(errno, "Failed to unmount user runtime directory %s: %m", u->runtime_path);
576
577         r = rm_rf(u->runtime_path, REMOVE_ROOT);
578         if (r < 0)
579                 log_error_errno(r, "Failed to remove runtime directory %s: %m", u->runtime_path);
580
581         return r;
582 }
583
584 int user_stop(User *u, bool force) {
585         Session *s;
586         int r = 0, k;
587         assert(u);
588
589         /* Stop jobs have already been queued */
590         if (u->stopping) {
591                 user_save(u);
592                 return r;
593         }
594
595         LIST_FOREACH(sessions_by_user, s, u->sessions) {
596                 k = session_stop(s, force);
597                 if (k < 0)
598                         r = k;
599         }
600
601         /* Kill systemd */
602 #if 0 /// elogind does not support service or slice jobs
603         k = user_stop_service(u);
604         if (k < 0)
605                 r = k;
606
607         /* Kill cgroup */
608         k = user_stop_slice(u);
609         if (k < 0)
610                 r = k;
611 #endif // 0
612
613         u->stopping = true;
614
615         user_save(u);
616
617         return r;
618 }
619
620 int user_finalize(User *u) {
621         Session *s;
622         int r = 0, k;
623
624         assert(u);
625
626         if (u->started)
627                 log_debug("User %s logged out.", u->name);
628
629         LIST_FOREACH(sessions_by_user, s, u->sessions) {
630                 k = session_finalize(s);
631                 if (k < 0)
632                         r = k;
633         }
634
635         /* Kill XDG_RUNTIME_DIR */
636         k = user_remove_runtime_path(u);
637         if (k < 0)
638                 r = k;
639
640         /* Clean SysV + POSIX IPC objects, but only if this is not a system user. Background: in many setups cronjobs
641          * are run in full PAM and thus logind sessions, even if the code run doesn't belong to actual users but to
642          * system components. Since enable RemoveIPC= globally for all users, we need to be a bit careful with such
643          * cases, as we shouldn't accidentally remove a system service's IPC objects while it is running, just because
644          * a cronjob running as the same user just finished. Hence: exclude system users generally from IPC clean-up,
645          * and do it only for normal users. */
646         if (u->manager->remove_ipc && u->uid > SYSTEM_UID_MAX) {
647                 k = clean_ipc_by_uid(u->uid);
648                 if (k < 0)
649                         r = k;
650         }
651
652         unlink(u->state_file);
653         user_add_to_gc_queue(u);
654
655         if (u->started) {
656                 user_send_signal(u, false);
657                 u->started = false;
658         }
659
660         return r;
661 }
662
663 int user_get_idle_hint(User *u, dual_timestamp *t) {
664         Session *s;
665         bool idle_hint = true;
666         dual_timestamp ts = DUAL_TIMESTAMP_NULL;
667
668         assert(u);
669
670         LIST_FOREACH(sessions_by_user, s, u->sessions) {
671                 dual_timestamp k;
672                 int ih;
673
674                 ih = session_get_idle_hint(s, &k);
675                 if (ih < 0)
676                         return ih;
677
678                 if (!ih) {
679                         if (!idle_hint) {
680                                 if (k.monotonic < ts.monotonic)
681                                         ts = k;
682                         } else {
683                                 idle_hint = false;
684                                 ts = k;
685                         }
686                 } else if (idle_hint) {
687
688                         if (k.monotonic > ts.monotonic)
689                                 ts = k;
690                 }
691         }
692
693         if (t)
694                 *t = ts;
695
696         return idle_hint;
697 }
698
699 int user_check_linger_file(User *u) {
700         _cleanup_free_ char *cc = NULL;
701         char *p = NULL;
702
703         cc = cescape(u->name);
704         if (!cc)
705                 return -ENOMEM;
706
707         p = strjoina("/var/lib/systemd/linger/", cc);
708
709         return access(p, F_OK) >= 0;
710 }
711
712 bool user_check_gc(User *u, bool drop_not_started) {
713         assert(u);
714
715         if (drop_not_started && !u->started)
716                 return false;
717
718         if (u->sessions)
719                 return true;
720
721         if (user_check_linger_file(u) > 0)
722                 return true;
723
724 #if 0 /// elogind neither supports service nor slice jobs
725         if (u->slice_job && manager_job_is_active(u->manager, u->slice_job))
726                 return true;
727
728         if (u->service_job && manager_job_is_active(u->manager, u->service_job))
729                 return true;
730 #endif // 0
731
732         return false;
733 }
734
735 void user_add_to_gc_queue(User *u) {
736         assert(u);
737
738         if (u->in_gc_queue)
739                 return;
740
741         LIST_PREPEND(gc_queue, u->manager->user_gc_queue, u);
742         u->in_gc_queue = true;
743 }
744
745 UserState user_get_state(User *u) {
746         Session *i;
747
748         assert(u);
749
750         if (u->stopping)
751                 return USER_CLOSING;
752
753 #if 0 /// elogind neither supports service nor slice jobs.
754         if (!u->started || u->slice_job || u->service_job)
755 #else
756         if (!u->started)
757 #endif // 0
758                 return USER_OPENING;
759
760         if (u->sessions) {
761                 bool all_closing = true;
762
763                 LIST_FOREACH(sessions_by_user, i, u->sessions) {
764                         SessionState state;
765
766                         state = session_get_state(i);
767                         if (state == SESSION_ACTIVE)
768                                 return USER_ACTIVE;
769                         if (state != SESSION_CLOSING)
770                                 all_closing = false;
771                 }
772
773                 return all_closing ? USER_CLOSING : USER_ONLINE;
774         }
775
776         if (user_check_linger_file(u) > 0)
777                 return USER_LINGERING;
778
779         return USER_CLOSING;
780 }
781
782 int user_kill(User *u, int signo) {
783 #if 0 /// Without systemd unit support, elogind has to rely on its session system
784         assert(u);
785
786         return manager_kill_unit(u->manager, u->slice, KILL_ALL, signo, NULL);
787 #else
788         Session *s;
789         int res = 0;
790
791         assert(u);
792
793         LIST_FOREACH(sessions_by_user, s, u->sessions) {
794                 int r = session_kill(s, KILL_ALL, signo);
795                 if (res == 0 && r < 0)
796                         res = r;
797         }
798
799         return res;
800 #endif // 0
801 }
802
803 static bool elect_display_filter(Session *s) {
804         /* Return true if the session is a candidate for the user’s ‘primary
805          * session’ or ‘display’. */
806         assert(s);
807
808         return (s->class == SESSION_USER && !s->stopping);
809 }
810
811 static int elect_display_compare(Session *s1, Session *s2) {
812         /* Indexed by SessionType. Lower numbers mean more preferred. */
813         const int type_ranks[_SESSION_TYPE_MAX] = {
814                 [SESSION_UNSPECIFIED] = 0,
815                 [SESSION_TTY] = -2,
816                 [SESSION_X11] = -3,
817                 [SESSION_WAYLAND] = -3,
818                 [SESSION_MIR] = -3,
819                 [SESSION_WEB] = -1,
820         };
821
822         /* Calculate the partial order relationship between s1 and s2,
823          * returning < 0 if s1 is preferred as the user’s ‘primary session’,
824          * 0 if s1 and s2 are equally preferred or incomparable, or > 0 if s2
825          * is preferred.
826          *
827          * s1 or s2 may be NULL. */
828         if (!s1 && !s2)
829                 return 0;
830
831         if ((s1 == NULL) != (s2 == NULL))
832                 return (s1 == NULL) - (s2 == NULL);
833
834         if (s1->stopping != s2->stopping)
835                 return s1->stopping - s2->stopping;
836
837         if ((s1->class != SESSION_USER) != (s2->class != SESSION_USER))
838                 return (s1->class != SESSION_USER) - (s2->class != SESSION_USER);
839
840         if ((s1->type == _SESSION_TYPE_INVALID) != (s2->type == _SESSION_TYPE_INVALID))
841                 return (s1->type == _SESSION_TYPE_INVALID) - (s2->type == _SESSION_TYPE_INVALID);
842
843         if (s1->type != s2->type)
844                 return type_ranks[s1->type] - type_ranks[s2->type];
845
846         return 0;
847 }
848
849 void user_elect_display(User *u) {
850         Session *s;
851
852         assert(u);
853
854         /* This elects a primary session for each user, which we call
855          * the "display". We try to keep the assignment stable, but we
856          * "upgrade" to better choices. */
857         log_debug("Electing new display for user %s", u->name);
858
859         LIST_FOREACH(sessions_by_user, s, u->sessions) {
860                 if (!elect_display_filter(s)) {
861                         log_debug("Ignoring session %s", s->id);
862                         continue;
863                 }
864
865                 if (elect_display_compare(s, u->display) < 0) {
866                         log_debug("Choosing session %s in preference to %s", s->id, u->display ? u->display->id : "-");
867                         u->display = s;
868                 }
869         }
870 }
871
872 static const char* const user_state_table[_USER_STATE_MAX] = {
873         [USER_OFFLINE] = "offline",
874         [USER_OPENING] = "opening",
875         [USER_LINGERING] = "lingering",
876         [USER_ONLINE] = "online",
877         [USER_ACTIVE] = "active",
878         [USER_CLOSING] = "closing"
879 };
880
881 DEFINE_STRING_TABLE_LOOKUP(user_state, UserState);
882
883 int config_parse_tmpfs_size(
884                 const char* unit,
885                 const char *filename,
886                 unsigned line,
887                 const char *section,
888                 unsigned section_line,
889                 const char *lvalue,
890                 int ltype,
891                 const char *rvalue,
892                 void *data,
893                 void *userdata) {
894
895         size_t *sz = data;
896         int r;
897
898         assert(filename);
899         assert(lvalue);
900         assert(rvalue);
901         assert(data);
902
903         /* First, try to parse as percentage */
904         r = parse_percent(rvalue);
905         if (r > 0 && r < 100)
906                 *sz = physical_memory_scale(r, 100U);
907         else {
908                 uint64_t k;
909
910                 /* If the passed argument was not a percentage, or out of range, parse as byte size */
911
912                 r = parse_size(rvalue, 1024, &k);
913                 if (r < 0 || k <= 0 || (uint64_t) (size_t) k != k) {
914                         log_syntax(unit, LOG_ERR, filename, line, r, "Failed to parse size value, ignoring: %s", rvalue);
915                         return 0;
916                 }
917
918                 *sz = PAGE_ALIGN((size_t) k);
919         }
920
921         return 0;
922 }
923
924 int config_parse_user_tasks_max(
925                 const char* unit,
926                 const char *filename,
927                 unsigned line,
928                 const char *section,
929                 unsigned section_line,
930                 const char *lvalue,
931                 int ltype,
932                 const char *rvalue,
933                 void *data,
934                 void *userdata) {
935
936         uint64_t *m = data;
937         uint64_t k;
938         int r;
939
940         assert(filename);
941         assert(lvalue);
942         assert(rvalue);
943         assert(data);
944
945         /* First, try to parse as percentage */
946         r = parse_percent(rvalue);
947         if (r >= 0)
948                 k = system_tasks_max_scale(r, 100U);
949         else {
950
951                 /* If the passed argument was not a percentage, or out of range, parse as byte size */
952
953                 r = safe_atou64(rvalue, &k);
954                 if (r < 0) {
955                         log_syntax(unit, LOG_ERR, filename, line, r, "Failed to parse tasks maximum, ignoring: %s", rvalue);
956                         return 0;
957                 }
958         }
959
960         if (k <= 0 || k >= UINT64_MAX) {
961                 log_syntax(unit, LOG_ERR, filename, line, 0, "Tasks maximum out of range, ignoring: %s", rvalue);
962                 return 0;
963         }
964
965         *m = k;
966         return 0;
967 }