]> git.ipfire.org Git - thirdparty/systemd.git/blame_incremental - src/login/pam_systemd.c
Revert "tests: add test for handling of background sessions"
[thirdparty/systemd.git] / src / login / pam_systemd.c
... / ...
CommitLineData
1/* SPDX-License-Identifier: LGPL-2.1-or-later */
2
3#include <endian.h>
4#include <errno.h>
5#include <fcntl.h>
6#include <pwd.h>
7#include <security/_pam_macros.h>
8#include <security/pam_ext.h>
9#include <security/pam_misc.h>
10#include <security/pam_modules.h>
11#include <security/pam_modutil.h>
12#include <sys/file.h>
13#include <sys/stat.h>
14#include <sys/sysmacros.h>
15#include <sys/types.h>
16#include <unistd.h>
17
18#include "alloc-util.h"
19#include "audit-util.h"
20#include "bus-common-errors.h"
21#include "bus-error.h"
22#include "bus-internal.h"
23#include "bus-locator.h"
24#include "cgroup-setup.h"
25#include "errno-util.h"
26#include "fd-util.h"
27#include "fileio.h"
28#include "format-util.h"
29#include "fs-util.h"
30#include "hostname-util.h"
31#include "locale-util.h"
32#include "login-util.h"
33#include "macro.h"
34#include "pam-util.h"
35#include "parse-util.h"
36#include "path-util.h"
37#include "percent-util.h"
38#include "process-util.h"
39#include "rlimit-util.h"
40#include "socket-util.h"
41#include "stdio-util.h"
42#include "strv.h"
43#include "terminal-util.h"
44#include "user-util.h"
45#include "userdb.h"
46
47#define LOGIN_SLOW_BUS_CALL_TIMEOUT_USEC (2*USEC_PER_MINUTE)
48
49static int parse_argv(
50 pam_handle_t *handle,
51 int argc, const char **argv,
52 const char **class,
53 const char **type,
54 const char **desktop,
55 bool *debug) {
56
57 unsigned i;
58
59 assert(argc >= 0);
60 assert(argc == 0 || argv);
61
62 for (i = 0; i < (unsigned) argc; i++) {
63 const char *p;
64
65 if ((p = startswith(argv[i], "class="))) {
66 if (class)
67 *class = p;
68
69 } else if ((p = startswith(argv[i], "type="))) {
70 if (type)
71 *type = p;
72
73 } else if ((p = startswith(argv[i], "desktop="))) {
74 if (desktop)
75 *desktop = p;
76
77 } else if (streq(argv[i], "debug")) {
78 if (debug)
79 *debug = true;
80
81 } else if ((p = startswith(argv[i], "debug="))) {
82 int k;
83
84 k = parse_boolean(p);
85 if (k < 0)
86 pam_syslog(handle, LOG_WARNING, "Failed to parse debug= argument, ignoring: %s", p);
87 else if (debug)
88 *debug = k;
89
90 } else
91 pam_syslog(handle, LOG_WARNING, "Unknown parameter '%s', ignoring", argv[i]);
92 }
93
94 return 0;
95}
96
97static int acquire_user_record(
98 pam_handle_t *handle,
99 UserRecord **ret_record) {
100
101 _cleanup_(user_record_unrefp) UserRecord *ur = NULL;
102 const char *username = NULL, *json = NULL;
103 _cleanup_free_ char *field = NULL;
104 int r;
105
106 assert(handle);
107
108 r = pam_get_user(handle, &username, NULL);
109 if (r != PAM_SUCCESS) {
110 pam_syslog(handle, LOG_ERR, "Failed to get user name: %s", pam_strerror(handle, r));
111 return r;
112 }
113
114 if (isempty(username)) {
115 pam_syslog(handle, LOG_ERR, "User name not valid.");
116 return PAM_SERVICE_ERR;
117 }
118
119 /* If pam_systemd_homed (or some other module) already acquired the user record we can reuse it
120 * here. */
121 field = strjoin("systemd-user-record-", username);
122 if (!field)
123 return pam_log_oom(handle);
124
125 r = pam_get_data(handle, field, (const void**) &json);
126 if (!IN_SET(r, PAM_SUCCESS, PAM_NO_MODULE_DATA)) {
127 pam_syslog(handle, LOG_ERR, "Failed to get PAM user record data: %s", pam_strerror(handle, r));
128 return r;
129 }
130 if (r == PAM_SUCCESS && json) {
131 _cleanup_(json_variant_unrefp) JsonVariant *v = NULL;
132
133 /* Parse cached record */
134 r = json_parse(json, JSON_PARSE_SENSITIVE, &v, NULL, NULL);
135 if (r < 0) {
136 pam_syslog(handle, LOG_ERR, "Failed to parse JSON user record: %s", strerror_safe(r));
137 return PAM_SERVICE_ERR;
138 }
139
140 ur = user_record_new();
141 if (!ur)
142 return pam_log_oom(handle);
143
144 r = user_record_load(ur, v, USER_RECORD_LOAD_REFUSE_SECRET|USER_RECORD_PERMISSIVE);
145 if (r < 0) {
146 pam_syslog(handle, LOG_ERR, "Failed to load user record: %s", strerror_safe(r));
147 return PAM_SERVICE_ERR;
148 }
149
150 /* Safety check if cached record actually matches what we are looking for */
151 if (!streq_ptr(username, ur->user_name)) {
152 pam_syslog(handle, LOG_ERR, "Acquired user record does not match user name.");
153 return PAM_SERVICE_ERR;
154 }
155 } else {
156 _cleanup_free_ char *formatted = NULL;
157
158 /* Request the record ourselves */
159 r = userdb_by_name(username, 0, &ur);
160 if (r < 0) {
161 pam_syslog(handle, LOG_ERR, "Failed to get user record: %s", strerror_safe(r));
162 return PAM_USER_UNKNOWN;
163 }
164
165 r = json_variant_format(ur->json, 0, &formatted);
166 if (r < 0) {
167 pam_syslog(handle, LOG_ERR, "Failed to format user JSON: %s", strerror_safe(r));
168 return PAM_SERVICE_ERR;
169 }
170
171 /* And cache it for everyone else */
172 r = pam_set_data(handle, field, formatted, pam_cleanup_free);
173 if (r < 0) {
174 pam_syslog(handle, LOG_ERR, "Failed to set PAM user record data '%s': %s",
175 field, pam_strerror(handle, r));
176 return r;
177 }
178
179 TAKE_PTR(formatted);
180 }
181
182 if (!uid_is_valid(ur->uid)) {
183 pam_syslog(handle, LOG_ERR, "Acquired user record does not have a UID.");
184 return PAM_SERVICE_ERR;
185 }
186
187 if (ret_record)
188 *ret_record = TAKE_PTR(ur);
189
190 return PAM_SUCCESS;
191}
192
193static bool display_is_local(const char *display) {
194 assert(display);
195
196 return
197 display[0] == ':' &&
198 ascii_isdigit(display[1]);
199}
200
201static int socket_from_display(const char *display) {
202 _cleanup_free_ char *f = NULL;
203 size_t k;
204 char *c;
205 union sockaddr_union sa;
206 socklen_t sa_len;
207 _cleanup_close_ int fd = -1;
208 int r;
209
210 assert(display);
211
212 if (!display_is_local(display))
213 return -EINVAL;
214
215 k = strspn(display+1, "0123456789");
216
217 /* Try abstract socket first. */
218 f = new(char, STRLEN("@/tmp/.X11-unix/X") + k + 1);
219 if (!f)
220 return -ENOMEM;
221
222 c = stpcpy(f, "@/tmp/.X11-unix/X");
223 memcpy(c, display+1, k);
224 c[k] = 0;
225
226 r = sockaddr_un_set_path(&sa.un, f);
227 if (r < 0)
228 return r;
229 sa_len = r;
230
231 fd = RET_NERRNO(socket(AF_UNIX, SOCK_STREAM|SOCK_CLOEXEC, 0));
232 if (fd < 0)
233 return fd;
234
235 r = RET_NERRNO(connect(fd, &sa.sa, sa_len));
236 if (r >= 0)
237 return TAKE_FD(fd);
238 if (r != -ECONNREFUSED)
239 return r;
240
241 /* Try also non-abstract socket. */
242 r = sockaddr_un_set_path(&sa.un, f + 1);
243 if (r < 0)
244 return r;
245 sa_len = r;
246
247 r = RET_NERRNO(connect(fd, &sa.sa, sa_len));
248 if (r >= 0)
249 return TAKE_FD(fd);
250 return r;
251}
252
253static int get_seat_from_display(const char *display, const char **seat, uint32_t *vtnr) {
254 _cleanup_free_ char *sys_path = NULL, *tty = NULL;
255 _cleanup_close_ int fd = -1;
256 struct ucred ucred;
257 int v, r;
258 dev_t display_ctty;
259
260 assert(display);
261 assert(vtnr);
262
263 /* We deduce the X11 socket from the display name, then use
264 * SO_PEERCRED to determine the X11 server process, ask for
265 * the controlling tty of that and if it's a VC then we know
266 * the seat and the virtual terminal. Sounds ugly, is only
267 * semi-ugly. */
268
269 fd = socket_from_display(display);
270 if (fd < 0)
271 return fd;
272
273 r = getpeercred(fd, &ucred);
274 if (r < 0)
275 return r;
276
277 r = get_ctty_devnr(ucred.pid, &display_ctty);
278 if (r < 0)
279 return r;
280
281 if (asprintf(&sys_path, "/sys/dev/char/%d:%d", major(display_ctty), minor(display_ctty)) < 0)
282 return -ENOMEM;
283 r = readlink_value(sys_path, &tty);
284 if (r < 0)
285 return r;
286
287 v = vtnr_from_tty(tty);
288 if (v < 0)
289 return v;
290 else if (v == 0)
291 return -ENOENT;
292
293 if (seat)
294 *seat = "seat0";
295 *vtnr = (uint32_t) v;
296
297 return 0;
298}
299
300static int export_legacy_dbus_address(
301 pam_handle_t *handle,
302 const char *runtime) {
303
304 const char *s;
305 _cleanup_free_ char *t = NULL;
306 int r = PAM_BUF_ERR;
307
308 /* We need to export $DBUS_SESSION_BUS_ADDRESS because various applications will not connect
309 * correctly to the bus without it. This setting matches what dbus.socket does for the user
310 * session using 'systemctl --user set-environment'. We want to have the same configuration
311 * in processes started from the PAM session.
312 *
313 * The setting of the address is guarded by the access() check because it is also possible to compile
314 * dbus without --enable-user-session, in which case this socket is not used, and
315 * $DBUS_SESSION_BUS_ADDRESS should not be set. An alternative approach would to not do the access()
316 * check here, and let applications try on their own, by using "unix:path=%s/bus;autolaunch:". But we
317 * expect the socket to be present by the time we do this check, so we can just as well check once
318 * here. */
319
320 s = strjoina(runtime, "/bus");
321 if (access(s, F_OK) < 0)
322 return PAM_SUCCESS;
323
324 if (asprintf(&t, DEFAULT_USER_BUS_ADDRESS_FMT, runtime) < 0)
325 return pam_log_oom(handle);
326
327 r = pam_misc_setenv(handle, "DBUS_SESSION_BUS_ADDRESS", t, 0);
328 if (r != PAM_SUCCESS) {
329 pam_syslog(handle, LOG_ERR, "Failed to set bus variable: %s", pam_strerror(handle, r));
330 return r;
331 }
332
333 return PAM_SUCCESS;
334}
335
336static int append_session_memory_max(pam_handle_t *handle, sd_bus_message *m, const char *limit) {
337 uint64_t val;
338 int r;
339
340 if (isempty(limit))
341 return PAM_SUCCESS;
342
343 if (streq(limit, "infinity")) {
344 r = sd_bus_message_append(m, "(sv)", "MemoryMax", "t", UINT64_MAX);
345 if (r < 0)
346 return pam_bus_log_create_error(handle, r);
347
348 return PAM_SUCCESS;
349 }
350
351 r = parse_permyriad(limit);
352 if (r >= 0) {
353 r = sd_bus_message_append(m, "(sv)", "MemoryMaxScale", "u", UINT32_SCALE_FROM_PERMYRIAD(r));
354 if (r < 0)
355 return pam_bus_log_create_error(handle, r);
356
357 return PAM_SUCCESS;
358 }
359
360 r = parse_size(limit, 1024, &val);
361 if (r >= 0) {
362 r = sd_bus_message_append(m, "(sv)", "MemoryMax", "t", val);
363 if (r < 0)
364 return pam_bus_log_create_error(handle, r);
365
366 return PAM_SUCCESS;
367 }
368
369 pam_syslog(handle, LOG_WARNING, "Failed to parse systemd.memory_max, ignoring: %s", limit);
370 return PAM_SUCCESS;
371}
372
373static int append_session_runtime_max_sec(pam_handle_t *handle, sd_bus_message *m, const char *limit) {
374 usec_t val;
375 int r;
376
377 /* No need to parse "infinity" here, it will be set by default later in scope_init() */
378 if (isempty(limit) || streq(limit, "infinity"))
379 return PAM_SUCCESS;
380
381 r = parse_sec(limit, &val);
382 if (r >= 0) {
383 r = sd_bus_message_append(m, "(sv)", "RuntimeMaxUSec", "t", (uint64_t) val);
384 if (r < 0)
385 return pam_bus_log_create_error(handle, r);
386 } else
387 pam_syslog(handle, LOG_WARNING, "Failed to parse systemd.runtime_max_sec: %s, ignoring.", limit);
388
389 return PAM_SUCCESS;
390}
391
392static int append_session_tasks_max(pam_handle_t *handle, sd_bus_message *m, const char *limit) {
393 uint64_t val;
394 int r;
395
396 /* No need to parse "infinity" here, it will be set unconditionally later in manager_start_scope() */
397 if (isempty(limit) || streq(limit, "infinity"))
398 return PAM_SUCCESS;
399
400 r = safe_atou64(limit, &val);
401 if (r >= 0) {
402 r = sd_bus_message_append(m, "(sv)", "TasksMax", "t", val);
403 if (r < 0)
404 return pam_bus_log_create_error(handle, r);
405 } else
406 pam_syslog(handle, LOG_WARNING, "Failed to parse systemd.tasks_max, ignoring: %s", limit);
407
408 return PAM_SUCCESS;
409}
410
411static int append_session_cg_weight(pam_handle_t *handle, sd_bus_message *m, const char *limit, const char *field) {
412 uint64_t val;
413 int r;
414
415 if (isempty(limit))
416 return PAM_SUCCESS;
417
418 r = cg_weight_parse(limit, &val);
419 if (r >= 0) {
420 r = sd_bus_message_append(m, "(sv)", field, "t", val);
421 if (r < 0)
422 return pam_bus_log_create_error(handle, r);
423 } else if (streq(field, "CPUWeight"))
424 pam_syslog(handle, LOG_WARNING, "Failed to parse systemd.cpu_weight, ignoring: %s", limit);
425 else
426 pam_syslog(handle, LOG_WARNING, "Failed to parse systemd.io_weight, ignoring: %s", limit);
427
428 return PAM_SUCCESS;
429}
430
431static const char* getenv_harder(pam_handle_t *handle, const char *key, const char *fallback) {
432 const char *v;
433
434 assert(handle);
435 assert(key);
436
437 /* Looks for an environment variable, preferably in the environment block associated with the
438 * specified PAM handle, falling back to the process' block instead. Why check both? Because we want
439 * to permit configuration of session properties from unit files that invoke PAM services, so that
440 * PAM services don't have to be reworked to set systemd-specific properties, but these properties
441 * can still be set from the unit file Environment= block. */
442
443 v = pam_getenv(handle, key);
444 if (!isempty(v))
445 return v;
446
447 /* We use secure_getenv() here, since we might get loaded into su/sudo, which are SUID. Ideally
448 * they'd clean up the environment before invoking foreign code (such as PAM modules), but alas they
449 * currently don't (to be precise, they clean up the environment they pass to their children, but
450 * not their own environ[]). */
451 v = secure_getenv(key);
452 if (!isempty(v))
453 return v;
454
455 return fallback;
456}
457
458static int update_environment(pam_handle_t *handle, const char *key, const char *value) {
459 int r;
460
461 assert(handle);
462 assert(key);
463
464 /* Updates the environment, but only if there's actually a value set. Also, log about errors */
465
466 if (isempty(value))
467 return PAM_SUCCESS;
468
469 r = pam_misc_setenv(handle, key, value, 0);
470 if (r != PAM_SUCCESS)
471 pam_syslog(handle, LOG_ERR, "Failed to set environment variable %s: %s", key, pam_strerror(handle, r));
472
473 return r;
474}
475
476static bool validate_runtime_directory(pam_handle_t *handle, const char *path, uid_t uid) {
477 struct stat st;
478
479 assert(handle);
480 assert(path);
481
482 /* Some extra paranoia: let's not set $XDG_RUNTIME_DIR if the directory we'd set it to isn't actually
483 * set up properly for us. This is supposed to provide a careful safety net for supporting su/sudo
484 * type transitions: in that case the UID changes, but the session and thus the user owning it
485 * doesn't change. Since the $XDG_RUNTIME_DIR lifecycle is bound to the session's user being logged
486 * in at least once we should be particularly careful when setting the environment variable, since
487 * otherwise we might end up setting $XDG_RUNTIME_DIR to some directory owned by the wrong user. */
488
489 if (!path_is_absolute(path)) {
490 pam_syslog(handle, LOG_ERR, "Provided runtime directory '%s' is not absolute.", path);
491 goto fail;
492 }
493
494 if (lstat(path, &st) < 0) {
495 pam_syslog(handle, LOG_ERR, "Failed to stat() runtime directory '%s': %s", path, strerror_safe(errno));
496 goto fail;
497 }
498
499 if (!S_ISDIR(st.st_mode)) {
500 pam_syslog(handle, LOG_ERR, "Runtime directory '%s' is not actually a directory.", path);
501 goto fail;
502 }
503
504 if (st.st_uid != uid) {
505 pam_syslog(handle, LOG_ERR, "Runtime directory '%s' is not owned by UID " UID_FMT ", as it should.", path, uid);
506 goto fail;
507 }
508
509 return true;
510
511fail:
512 pam_syslog(handle, LOG_WARNING, "Not setting $XDG_RUNTIME_DIR, as the directory is not in order.");
513 return false;
514}
515
516static int pam_putenv_and_log(pam_handle_t *handle, const char *e, bool debug) {
517 int r;
518
519 assert(handle);
520 assert(e);
521
522 r = pam_putenv(handle, e);
523 if (r != PAM_SUCCESS) {
524 pam_syslog(handle, LOG_ERR, "Failed to set PAM environment variable %s: %s", e, pam_strerror(handle, r));
525 return r;
526 }
527
528 if (debug)
529 pam_syslog(handle, LOG_DEBUG, "PAM environment variable %s set based on user record.", e);
530
531 return PAM_SUCCESS;
532}
533
534static int apply_user_record_settings(pam_handle_t *handle, UserRecord *ur, bool debug) {
535 int r;
536
537 assert(handle);
538 assert(ur);
539
540 if (ur->umask != MODE_INVALID) {
541 umask(ur->umask);
542
543 if (debug)
544 pam_syslog(handle, LOG_DEBUG, "Set user umask to %04o based on user record.", ur->umask);
545 }
546
547 STRV_FOREACH(i, ur->environment) {
548 _cleanup_free_ char *n = NULL;
549 const char *e;
550
551 assert_se(e = strchr(*i, '=')); /* environment was already validated while parsing JSON record, this thus must hold */
552
553 n = strndup(*i, e - *i);
554 if (!n)
555 return pam_log_oom(handle);
556
557 if (pam_getenv(handle, n)) {
558 if (debug)
559 pam_syslog(handle, LOG_DEBUG, "PAM environment variable $%s already set, not changing based on record.", *i);
560 continue;
561 }
562
563 r = pam_putenv_and_log(handle, *i, debug);
564 if (r != PAM_SUCCESS)
565 return r;
566 }
567
568 if (ur->email_address) {
569 if (pam_getenv(handle, "EMAIL")) {
570 if (debug)
571 pam_syslog(handle, LOG_DEBUG, "PAM environment variable $EMAIL already set, not changing based on user record.");
572 } else {
573 _cleanup_free_ char *joined = NULL;
574
575 joined = strjoin("EMAIL=", ur->email_address);
576 if (!joined)
577 return pam_log_oom(handle);
578
579 r = pam_putenv_and_log(handle, joined, debug);
580 if (r != PAM_SUCCESS)
581 return r;
582 }
583 }
584
585 if (ur->time_zone) {
586 if (pam_getenv(handle, "TZ")) {
587 if (debug)
588 pam_syslog(handle, LOG_DEBUG, "PAM environment variable $TZ already set, not changing based on user record.");
589 } else if (!timezone_is_valid(ur->time_zone, LOG_DEBUG)) {
590 if (debug)
591 pam_syslog(handle, LOG_DEBUG, "Time zone specified in user record is not valid locally, not setting $TZ.");
592 } else {
593 _cleanup_free_ char *joined = NULL;
594
595 joined = strjoin("TZ=:", ur->time_zone);
596 if (!joined)
597 return pam_log_oom(handle);
598
599 r = pam_putenv_and_log(handle, joined, debug);
600 if (r != PAM_SUCCESS)
601 return r;
602 }
603 }
604
605 if (ur->preferred_language) {
606 if (pam_getenv(handle, "LANG")) {
607 if (debug)
608 pam_syslog(handle, LOG_DEBUG, "PAM environment variable $LANG already set, not changing based on user record.");
609 } else if (locale_is_installed(ur->preferred_language) <= 0) {
610 if (debug)
611 pam_syslog(handle, LOG_DEBUG, "Preferred language specified in user record is not valid or not installed, not setting $LANG.");
612 } else {
613 _cleanup_free_ char *joined = NULL;
614
615 joined = strjoin("LANG=", ur->preferred_language);
616 if (!joined)
617 return pam_log_oom(handle);
618
619 r = pam_putenv_and_log(handle, joined, debug);
620 if (r != PAM_SUCCESS)
621 return r;
622 }
623 }
624
625 if (nice_is_valid(ur->nice_level)) {
626 if (nice(ur->nice_level) < 0)
627 pam_syslog(handle, LOG_ERR, "Failed to set nice level to %i, ignoring: %s", ur->nice_level, strerror_safe(errno));
628 else if (debug)
629 pam_syslog(handle, LOG_DEBUG, "Nice level set, based on user record.");
630 }
631
632 for (int rl = 0; rl < _RLIMIT_MAX; rl++) {
633
634 if (!ur->rlimits[rl])
635 continue;
636
637 r = setrlimit_closest(rl, ur->rlimits[rl]);
638 if (r < 0)
639 pam_syslog(handle, LOG_ERR, "Failed to set resource limit %s, ignoring: %s", rlimit_to_string(rl), strerror_safe(r));
640 else if (debug)
641 pam_syslog(handle, LOG_DEBUG, "Resource limit %s set, based on user record.", rlimit_to_string(rl));
642 }
643
644 return PAM_SUCCESS;
645}
646
647static int configure_runtime_directory(
648 pam_handle_t *handle,
649 UserRecord *ur,
650 const char *rt) {
651
652 int r;
653
654 assert(handle);
655 assert(ur);
656 assert(rt);
657
658 if (!validate_runtime_directory(handle, rt, ur->uid))
659 return PAM_SUCCESS;
660
661 r = pam_misc_setenv(handle, "XDG_RUNTIME_DIR", rt, 0);
662 if (r != PAM_SUCCESS) {
663 pam_syslog(handle, LOG_ERR, "Failed to set runtime dir: %s", pam_strerror(handle, r));
664 return r;
665 }
666
667 return export_legacy_dbus_address(handle, rt);
668}
669
670_public_ PAM_EXTERN int pam_sm_open_session(
671 pam_handle_t *handle,
672 int flags,
673 int argc, const char **argv) {
674
675 _cleanup_(sd_bus_error_free) sd_bus_error error = SD_BUS_ERROR_NULL;
676 _cleanup_(sd_bus_message_unrefp) sd_bus_message *m = NULL, *reply = NULL;
677 const char
678 *id, *object_path, *runtime_path,
679 *service = NULL,
680 *tty = NULL, *display = NULL,
681 *remote_user = NULL, *remote_host = NULL,
682 *seat = NULL,
683 *type = NULL, *class = NULL,
684 *class_pam = NULL, *type_pam = NULL, *cvtnr = NULL, *desktop = NULL, *desktop_pam = NULL,
685 *memory_max = NULL, *tasks_max = NULL, *cpu_weight = NULL, *io_weight = NULL, *runtime_max_sec = NULL;
686 _cleanup_(sd_bus_flush_close_unrefp) sd_bus *bus = NULL;
687 _cleanup_(user_record_unrefp) UserRecord *ur = NULL;
688 int session_fd = -1, existing, r;
689 bool debug = false, remote;
690 uint32_t vtnr = 0;
691 uid_t original_uid;
692
693 assert(handle);
694
695 if (parse_argv(handle,
696 argc, argv,
697 &class_pam,
698 &type_pam,
699 &desktop_pam,
700 &debug) < 0)
701 return PAM_SESSION_ERR;
702
703 if (debug)
704 pam_syslog(handle, LOG_DEBUG, "pam-systemd initializing");
705
706 r = acquire_user_record(handle, &ur);
707 if (r != PAM_SUCCESS)
708 return r;
709
710 /* Make most of this a NOP on non-logind systems */
711 if (!logind_running())
712 goto success;
713
714 /* Make sure we don't enter a loop by talking to
715 * systemd-logind when it is actually waiting for the
716 * background to finish start-up. If the service is
717 * "systemd-user" we simply set XDG_RUNTIME_DIR and
718 * leave. */
719
720 r = pam_get_item(handle, PAM_SERVICE, (const void**) &service);
721 if (!IN_SET(r, PAM_BAD_ITEM, PAM_SUCCESS)) {
722 pam_syslog(handle, LOG_ERR, "Failed to get PAM service: %s", pam_strerror(handle, r));
723 return r;
724 }
725 if (streq_ptr(service, "systemd-user")) {
726 char rt[STRLEN("/run/user/") + DECIMAL_STR_MAX(uid_t)];
727
728 xsprintf(rt, "/run/user/"UID_FMT, ur->uid);
729 r = configure_runtime_directory(handle, ur, rt);
730 if (r != PAM_SUCCESS)
731 return r;
732
733 goto success;
734 }
735
736 /* Otherwise, we ask logind to create a session for us */
737
738 r = pam_get_item(handle, PAM_XDISPLAY, (const void**) &display);
739 if (!IN_SET(r, PAM_BAD_ITEM, PAM_SUCCESS)) {
740 pam_syslog(handle, LOG_ERR, "Failed to get PAM XDISPLAY: %s", pam_strerror(handle, r));
741 return r;
742 }
743 r = pam_get_item(handle, PAM_TTY, (const void**) &tty);
744 if (!IN_SET(r, PAM_BAD_ITEM, PAM_SUCCESS)) {
745 pam_syslog(handle, LOG_ERR, "Failed to get PAM TTY: %s", pam_strerror(handle, r));
746 return r;
747 }
748 r = pam_get_item(handle, PAM_RUSER, (const void**) &remote_user);
749 if (!IN_SET(r, PAM_BAD_ITEM, PAM_SUCCESS)) {
750 pam_syslog(handle, LOG_ERR, "Failed to get PAM RUSER: %s", pam_strerror(handle, r));
751 return r;
752 }
753 r = pam_get_item(handle, PAM_RHOST, (const void**) &remote_host);
754 if (!IN_SET(r, PAM_BAD_ITEM, PAM_SUCCESS)) {
755 pam_syslog(handle, LOG_ERR, "Failed to get PAM RHOST: %s", pam_strerror(handle, r));
756 return r;
757 }
758
759 seat = getenv_harder(handle, "XDG_SEAT", NULL);
760 cvtnr = getenv_harder(handle, "XDG_VTNR", NULL);
761 type = getenv_harder(handle, "XDG_SESSION_TYPE", type_pam);
762 class = getenv_harder(handle, "XDG_SESSION_CLASS", class_pam);
763 desktop = getenv_harder(handle, "XDG_SESSION_DESKTOP", desktop_pam);
764
765 tty = strempty(tty);
766
767 if (strchr(tty, ':')) {
768 /* A tty with a colon is usually an X11 display, placed there to show up in utmp. We rearrange things
769 * and don't pretend that an X display was a tty. */
770 if (isempty(display))
771 display = tty;
772 tty = NULL;
773
774 } else if (streq(tty, "cron")) {
775 /* cron is setting PAM_TTY to "cron" for some reason (the commit carries no information why, but
776 * probably because it wants to set it to something as pam_time/pam_access/… require PAM_TTY to be set
777 * (as they otherwise even try to update it!) — but cron doesn't actually allocate a TTY for its forked
778 * off processes.) */
779 type = "unspecified";
780 class = "background";
781 tty = NULL;
782
783 } else if (streq(tty, "ssh")) {
784 /* ssh has been setting PAM_TTY to "ssh" (for the same reason as cron does this, see above. For further
785 * details look for "PAM_TTY_KLUDGE" in the openssh sources). */
786 type ="tty";
787 class = "user";
788 tty = NULL; /* This one is particularly sad, as this means that ssh sessions — even though usually
789 * associated with a pty — won't be tracked by their tty in logind. This is because ssh
790 * does the PAM session registration early for new connections, and registers a pty only
791 * much later (this is because it doesn't know yet if it needs one at all, as whether to
792 * register a pty or not is negotiated much later in the protocol). */
793 } else if (streq(tty, "systemd")) {
794 if (isempty(class))
795 class = "user";
796 tty = NULL;
797 } else
798 /* Chop off leading /dev prefix that some clients specify, but others do not. */
799 tty = skip_dev_prefix(tty);
800
801 /* If this fails vtnr will be 0, that's intended */
802 if (!isempty(cvtnr))
803 (void) safe_atou32(cvtnr, &vtnr);
804
805 if (!isempty(display) && !vtnr) {
806 if (isempty(seat))
807 (void) get_seat_from_display(display, &seat, &vtnr);
808 else if (streq(seat, "seat0"))
809 (void) get_seat_from_display(display, NULL, &vtnr);
810 }
811
812 if (seat && !streq(seat, "seat0") && vtnr != 0) {
813 if (debug)
814 pam_syslog(handle, LOG_DEBUG, "Ignoring vtnr %"PRIu32" for %s which is not seat0", vtnr, seat);
815 vtnr = 0;
816 }
817
818 if (isempty(type))
819 type = !isempty(display) ? "x11" :
820 !isempty(tty) ? "tty" : "unspecified";
821
822 if (isempty(class))
823 class = streq(type, "unspecified") ? "background" : "user";
824
825 remote = !isempty(remote_host) && !is_localhost(remote_host);
826
827 r = pam_get_data(handle, "systemd.memory_max", (const void **)&memory_max);
828 if (!IN_SET(r, PAM_SUCCESS, PAM_NO_MODULE_DATA)) {
829 pam_syslog(handle, LOG_ERR, "Failed to get PAM systemd.memory_max data: %s", pam_strerror(handle, r));
830 return r;
831 }
832 r = pam_get_data(handle, "systemd.tasks_max", (const void **)&tasks_max);
833 if (!IN_SET(r, PAM_SUCCESS, PAM_NO_MODULE_DATA)) {
834 pam_syslog(handle, LOG_ERR, "Failed to get PAM systemd.tasks_max data: %s", pam_strerror(handle, r));
835 return r;
836 }
837 r = pam_get_data(handle, "systemd.cpu_weight", (const void **)&cpu_weight);
838 if (!IN_SET(r, PAM_SUCCESS, PAM_NO_MODULE_DATA)) {
839 pam_syslog(handle, LOG_ERR, "Failed to get PAM systemd.cpu_weight data: %s", pam_strerror(handle, r));
840 return r;
841 }
842 r = pam_get_data(handle, "systemd.io_weight", (const void **)&io_weight);
843 if (!IN_SET(r, PAM_SUCCESS, PAM_NO_MODULE_DATA)) {
844 pam_syslog(handle, LOG_ERR, "Failed to get PAM systemd.io_weight data: %s", pam_strerror(handle, r));
845 return r;
846 }
847 r = pam_get_data(handle, "systemd.runtime_max_sec", (const void **)&runtime_max_sec);
848 if (!IN_SET(r, PAM_SUCCESS, PAM_NO_MODULE_DATA)) {
849 pam_syslog(handle, LOG_ERR, "Failed to get PAM systemd.runtime_max_sec data: %s", pam_strerror(handle, r));
850 return r;
851 }
852
853 /* Talk to logind over the message bus */
854
855 r = pam_acquire_bus_connection(handle, &bus);
856 if (r != PAM_SUCCESS)
857 return r;
858
859 if (debug) {
860 pam_syslog(handle, LOG_DEBUG, "Asking logind to create session: "
861 "uid="UID_FMT" pid="PID_FMT" service=%s type=%s class=%s desktop=%s seat=%s vtnr=%"PRIu32" tty=%s display=%s remote=%s remote_user=%s remote_host=%s",
862 ur->uid, getpid_cached(),
863 strempty(service),
864 type, class, strempty(desktop),
865 strempty(seat), vtnr, strempty(tty), strempty(display),
866 yes_no(remote), strempty(remote_user), strempty(remote_host));
867 pam_syslog(handle, LOG_DEBUG, "Session limits: "
868 "memory_max=%s tasks_max=%s cpu_weight=%s io_weight=%s runtime_max_sec=%s",
869 strna(memory_max), strna(tasks_max), strna(cpu_weight), strna(io_weight), strna(runtime_max_sec));
870 }
871
872 r = bus_message_new_method_call(bus, &m, bus_login_mgr, "CreateSession");
873 if (r < 0)
874 return pam_bus_log_create_error(handle, r);
875
876 r = sd_bus_message_append(m, "uusssssussbss",
877 (uint32_t) ur->uid,
878 0,
879 service,
880 type,
881 class,
882 desktop,
883 seat,
884 vtnr,
885 tty,
886 display,
887 remote,
888 remote_user,
889 remote_host);
890 if (r < 0)
891 return pam_bus_log_create_error(handle, r);
892
893 r = sd_bus_message_open_container(m, 'a', "(sv)");
894 if (r < 0)
895 return pam_bus_log_create_error(handle, r);
896
897 r = append_session_memory_max(handle, m, memory_max);
898 if (r != PAM_SUCCESS)
899 return r;
900
901 r = append_session_runtime_max_sec(handle, m, runtime_max_sec);
902 if (r != PAM_SUCCESS)
903 return r;
904
905 r = append_session_tasks_max(handle, m, tasks_max);
906 if (r != PAM_SUCCESS)
907 return r;
908
909 r = append_session_cg_weight(handle, m, cpu_weight, "CPUWeight");
910 if (r != PAM_SUCCESS)
911 return r;
912
913 r = append_session_cg_weight(handle, m, io_weight, "IOWeight");
914 if (r != PAM_SUCCESS)
915 return r;
916
917 r = sd_bus_message_close_container(m);
918 if (r < 0)
919 return pam_bus_log_create_error(handle, r);
920
921 r = sd_bus_call(bus, m, LOGIN_SLOW_BUS_CALL_TIMEOUT_USEC, &error, &reply);
922 if (r < 0) {
923 if (sd_bus_error_has_name(&error, BUS_ERROR_SESSION_BUSY)) {
924 if (debug)
925 pam_syslog(handle, LOG_DEBUG, "Not creating session: %s", bus_error_message(&error, r));
926
927 /* We are already in a session, don't do anything */
928 goto success;
929 } else {
930 pam_syslog(handle, LOG_ERR, "Failed to create session: %s", bus_error_message(&error, r));
931 return PAM_SESSION_ERR;
932 }
933 }
934
935 r = sd_bus_message_read(reply,
936 "soshusub",
937 &id,
938 &object_path,
939 &runtime_path,
940 &session_fd,
941 &original_uid,
942 &seat,
943 &vtnr,
944 &existing);
945 if (r < 0)
946 return pam_bus_log_parse_error(handle, r);
947
948 if (debug)
949 pam_syslog(handle, LOG_DEBUG, "Reply from logind: "
950 "id=%s object_path=%s runtime_path=%s session_fd=%d seat=%s vtnr=%u original_uid=%u",
951 id, object_path, runtime_path, session_fd, seat, vtnr, original_uid);
952
953 r = update_environment(handle, "XDG_SESSION_ID", id);
954 if (r != PAM_SUCCESS)
955 return r;
956
957 if (original_uid == ur->uid) {
958 /* Don't set $XDG_RUNTIME_DIR if the user we now authenticated for does not match the
959 * original user of the session. We do this in order not to result in privileged apps
960 * clobbering the runtime directory unnecessarily. */
961
962 r = configure_runtime_directory(handle, ur, runtime_path);
963 if (r != PAM_SUCCESS)
964 return r;
965 }
966
967 /* Most likely we got the session/type/class from environment variables, but might have gotten the data
968 * somewhere else (for example PAM module parameters). Let's now update the environment variables, so that this
969 * data is inherited into the session processes, and programs can rely on them to be initialized. */
970
971 r = update_environment(handle, "XDG_SESSION_TYPE", type);
972 if (r != PAM_SUCCESS)
973 return r;
974
975 r = update_environment(handle, "XDG_SESSION_CLASS", class);
976 if (r != PAM_SUCCESS)
977 return r;
978
979 r = update_environment(handle, "XDG_SESSION_DESKTOP", desktop);
980 if (r != PAM_SUCCESS)
981 return r;
982
983 r = update_environment(handle, "XDG_SEAT", seat);
984 if (r != PAM_SUCCESS)
985 return r;
986
987 if (vtnr > 0) {
988 char buf[DECIMAL_STR_MAX(vtnr)];
989 sprintf(buf, "%u", vtnr);
990
991 r = update_environment(handle, "XDG_VTNR", buf);
992 if (r != PAM_SUCCESS)
993 return r;
994 }
995
996 r = pam_set_data(handle, "systemd.existing", INT_TO_PTR(!!existing), NULL);
997 if (r != PAM_SUCCESS) {
998 pam_syslog(handle, LOG_ERR, "Failed to install existing flag: %s", pam_strerror(handle, r));
999 return r;
1000 }
1001
1002 if (session_fd >= 0) {
1003 session_fd = fcntl(session_fd, F_DUPFD_CLOEXEC, 3);
1004 if (session_fd < 0) {
1005 pam_syslog(handle, LOG_ERR, "Failed to dup session fd: %m");
1006 return PAM_SESSION_ERR;
1007 }
1008
1009 r = pam_set_data(handle, "systemd.session-fd", FD_TO_PTR(session_fd), NULL);
1010 if (r != PAM_SUCCESS) {
1011 pam_syslog(handle, LOG_ERR, "Failed to install session fd: %s", pam_strerror(handle, r));
1012 safe_close(session_fd);
1013 return r;
1014 }
1015 }
1016
1017success:
1018 r = apply_user_record_settings(handle, ur, debug);
1019 if (r != PAM_SUCCESS)
1020 return r;
1021
1022 /* Let's release the D-Bus connection, after all the session might live quite a long time, and we are
1023 * not going to use the bus connection in that time, so let's better close before the daemon kicks us
1024 * off because we are not processing anything. */
1025 (void) pam_release_bus_connection(handle);
1026 return PAM_SUCCESS;
1027}
1028
1029_public_ PAM_EXTERN int pam_sm_close_session(
1030 pam_handle_t *handle,
1031 int flags,
1032 int argc, const char **argv) {
1033
1034 const void *existing = NULL;
1035 bool debug = false;
1036 const char *id;
1037 int r;
1038
1039 assert(handle);
1040
1041 if (parse_argv(handle,
1042 argc, argv,
1043 NULL,
1044 NULL,
1045 NULL,
1046 &debug) < 0)
1047 return PAM_SESSION_ERR;
1048
1049 if (debug)
1050 pam_syslog(handle, LOG_DEBUG, "pam-systemd shutting down");
1051
1052 /* Only release session if it wasn't pre-existing when we
1053 * tried to create it */
1054 r = pam_get_data(handle, "systemd.existing", &existing);
1055 if (!IN_SET(r, PAM_SUCCESS, PAM_NO_MODULE_DATA)) {
1056 pam_syslog(handle, LOG_ERR, "Failed to get PAM systemd.existing data: %s", pam_strerror(handle, r));
1057 return r;
1058 }
1059
1060 id = pam_getenv(handle, "XDG_SESSION_ID");
1061 if (id && !existing) {
1062 _cleanup_(sd_bus_error_free) sd_bus_error error = SD_BUS_ERROR_NULL;
1063 _cleanup_(sd_bus_flush_close_unrefp) sd_bus *bus = NULL;
1064
1065 /* Before we go and close the FIFO we need to tell logind that this is a clean session
1066 * shutdown, so that it doesn't just go and slaughter us immediately after closing the fd */
1067
1068 r = pam_acquire_bus_connection(handle, &bus);
1069 if (r != PAM_SUCCESS)
1070 return r;
1071
1072 r = bus_call_method(bus, bus_login_mgr, "ReleaseSession", &error, NULL, "s", id);
1073 if (r < 0) {
1074 pam_syslog(handle, LOG_ERR, "Failed to release session: %s", bus_error_message(&error, r));
1075 return PAM_SESSION_ERR;
1076 }
1077 }
1078
1079 /* Note that we are knowingly leaking the FIFO fd here. This way, logind can watch us die. If we
1080 * closed it here it would not have any clue when that is completed. Given that one cannot really
1081 * have multiple PAM sessions open from the same process this means we will leak one FD at max. */
1082
1083 return PAM_SUCCESS;
1084}