dcavalca / rpms / util-linux

Forked from rpms/util-linux 2 years ago
Clone

Blame SOURCES/0074-Complete-Linux-PAM-compliance-for-forked-child-in-su.patch

e86b25
From 9e7cedda86e5356d1723e6bd0bab5e38c4fe4a34 Mon Sep 17 00:00:00 2001
e86b25
From: "Andrew G. Morgan" <morgan@kernel.org>
e86b25
Date: Sat, 27 Nov 2021 21:00:22 -0800
e86b25
Subject: [PATCH 74/74] Complete Linux-PAM compliance for forked child in su
e86b25
 and login.
e86b25
e86b25
As documented here:
e86b25
e86b25
http://www.linux-pam.org/Linux-PAM-html/adg-interface-by-app-expected.html#adg-pam_end
e86b25
e86b25
The child that is about to exec*() the user shell is supposed to pam_end()
e86b25
with PAM_DATA_SILENT. This gives the modules a last chance to do a minor
e86b25
cleanup of the module state before the user's shell is launched.
e86b25
e86b25
Addresses: https://bugzilla.redhat.com/show_bug.cgi?id=1950187
e86b25
Addresses: https://bugzilla.redhat.com/show_bug.cgi?id=2033566
e86b25
Upstream: http://github.com/util-linux/util-linux/commit/4660286e9cdff6d95b49295674b96f83af10ea36
e86b25
Signed-off-by: Andrew G. Morgan <morgan@kernel.org>
e86b25
---
e86b25
 login-utils/login.c     | 3 +++
e86b25
 login-utils/su-common.c | 3 +++
e86b25
 2 files changed, 6 insertions(+)
e86b25
e86b25
diff --git a/login-utils/login.c b/login-utils/login.c
e86b25
index 8c9e43292..9f50fe03b 100644
e86b25
--- a/login-utils/login.c
e86b25
+++ b/login-utils/login.c
e86b25
@@ -1370,6 +1370,9 @@ int main(int argc, char **argv)
e86b25
 
e86b25
 	childArgv[childArgc++] = NULL;
e86b25
 
e86b25
+	/* http://www.linux-pam.org/Linux-PAM-html/adg-interface-by-app-expected.html#adg-pam_end */
e86b25
+	(void) pam_end(cxt.pamh, PAM_SUCCESS|PAM_DATA_SILENT);
e86b25
+
e86b25
 	execvp(childArgv[0], childArgv + 1);
e86b25
 
e86b25
 	if (!strcmp(childArgv[0], "/bin/sh"))
e86b25
diff --git a/login-utils/su-common.c b/login-utils/su-common.c
e86b25
index c1b1a04e4..825ff1d5a 100644
e86b25
--- a/login-utils/su-common.c
e86b25
+++ b/login-utils/su-common.c
e86b25
@@ -1428,6 +1428,9 @@ int su_main(int argc, char **argv, int mode)
e86b25
 	if (su->simulate_login && chdir(su->pwd->pw_dir) != 0)
e86b25
 		warn(_("warning: cannot change directory to %s"), su->pwd->pw_dir);
e86b25
 
e86b25
+	/* http://www.linux-pam.org/Linux-PAM-html/adg-interface-by-app-expected.html#adg-pam_end */
e86b25
+	(void) pam_end(su->pamh, PAM_SUCCESS|PAM_DATA_SILENT);
e86b25
+
e86b25
 	if (shell)
e86b25
 		run_shell(su, shell, command, argv + optind, max(0, argc - optind));
e86b25
 
e86b25
-- 
e86b25
2.31.1
e86b25