]> git.ipfire.org Git - thirdparty/systemd.git/blame - src/login/pam_systemd.c
pam_systemd: simplify how we process env vars
[thirdparty/systemd.git] / src / login / pam_systemd.c
CommitLineData
53e1b683 1/* SPDX-License-Identifier: LGPL-2.1+ */
8c6db833 2
00229fe4 3#include <endian.h>
8c6db833
LP
4#include <errno.h>
5#include <fcntl.h>
8c6db833 6#include <pwd.h>
8c6db833 7#include <security/_pam_macros.h>
8c6db833
LP
8#include <security/pam_ext.h>
9#include <security/pam_misc.h>
00229fe4
LP
10#include <security/pam_modules.h>
11#include <security/pam_modutil.h>
12#include <sys/file.h>
8c6db833 13
b5efdb8a 14#include "alloc-util.h"
430f0182 15#include "audit-util.h"
00229fe4
LP
16#include "bus-common-errors.h"
17#include "bus-error.h"
ffcfcb6b 18#include "bus-util.h"
98a28fef 19#include "def.h"
3ffd4af2 20#include "fd-util.h"
a5c32cff 21#include "fileio.h"
f97b34a6 22#include "format-util.h"
958b66ea 23#include "hostname-util.h"
00229fe4
LP
24#include "login-util.h"
25#include "macro.h"
6bedfcbb 26#include "parse-util.h"
df0ff127 27#include "process-util.h"
00229fe4
LP
28#include "socket-util.h"
29#include "strv.h"
30#include "terminal-util.h"
31#include "util.h"
c9ed61e7 32#include "path-util.h"
22f93314 33#include "cgroup-util.h"
8c6db833 34
baae0358
LP
35static int parse_argv(
36 pam_handle_t *handle,
37 int argc, const char **argv,
38 const char **class,
49ebd11f 39 const char **type,
baae0358 40 bool *debug) {
8c6db833
LP
41
42 unsigned i;
43
44 assert(argc >= 0);
45 assert(argc == 0 || argv);
46
49ebd11f 47 for (i = 0; i < (unsigned) argc; i++) {
fb6becb4 48 if (startswith(argv[i], "class=")) {
485507b8
MM
49 if (class)
50 *class = argv[i] + 6;
51
49ebd11f
LP
52 } else if (startswith(argv[i], "type=")) {
53 if (type)
54 *type = argv[i] + 5;
55
05a049cc
ZJS
56 } else if (streq(argv[i], "debug")) {
57 if (debug)
58 *debug = true;
fb6becb4 59
05a049cc
ZJS
60 } else if (startswith(argv[i], "debug=")) {
61 int k;
0e318cad 62
05a049cc
ZJS
63 k = parse_boolean(argv[i] + 6);
64 if (k < 0)
65 pam_syslog(handle, LOG_WARNING, "Failed to parse debug= argument, ignoring.");
66 else if (debug)
0e318cad
MS
67 *debug = k;
68
05a049cc 69 } else
fb6becb4 70 pam_syslog(handle, LOG_WARNING, "Unknown parameter '%s', ignoring", argv[i]);
49ebd11f 71 }
8c6db833 72
8c6db833
LP
73 return 0;
74}
75
8c6db833
LP
76static int get_user_data(
77 pam_handle_t *handle,
78 const char **ret_username,
79 struct passwd **ret_pw) {
80
d90b9d27
LP
81 const char *username = NULL;
82 struct passwd *pw = NULL;
8c6db833
LP
83 int r;
84
85 assert(handle);
86 assert(ret_username);
87 assert(ret_pw);
88
baae0358
LP
89 r = pam_get_user(handle, &username, NULL);
90 if (r != PAM_SUCCESS) {
91 pam_syslog(handle, LOG_ERR, "Failed to get user name.");
92 return r;
93 }
d90b9d27 94
baae0358
LP
95 if (isempty(username)) {
96 pam_syslog(handle, LOG_ERR, "User name not valid.");
97 return PAM_AUTH_ERR;
8c6db833
LP
98 }
99
baae0358 100 pw = pam_modutil_getpwnam(handle, username);
d90b9d27 101 if (!pw) {
8c6db833
LP
102 pam_syslog(handle, LOG_ERR, "Failed to get user data.");
103 return PAM_USER_UNKNOWN;
104 }
105
106 *ret_pw = pw;
8e24a4f8 107 *ret_username = username;
8c6db833
LP
108
109 return PAM_SUCCESS;
110}
111
4d6d6518 112static int get_seat_from_display(const char *display, const char **seat, uint32_t *vtnr) {
b92bea5d
ZJS
113 union sockaddr_union sa = {
114 .un.sun_family = AF_UNIX,
115 };
baae0358
LP
116 _cleanup_free_ char *p = NULL, *tty = NULL;
117 _cleanup_close_ int fd = -1;
4d6d6518 118 struct ucred ucred;
baae0358 119 int v, r;
4d6d6518
LP
120
121 assert(display);
4d6d6518
LP
122 assert(vtnr);
123
124 /* We deduce the X11 socket from the display name, then use
125 * SO_PEERCRED to determine the X11 server process, ask for
126 * the controlling tty of that and if it's a VC then we know
127 * the seat and the virtual terminal. Sounds ugly, is only
128 * semi-ugly. */
129
130 r = socket_from_display(display, &p);
131 if (r < 0)
132 return r;
b92bea5d 133 strncpy(sa.un.sun_path, p, sizeof(sa.un.sun_path)-1);
4d6d6518
LP
134
135 fd = socket(AF_UNIX, SOCK_STREAM|SOCK_CLOEXEC, 0);
b92bea5d 136 if (fd < 0)
4d6d6518 137 return -errno;
4d6d6518 138
fc2fffe7 139 if (connect(fd, &sa.sa, SOCKADDR_UN_LEN(sa.un)) < 0)
4d6d6518 140 return -errno;
4d6d6518 141
eff05270 142 r = getpeercred(fd, &ucred);
4d6d6518 143 if (r < 0)
eff05270 144 return r;
4d6d6518
LP
145
146 r = get_ctty(ucred.pid, NULL, &tty);
147 if (r < 0)
148 return r;
149
150 v = vtnr_from_tty(tty);
4d6d6518
LP
151 if (v < 0)
152 return v;
153 else if (v == 0)
154 return -ENOENT;
155
fc7985ed
LP
156 if (seat)
157 *seat = "seat0";
4d6d6518
LP
158 *vtnr = (uint32_t) v;
159
160 return 0;
161}
162
22f93314
JS
163static int append_session_memory_max(pam_handle_t *handle, sd_bus_message *m, const char *limit) {
164 uint64_t val;
165 int r;
166
167 if (isempty(limit))
168 return 0;
169
170 if (streq(limit, "infinity")) {
171 r = sd_bus_message_append(m, "(sv)", "MemoryMax", "t", (uint64_t)-1);
172 if (r < 0) {
173 pam_syslog(handle, LOG_ERR, "Failed to append to bus message: %s", strerror(-r));
174 return r;
175 }
176 } else {
177 r = parse_percent(limit);
178 if (r >= 0) {
179 r = sd_bus_message_append(m, "(sv)", "MemoryMaxScale", "u", (uint32_t) (((uint64_t) UINT32_MAX * r) / 100U));
180 if (r < 0) {
181 pam_syslog(handle, LOG_ERR, "Failed to append to bus message: %s", strerror(-r));
182 return r;
183 }
184 } else {
185 r = parse_size(limit, 1024, &val);
186 if (r >= 0) {
187 r = sd_bus_message_append(m, "(sv)", "MemoryMax", "t", val);
188 if (r < 0) {
189 pam_syslog(handle, LOG_ERR, "Failed to append to bus message: %s", strerror(-r));
190 return r;
191 }
192 } else
193 pam_syslog(handle, LOG_WARNING, "Failed to parse systemd.limit: %s, ignoring.", limit);
194 }
195 }
196
197 return 0;
198}
199
200static int append_session_tasks_max(pam_handle_t *handle, sd_bus_message *m, const char *limit)
201{
202 uint64_t val;
203 int r;
204
205 /* No need to parse "infinity" here, it will be set unconditionally later in manager_start_scope() */
206 if (isempty(limit) || streq(limit, "infinity"))
207 return 0;
208
209 r = safe_atou64(limit, &val);
210 if (r >= 0) {
211 r = sd_bus_message_append(m, "(sv)", "TasksMax", "t", val);
212 if (r < 0) {
213 pam_syslog(handle, LOG_ERR, "Failed to append to bus message: %s", strerror(-r));
214 return r;
215 }
216 } else
217 pam_syslog(handle, LOG_WARNING, "Failed to parse systemd.limit: %s, ignoring.", limit);
218
219 return 0;
220}
221
222static int append_session_cg_weight(pam_handle_t *handle, sd_bus_message *m, const char *limit, const char *field) {
223 uint64_t val;
224 int r;
225
226 if (!isempty(limit)) {
227 r = cg_weight_parse(limit, &val);
228 if (r >= 0) {
229 r = sd_bus_message_append(m, "(sv)", field, "t", val);
230 if (r < 0) {
231 pam_syslog(handle, LOG_ERR, "Failed to append to bus message: %s", strerror(-r));
232 return r;
233 }
234 } else if (streq(field, "CPUWeight"))
235 pam_syslog(handle, LOG_WARNING, "Failed to parse systemd.cpu_weight: %s, ignoring.", limit);
236 else
237 pam_syslog(handle, LOG_WARNING, "Failed to parse systemd.io_weight: %s, ignoring.", limit);
238 }
239
240 return 0;
241}
242
0ecc1c9d
LP
243static const char* getenv_harder(pam_handle_t *handle, const char *key, const char *fallback) {
244 const char *v;
245
246 assert(handle);
247 assert(key);
248
249 /* Looks for an environment variable, preferrably in the environment block associated with the specified PAM
250 * handle, falling back to the process' block instead. */
251
252 v = pam_getenv(handle, key);
253 if (!isempty(v))
254 return v;
255
256 v = getenv(key);
257 if (!isempty(v))
258 return v;
259
260 return fallback;
261}
262
98a28fef 263_public_ PAM_EXTERN int pam_sm_open_session(
8c6db833
LP
264 pam_handle_t *handle,
265 int flags,
266 int argc, const char **argv) {
267
4afd3348 268 _cleanup_(sd_bus_error_free) sd_bus_error error = SD_BUS_ERROR_NULL;
22f93314 269 _cleanup_(sd_bus_message_unrefp) sd_bus_message *m = NULL, *reply = NULL;
d1529c9e
LP
270 const char
271 *username, *id, *object_path, *runtime_path,
272 *service = NULL,
273 *tty = NULL, *display = NULL,
274 *remote_user = NULL, *remote_host = NULL,
275 *seat = NULL,
276 *type = NULL, *class = NULL,
22f93314
JS
277 *class_pam = NULL, *type_pam = NULL, *cvtnr = NULL, *desktop = NULL,
278 *memory_max = NULL, *tasks_max = NULL, *cpu_weight = NULL, *io_weight = NULL;
4afd3348 279 _cleanup_(sd_bus_flush_close_unrefp) sd_bus *bus = NULL;
d1529c9e 280 int session_fd = -1, existing, r;
d1529c9e
LP
281 bool debug = false, remote;
282 struct passwd *pw;
baae0358
LP
283 uint32_t vtnr = 0;
284 uid_t original_uid;
8c6db833 285
ffcfcb6b 286 assert(handle);
98a28fef 287
79d860fe
MP
288 /* Make this a NOP on non-logind systems */
289 if (!logind_running())
8c6db833
LP
290 return PAM_SUCCESS;
291
e9fbc77c
LP
292 if (parse_argv(handle,
293 argc, argv,
fb6becb4 294 &class_pam,
49ebd11f 295 &type_pam,
5a330cda
ZJS
296 &debug) < 0)
297 return PAM_SESSION_ERR;
74fe1fe3 298
baae0358 299 if (debug)
3831838a 300 pam_syslog(handle, LOG_DEBUG, "pam-systemd initializing");
baae0358 301
98a28fef 302 r = get_user_data(handle, &username, &pw);
5a330cda
ZJS
303 if (r != PAM_SUCCESS) {
304 pam_syslog(handle, LOG_ERR, "Failed to get user data.");
305 return r;
306 }
8c6db833 307
30b2c336
LP
308 /* Make sure we don't enter a loop by talking to
309 * systemd-logind when it is actually waiting for the
310 * background to finish start-up. If the service is
5c390a4a 311 * "systemd-user" we simply set XDG_RUNTIME_DIR and
30b2c336
LP
312 * leave. */
313
314 pam_get_item(handle, PAM_SERVICE, (const void**) &service);
5c390a4a 315 if (streq_ptr(service, "systemd-user")) {
f9e4283d 316 _cleanup_free_ char *rt = NULL;
30b2c336 317
f9e4283d 318 if (asprintf(&rt, "/run/user/"UID_FMT, pw->pw_uid) < 0)
ffcfcb6b 319 return PAM_BUF_ERR;
30b2c336 320
f9e4283d
DH
321 r = pam_misc_setenv(handle, "XDG_RUNTIME_DIR", rt, 0);
322 if (r != PAM_SUCCESS) {
323 pam_syslog(handle, LOG_ERR, "Failed to set runtime dir.");
324 return r;
30b2c336
LP
325 }
326
ffcfcb6b 327 return PAM_SUCCESS;
8c6db833
LP
328 }
329
ffcfcb6b 330 /* Otherwise, we ask logind to create a session for us */
8c6db833 331
98a28fef
LP
332 pam_get_item(handle, PAM_XDISPLAY, (const void**) &display);
333 pam_get_item(handle, PAM_TTY, (const void**) &tty);
334 pam_get_item(handle, PAM_RUSER, (const void**) &remote_user);
335 pam_get_item(handle, PAM_RHOST, (const void**) &remote_host);
a8573ccc 336
0ecc1c9d
LP
337 seat = getenv_harder(handle, "XDG_SEAT", NULL);
338 cvtnr = getenv_harder(handle, "XDG_VTNR", NULL);
339 type = getenv_harder(handle, "XDG_SESSION_TYPE", type_pam);
340 class = getenv_harder(handle, "XDG_SESSION_CLASS", class_pam);
341 desktop = getenv_harder(handle, "XDG_SESSION_DESKTOP", NULL);
a4cd87e9 342
ed18b08b 343 tty = strempty(tty);
98a28fef 344
ee8545b0 345 if (strchr(tty, ':')) {
3a736949
LP
346 /* A tty with a colon is usually an X11 display, placed there to show up in utmp. We rearrange things
347 * and don't pretend that an X display was a tty. */
ee8545b0
LP
348 if (isempty(display))
349 display = tty;
a4cd87e9 350 tty = NULL;
3a736949 351
1a4459d6 352 } else if (streq(tty, "cron")) {
3a736949
LP
353 /* cron is setting PAM_TTY to "cron" for some reason (the commit carries no information why, but
354 * probably because it wants to set it to something as pam_time/pam_access/… require PAM_TTY to be set
355 * (as they otherwise even try to update it!) — but cron doesn't actually allocate a TTY for its forked
356 * off processes.) */
0ad1271f 357 type = "unspecified";
49ebd11f 358 class = "background";
a4cd87e9 359 tty = NULL;
3a736949 360
0ad1271f 361 } else if (streq(tty, "ssh")) {
3a736949
LP
362 /* ssh has been setting PAM_TTY to "ssh" (for the same reason as cron does this, see above. For further
363 * details look for "PAM_TTY_KLUDGE" in the openssh sources). */
0ad1271f 364 type ="tty";
49ebd11f 365 class = "user";
3a736949
LP
366 tty = NULL; /* This one is particularly sad, as this means that ssh sessions — even though usually
367 * associated with a pty — won't be tracked by their tty in logind. This is because ssh
368 * does the PAM session registration early for new connections, and registers a pty only
369 * much later (this is because it doesn't know yet if it needs one at all, as whether to
370 * register a pty or not is negotiated much later in the protocol). */
371
c9ed61e7
LP
372 } else
373 /* Chop off leading /dev prefix that some clients specify, but others do not. */
374 tty = skip_dev_prefix(tty);
ee8545b0 375
8e7705e5 376 /* If this fails vtnr will be 0, that's intended */
4d6d6518 377 if (!isempty(cvtnr))
2ae4842b 378 (void) safe_atou32(cvtnr, &vtnr);
4d6d6518 379
92bd5ff3 380 if (!isempty(display) && !vtnr) {
fc7985ed 381 if (isempty(seat))
6ef25fb6 382 get_seat_from_display(display, &seat, &vtnr);
fc7985ed 383 else if (streq(seat, "seat0"))
6ef25fb6 384 get_seat_from_display(display, NULL, &vtnr);
fc7985ed 385 }
4d6d6518 386
49ebd11f 387 if (seat && !streq(seat, "seat0") && vtnr != 0) {
1fa2f38f 388 pam_syslog(handle, LOG_DEBUG, "Ignoring vtnr %"PRIu32" for %s which is not seat0", vtnr, seat);
d7353ef6
MM
389 vtnr = 0;
390 }
391
49ebd11f 392 if (isempty(type))
0ad1271f 393 type = !isempty(display) ? "x11" :
49ebd11f 394 !isempty(tty) ? "tty" : "unspecified";
98a28fef 395
55efac6c 396 if (isempty(class))
e2acb67b 397 class = streq(type, "unspecified") ? "background" : "user";
55efac6c 398
fecc80c1 399 remote = !isempty(remote_host) && !is_localhost(remote_host);
98a28fef 400
22f93314
JS
401 (void) pam_get_data(handle, "systemd.memory_max", (const void **)&memory_max);
402 (void) pam_get_data(handle, "systemd.tasks_max", (const void **)&tasks_max);
403 (void) pam_get_data(handle, "systemd.cpu_weight", (const void **)&cpu_weight);
404 (void) pam_get_data(handle, "systemd.io_weight", (const void **)&io_weight);
405
4d49b48c 406 /* Talk to logind over the message bus */
5a330cda 407
ffcfcb6b
ZJS
408 r = sd_bus_open_system(&bus);
409 if (r < 0) {
410 pam_syslog(handle, LOG_ERR, "Failed to connect to system bus: %s", strerror(-r));
411 return PAM_SESSION_ERR;
cc377381
LP
412 }
413
22f93314 414 if (debug) {
ce959314 415 pam_syslog(handle, LOG_DEBUG, "Asking logind to create session: "
1fa2f38f 416 "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",
df0ff127 417 pw->pw_uid, getpid_cached(),
baae0358 418 strempty(service),
cda7ecb0 419 type, class, strempty(desktop),
a4cd87e9 420 strempty(seat), vtnr, strempty(tty), strempty(display),
baae0358 421 yes_no(remote), strempty(remote_user), strempty(remote_host));
22f93314
JS
422 pam_syslog(handle, LOG_DEBUG, "Session limits: "
423 "memory_max=%s tasks_max=%s cpu_weight=%s io_weight=%s",
424 strna(memory_max), strna(tasks_max), strna(cpu_weight), strna(io_weight));
425 }
426
427 r = sd_bus_message_new_method_call(
428 bus,
429 &m,
430 "org.freedesktop.login1",
431 "/org/freedesktop/login1",
432 "org.freedesktop.login1.Manager",
433 "CreateSession");
434 if (r < 0) {
435 pam_syslog(handle, LOG_ERR, "Failed to create CreateSession method call: %s", strerror(-r));
436 return PAM_SESSION_ERR;
437 }
438
439 r = sd_bus_message_append(m, "uusssssussbss",
440 (uint32_t) pw->pw_uid,
441 (uint32_t) getpid_cached(),
442 service,
443 type,
444 class,
445 desktop,
446 seat,
447 vtnr,
448 tty,
449 display,
450 remote,
451 remote_user,
452 remote_host);
453 if (r < 0) {
454 pam_syslog(handle, LOG_ERR, "Failed to append to bus message: %s", strerror(-r));
455 return PAM_SESSION_ERR;
456 }
457
458 r = sd_bus_message_open_container(m, 'a', "(sv)");
459 if (r < 0) {
460 pam_syslog(handle, LOG_ERR, "Failed to open message container: %s", strerror(-r));
461 return PAM_SYSTEM_ERR;
462 }
463
464 r = append_session_memory_max(handle, m, memory_max);
465 if (r < 0)
466 return PAM_SESSION_ERR;
467
468 r = append_session_tasks_max(handle, m, tasks_max);
469 if (r < 0)
470 return PAM_SESSION_ERR;
471
472 r = append_session_cg_weight(handle, m, cpu_weight, "CPUWeight");
473 if (r < 0)
474 return PAM_SESSION_ERR;
475
476 r = append_session_cg_weight(handle, m, io_weight, "IOWeight");
477 if (r < 0)
478 return PAM_SESSION_ERR;
479
480 r = sd_bus_message_close_container(m);
481 if (r < 0) {
482 pam_syslog(handle, LOG_ERR, "Failed to close message container: %s", strerror(-r));
483 return PAM_SYSTEM_ERR;
484 }
ce959314 485
22f93314 486 r = sd_bus_call(bus, m, 0, &error, &reply);
ffcfcb6b 487 if (r < 0) {
b80120c4
DH
488 if (sd_bus_error_has_name(&error, BUS_ERROR_SESSION_BUSY)) {
489 pam_syslog(handle, LOG_DEBUG, "Cannot create session: %s", bus_error_message(&error, r));
490 return PAM_SUCCESS;
491 } else {
492 pam_syslog(handle, LOG_ERR, "Failed to create session: %s", bus_error_message(&error, r));
493 return PAM_SYSTEM_ERR;
494 }
98a28fef 495 }
74fe1fe3 496
ffcfcb6b 497 r = sd_bus_message_read(reply,
baae0358 498 "soshusub",
ffcfcb6b
ZJS
499 &id,
500 &object_path,
501 &runtime_path,
502 &session_fd,
baae0358 503 &original_uid,
ffcfcb6b
ZJS
504 &seat,
505 &vtnr,
506 &existing);
507 if (r < 0) {
508 pam_syslog(handle, LOG_ERR, "Failed to parse message: %s", strerror(-r));
5a330cda 509 return PAM_SESSION_ERR;
98a28fef 510 }
74fe1fe3 511
ce959314
MS
512 if (debug)
513 pam_syslog(handle, LOG_DEBUG, "Reply from logind: "
baae0358
LP
514 "id=%s object_path=%s runtime_path=%s session_fd=%d seat=%s vtnr=%u original_uid=%u",
515 id, object_path, runtime_path, session_fd, seat, vtnr, original_uid);
ce959314 516
98a28fef
LP
517 r = pam_misc_setenv(handle, "XDG_SESSION_ID", id, 0);
518 if (r != PAM_SUCCESS) {
519 pam_syslog(handle, LOG_ERR, "Failed to set session id.");
5a330cda 520 return r;
8c6db833
LP
521 }
522
baae0358
LP
523 if (original_uid == pw->pw_uid) {
524 /* Don't set $XDG_RUNTIME_DIR if the user we now
525 * authenticated for does not match the original user
526 * of the session. We do this in order not to result
527 * in privileged apps clobbering the runtime directory
528 * unnecessarily. */
529
530 r = pam_misc_setenv(handle, "XDG_RUNTIME_DIR", runtime_path, 0);
531 if (r != PAM_SUCCESS) {
532 pam_syslog(handle, LOG_ERR, "Failed to set runtime dir.");
533 return r;
534 }
98a28fef 535 }
8c6db833 536
bbc73283
LP
537 if (!isempty(seat)) {
538 r = pam_misc_setenv(handle, "XDG_SEAT", seat, 0);
539 if (r != PAM_SUCCESS) {
540 pam_syslog(handle, LOG_ERR, "Failed to set seat.");
5a330cda 541 return r;
bbc73283
LP
542 }
543 }
544
545 if (vtnr > 0) {
29d230f6 546 char buf[DECIMAL_STR_MAX(vtnr)];
baae0358 547 sprintf(buf, "%u", vtnr);
bbc73283
LP
548
549 r = pam_misc_setenv(handle, "XDG_VTNR", buf, 0);
550 if (r != PAM_SUCCESS) {
551 pam_syslog(handle, LOG_ERR, "Failed to set virtual terminal number.");
5a330cda 552 return r;
bbc73283
LP
553 }
554 }
555
77085881
LP
556 r = pam_set_data(handle, "systemd.existing", INT_TO_PTR(!!existing), NULL);
557 if (r != PAM_SUCCESS) {
558 pam_syslog(handle, LOG_ERR, "Failed to install existing flag.");
5a330cda 559 return r;
77085881
LP
560 }
561
21c390cc 562 if (session_fd >= 0) {
85c08dc0 563 session_fd = fcntl(session_fd, F_DUPFD_CLOEXEC, 3);
5a330cda
ZJS
564 if (session_fd < 0) {
565 pam_syslog(handle, LOG_ERR, "Failed to dup session fd: %m");
566 return PAM_SESSION_ERR;
567 }
568
23e096cc 569 r = pam_set_data(handle, "systemd.session-fd", FD_TO_PTR(session_fd), NULL);
21c390cc
LP
570 if (r != PAM_SUCCESS) {
571 pam_syslog(handle, LOG_ERR, "Failed to install session fd.");
03e334a1 572 safe_close(session_fd);
5a330cda 573 return r;
21c390cc 574 }
98a28fef 575 }
8c6db833 576
ffcfcb6b 577 return PAM_SUCCESS;
98a28fef 578}
8c6db833 579
98a28fef
LP
580_public_ PAM_EXTERN int pam_sm_close_session(
581 pam_handle_t *handle,
582 int flags,
583 int argc, const char **argv) {
8c6db833 584
4afd3348
LP
585 _cleanup_(sd_bus_error_free) sd_bus_error error = SD_BUS_ERROR_NULL;
586 _cleanup_(sd_bus_flush_close_unrefp) sd_bus *bus = NULL;
5f41d1f1 587 const void *existing = NULL;
75c8e3cf 588 const char *id;
75c8e3cf 589 int r;
8c6db833 590
ffcfcb6b 591 assert(handle);
75c8e3cf 592
77085881
LP
593 /* Only release session if it wasn't pre-existing when we
594 * tried to create it */
595 pam_get_data(handle, "systemd.existing", &existing);
596
75c8e3cf 597 id = pam_getenv(handle, "XDG_SESSION_ID");
77085881 598 if (id && !existing) {
75c8e3cf
LP
599
600 /* Before we go and close the FIFO we need to tell
601 * logind that this is a clean session shutdown, so
602 * that it doesn't just go and slaughter us
603 * immediately after closing the fd */
604
ffcfcb6b
ZJS
605 r = sd_bus_open_system(&bus);
606 if (r < 0) {
5f41d1f1
LP
607 pam_syslog(handle, LOG_ERR, "Failed to connect to system bus: %s", strerror(-r));
608 return PAM_SESSION_ERR;
75c8e3cf
LP
609 }
610
ffcfcb6b
ZJS
611 r = sd_bus_call_method(bus,
612 "org.freedesktop.login1",
613 "/org/freedesktop/login1",
614 "org.freedesktop.login1.Manager",
615 "ReleaseSession",
616 &error,
617 NULL,
618 "s",
619 id);
620 if (r < 0) {
5f41d1f1
LP
621 pam_syslog(handle, LOG_ERR, "Failed to release session: %s", bus_error_message(&error, r));
622 return PAM_SESSION_ERR;
75c8e3cf
LP
623 }
624 }
625
5f41d1f1
LP
626 /* Note that we are knowingly leaking the FIFO fd here. This
627 * way, logind can watch us die. If we closed it here it would
628 * not have any clue when that is completed. Given that one
629 * cannot really have multiple PAM sessions open from the same
630 * process this means we will leak one FD at max. */
75c8e3cf 631
5f41d1f1 632 return PAM_SUCCESS;
8c6db833 633}