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