dcavalca / rpms / util-linux

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